-- MySQL dump 10.16  Distrib 10.2.27-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: newcastl_wp898
-- ------------------------------------------------------
-- Server version	10.2.27-MariaDB

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wpqj_app_appointmentmeta`
--

DROP TABLE IF EXISTS `wpqj_app_appointmentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_app_appointmentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `app_appointment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `app_appointment_id` (`app_appointment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_app_appointmentmeta`
--

LOCK TABLES `wpqj_app_appointmentmeta` WRITE;
/*!40000 ALTER TABLE `wpqj_app_appointmentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_app_appointmentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_app_appointments`
--

DROP TABLE IF EXISTS `wpqj_app_appointments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_app_appointments` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `created` datetime DEFAULT NULL,
  `user` bigint(20) NOT NULL DEFAULT 0,
  `name` varchar(250) DEFAULT NULL,
  `email` varchar(250) DEFAULT NULL,
  `phone` varchar(250) DEFAULT NULL,
  `address` varchar(250) DEFAULT NULL,
  `city` varchar(250) DEFAULT NULL,
  `location` bigint(20) NOT NULL DEFAULT 0,
  `service` bigint(20) NOT NULL DEFAULT 0,
  `worker` bigint(20) NOT NULL DEFAULT 0,
  `price` float DEFAULT NULL,
  `status` varchar(35) DEFAULT NULL,
  `start` datetime DEFAULT NULL,
  `end` datetime DEFAULT NULL,
  `sent` text DEFAULT NULL,
  `sent_worker` text DEFAULT NULL,
  `note` text DEFAULT NULL,
  `gcal_ID` varchar(250) DEFAULT NULL,
  `gcal_updated` datetime DEFAULT NULL,
  PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_app_appointments`
--

LOCK TABLES `wpqj_app_appointments` WRITE;
/*!40000 ALTER TABLE `wpqj_app_appointments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_app_appointments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_app_exceptions`
--

DROP TABLE IF EXISTS `wpqj_app_exceptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_app_exceptions` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location` bigint(20) NOT NULL DEFAULT 0,
  `service` bigint(20) NOT NULL DEFAULT 0,
  `worker` bigint(20) NOT NULL DEFAULT 0,
  `status` varchar(30) DEFAULT NULL,
  `days` text DEFAULT NULL,
  `note` text DEFAULT NULL,
  PRIMARY KEY (`ID`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_app_exceptions`
--

LOCK TABLES `wpqj_app_exceptions` WRITE;
/*!40000 ALTER TABLE `wpqj_app_exceptions` DISABLE KEYS */;
INSERT INTO `wpqj_app_exceptions` VALUES (1,0,0,0,'closed',',2018-09-28',NULL),(2,0,0,0,'open','',NULL);
/*!40000 ALTER TABLE `wpqj_app_exceptions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_app_services`
--

DROP TABLE IF EXISTS `wpqj_app_services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_app_services` (
  `ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `capacity` bigint(20) NOT NULL DEFAULT 0,
  `duration` bigint(20) NOT NULL DEFAULT 0,
  `price` varchar(255) DEFAULT NULL,
  `page` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_app_services`
--

LOCK TABLES `wpqj_app_services` WRITE;
/*!40000 ALTER TABLE `wpqj_app_services` DISABLE KEYS */;
INSERT INTO `wpqj_app_services` VALUES (1,'Default Service',0,30,'1',0),(2,'Hypnotherapy Session',1,90,'79.00',0);
/*!40000 ALTER TABLE `wpqj_app_services` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_app_transactions`
--

DROP TABLE IF EXISTS `wpqj_app_transactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_app_transactions` (
  `transaction_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `transaction_app_ID` bigint(20) NOT NULL DEFAULT 0,
  `transaction_paypal_ID` varchar(30) DEFAULT NULL,
  `transaction_stamp` bigint(35) NOT NULL DEFAULT 0,
  `transaction_total_amount` bigint(20) DEFAULT NULL,
  `transaction_currency` varchar(35) DEFAULT NULL,
  `transaction_status` varchar(35) DEFAULT NULL,
  `transaction_note` text DEFAULT NULL,
  PRIMARY KEY (`transaction_ID`),
  KEY `transaction_app_ID` (`transaction_app_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_app_transactions`
--

LOCK TABLES `wpqj_app_transactions` WRITE;
/*!40000 ALTER TABLE `wpqj_app_transactions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_app_transactions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_app_workers`
--

DROP TABLE IF EXISTS `wpqj_app_workers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_app_workers` (
  `ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `dummy` varchar(255) DEFAULT NULL,
  `price` varchar(255) DEFAULT NULL,
  `services_provided` text DEFAULT NULL,
  `page` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_app_workers`
--

LOCK TABLES `wpqj_app_workers` WRITE;
/*!40000 ALTER TABLE `wpqj_app_workers` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_app_workers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_app_working_hours`
--

DROP TABLE IF EXISTS `wpqj_app_working_hours`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_app_working_hours` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location` bigint(20) NOT NULL DEFAULT 0,
  `service` bigint(20) NOT NULL DEFAULT 0,
  `worker` bigint(20) NOT NULL DEFAULT 0,
  `status` varchar(30) DEFAULT NULL,
  `hours` text DEFAULT NULL,
  `note` text DEFAULT NULL,
  PRIMARY KEY (`ID`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_app_working_hours`
--

LOCK TABLES `wpqj_app_working_hours` WRITE;
/*!40000 ALTER TABLE `wpqj_app_working_hours` DISABLE KEYS */;
INSERT INTO `wpqj_app_working_hours` VALUES (1,0,0,0,'open','a:7:{s:6:\"Monday\";a:3:{s:6:\"active\";s:3:\"yes\";s:5:\"start\";s:5:\"08:00\";s:3:\"end\";s:5:\"18:00\";}s:7:\"Tuesday\";a:3:{s:6:\"active\";s:3:\"yes\";s:5:\"start\";s:5:\"08:00\";s:3:\"end\";s:5:\"14:00\";}s:9:\"Wednesday\";a:3:{s:6:\"active\";s:3:\"yes\";s:5:\"start\";s:5:\"08:00\";s:3:\"end\";s:5:\"18:00\";}s:8:\"Thursday\";a:3:{s:6:\"active\";s:3:\"yes\";s:5:\"start\";s:5:\"08:00\";s:3:\"end\";s:5:\"20:00\";}s:6:\"Friday\";a:3:{s:6:\"active\";s:3:\"yes\";s:5:\"start\";s:5:\"08:00\";s:3:\"end\";s:5:\"14:00\";}s:8:\"Saturday\";a:3:{s:6:\"active\";s:2:\"no\";s:5:\"start\";s:5:\"08:00\";s:3:\"end\";s:5:\"20:00\";}s:6:\"Sunday\";a:3:{s:6:\"active\";s:2:\"no\";s:5:\"start\";s:5:\"08:00\";s:3:\"end\";s:5:\"18:00\";}}',NULL),(2,0,0,0,'closed','a:7:{s:6:\"Monday\";a:3:{s:6:\"active\";s:2:\"no\";s:5:\"start\";s:5:\"12:00\";s:3:\"end\";s:5:\"13:00\";}s:7:\"Tuesday\";a:3:{s:6:\"active\";s:2:\"no\";s:5:\"start\";s:5:\"12:00\";s:3:\"end\";s:5:\"13:00\";}s:9:\"Wednesday\";a:3:{s:6:\"active\";s:2:\"no\";s:5:\"start\";s:5:\"12:00\";s:3:\"end\";s:5:\"13:00\";}s:8:\"Thursday\";a:3:{s:6:\"active\";s:2:\"no\";s:5:\"start\";s:5:\"12:00\";s:3:\"end\";s:5:\"13:00\";}s:6:\"Friday\";a:3:{s:6:\"active\";s:2:\"no\";s:5:\"start\";s:5:\"12:00\";s:3:\"end\";s:5:\"13:00\";}s:8:\"Saturday\";a:3:{s:6:\"active\";s:2:\"no\";s:5:\"start\";s:5:\"12:00\";s:3:\"end\";s:5:\"13:00\";}s:6:\"Sunday\";a:3:{s:6:\"active\";s:2:\"no\";s:5:\"start\";s:5:\"12:00\";s:3:\"end\";s:5:\"13:00\";}}',NULL);
/*!40000 ALTER TABLE `wpqj_app_working_hours` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_commentmeta`
--

DROP TABLE IF EXISTS `wpqj_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_commentmeta`
--

LOCK TABLES `wpqj_commentmeta` WRITE;
/*!40000 ALTER TABLE `wpqj_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_comments`
--

DROP TABLE IF EXISTS `wpqj_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=MyISAM AUTO_INCREMENT=929 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_comments`
--

LOCK TABLES `wpqj_comments` WRITE;
/*!40000 ALTER TABLE `wpqj_comments` DISABLE KEYS */;
INSERT INTO `wpqj_comments` VALUES (31,1878,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-10-28 22:12:19','2018-10-28 22:12:19','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(32,1898,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-11-05 18:48:55','2018-11-05 18:48:55','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(33,1898,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-11-05 18:48:56','2018-11-05 18:48:56','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(34,1899,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-11-06 07:53:40','2018-11-06 07:53:40','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(57,2407,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-12-28 22:57:08','2018-12-28 22:57:08','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(54,2397,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-12-28 09:20:04','2018-12-28 09:20:04','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(55,2397,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-12-28 09:20:04','2018-12-28 09:20:04','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(56,2398,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-12-28 13:18:59','2018-12-28 13:18:59','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(10,1559,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-09-20 21:37:57','2018-09-20 21:37:57','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(11,1559,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-09-20 21:37:58','2018-09-20 21:37:58','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(30,1878,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-10-28 22:12:18','2018-10-28 22:12:18','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(12,1567,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-09-23 08:23:29','2018-09-23 08:23:29','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(13,1575,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-09-23 17:50:56','2018-09-23 17:50:56','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(14,1577,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-09-23 20:25:23','2018-09-23 20:25:23','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(15,1577,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-09-23 20:25:24','2018-09-23 20:25:24','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(63,2514,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-07 11:24:55','2019-01-07 11:24:55','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(62,2514,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-07 11:24:55','2019-01-07 11:24:55','Stock levels reduced: Getting The Best Out Of 2019 Workshop (#2287) 9&rarr;8',0,'1','WooCommerce','order_note',0,0),(59,2461,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-02 19:58:48','2019-01-02 19:58:48','Stock levels reduced: Past Life Regression 23 Jan - South Shields (#1917) 20&rarr;19',0,'1','WooCommerce','order_note',0,0),(60,2461,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-02 19:58:48','2019-01-02 19:58:48','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(61,2514,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-07 11:24:55','2019-01-07 11:24:55','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(22,1677,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-09-27 18:02:40','2018-09-27 18:02:40','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(64,2521,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-09 08:02:35','2019-01-09 08:02:35','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(65,2521,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-09 08:02:36','2019-01-09 08:02:36','Stock levels reduced: Past Life Regression 23 Jan - South Shields (#1917) 19&rarr;18',0,'1','WooCommerce','order_note',0,0),(25,1791,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-10-11 19:45:45','2018-10-11 19:45:45','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(26,1792,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-10-12 08:34:12','2018-10-12 08:34:12','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(27,1793,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-10-16 19:43:31','2018-10-16 19:43:31','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(28,1794,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-10-16 20:07:24','2018-10-16 20:07:24','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(29,1794,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-10-16 20:07:24','2018-10-16 20:07:24','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(67,2523,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-15 06:30:58','2019-01-15 06:30:58','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(41,1950,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-11-13 22:37:37','2018-11-13 22:37:37','Stock levels reduced: Past Life Regression 5th December (#1917) 6&rarr;4',0,'1','WooCommerce','order_note',0,0),(42,1950,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-11-13 22:37:38','2018-11-13 22:37:38','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(68,2523,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-15 06:30:58','2019-01-15 06:30:58','Stock levels reduced: Getting The Best Out Of 2019 Workshop (#2287) 8&rarr;7',0,'1','WooCommerce','order_note',0,0),(43,1966,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-11-15 15:40:06','2018-11-15 15:40:06','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(44,1966,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-11-15 15:40:07','2018-11-15 15:40:07','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(45,1987,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-11-18 11:33:28','2018-11-18 11:33:28','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(46,2002,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-11-19 14:40:31','2018-11-19 14:40:31','Stock levels reduced: Past Life Regression 5th December (#1917) 8&rarr;6',0,'1','WooCommerce','order_note',0,0),(47,2002,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-11-19 14:40:31','2018-11-19 14:40:31','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(48,2026,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-11-19 18:42:52','2018-11-19 18:42:52','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(49,2026,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-11-19 18:42:53','2018-11-19 18:42:53','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(50,2031,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-11-20 20:02:12','2018-11-20 20:02:12','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(51,2031,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-11-20 20:02:13','2018-11-20 20:02:13','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(66,2521,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-09 08:02:36','2019-01-09 08:02:36','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(58,2461,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-02 19:58:48','2019-01-02 19:58:48','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(52,2108,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-12-02 14:14:20','2018-12-02 14:14:20','Stock levels reduced: Past Life Regression 5th December (#1917) 8&rarr;7',0,'1','WooCommerce','order_note',0,0),(53,2108,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2018-12-02 14:14:20','2018-12-02 14:14:20','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(69,2523,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-15 06:30:58','2019-01-15 06:30:58','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(70,2524,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-15 06:58:22','2019-01-15 06:58:22','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(71,2525,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-15 07:15:56','2019-01-15 07:15:56','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(72,2525,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-15 07:15:56','2019-01-15 07:15:56','Stock levels reduced: Past Life Regression 23 Jan - South Shields (#1917) 18&rarr;17',0,'1','WooCommerce','order_note',0,0),(73,2525,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-15 07:15:57','2019-01-15 07:15:57','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(74,2527,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-17 12:14:21','2019-01-17 12:14:21','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(75,2527,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-17 12:14:22','2019-01-17 12:14:22','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(76,2528,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-17 20:09:33','2019-01-17 20:09:33','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(77,2529,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-18 20:00:07','2019-01-18 20:00:07','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(78,2530,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-19 14:01:03','2019-01-19 14:01:03','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(79,2530,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-19 14:01:03','2019-01-19 14:01:03','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(80,2531,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-20 13:07:54','2019-01-20 13:07:54','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(81,2532,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-20 21:22:04','2019-01-20 21:22:04','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(82,2532,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-20 21:22:05','2019-01-20 21:22:05','Stock levels reduced: Past Life Regression 23 Jan - South Shields (#1917) 17&rarr;16',0,'1','WooCommerce','order_note',0,0),(83,2532,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-20 21:22:05','2019-01-20 21:22:05','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(84,2534,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-21 19:00:07','2019-01-21 19:00:07','Stock levels reduced: Past Life Regression 23 Jan - South Shields (#1917) 16&rarr;15',0,'1','WooCommerce','order_note',0,0),(85,2534,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-21 19:00:07','2019-01-21 19:00:07','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(86,2535,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-21 19:05:28','2019-01-21 19:05:28','Stock levels reduced: Past Life Regression 23 Jan - South Shields (#1917) 15&rarr;14',0,'1','WooCommerce','order_note',0,0),(87,2535,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-21 19:05:28','2019-01-21 19:05:28','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(88,2536,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-21 19:16:40','2019-01-21 19:16:40','Stock levels reduced: Past Life Regression 23 Jan - South Shields (#1917) 14&rarr;13',0,'1','WooCommerce','order_note',0,0),(89,2536,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-21 19:16:40','2019-01-21 19:16:40','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(90,2537,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-21 19:25:23','2019-01-21 19:25:23','Stock levels reduced: Past Life Regression 23 Jan - South Shields (#1917) 13&rarr;12',0,'1','WooCommerce','order_note',0,0),(91,2537,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-21 19:25:23','2019-01-21 19:25:23','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(92,2538,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-21 19:40:23','2019-01-21 19:40:23','Stock levels reduced: Past Life Regression 23 Jan - South Shields (#1917) 12&rarr;11',0,'1','WooCommerce','order_note',0,0),(93,2538,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-21 19:40:23','2019-01-21 19:40:23','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(94,2539,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-23 12:24:07','2019-01-23 12:24:07','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(95,2539,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-23 12:24:07','2019-01-23 12:24:07','Stock levels reduced: Past Life Regression 23 Jan - South Shields (#1917) 11&rarr;10',0,'1','WooCommerce','order_note',0,0),(96,2539,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-23 12:24:07','2019-01-23 12:24:07','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(97,2555,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-29 19:39:34','2019-01-29 19:39:34','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(98,2555,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-01-29 19:39:34','2019-01-29 19:39:34','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(99,2586,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-02 20:39:23','2019-02-02 20:39:23','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(100,2586,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-02 20:39:24','2019-02-02 20:39:24','Stock levels reduced: Anxiety Freedom Introduction Workshop (#2564) 12&rarr;11',0,'1','WooCommerce','order_note',0,0),(101,2586,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-02 20:39:25','2019-02-02 20:39:25','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(102,2589,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-04 11:07:08','2019-02-04 11:07:08','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(103,2590,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-04 18:36:02','2019-02-04 18:36:02','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(104,2589,'Mark','myfreepack@gmail.com','','','2019-02-05 16:39:02','2019-02-05 16:39:02','Order status changed from On hold to Processing.',0,'1','WooCommerce','order_note',0,0),(105,2604,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-13 18:30:45','2019-02-13 18:30:45','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(106,2604,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-13 18:30:45','2019-02-13 18:30:45','Stock levels reduced: Anxiety Freedom Introduction Workshop (#2564) 11&rarr;10',0,'1','WooCommerce','order_note',0,0),(107,2604,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-13 18:30:46','2019-02-13 18:30:46','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(108,2605,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-14 16:11:38','2019-02-14 16:11:38','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(109,2605,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-14 16:11:39','2019-02-14 16:11:39','Stock levels reduced: Anxiety Freedom Introduction Workshop (#2564) 10&rarr;9',0,'1','WooCommerce','order_note',0,0),(110,2605,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-14 16:11:41','2019-02-14 16:11:41','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(111,2606,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-14 20:46:03','2019-02-14 20:46:03','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(112,2606,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-14 20:46:04','2019-02-14 20:46:04','Stock levels reduced: Anxiety Freedom Introduction Workshop (#2564) 9&rarr;8',0,'1','WooCommerce','order_note',0,0),(113,2606,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-14 20:46:05','2019-02-14 20:46:05','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(114,2607,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-17 22:37:47','2019-02-17 22:37:47','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(115,2607,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-17 22:37:47','2019-02-17 22:37:47','Stock levels reduced: Anxiety Freedom Introduction Workshop (#2564) 8&rarr;7',0,'1','WooCommerce','order_note',0,0),(116,2607,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-17 22:37:48','2019-02-17 22:37:48','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(117,2608,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-18 09:40:38','2019-02-18 09:40:38','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(118,2608,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-18 09:40:40','2019-02-18 09:40:40','Stock levels reduced: Anxiety Freedom Introduction Workshop (#2564) 7&rarr;6',0,'1','WooCommerce','order_note',0,0),(119,2608,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-18 09:40:41','2019-02-18 09:40:41','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(120,2610,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-19 12:09:22','2019-02-19 12:09:22','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(121,2610,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-19 12:09:23','2019-02-19 12:09:23','Stock levels reduced: Anxiety Freedom Introduction Workshop (#2564) 6&rarr;5',0,'1','WooCommerce','order_note',0,0),(122,2610,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-19 12:09:24','2019-02-19 12:09:24','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(123,2636,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-20 10:26:08','2019-02-20 10:26:08','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(124,2636,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-20 10:26:08','2019-02-20 10:26:08','Stock levels reduced: Anxiety Freedom Introduction Workshop (#2564) 5&rarr;4',0,'1','WooCommerce','order_note',0,0),(125,2636,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-20 10:26:09','2019-02-20 10:26:09','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(126,2637,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-22 10:48:54','2019-02-22 10:48:54','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(127,2637,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-22 10:48:55','2019-02-22 10:48:55','Stock levels reduced: Self-Confidence Workshop 6th March (#2628) 15&rarr;14',0,'1','WooCommerce','order_note',0,0),(128,2637,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-22 10:48:55','2019-02-22 10:48:55','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(129,2663,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-25 09:34:20','2019-02-25 09:34:20','Stock levels reduced: Self-Confidence Workshop 6th March (#2628) 14&rarr;12',0,'1','WooCommerce','order_note',0,0),(130,2663,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-02-25 09:34:20','2019-02-25 09:34:20','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(131,2666,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-03-01 13:08:39','2019-03-01 13:08:39','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(132,2666,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-03-01 13:08:40','2019-03-01 13:08:40','Stock levels reduced: Past Life Regression 20th March - The Vault (#1917) 15&rarr;13',0,'1','WooCommerce','order_note',0,0),(133,2666,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-03-01 13:08:41','2019-03-01 13:08:41','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(134,2667,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-03-04 19:46:03','2019-03-04 19:46:03','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(135,2667,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-03-04 19:46:03','2019-03-04 19:46:03','Stock levels reduced: Self-Confidence Workshop 6th March (#2628) 12&rarr;11',0,'1','WooCommerce','order_note',0,0),(136,2667,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-03-04 19:46:04','2019-03-04 19:46:04','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(137,2668,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-03-04 22:25:26','2019-03-04 22:25:26','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(138,2668,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-03-04 22:25:27','2019-03-04 22:25:27','Stock levels reduced: Self-Confidence Workshop 6th March (#2628) 11&rarr;10',0,'1','WooCommerce','order_note',0,0),(139,2668,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-03-04 22:25:28','2019-03-04 22:25:28','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(140,2669,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-03-05 13:51:55','2019-03-05 13:51:55','Stock levels reduced: Self-Confidence Workshop 6th March (#2628) 10&rarr;9',0,'1','WooCommerce','order_note',0,0),(141,2669,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-03-05 13:51:56','2019-03-05 13:51:56','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(142,2671,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-03-17 19:48:18','2019-03-17 19:48:18','Stock levels reduced: Past Life Regression 20th March - The Vault (#1917) 13&rarr;12',0,'1','WooCommerce','order_note',0,0),(143,2671,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-03-17 19:48:19','2019-03-17 19:48:19','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(144,2672,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-03-19 16:35:53','2019-03-19 16:35:53','Stock levels reduced: Past Life Regression 20th March - The Vault (#1917) 12&rarr;11',0,'1','WooCommerce','order_note',0,0),(145,2672,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-03-19 16:35:53','2019-03-19 16:35:53','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(146,2679,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-03-26 18:08:58','2019-03-26 18:08:58','Stock levels reduced: Self-Hypnosis Practice Group - Newcastle (#2454) 15&rarr;14',0,'1','WooCommerce','order_note',0,0),(147,2679,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-03-26 18:08:58','2019-03-26 18:08:58','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(148,2704,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-02 14:21:54','2019-04-02 14:21:54','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(149,2704,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-02 14:21:54','2019-04-02 14:21:54','Stock levels reduced: The Secrets Of Being Happy Workshop (#2701) 12&rarr;10',0,'1','WooCommerce','order_note',0,0),(150,2704,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-02 14:21:54','2019-04-02 14:21:54','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(151,2705,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-05 09:28:19','2019-04-05 09:28:19','Stock levels reduced: The Secrets Of Being Happy Workshop (#2701) 10&rarr;9',0,'1','WooCommerce','order_note',0,0),(152,2705,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-05 09:28:19','2019-04-05 09:28:19','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(153,2706,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-06 20:53:15','2019-04-06 20:53:15','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(154,2706,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-06 20:53:15','2019-04-06 20:53:15','Stock levels reduced: The Secrets Of Being Happy Workshop (#2701) 9&rarr;8',0,'1','WooCommerce','order_note',0,0),(155,2706,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-06 20:53:15','2019-04-06 20:53:15','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(156,2708,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-09 20:15:52','2019-04-09 20:15:52','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(157,2709,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-09 20:58:55','2019-04-09 20:58:55','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(158,2709,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-09 20:58:55','2019-04-09 20:58:55','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(159,2710,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-09 21:40:27','2019-04-09 21:40:27','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(160,2710,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-09 21:40:28','2019-04-09 21:40:28','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(161,2735,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-15 10:35:28','2019-04-15 10:35:28','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(162,2735,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-15 10:35:28','2019-04-15 10:35:28','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(163,2766,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-22 16:11:26','2019-04-22 16:11:26','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(164,2794,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-22 18:05:47','2019-04-22 18:05:47','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(165,2794,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-22 18:05:48','2019-04-22 18:05:48','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(166,2806,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-24 20:27:39','2019-04-24 20:27:39','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(167,2806,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-24 20:27:39','2019-04-24 20:27:39','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(168,2807,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-25 12:50:09','2019-04-25 12:50:09','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(169,2808,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-28 19:59:07','2019-04-28 19:59:07','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(170,2811,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-29 22:39:06','2019-04-29 22:39:06','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(171,2811,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-29 22:39:06','2019-04-29 22:39:06','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(172,2809,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-30 00:37:31','2019-04-30 00:37:31','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(173,2810,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-30 00:37:31','2019-04-30 00:37:31','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(174,2812,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-04-30 15:09:18','2019-04-30 15:09:18','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(175,2838,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-05-06 16:57:46','2019-05-06 16:57:46','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(176,2838,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-05-06 16:57:47','2019-05-06 16:57:47','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(177,2843,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-05-08 10:11:25','2019-05-08 10:11:25','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(178,2843,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-05-08 10:11:25','2019-05-08 10:11:25','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(179,2844,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-05-09 21:56:30','2019-05-09 21:56:30','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(180,2844,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-05-09 21:56:30','2019-05-09 21:56:30','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(181,2864,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-05-15 20:21:55','2019-05-15 20:21:55','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(182,2864,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-05-15 20:21:55','2019-05-15 20:21:55','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(183,2920,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-05-20 08:27:59','2019-05-20 08:27:59','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(184,2920,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-05-20 08:27:59','2019-05-20 08:27:59','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(185,2936,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-05-29 17:19:53','2019-05-29 17:19:53','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(186,2936,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-05-29 17:19:53','2019-05-29 17:19:53','Stock levels reduced: Anxiety & Stress Workshop Booking Page (#2564) 10&rarr;8',0,'1','WooCommerce','order_note',0,0),(187,2936,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-05-29 17:19:53','2019-05-29 17:19:53','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(188,2976,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-06-02 19:45:14','2019-06-02 19:45:14','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(189,2976,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-06-02 19:45:14','2019-06-02 19:45:14','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(190,2978,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-06-02 23:43:42','2019-06-02 23:43:42','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(191,2978,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-06-02 23:43:42','2019-06-02 23:43:42','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(192,2979,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-06-03 08:46:51','2019-06-03 08:46:51','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(193,2979,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-06-03 08:46:51','2019-06-03 08:46:51','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(194,2980,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-06-03 15:04:49','2019-06-03 15:04:49','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(195,2980,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-06-03 15:04:49','2019-06-03 15:04:49','Stock levels reduced: Anxiety &amp; Stress Workshop Booking Page (#2564) 8&rarr;7',0,'1','WooCommerce','order_note',0,0),(196,2980,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-06-03 15:04:49','2019-06-03 15:04:49','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(197,2981,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-06-03 22:52:14','2019-06-03 22:52:14','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(198,2981,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-06-03 22:52:14','2019-06-03 22:52:14','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(199,2982,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-06-04 06:58:57','2019-06-04 06:58:57','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(200,2982,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-06-04 06:58:57','2019-06-04 06:58:57','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(201,2983,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-06-05 21:12:48','2019-06-05 21:12:48','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(202,2987,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-06-18 16:14:10','2019-06-18 16:14:10','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(203,3032,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-06-26 20:07:09','2019-06-26 20:07:09','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(204,3032,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-06-26 20:07:10','2019-06-26 20:07:10','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(205,3033,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-06-27 10:08:24','2019-06-27 10:08:24','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(206,3130,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-07-02 18:51:30','2019-07-02 18:51:30','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(207,3131,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-07-06 18:33:03','2019-07-06 18:33:03','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(208,3131,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-07-06 18:33:03','2019-07-06 18:33:03','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(209,3132,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-07-09 13:43:12','2019-07-09 13:43:12','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(210,3132,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-07-09 13:43:12','2019-07-09 13:43:12','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(211,3133,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-07-10 11:07:33','2019-07-10 11:07:33','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(212,3134,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-07-11 17:38:46','2019-07-11 17:38:46','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(213,3134,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-07-11 17:38:46','2019-07-11 17:38:46','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(214,3135,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-07-12 22:26:48','2019-07-12 22:26:48','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(215,3135,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-07-12 22:26:48','2019-07-12 22:26:48','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(216,3138,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-07-21 10:15:19','2019-07-21 10:15:19','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(217,3138,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-07-21 10:15:20','2019-07-21 10:15:20','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(218,3139,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-07-24 08:46:31','2019-07-24 08:46:31','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(219,3139,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-07-24 08:46:32','2019-07-24 08:46:32','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(220,3140,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-07-24 11:20:11','2019-07-24 11:20:11','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(221,3148,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-09-08 10:02:00','2019-09-08 10:02:00','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(222,3150,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-09-12 22:54:21','2019-09-12 22:54:21','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(223,3150,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-09-12 22:54:21','2019-09-12 22:54:21','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(224,3159,'ActionScheduler','','','','2019-09-13 12:39:10','2019-09-13 12:39:10','action created',0,'1','ActionScheduler','action_log',0,0),(225,3159,'ActionScheduler','','','','2019-09-13 12:39:45','2019-09-13 12:39:45','action started',0,'1','ActionScheduler','action_log',0,0),(226,3159,'ActionScheduler','','','','2019-09-13 12:39:45','2019-09-13 12:39:45','action complete',0,'1','ActionScheduler','action_log',0,0),(227,3160,'ActionScheduler','','','','2019-09-13 12:40:48','2019-09-13 12:40:48','action created',0,'1','ActionScheduler','action_log',0,0),(228,3161,'ActionScheduler','','','','2019-09-13 12:40:48','2019-09-13 12:40:48','action created',0,'1','ActionScheduler','action_log',0,0),(229,3162,'ActionScheduler','','','','2019-09-13 12:40:48','2019-09-13 12:40:48','action created',0,'1','ActionScheduler','action_log',0,0),(230,3163,'ActionScheduler','','','','2019-09-13 12:40:48','2019-09-13 12:40:48','action created',0,'1','ActionScheduler','action_log',0,0),(231,3164,'ActionScheduler','','','','2019-09-13 12:40:48','2019-09-13 12:40:48','action created',0,'1','ActionScheduler','action_log',0,0),(232,3165,'ActionScheduler','','','','2019-09-13 12:40:48','2019-09-13 12:40:48','action created',0,'1','ActionScheduler','action_log',0,0),(233,3166,'ActionScheduler','','','','2019-09-13 12:40:48','2019-09-13 12:40:48','action created',0,'1','ActionScheduler','action_log',0,0),(234,3167,'ActionScheduler','','','','2019-09-13 12:40:48','2019-09-13 12:40:48','action created',0,'1','ActionScheduler','action_log',0,0),(235,3168,'ActionScheduler','','','','2019-09-13 12:40:48','2019-09-13 12:40:48','action created',0,'1','ActionScheduler','action_log',0,0),(236,3169,'ActionScheduler','','','','2019-09-13 12:41:33','2019-09-13 12:41:33','action created',0,'1','ActionScheduler','action_log',0,0),(237,3160,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action started',0,'1','ActionScheduler','action_log',0,0),(238,3160,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action complete',0,'1','ActionScheduler','action_log',0,0),(239,3161,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action started',0,'1','ActionScheduler','action_log',0,0),(240,3161,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action complete',0,'1','ActionScheduler','action_log',0,0),(241,3162,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action started',0,'1','ActionScheduler','action_log',0,0),(242,3170,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action created',0,'1','ActionScheduler','action_log',0,0),(243,3171,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action created',0,'1','ActionScheduler','action_log',0,0),(244,3172,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action created',0,'1','ActionScheduler','action_log',0,0),(245,3173,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action created',0,'1','ActionScheduler','action_log',0,0),(246,3174,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action created',0,'1','ActionScheduler','action_log',0,0),(247,3175,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action created',0,'1','ActionScheduler','action_log',0,0),(248,3176,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action created',0,'1','ActionScheduler','action_log',0,0),(249,3177,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action created',0,'1','ActionScheduler','action_log',0,0),(250,3178,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action created',0,'1','ActionScheduler','action_log',0,0),(251,3179,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action created',0,'1','ActionScheduler','action_log',0,0),(252,3162,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action complete',0,'1','ActionScheduler','action_log',0,0),(253,3163,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action started',0,'1','ActionScheduler','action_log',0,0),(254,3163,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action complete',0,'1','ActionScheduler','action_log',0,0),(255,3164,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action started',0,'1','ActionScheduler','action_log',0,0),(256,3164,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action complete',0,'1','ActionScheduler','action_log',0,0),(257,3165,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action started',0,'1','ActionScheduler','action_log',0,0),(258,3165,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action complete',0,'1','ActionScheduler','action_log',0,0),(259,3166,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action started',0,'1','ActionScheduler','action_log',0,0),(260,3166,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action complete',0,'1','ActionScheduler','action_log',0,0),(261,3167,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action started',0,'1','ActionScheduler','action_log',0,0),(262,3167,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action complete',0,'1','ActionScheduler','action_log',0,0),(263,3168,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action started',0,'1','ActionScheduler','action_log',0,0),(264,3168,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action complete',0,'1','ActionScheduler','action_log',0,0),(265,3169,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action started',0,'1','ActionScheduler','action_log',0,0),(266,3169,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action complete',0,'1','ActionScheduler','action_log',0,0),(267,3180,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action created',0,'1','ActionScheduler','action_log',0,0),(268,3170,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action started',0,'1','ActionScheduler','action_log',0,0),(269,3170,'ActionScheduler','','','','2019-09-13 12:41:39','2019-09-13 12:41:39','action complete',0,'1','ActionScheduler','action_log',0,0),(270,3171,'ActionScheduler','','','','2019-09-13 12:42:45','2019-09-13 12:42:45','action started',0,'1','ActionScheduler','action_log',0,0),(271,3171,'ActionScheduler','','','','2019-09-13 12:42:45','2019-09-13 12:42:45','action complete',0,'1','ActionScheduler','action_log',0,0),(272,3172,'ActionScheduler','','','','2019-09-13 12:42:45','2019-09-13 12:42:45','action started',0,'1','ActionScheduler','action_log',0,0),(273,3172,'ActionScheduler','','','','2019-09-13 12:42:45','2019-09-13 12:42:45','action complete',0,'1','ActionScheduler','action_log',0,0),(274,3173,'ActionScheduler','','','','2019-09-13 12:42:45','2019-09-13 12:42:45','action started',0,'1','ActionScheduler','action_log',0,0),(275,3173,'ActionScheduler','','','','2019-09-13 12:42:45','2019-09-13 12:42:45','action complete',0,'1','ActionScheduler','action_log',0,0),(276,3174,'ActionScheduler','','','','2019-09-13 12:42:45','2019-09-13 12:42:45','action started',0,'1','ActionScheduler','action_log',0,0),(277,3174,'ActionScheduler','','','','2019-09-13 12:42:45','2019-09-13 12:42:45','action complete',0,'1','ActionScheduler','action_log',0,0),(278,3175,'ActionScheduler','','','','2019-09-13 12:42:45','2019-09-13 12:42:45','action started',0,'1','ActionScheduler','action_log',0,0),(279,3175,'ActionScheduler','','','','2019-09-13 12:42:45','2019-09-13 12:42:45','action complete',0,'1','ActionScheduler','action_log',0,0),(280,3176,'ActionScheduler','','','','2019-09-13 12:42:45','2019-09-13 12:42:45','action started',0,'1','ActionScheduler','action_log',0,0),(281,3176,'ActionScheduler','','','','2019-09-13 12:42:45','2019-09-13 12:42:45','action complete',0,'1','ActionScheduler','action_log',0,0),(282,3177,'ActionScheduler','','','','2019-09-13 12:42:45','2019-09-13 12:42:45','action started',0,'1','ActionScheduler','action_log',0,0),(283,3177,'ActionScheduler','','','','2019-09-13 12:42:45','2019-09-13 12:42:45','action complete',0,'1','ActionScheduler','action_log',0,0),(284,3178,'ActionScheduler','','','','2019-09-13 12:42:45','2019-09-13 12:42:45','action started',0,'1','ActionScheduler','action_log',0,0),(285,3178,'ActionScheduler','','','','2019-09-13 12:42:45','2019-09-13 12:42:45','action complete',0,'1','ActionScheduler','action_log',0,0),(286,3179,'ActionScheduler','','','','2019-09-13 12:42:45','2019-09-13 12:42:45','action started',0,'1','ActionScheduler','action_log',0,0),(287,3179,'ActionScheduler','','','','2019-09-13 12:42:45','2019-09-13 12:42:45','action complete',0,'1','ActionScheduler','action_log',0,0),(288,3180,'ActionScheduler','','','','2019-09-13 13:42:00','2019-09-13 13:42:00','action started',0,'1','ActionScheduler','action_log',0,0),(289,3180,'ActionScheduler','','','','2019-09-13 13:42:00','2019-09-13 13:42:00','action complete',0,'1','ActionScheduler','action_log',0,0),(290,3192,'ActionScheduler','','','','2019-09-13 13:42:00','2019-09-13 13:42:00','action created',0,'1','ActionScheduler','action_log',0,0),(291,3198,'ActionScheduler','','','','2019-09-13 14:09:13','2019-09-13 14:09:13','action created',0,'1','ActionScheduler','action_log',0,0),(292,3197,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-09-13 14:09:13','2019-09-13 14:09:13','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(293,3198,'ActionScheduler','','','','2019-09-13 14:10:10','2019-09-13 14:10:10','action started',0,'1','ActionScheduler','action_log',0,0),(294,3198,'ActionScheduler','','','','2019-09-13 14:10:10','2019-09-13 14:10:10','action complete',0,'1','ActionScheduler','action_log',0,0),(295,3192,'ActionScheduler','','','','2019-09-13 14:43:00','2019-09-13 14:43:00','action started',0,'1','ActionScheduler','action_log',0,0),(296,3192,'ActionScheduler','','','','2019-09-13 14:43:00','2019-09-13 14:43:00','action complete',0,'1','ActionScheduler','action_log',0,0),(297,3199,'ActionScheduler','','','','2019-09-13 14:43:00','2019-09-13 14:43:00','action created',0,'1','ActionScheduler','action_log',0,0),(298,3199,'ActionScheduler','','','','2019-09-13 15:45:56','2019-09-13 15:45:56','action started',0,'1','ActionScheduler','action_log',0,0),(299,3199,'ActionScheduler','','','','2019-09-13 15:45:56','2019-09-13 15:45:56','action complete',0,'1','ActionScheduler','action_log',0,0),(300,3202,'ActionScheduler','','','','2019-09-13 15:45:56','2019-09-13 15:45:56','action created',0,'1','ActionScheduler','action_log',0,0),(301,3202,'ActionScheduler','','','','2019-09-13 16:46:44','2019-09-13 16:46:44','action started',0,'1','ActionScheduler','action_log',0,0),(302,3202,'ActionScheduler','','','','2019-09-13 16:46:44','2019-09-13 16:46:44','action complete',0,'1','ActionScheduler','action_log',0,0),(303,3203,'ActionScheduler','','','','2019-09-13 16:46:44','2019-09-13 16:46:44','action created',0,'1','ActionScheduler','action_log',0,0),(304,3203,'ActionScheduler','','','','2019-09-13 17:46:44','2019-09-13 17:46:44','action started',0,'1','ActionScheduler','action_log',0,0),(305,3203,'ActionScheduler','','','','2019-09-13 17:46:44','2019-09-13 17:46:44','action complete',0,'1','ActionScheduler','action_log',0,0),(306,3204,'ActionScheduler','','','','2019-09-13 17:46:44','2019-09-13 17:46:44','action created',0,'1','ActionScheduler','action_log',0,0),(307,3204,'ActionScheduler','','','','2019-09-13 18:48:55','2019-09-13 18:48:55','action started',0,'1','ActionScheduler','action_log',0,0),(308,3204,'ActionScheduler','','','','2019-09-13 18:48:55','2019-09-13 18:48:55','action complete',0,'1','ActionScheduler','action_log',0,0),(309,3205,'ActionScheduler','','','','2019-09-13 18:48:55','2019-09-13 18:48:55','action created',0,'1','ActionScheduler','action_log',0,0),(310,3205,'ActionScheduler','','','','2019-09-13 20:05:29','2019-09-13 20:05:29','action started',0,'1','ActionScheduler','action_log',0,0),(311,3205,'ActionScheduler','','','','2019-09-13 20:05:29','2019-09-13 20:05:29','action complete',0,'1','ActionScheduler','action_log',0,0),(312,3206,'ActionScheduler','','','','2019-09-13 20:05:29','2019-09-13 20:05:29','action created',0,'1','ActionScheduler','action_log',0,0),(313,3206,'ActionScheduler','','','','2019-09-13 21:07:50','2019-09-13 21:07:50','action started',0,'1','ActionScheduler','action_log',0,0),(314,3206,'ActionScheduler','','','','2019-09-13 21:07:50','2019-09-13 21:07:50','action complete',0,'1','ActionScheduler','action_log',0,0),(315,3207,'ActionScheduler','','','','2019-09-13 21:07:50','2019-09-13 21:07:50','action created',0,'1','ActionScheduler','action_log',0,0),(316,3209,'ActionScheduler','','','','2019-09-13 21:15:06','2019-09-13 21:15:06','action created',0,'1','ActionScheduler','action_log',0,0),(317,3209,'ActionScheduler','','','','2019-09-13 21:15:58','2019-09-13 21:15:58','action started',0,'1','ActionScheduler','action_log',0,0),(318,3209,'ActionScheduler','','','','2019-09-13 21:15:58','2019-09-13 21:15:58','action complete',0,'1','ActionScheduler','action_log',0,0),(319,3208,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-09-13 21:16:00','2019-09-13 21:16:00','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(320,3210,'ActionScheduler','','','','2019-09-13 21:16:00','2019-09-13 21:16:00','action created',0,'1','ActionScheduler','action_log',0,0),(321,3208,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-09-13 21:16:00','2019-09-13 21:16:00','Stock levels reduced: Anxiety &amp; Stress Workshop Booking Page (#2564) 14&rarr;13, Self-Confidence Workshop (#2628) 17&rarr;16',0,'1','WooCommerce','order_note',0,0),(322,3208,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-09-13 21:16:00','2019-09-13 21:16:00','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(323,3210,'ActionScheduler','','','','2019-09-13 21:17:53','2019-09-13 21:17:53','action started',0,'1','ActionScheduler','action_log',0,0),(324,3210,'ActionScheduler','','','','2019-09-13 21:17:53','2019-09-13 21:17:53','action complete',0,'1','ActionScheduler','action_log',0,0),(325,3207,'ActionScheduler','','','','2019-09-13 22:44:15','2019-09-13 22:44:15','action started',0,'1','ActionScheduler','action_log',0,0),(326,3207,'ActionScheduler','','','','2019-09-13 22:44:15','2019-09-13 22:44:15','action complete',0,'1','ActionScheduler','action_log',0,0),(327,3211,'ActionScheduler','','','','2019-09-13 22:44:15','2019-09-13 22:44:15','action created',0,'1','ActionScheduler','action_log',0,0),(328,3211,'ActionScheduler','','','','2019-09-13 23:44:22','2019-09-13 23:44:22','action started',0,'1','ActionScheduler','action_log',0,0),(329,3211,'ActionScheduler','','','','2019-09-13 23:44:22','2019-09-13 23:44:22','action complete',0,'1','ActionScheduler','action_log',0,0),(330,3212,'ActionScheduler','','','','2019-09-13 23:44:23','2019-09-13 23:44:23','action created',0,'1','ActionScheduler','action_log',0,0),(331,3212,'ActionScheduler','','','','2019-09-14 01:05:02','2019-09-14 01:05:02','action started',0,'1','ActionScheduler','action_log',0,0),(332,3212,'ActionScheduler','','','','2019-09-14 01:05:02','2019-09-14 01:05:02','action complete',0,'1','ActionScheduler','action_log',0,0),(333,3213,'ActionScheduler','','','','2019-09-14 01:05:02','2019-09-14 01:05:02','action created',0,'1','ActionScheduler','action_log',0,0),(334,3213,'ActionScheduler','','','','2019-09-14 02:17:20','2019-09-14 02:17:20','action started',0,'1','ActionScheduler','action_log',0,0),(335,3213,'ActionScheduler','','','','2019-09-14 02:17:20','2019-09-14 02:17:20','action complete',0,'1','ActionScheduler','action_log',0,0),(336,3214,'ActionScheduler','','','','2019-09-14 02:17:20','2019-09-14 02:17:20','action created',0,'1','ActionScheduler','action_log',0,0),(337,3214,'ActionScheduler','','','','2019-09-14 03:32:25','2019-09-14 03:32:25','action started',0,'1','ActionScheduler','action_log',0,0),(338,3214,'ActionScheduler','','','','2019-09-14 03:32:25','2019-09-14 03:32:25','action complete',0,'1','ActionScheduler','action_log',0,0),(339,3215,'ActionScheduler','','','','2019-09-14 03:32:25','2019-09-14 03:32:25','action created',0,'1','ActionScheduler','action_log',0,0),(340,3215,'ActionScheduler','','','','2019-09-14 04:57:28','2019-09-14 04:57:28','action started',0,'1','ActionScheduler','action_log',0,0),(341,3215,'ActionScheduler','','','','2019-09-14 04:57:28','2019-09-14 04:57:28','action complete',0,'1','ActionScheduler','action_log',0,0),(342,3216,'ActionScheduler','','','','2019-09-14 04:57:28','2019-09-14 04:57:28','action created',0,'1','ActionScheduler','action_log',0,0),(343,3216,'ActionScheduler','','','','2019-09-14 06:11:32','2019-09-14 06:11:32','action started',0,'1','ActionScheduler','action_log',0,0),(344,3216,'ActionScheduler','','','','2019-09-14 06:11:32','2019-09-14 06:11:32','action complete',0,'1','ActionScheduler','action_log',0,0),(345,3217,'ActionScheduler','','','','2019-09-14 06:11:32','2019-09-14 06:11:32','action created',0,'1','ActionScheduler','action_log',0,0),(346,3217,'ActionScheduler','','','','2019-09-14 07:22:10','2019-09-14 07:22:10','action started',0,'1','ActionScheduler','action_log',0,0),(347,3217,'ActionScheduler','','','','2019-09-14 07:22:10','2019-09-14 07:22:10','action complete',0,'1','ActionScheduler','action_log',0,0),(348,3218,'ActionScheduler','','','','2019-09-14 07:22:10','2019-09-14 07:22:10','action created',0,'1','ActionScheduler','action_log',0,0),(349,3218,'ActionScheduler','','','','2019-09-14 08:25:06','2019-09-14 08:25:06','action started',0,'1','ActionScheduler','action_log',0,0),(350,3218,'ActionScheduler','','','','2019-09-14 08:25:06','2019-09-14 08:25:06','action complete',0,'1','ActionScheduler','action_log',0,0),(351,3219,'ActionScheduler','','','','2019-09-14 08:25:06','2019-09-14 08:25:06','action created',0,'1','ActionScheduler','action_log',0,0),(352,3219,'ActionScheduler','','','','2019-09-14 09:33:38','2019-09-14 09:33:38','action started',0,'1','ActionScheduler','action_log',0,0),(353,3219,'ActionScheduler','','','','2019-09-14 09:33:38','2019-09-14 09:33:38','action complete',0,'1','ActionScheduler','action_log',0,0),(354,3220,'ActionScheduler','','','','2019-09-14 09:33:38','2019-09-14 09:33:38','action created',0,'1','ActionScheduler','action_log',0,0),(355,3220,'ActionScheduler','','','','2019-09-14 10:58:13','2019-09-14 10:58:13','action started',0,'1','ActionScheduler','action_log',0,0),(356,3220,'ActionScheduler','','','','2019-09-14 10:58:13','2019-09-14 10:58:13','action complete',0,'1','ActionScheduler','action_log',0,0),(357,3221,'ActionScheduler','','','','2019-09-14 10:58:14','2019-09-14 10:58:14','action created',0,'1','ActionScheduler','action_log',0,0),(358,3221,'ActionScheduler','','','','2019-09-14 11:58:41','2019-09-14 11:58:41','action started',0,'1','ActionScheduler','action_log',0,0),(359,3221,'ActionScheduler','','','','2019-09-14 11:58:41','2019-09-14 11:58:41','action complete',0,'1','ActionScheduler','action_log',0,0),(360,3222,'ActionScheduler','','','','2019-09-14 11:58:41','2019-09-14 11:58:41','action created',0,'1','ActionScheduler','action_log',0,0),(361,3222,'ActionScheduler','','','','2019-09-14 13:14:16','2019-09-14 13:14:16','action started',0,'1','ActionScheduler','action_log',0,0),(362,3222,'ActionScheduler','','','','2019-09-14 13:14:16','2019-09-14 13:14:16','action complete',0,'1','ActionScheduler','action_log',0,0),(363,3223,'ActionScheduler','','','','2019-09-14 13:14:16','2019-09-14 13:14:16','action created',0,'1','ActionScheduler','action_log',0,0),(364,3225,'ActionScheduler','','','','2019-09-14 13:30:09','2019-09-14 13:30:09','action created',0,'1','ActionScheduler','action_log',0,0),(365,3224,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-09-14 13:30:10','2019-09-14 13:30:10','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(366,3225,'ActionScheduler','','','','2019-09-14 13:30:41','2019-09-14 13:30:41','action started',0,'1','ActionScheduler','action_log',0,0),(367,3225,'ActionScheduler','','','','2019-09-14 13:30:41','2019-09-14 13:30:41','action complete',0,'1','ActionScheduler','action_log',0,0),(368,3227,'ActionScheduler','','','','2019-09-14 13:31:48','2019-09-14 13:31:48','action created',0,'1','ActionScheduler','action_log',0,0),(369,3227,'ActionScheduler','','','','2019-09-14 13:32:58','2019-09-14 13:32:58','action started',0,'1','ActionScheduler','action_log',0,0),(370,3227,'ActionScheduler','','','','2019-09-14 13:32:58','2019-09-14 13:32:58','action complete',0,'1','ActionScheduler','action_log',0,0),(371,3226,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-09-14 13:33:01','2019-09-14 13:33:01','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(372,3228,'ActionScheduler','','','','2019-09-14 13:33:01','2019-09-14 13:33:01','action created',0,'1','ActionScheduler','action_log',0,0),(373,3226,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-09-14 13:33:01','2019-09-14 13:33:01','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(374,3228,'ActionScheduler','','','','2019-09-14 13:33:48','2019-09-14 13:33:48','action started',0,'1','ActionScheduler','action_log',0,0),(375,3228,'ActionScheduler','','','','2019-09-14 13:33:48','2019-09-14 13:33:48','action complete',0,'1','ActionScheduler','action_log',0,0),(376,3223,'ActionScheduler','','','','2019-09-14 14:15:13','2019-09-14 14:15:13','action started',0,'1','ActionScheduler','action_log',0,0),(377,3223,'ActionScheduler','','','','2019-09-14 14:15:13','2019-09-14 14:15:13','action complete',0,'1','ActionScheduler','action_log',0,0),(378,3229,'ActionScheduler','','','','2019-09-14 14:15:13','2019-09-14 14:15:13','action created',0,'1','ActionScheduler','action_log',0,0),(379,3229,'ActionScheduler','','','','2019-09-14 15:16:08','2019-09-14 15:16:08','action started',0,'1','ActionScheduler','action_log',0,0),(380,3229,'ActionScheduler','','','','2019-09-14 15:16:08','2019-09-14 15:16:08','action complete',0,'1','ActionScheduler','action_log',0,0),(381,3230,'ActionScheduler','','','','2019-09-14 15:16:08','2019-09-14 15:16:08','action created',0,'1','ActionScheduler','action_log',0,0),(382,3230,'ActionScheduler','','','','2019-09-14 16:27:50','2019-09-14 16:27:50','action started',0,'1','ActionScheduler','action_log',0,0),(383,3230,'ActionScheduler','','','','2019-09-14 16:27:50','2019-09-14 16:27:50','action complete',0,'1','ActionScheduler','action_log',0,0),(384,3231,'ActionScheduler','','','','2019-09-14 16:27:50','2019-09-14 16:27:50','action created',0,'1','ActionScheduler','action_log',0,0),(385,3231,'ActionScheduler','','','','2019-09-14 17:30:28','2019-09-14 17:30:28','action started',0,'1','ActionScheduler','action_log',0,0),(386,3231,'ActionScheduler','','','','2019-09-14 17:30:28','2019-09-14 17:30:28','action complete',0,'1','ActionScheduler','action_log',0,0),(387,3232,'ActionScheduler','','','','2019-09-14 17:30:28','2019-09-14 17:30:28','action created',0,'1','ActionScheduler','action_log',0,0),(388,3232,'ActionScheduler','','','','2019-09-14 18:35:57','2019-09-14 18:35:57','action started',0,'1','ActionScheduler','action_log',0,0),(389,3232,'ActionScheduler','','','','2019-09-14 18:35:57','2019-09-14 18:35:57','action complete',0,'1','ActionScheduler','action_log',0,0),(390,3233,'ActionScheduler','','','','2019-09-14 18:35:57','2019-09-14 18:35:57','action created',0,'1','ActionScheduler','action_log',0,0),(391,3233,'ActionScheduler','','','','2019-09-14 19:38:22','2019-09-14 19:38:22','action started',0,'1','ActionScheduler','action_log',0,0),(392,3233,'ActionScheduler','','','','2019-09-14 19:38:22','2019-09-14 19:38:22','action complete',0,'1','ActionScheduler','action_log',0,0),(393,3234,'ActionScheduler','','','','2019-09-14 19:38:22','2019-09-14 19:38:22','action created',0,'1','ActionScheduler','action_log',0,0),(394,3234,'ActionScheduler','','','','2019-09-14 20:42:28','2019-09-14 20:42:28','action started',0,'1','ActionScheduler','action_log',0,0),(395,3234,'ActionScheduler','','','','2019-09-14 20:42:28','2019-09-14 20:42:28','action complete',0,'1','ActionScheduler','action_log',0,0),(396,3235,'ActionScheduler','','','','2019-09-14 20:42:28','2019-09-14 20:42:28','action created',0,'1','ActionScheduler','action_log',0,0),(397,3235,'ActionScheduler','','','','2019-09-14 21:45:21','2019-09-14 21:45:21','action started',0,'1','ActionScheduler','action_log',0,0),(398,3235,'ActionScheduler','','','','2019-09-14 21:45:21','2019-09-14 21:45:21','action complete',0,'1','ActionScheduler','action_log',0,0),(399,3236,'ActionScheduler','','','','2019-09-14 21:45:21','2019-09-14 21:45:21','action created',0,'1','ActionScheduler','action_log',0,0),(400,3236,'ActionScheduler','','','','2019-09-14 22:48:48','2019-09-14 22:48:48','action started',0,'1','ActionScheduler','action_log',0,0),(401,3236,'ActionScheduler','','','','2019-09-14 22:48:48','2019-09-14 22:48:48','action complete',0,'1','ActionScheduler','action_log',0,0),(402,3237,'ActionScheduler','','','','2019-09-14 22:48:48','2019-09-14 22:48:48','action created',0,'1','ActionScheduler','action_log',0,0),(403,3237,'ActionScheduler','','','','2019-09-14 23:52:44','2019-09-14 23:52:44','action started',0,'1','ActionScheduler','action_log',0,0),(404,3237,'ActionScheduler','','','','2019-09-14 23:52:44','2019-09-14 23:52:44','action complete',0,'1','ActionScheduler','action_log',0,0),(405,3238,'ActionScheduler','','','','2019-09-14 23:52:44','2019-09-14 23:52:44','action created',0,'1','ActionScheduler','action_log',0,0),(406,3238,'ActionScheduler','','','','2019-09-15 00:53:06','2019-09-15 00:53:06','action started',0,'1','ActionScheduler','action_log',0,0),(407,3238,'ActionScheduler','','','','2019-09-15 00:53:06','2019-09-15 00:53:06','action complete',0,'1','ActionScheduler','action_log',0,0),(408,3239,'ActionScheduler','','','','2019-09-15 00:53:06','2019-09-15 00:53:06','action created',0,'1','ActionScheduler','action_log',0,0),(409,3239,'ActionScheduler','','','','2019-09-15 01:53:42','2019-09-15 01:53:42','action started',0,'1','ActionScheduler','action_log',0,0),(410,3239,'ActionScheduler','','','','2019-09-15 01:53:42','2019-09-15 01:53:42','action complete',0,'1','ActionScheduler','action_log',0,0),(411,3240,'ActionScheduler','','','','2019-09-15 01:53:42','2019-09-15 01:53:42','action created',0,'1','ActionScheduler','action_log',0,0),(412,3240,'ActionScheduler','','','','2019-09-15 02:58:29','2019-09-15 02:58:29','action started',0,'1','ActionScheduler','action_log',0,0),(413,3240,'ActionScheduler','','','','2019-09-15 02:58:29','2019-09-15 02:58:29','action complete',0,'1','ActionScheduler','action_log',0,0),(414,3241,'ActionScheduler','','','','2019-09-15 02:58:29','2019-09-15 02:58:29','action created',0,'1','ActionScheduler','action_log',0,0),(415,3241,'ActionScheduler','','','','2019-09-15 04:33:39','2019-09-15 04:33:39','action started',0,'1','ActionScheduler','action_log',0,0),(416,3241,'ActionScheduler','','','','2019-09-15 04:33:39','2019-09-15 04:33:39','action complete',0,'1','ActionScheduler','action_log',0,0),(417,3242,'ActionScheduler','','','','2019-09-15 04:33:39','2019-09-15 04:33:39','action created',0,'1','ActionScheduler','action_log',0,0),(418,3242,'ActionScheduler','','','','2019-09-15 05:48:44','2019-09-15 05:48:44','action started',0,'1','ActionScheduler','action_log',0,0),(419,3242,'ActionScheduler','','','','2019-09-15 05:48:44','2019-09-15 05:48:44','action complete',0,'1','ActionScheduler','action_log',0,0),(420,3243,'ActionScheduler','','','','2019-09-15 05:48:44','2019-09-15 05:48:44','action created',0,'1','ActionScheduler','action_log',0,0),(421,3243,'ActionScheduler','','','','2019-09-15 07:00:37','2019-09-15 07:00:37','action started',0,'1','ActionScheduler','action_log',0,0),(422,3243,'ActionScheduler','','','','2019-09-15 07:00:37','2019-09-15 07:00:37','action complete',0,'1','ActionScheduler','action_log',0,0),(423,3244,'ActionScheduler','','','','2019-09-15 07:00:37','2019-09-15 07:00:37','action created',0,'1','ActionScheduler','action_log',0,0),(424,3244,'ActionScheduler','','','','2019-09-15 08:01:58','2019-09-15 08:01:58','action started',0,'1','ActionScheduler','action_log',0,0),(425,3244,'ActionScheduler','','','','2019-09-15 08:01:58','2019-09-15 08:01:58','action complete',0,'1','ActionScheduler','action_log',0,0),(426,3245,'ActionScheduler','','','','2019-09-15 08:01:58','2019-09-15 08:01:58','action created',0,'1','ActionScheduler','action_log',0,0),(427,3245,'ActionScheduler','','','','2019-09-15 09:12:01','2019-09-15 09:12:01','action started',0,'1','ActionScheduler','action_log',0,0),(428,3245,'ActionScheduler','','','','2019-09-15 09:12:01','2019-09-15 09:12:01','action complete',0,'1','ActionScheduler','action_log',0,0),(429,3246,'ActionScheduler','','','','2019-09-15 09:12:01','2019-09-15 09:12:01','action created',0,'1','ActionScheduler','action_log',0,0),(430,3246,'ActionScheduler','','','','2019-09-15 10:15:05','2019-09-15 10:15:05','action started',0,'1','ActionScheduler','action_log',0,0),(431,3246,'ActionScheduler','','','','2019-09-15 10:15:05','2019-09-15 10:15:05','action complete',0,'1','ActionScheduler','action_log',0,0),(432,3247,'ActionScheduler','','','','2019-09-15 10:15:05','2019-09-15 10:15:05','action created',0,'1','ActionScheduler','action_log',0,0),(433,3247,'ActionScheduler','','','','2019-09-15 11:19:17','2019-09-15 11:19:17','action started',0,'1','ActionScheduler','action_log',0,0),(434,3247,'ActionScheduler','','','','2019-09-15 11:19:17','2019-09-15 11:19:17','action complete',0,'1','ActionScheduler','action_log',0,0),(435,3248,'ActionScheduler','','','','2019-09-15 11:19:17','2019-09-15 11:19:17','action created',0,'1','ActionScheduler','action_log',0,0),(436,3248,'ActionScheduler','','','','2019-09-15 12:20:34','2019-09-15 12:20:34','action started',0,'1','ActionScheduler','action_log',0,0),(437,3248,'ActionScheduler','','','','2019-09-15 12:20:34','2019-09-15 12:20:34','action complete',0,'1','ActionScheduler','action_log',0,0),(438,3249,'ActionScheduler','','','','2019-09-15 12:20:34','2019-09-15 12:20:34','action created',0,'1','ActionScheduler','action_log',0,0),(439,3249,'ActionScheduler','','','','2019-09-15 13:26:23','2019-09-15 13:26:23','action started',0,'1','ActionScheduler','action_log',0,0),(440,3249,'ActionScheduler','','','','2019-09-15 13:26:23','2019-09-15 13:26:23','action complete',0,'1','ActionScheduler','action_log',0,0),(441,3250,'ActionScheduler','','','','2019-09-15 13:26:23','2019-09-15 13:26:23','action created',0,'1','ActionScheduler','action_log',0,0),(442,3250,'ActionScheduler','','','','2019-09-15 14:31:11','2019-09-15 14:31:11','action started',0,'1','ActionScheduler','action_log',0,0),(443,3250,'ActionScheduler','','','','2019-09-15 14:31:11','2019-09-15 14:31:11','action complete',0,'1','ActionScheduler','action_log',0,0),(444,3251,'ActionScheduler','','','','2019-09-15 14:31:11','2019-09-15 14:31:11','action created',0,'1','ActionScheduler','action_log',0,0),(445,3251,'ActionScheduler','','','','2019-09-15 15:48:40','2019-09-15 15:48:40','action started',0,'1','ActionScheduler','action_log',0,0),(446,3251,'ActionScheduler','','','','2019-09-15 15:48:40','2019-09-15 15:48:40','action complete',0,'1','ActionScheduler','action_log',0,0),(447,3252,'ActionScheduler','','','','2019-09-15 15:48:40','2019-09-15 15:48:40','action created',0,'1','ActionScheduler','action_log',0,0),(448,3252,'ActionScheduler','','','','2019-09-15 16:55:45','2019-09-15 16:55:45','action started',0,'1','ActionScheduler','action_log',0,0),(449,3252,'ActionScheduler','','','','2019-09-15 16:55:45','2019-09-15 16:55:45','action complete',0,'1','ActionScheduler','action_log',0,0),(450,3253,'ActionScheduler','','','','2019-09-15 16:55:45','2019-09-15 16:55:45','action created',0,'1','ActionScheduler','action_log',0,0),(451,3253,'ActionScheduler','','','','2019-09-15 17:56:07','2019-09-15 17:56:07','action started',0,'1','ActionScheduler','action_log',0,0),(452,3253,'ActionScheduler','','','','2019-09-15 17:56:07','2019-09-15 17:56:07','action complete',0,'1','ActionScheduler','action_log',0,0),(453,3254,'ActionScheduler','','','','2019-09-15 17:56:07','2019-09-15 17:56:07','action created',0,'1','ActionScheduler','action_log',0,0),(454,3254,'ActionScheduler','','','','2019-09-15 18:59:35','2019-09-15 18:59:35','action started',0,'1','ActionScheduler','action_log',0,0),(455,3254,'ActionScheduler','','','','2019-09-15 18:59:35','2019-09-15 18:59:35','action complete',0,'1','ActionScheduler','action_log',0,0),(456,3255,'ActionScheduler','','','','2019-09-15 18:59:35','2019-09-15 18:59:35','action created',0,'1','ActionScheduler','action_log',0,0),(457,3255,'ActionScheduler','','','','2019-09-15 20:03:14','2019-09-15 20:03:14','action started',0,'1','ActionScheduler','action_log',0,0),(458,3255,'ActionScheduler','','','','2019-09-15 20:03:14','2019-09-15 20:03:14','action complete',0,'1','ActionScheduler','action_log',0,0),(459,3256,'ActionScheduler','','','','2019-09-15 20:03:14','2019-09-15 20:03:14','action created',0,'1','ActionScheduler','action_log',0,0),(460,3256,'ActionScheduler','','','','2019-09-15 21:05:18','2019-09-15 21:05:18','action started',0,'1','ActionScheduler','action_log',0,0),(461,3256,'ActionScheduler','','','','2019-09-15 21:05:18','2019-09-15 21:05:18','action complete',0,'1','ActionScheduler','action_log',0,0),(462,3257,'ActionScheduler','','','','2019-09-15 21:05:18','2019-09-15 21:05:18','action created',0,'1','ActionScheduler','action_log',0,0),(463,3257,'ActionScheduler','','','','2019-09-15 22:09:41','2019-09-15 22:09:41','action started',0,'1','ActionScheduler','action_log',0,0),(464,3257,'ActionScheduler','','','','2019-09-15 22:09:41','2019-09-15 22:09:41','action complete',0,'1','ActionScheduler','action_log',0,0),(465,3258,'ActionScheduler','','','','2019-09-15 22:09:41','2019-09-15 22:09:41','action created',0,'1','ActionScheduler','action_log',0,0),(466,3258,'ActionScheduler','','','','2019-09-15 23:23:35','2019-09-15 23:23:35','action started',0,'1','ActionScheduler','action_log',0,0),(467,3258,'ActionScheduler','','','','2019-09-15 23:23:35','2019-09-15 23:23:35','action complete',0,'1','ActionScheduler','action_log',0,0),(468,3259,'ActionScheduler','','','','2019-09-15 23:23:35','2019-09-15 23:23:35','action created',0,'1','ActionScheduler','action_log',0,0),(469,3259,'ActionScheduler','','','','2019-09-16 00:28:57','2019-09-16 00:28:57','action started',0,'1','ActionScheduler','action_log',0,0),(470,3259,'ActionScheduler','','','','2019-09-16 00:28:57','2019-09-16 00:28:57','action complete',0,'1','ActionScheduler','action_log',0,0),(471,3260,'ActionScheduler','','','','2019-09-16 00:28:57','2019-09-16 00:28:57','action created',0,'1','ActionScheduler','action_log',0,0),(472,3260,'ActionScheduler','','','','2019-09-16 01:29:39','2019-09-16 01:29:39','action started',0,'1','ActionScheduler','action_log',0,0),(473,3260,'ActionScheduler','','','','2019-09-16 01:29:39','2019-09-16 01:29:39','action complete',0,'1','ActionScheduler','action_log',0,0),(474,3261,'ActionScheduler','','','','2019-09-16 01:29:39','2019-09-16 01:29:39','action created',0,'1','ActionScheduler','action_log',0,0),(475,3261,'ActionScheduler','','','','2019-09-16 02:48:19','2019-09-16 02:48:19','action started',0,'1','ActionScheduler','action_log',0,0),(476,3261,'ActionScheduler','','','','2019-09-16 02:48:19','2019-09-16 02:48:19','action complete',0,'1','ActionScheduler','action_log',0,0),(477,3262,'ActionScheduler','','','','2019-09-16 02:48:19','2019-09-16 02:48:19','action created',0,'1','ActionScheduler','action_log',0,0),(478,3262,'ActionScheduler','','','','2019-09-16 03:56:42','2019-09-16 03:56:42','action started',0,'1','ActionScheduler','action_log',0,0),(479,3262,'ActionScheduler','','','','2019-09-16 03:56:42','2019-09-16 03:56:42','action complete',0,'1','ActionScheduler','action_log',0,0),(480,3263,'ActionScheduler','','','','2019-09-16 03:56:42','2019-09-16 03:56:42','action created',0,'1','ActionScheduler','action_log',0,0),(481,3263,'ActionScheduler','','','','2019-09-16 04:59:59','2019-09-16 04:59:59','action started',0,'1','ActionScheduler','action_log',0,0),(482,3263,'ActionScheduler','','','','2019-09-16 04:59:59','2019-09-16 04:59:59','action complete',0,'1','ActionScheduler','action_log',0,0),(483,3264,'ActionScheduler','','','','2019-09-16 04:59:59','2019-09-16 04:59:59','action created',0,'1','ActionScheduler','action_log',0,0),(484,3264,'ActionScheduler','','','','2019-09-16 06:02:54','2019-09-16 06:02:54','action started',0,'1','ActionScheduler','action_log',0,0),(485,3264,'ActionScheduler','','','','2019-09-16 06:02:54','2019-09-16 06:02:54','action complete',0,'1','ActionScheduler','action_log',0,0),(486,3265,'ActionScheduler','','','','2019-09-16 06:02:54','2019-09-16 06:02:54','action created',0,'1','ActionScheduler','action_log',0,0),(487,3265,'ActionScheduler','','','','2019-09-16 07:45:22','2019-09-16 07:45:22','action started',0,'1','ActionScheduler','action_log',0,0),(488,3265,'ActionScheduler','','','','2019-09-16 07:45:22','2019-09-16 07:45:22','action complete',0,'1','ActionScheduler','action_log',0,0),(489,3266,'ActionScheduler','','','','2019-09-16 07:45:22','2019-09-16 07:45:22','action created',0,'1','ActionScheduler','action_log',0,0),(490,3266,'ActionScheduler','','','','2019-09-16 08:56:26','2019-09-16 08:56:26','action started',0,'1','ActionScheduler','action_log',0,0),(491,3266,'ActionScheduler','','','','2019-09-16 08:56:26','2019-09-16 08:56:26','action complete',0,'1','ActionScheduler','action_log',0,0),(492,3267,'ActionScheduler','','','','2019-09-16 08:56:26','2019-09-16 08:56:26','action created',0,'1','ActionScheduler','action_log',0,0),(493,3267,'ActionScheduler','','','','2019-09-16 10:00:50','2019-09-16 10:00:50','action started',0,'1','ActionScheduler','action_log',0,0),(494,3267,'ActionScheduler','','','','2019-09-16 10:00:50','2019-09-16 10:00:50','action complete',0,'1','ActionScheduler','action_log',0,0),(495,3268,'ActionScheduler','','','','2019-09-16 10:00:50','2019-09-16 10:00:50','action created',0,'1','ActionScheduler','action_log',0,0),(496,3268,'ActionScheduler','','','','2019-09-16 11:12:21','2019-09-16 11:12:21','action started',0,'1','ActionScheduler','action_log',0,0),(497,3268,'ActionScheduler','','','','2019-09-16 11:12:21','2019-09-16 11:12:21','action complete',0,'1','ActionScheduler','action_log',0,0),(498,3269,'ActionScheduler','','','','2019-09-16 11:12:21','2019-09-16 11:12:21','action created',0,'1','ActionScheduler','action_log',0,0),(499,3269,'ActionScheduler','','','','2019-09-16 12:17:44','2019-09-16 12:17:44','action started',0,'1','ActionScheduler','action_log',0,0),(500,3269,'ActionScheduler','','','','2019-09-16 12:17:44','2019-09-16 12:17:44','action complete',0,'1','ActionScheduler','action_log',0,0),(501,3270,'ActionScheduler','','','','2019-09-16 12:17:44','2019-09-16 12:17:44','action created',0,'1','ActionScheduler','action_log',0,0),(502,3270,'ActionScheduler','','','','2019-09-16 13:19:05','2019-09-16 13:19:05','action started',0,'1','ActionScheduler','action_log',0,0),(503,3270,'ActionScheduler','','','','2019-09-16 13:19:05','2019-09-16 13:19:05','action complete',0,'1','ActionScheduler','action_log',0,0),(504,3271,'ActionScheduler','','','','2019-09-16 13:19:05','2019-09-16 13:19:05','action created',0,'1','ActionScheduler','action_log',0,0),(505,3271,'ActionScheduler','','','','2019-09-16 14:20:43','2019-09-16 14:20:43','action started',0,'1','ActionScheduler','action_log',0,0),(506,3271,'ActionScheduler','','','','2019-09-16 14:20:43','2019-09-16 14:20:43','action complete',0,'1','ActionScheduler','action_log',0,0),(507,3272,'ActionScheduler','','','','2019-09-16 14:20:43','2019-09-16 14:20:43','action created',0,'1','ActionScheduler','action_log',0,0),(508,3272,'ActionScheduler','','','','2019-09-16 15:21:10','2019-09-16 15:21:10','action started',0,'1','ActionScheduler','action_log',0,0),(509,3272,'ActionScheduler','','','','2019-09-16 15:21:10','2019-09-16 15:21:10','action complete',0,'1','ActionScheduler','action_log',0,0),(510,3273,'ActionScheduler','','','','2019-09-16 15:21:10','2019-09-16 15:21:10','action created',0,'1','ActionScheduler','action_log',0,0),(511,3273,'ActionScheduler','','','','2019-09-16 16:25:05','2019-09-16 16:25:05','action started',0,'1','ActionScheduler','action_log',0,0),(512,3273,'ActionScheduler','','','','2019-09-16 16:25:05','2019-09-16 16:25:05','action complete',0,'1','ActionScheduler','action_log',0,0),(513,3274,'ActionScheduler','','','','2019-09-16 16:25:05','2019-09-16 16:25:05','action created',0,'1','ActionScheduler','action_log',0,0),(514,3274,'ActionScheduler','','','','2019-09-16 17:26:42','2019-09-16 17:26:42','action started',0,'1','ActionScheduler','action_log',0,0),(515,3274,'ActionScheduler','','','','2019-09-16 17:26:42','2019-09-16 17:26:42','action complete',0,'1','ActionScheduler','action_log',0,0),(516,3275,'ActionScheduler','','','','2019-09-16 17:26:42','2019-09-16 17:26:42','action created',0,'1','ActionScheduler','action_log',0,0),(517,3275,'ActionScheduler','','','','2019-09-16 18:33:30','2019-09-16 18:33:30','action started',0,'1','ActionScheduler','action_log',0,0),(518,3275,'ActionScheduler','','','','2019-09-16 18:33:30','2019-09-16 18:33:30','action complete',0,'1','ActionScheduler','action_log',0,0),(519,3276,'ActionScheduler','','','','2019-09-16 18:33:30','2019-09-16 18:33:30','action created',0,'1','ActionScheduler','action_log',0,0),(520,3276,'ActionScheduler','','','','2019-09-16 19:41:30','2019-09-16 19:41:30','action started',0,'1','ActionScheduler','action_log',0,0),(521,3276,'ActionScheduler','','','','2019-09-16 19:41:30','2019-09-16 19:41:30','action complete',0,'1','ActionScheduler','action_log',0,0),(522,3277,'ActionScheduler','','','','2019-09-16 19:41:30','2019-09-16 19:41:30','action created',0,'1','ActionScheduler','action_log',0,0),(523,3277,'ActionScheduler','','','','2019-09-16 20:41:44','2019-09-16 20:41:44','action started',0,'1','ActionScheduler','action_log',0,0),(524,3277,'ActionScheduler','','','','2019-09-16 20:41:44','2019-09-16 20:41:44','action complete',0,'1','ActionScheduler','action_log',0,0),(525,3278,'ActionScheduler','','','','2019-09-16 20:41:44','2019-09-16 20:41:44','action created',0,'1','ActionScheduler','action_log',0,0),(526,3278,'ActionScheduler','','','','2019-09-16 21:42:36','2019-09-16 21:42:36','action started',0,'1','ActionScheduler','action_log',0,0),(527,3278,'ActionScheduler','','','','2019-09-16 21:42:36','2019-09-16 21:42:36','action complete',0,'1','ActionScheduler','action_log',0,0),(528,3279,'ActionScheduler','','','','2019-09-16 21:42:36','2019-09-16 21:42:36','action created',0,'1','ActionScheduler','action_log',0,0),(529,3279,'ActionScheduler','','','','2019-09-16 22:45:20','2019-09-16 22:45:20','action started',0,'1','ActionScheduler','action_log',0,0),(530,3279,'ActionScheduler','','','','2019-09-16 22:45:20','2019-09-16 22:45:20','action complete',0,'1','ActionScheduler','action_log',0,0),(531,3280,'ActionScheduler','','','','2019-09-16 22:45:20','2019-09-16 22:45:20','action created',0,'1','ActionScheduler','action_log',0,0),(532,3280,'ActionScheduler','','','','2019-09-16 23:46:01','2019-09-16 23:46:01','action started',0,'1','ActionScheduler','action_log',0,0),(533,3280,'ActionScheduler','','','','2019-09-16 23:46:01','2019-09-16 23:46:01','action complete',0,'1','ActionScheduler','action_log',0,0),(534,3281,'ActionScheduler','','','','2019-09-16 23:46:01','2019-09-16 23:46:01','action created',0,'1','ActionScheduler','action_log',0,0),(535,3281,'ActionScheduler','','','','2019-09-17 01:09:08','2019-09-17 01:09:08','action started',0,'1','ActionScheduler','action_log',0,0),(536,3281,'ActionScheduler','','','','2019-09-17 01:09:08','2019-09-17 01:09:08','action complete',0,'1','ActionScheduler','action_log',0,0),(537,3282,'ActionScheduler','','','','2019-09-17 01:09:08','2019-09-17 01:09:08','action created',0,'1','ActionScheduler','action_log',0,0),(538,3282,'ActionScheduler','','','','2019-09-17 02:20:37','2019-09-17 02:20:37','action started',0,'1','ActionScheduler','action_log',0,0),(539,3282,'ActionScheduler','','','','2019-09-17 02:20:37','2019-09-17 02:20:37','action complete',0,'1','ActionScheduler','action_log',0,0),(540,3283,'ActionScheduler','','','','2019-09-17 02:20:37','2019-09-17 02:20:37','action created',0,'1','ActionScheduler','action_log',0,0),(541,3283,'ActionScheduler','','','','2019-09-17 03:24:23','2019-09-17 03:24:23','action started',0,'1','ActionScheduler','action_log',0,0),(542,3283,'ActionScheduler','','','','2019-09-17 03:24:23','2019-09-17 03:24:23','action complete',0,'1','ActionScheduler','action_log',0,0),(543,3284,'ActionScheduler','','','','2019-09-17 03:24:23','2019-09-17 03:24:23','action created',0,'1','ActionScheduler','action_log',0,0),(544,3284,'ActionScheduler','','','','2019-09-17 04:25:26','2019-09-17 04:25:26','action started',0,'1','ActionScheduler','action_log',0,0),(545,3284,'ActionScheduler','','','','2019-09-17 04:25:26','2019-09-17 04:25:26','action complete',0,'1','ActionScheduler','action_log',0,0),(546,3285,'ActionScheduler','','','','2019-09-17 04:25:26','2019-09-17 04:25:26','action created',0,'1','ActionScheduler','action_log',0,0),(547,3285,'ActionScheduler','','','','2019-09-17 05:28:18','2019-09-17 05:28:18','action started',0,'1','ActionScheduler','action_log',0,0),(548,3285,'ActionScheduler','','','','2019-09-17 05:28:18','2019-09-17 05:28:18','action complete',0,'1','ActionScheduler','action_log',0,0),(549,3286,'ActionScheduler','','','','2019-09-17 05:28:18','2019-09-17 05:28:18','action created',0,'1','ActionScheduler','action_log',0,0),(550,3286,'ActionScheduler','','','','2019-09-17 06:31:43','2019-09-17 06:31:43','action started',0,'1','ActionScheduler','action_log',0,0),(551,3286,'ActionScheduler','','','','2019-09-17 06:31:43','2019-09-17 06:31:43','action complete',0,'1','ActionScheduler','action_log',0,0),(552,3287,'ActionScheduler','','','','2019-09-17 06:31:44','2019-09-17 06:31:44','action created',0,'1','ActionScheduler','action_log',0,0),(553,3287,'ActionScheduler','','','','2019-09-17 07:33:56','2019-09-17 07:33:56','action started',0,'1','ActionScheduler','action_log',0,0),(554,3287,'ActionScheduler','','','','2019-09-17 07:33:56','2019-09-17 07:33:56','action complete',0,'1','ActionScheduler','action_log',0,0),(555,3288,'ActionScheduler','','','','2019-09-17 07:33:56','2019-09-17 07:33:56','action created',0,'1','ActionScheduler','action_log',0,0),(556,3290,'ActionScheduler','','','','2019-09-17 08:26:17','2019-09-17 08:26:17','action created',0,'1','ActionScheduler','action_log',0,0),(557,3290,'ActionScheduler','','','','2019-09-17 08:28:15','2019-09-17 08:28:15','action started',0,'1','ActionScheduler','action_log',0,0),(558,3290,'ActionScheduler','','','','2019-09-17 08:28:15','2019-09-17 08:28:15','action complete',0,'1','ActionScheduler','action_log',0,0),(559,3291,'ActionScheduler','','','','2019-09-17 08:28:16','2019-09-17 08:28:16','action created',0,'1','ActionScheduler','action_log',0,0),(560,3289,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-09-17 08:28:16','2019-09-17 08:28:16','Order cancelled by customer. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(561,3291,'ActionScheduler','','','','2019-09-17 08:34:58','2019-09-17 08:34:58','action started',0,'1','ActionScheduler','action_log',0,0),(562,3291,'ActionScheduler','','','','2019-09-17 08:34:58','2019-09-17 08:34:58','action complete',0,'1','ActionScheduler','action_log',0,0),(563,3288,'ActionScheduler','','','','2019-09-17 08:34:58','2019-09-17 08:34:58','action started',0,'1','ActionScheduler','action_log',0,0),(564,3288,'ActionScheduler','','','','2019-09-17 08:34:58','2019-09-17 08:34:58','action complete',0,'1','ActionScheduler','action_log',0,0),(565,3292,'ActionScheduler','','','','2019-09-17 08:34:58','2019-09-17 08:34:58','action created',0,'1','ActionScheduler','action_log',0,0),(566,3292,'ActionScheduler','','','','2019-09-17 09:41:08','2019-09-17 09:41:08','action started',0,'1','ActionScheduler','action_log',0,0),(567,3292,'ActionScheduler','','','','2019-09-17 09:41:08','2019-09-17 09:41:08','action complete',0,'1','ActionScheduler','action_log',0,0),(568,3293,'ActionScheduler','','','','2019-09-17 09:41:08','2019-09-17 09:41:08','action created',0,'1','ActionScheduler','action_log',0,0),(569,3293,'ActionScheduler','','','','2019-09-17 10:43:06','2019-09-17 10:43:06','action started',0,'1','ActionScheduler','action_log',0,0),(570,3293,'ActionScheduler','','','','2019-09-17 10:43:06','2019-09-17 10:43:06','action complete',0,'1','ActionScheduler','action_log',0,0),(571,3294,'ActionScheduler','','','','2019-09-17 10:43:06','2019-09-17 10:43:06','action created',0,'1','ActionScheduler','action_log',0,0),(572,3294,'ActionScheduler','','','','2019-09-17 11:45:47','2019-09-17 11:45:47','action started',0,'1','ActionScheduler','action_log',0,0),(573,3294,'ActionScheduler','','','','2019-09-17 11:45:47','2019-09-17 11:45:47','action complete',0,'1','ActionScheduler','action_log',0,0),(574,3295,'ActionScheduler','','','','2019-09-17 11:45:47','2019-09-17 11:45:47','action created',0,'1','ActionScheduler','action_log',0,0),(575,3295,'ActionScheduler','','','','2019-09-17 12:54:31','2019-09-17 12:54:31','action started',0,'1','ActionScheduler','action_log',0,0),(576,3295,'ActionScheduler','','','','2019-09-17 12:54:31','2019-09-17 12:54:31','action complete',0,'1','ActionScheduler','action_log',0,0),(577,3296,'ActionScheduler','','','','2019-09-17 12:54:31','2019-09-17 12:54:31','action created',0,'1','ActionScheduler','action_log',0,0),(578,3296,'ActionScheduler','','','','2019-09-17 13:57:00','2019-09-17 13:57:00','action started',0,'1','ActionScheduler','action_log',0,0),(579,3296,'ActionScheduler','','','','2019-09-17 13:57:00','2019-09-17 13:57:00','action complete',0,'1','ActionScheduler','action_log',0,0),(580,3297,'ActionScheduler','','','','2019-09-17 13:57:00','2019-09-17 13:57:00','action created',0,'1','ActionScheduler','action_log',0,0),(581,3297,'ActionScheduler','','','','2019-09-17 15:02:18','2019-09-17 15:02:18','action started',0,'1','ActionScheduler','action_log',0,0),(582,3297,'ActionScheduler','','','','2019-09-17 15:02:18','2019-09-17 15:02:18','action complete',0,'1','ActionScheduler','action_log',0,0),(583,3298,'ActionScheduler','','','','2019-09-17 15:02:18','2019-09-17 15:02:18','action created',0,'1','ActionScheduler','action_log',0,0),(584,3298,'ActionScheduler','','','','2019-09-17 16:03:18','2019-09-17 16:03:18','action started',0,'1','ActionScheduler','action_log',0,0),(585,3298,'ActionScheduler','','','','2019-09-17 16:03:18','2019-09-17 16:03:18','action complete',0,'1','ActionScheduler','action_log',0,0),(586,3299,'ActionScheduler','','','','2019-09-17 16:03:18','2019-09-17 16:03:18','action created',0,'1','ActionScheduler','action_log',0,0),(587,3299,'ActionScheduler','','','','2019-09-17 17:07:10','2019-09-17 17:07:10','action started',0,'1','ActionScheduler','action_log',0,0),(588,3299,'ActionScheduler','','','','2019-09-17 17:07:10','2019-09-17 17:07:10','action complete',0,'1','ActionScheduler','action_log',0,0),(589,3300,'ActionScheduler','','','','2019-09-17 17:07:10','2019-09-17 17:07:10','action created',0,'1','ActionScheduler','action_log',0,0),(590,3300,'ActionScheduler','','','','2019-09-17 18:08:13','2019-09-17 18:08:13','action started',0,'1','ActionScheduler','action_log',0,0),(591,3300,'ActionScheduler','','','','2019-09-17 18:08:13','2019-09-17 18:08:13','action complete',0,'1','ActionScheduler','action_log',0,0),(592,3301,'ActionScheduler','','','','2019-09-17 18:08:13','2019-09-17 18:08:13','action created',0,'1','ActionScheduler','action_log',0,0),(593,3301,'ActionScheduler','','','','2019-09-17 19:10:45','2019-09-17 19:10:45','action started',0,'1','ActionScheduler','action_log',0,0),(594,3301,'ActionScheduler','','','','2019-09-17 19:10:45','2019-09-17 19:10:45','action complete',0,'1','ActionScheduler','action_log',0,0),(595,3302,'ActionScheduler','','','','2019-09-17 19:10:45','2019-09-17 19:10:45','action created',0,'1','ActionScheduler','action_log',0,0),(596,3302,'ActionScheduler','','','','2019-09-17 20:29:42','2019-09-17 20:29:42','action started',0,'1','ActionScheduler','action_log',0,0),(597,3302,'ActionScheduler','','','','2019-09-17 20:29:42','2019-09-17 20:29:42','action complete',0,'1','ActionScheduler','action_log',0,0),(598,3303,'ActionScheduler','','','','2019-09-17 20:29:42','2019-09-17 20:29:42','action created',0,'1','ActionScheduler','action_log',0,0),(599,3303,'ActionScheduler','','','','2019-09-17 21:29:49','2019-09-17 21:29:49','action started',0,'1','ActionScheduler','action_log',0,0),(600,3303,'ActionScheduler','','','','2019-09-17 21:29:49','2019-09-17 21:29:49','action complete',0,'1','ActionScheduler','action_log',0,0),(601,3304,'ActionScheduler','','','','2019-09-17 21:29:49','2019-09-17 21:29:49','action created',0,'1','ActionScheduler','action_log',0,0),(602,3304,'ActionScheduler','','','','2019-09-17 22:54:27','2019-09-17 22:54:27','action started',0,'1','ActionScheduler','action_log',0,0),(603,3304,'ActionScheduler','','','','2019-09-17 22:54:27','2019-09-17 22:54:27','action complete',0,'1','ActionScheduler','action_log',0,0),(604,3305,'ActionScheduler','','','','2019-09-17 22:54:27','2019-09-17 22:54:27','action created',0,'1','ActionScheduler','action_log',0,0),(605,3305,'ActionScheduler','','','','2019-09-17 23:54:55','2019-09-17 23:54:55','action started',0,'1','ActionScheduler','action_log',0,0),(606,3305,'ActionScheduler','','','','2019-09-17 23:54:55','2019-09-17 23:54:55','action complete',0,'1','ActionScheduler','action_log',0,0),(607,3306,'ActionScheduler','','','','2019-09-17 23:54:55','2019-09-17 23:54:55','action created',0,'1','ActionScheduler','action_log',0,0),(608,3306,'ActionScheduler','','','','2019-09-18 01:10:55','2019-09-18 01:10:55','action started',0,'1','ActionScheduler','action_log',0,0),(609,3306,'ActionScheduler','','','','2019-09-18 01:10:55','2019-09-18 01:10:55','action complete',0,'1','ActionScheduler','action_log',0,0),(610,3307,'ActionScheduler','','','','2019-09-18 01:10:55','2019-09-18 01:10:55','action created',0,'1','ActionScheduler','action_log',0,0),(611,3307,'ActionScheduler','','','','2019-09-18 02:10:55','2019-09-18 02:10:55','action started',0,'1','ActionScheduler','action_log',0,0),(612,3307,'ActionScheduler','','','','2019-09-18 02:10:55','2019-09-18 02:10:55','action complete',0,'1','ActionScheduler','action_log',0,0),(613,3308,'ActionScheduler','','','','2019-09-18 02:10:55','2019-09-18 02:10:55','action created',0,'1','ActionScheduler','action_log',0,0),(614,3308,'ActionScheduler','','','','2019-09-18 03:17:41','2019-09-18 03:17:41','action started',0,'1','ActionScheduler','action_log',0,0),(615,3308,'ActionScheduler','','','','2019-09-18 03:17:41','2019-09-18 03:17:41','action complete',0,'1','ActionScheduler','action_log',0,0),(616,3309,'ActionScheduler','','','','2019-09-18 03:17:41','2019-09-18 03:17:41','action created',0,'1','ActionScheduler','action_log',0,0),(617,3309,'ActionScheduler','','','','2019-09-18 04:21:51','2019-09-18 04:21:51','action started',0,'1','ActionScheduler','action_log',0,0),(618,3309,'ActionScheduler','','','','2019-09-18 04:21:51','2019-09-18 04:21:51','action complete',0,'1','ActionScheduler','action_log',0,0),(619,3310,'ActionScheduler','','','','2019-09-18 04:21:51','2019-09-18 04:21:51','action created',0,'1','ActionScheduler','action_log',0,0),(620,3310,'ActionScheduler','','','','2019-09-18 05:26:41','2019-09-18 05:26:41','action started',0,'1','ActionScheduler','action_log',0,0),(621,3310,'ActionScheduler','','','','2019-09-18 05:26:41','2019-09-18 05:26:41','action complete',0,'1','ActionScheduler','action_log',0,0),(622,3311,'ActionScheduler','','','','2019-09-18 05:26:41','2019-09-18 05:26:41','action created',0,'1','ActionScheduler','action_log',0,0),(623,3311,'ActionScheduler','','','','2019-09-18 06:29:12','2019-09-18 06:29:12','action started',0,'1','ActionScheduler','action_log',0,0),(624,3311,'ActionScheduler','','','','2019-09-18 06:29:12','2019-09-18 06:29:12','action complete',0,'1','ActionScheduler','action_log',0,0),(625,3312,'ActionScheduler','','','','2019-09-18 06:29:12','2019-09-18 06:29:12','action created',0,'1','ActionScheduler','action_log',0,0),(626,3314,'ActionScheduler','','','','2019-09-18 06:34:58','2019-09-18 06:34:58','action created',0,'1','ActionScheduler','action_log',0,0),(627,3314,'ActionScheduler','','','','2019-09-18 06:37:46','2019-09-18 06:37:46','action started',0,'1','ActionScheduler','action_log',0,0),(628,3314,'ActionScheduler','','','','2019-09-18 06:37:46','2019-09-18 06:37:46','action complete',0,'1','ActionScheduler','action_log',0,0),(629,3313,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-09-18 06:38:08','2019-09-18 06:38:08','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(630,3315,'ActionScheduler','','','','2019-09-18 06:38:08','2019-09-18 06:38:08','action created',0,'1','ActionScheduler','action_log',0,0),(631,3313,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-09-18 06:38:08','2019-09-18 06:38:08','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(632,3315,'ActionScheduler','','','','2019-09-18 06:43:36','2019-09-18 06:43:36','action started',0,'1','ActionScheduler','action_log',0,0),(633,3315,'ActionScheduler','','','','2019-09-18 06:43:36','2019-09-18 06:43:36','action complete',0,'1','ActionScheduler','action_log',0,0),(634,3312,'ActionScheduler','','','','2019-09-18 07:29:48','2019-09-18 07:29:48','action started',0,'1','ActionScheduler','action_log',0,0),(635,3312,'ActionScheduler','','','','2019-09-18 07:29:48','2019-09-18 07:29:48','action complete',0,'1','ActionScheduler','action_log',0,0),(636,3316,'ActionScheduler','','','','2019-09-18 07:29:48','2019-09-18 07:29:48','action created',0,'1','ActionScheduler','action_log',0,0),(637,3318,'ActionScheduler','','','','2019-09-18 07:50:56','2019-09-18 07:50:56','action created',0,'1','ActionScheduler','action_log',0,0),(638,3317,'WooCommerce','woocommerce@newcastle-hypnotherapy.com','','','2019-09-18 07:50:56','2019-09-18 07:50:56','Awaiting BACS payment Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(639,3318,'ActionScheduler','','','','2019-09-18 07:58:06','2019-09-18 07:58:06','action started',0,'1','ActionScheduler','action_log',0,0),(640,3318,'ActionScheduler','','','','2019-09-18 07:58:06','2019-09-18 07:58:06','action complete',0,'1','ActionScheduler','action_log',0,0),(641,3316,'ActionScheduler','','','','2019-09-18 08:40:55','2019-09-18 08:40:55','action started',0,'1','ActionScheduler','action_log',0,0),(642,3316,'ActionScheduler','','','','2019-09-18 08:40:55','2019-09-18 08:40:55','action complete',0,'1','ActionScheduler','action_log',0,0),(643,3319,'ActionScheduler','','','','2019-09-18 08:40:55','2019-09-18 08:40:55','action created',0,'1','ActionScheduler','action_log',0,0),(644,3319,'ActionScheduler','','','','2019-09-18 09:44:09','2019-09-18 09:44:09','action started',0,'1','ActionScheduler','action_log',0,0),(645,3319,'ActionScheduler','','','','2019-09-18 09:44:10','2019-09-18 09:44:10','action complete',0,'1','ActionScheduler','action_log',0,0),(646,3320,'ActionScheduler','','','','2019-09-18 09:44:10','2019-09-18 09:44:10','action created',0,'1','ActionScheduler','action_log',0,0),(647,3320,'ActionScheduler','','','','2019-09-18 10:45:53','2019-09-18 10:45:53','action started',0,'1','ActionScheduler','action_log',0,0),(648,3320,'ActionScheduler','','','','2019-09-18 10:45:53','2019-09-18 10:45:53','action complete',0,'1','ActionScheduler','action_log',0,0),(649,3321,'ActionScheduler','','','','2019-09-18 10:45:53','2019-09-18 10:45:53','action created',0,'1','ActionScheduler','action_log',0,0),(650,3321,'ActionScheduler','','','','2019-09-18 12:06:15','2019-09-18 12:06:15','action started',0,'1','ActionScheduler','action_log',0,0),(651,3321,'ActionScheduler','','','','2019-09-18 12:06:15','2019-09-18 12:06:15','action complete',0,'1','ActionScheduler','action_log',0,0),(652,3322,'ActionScheduler','','','','2019-09-18 12:06:15','2019-09-18 12:06:15','action created',0,'1','ActionScheduler','action_log',0,0),(653,3322,'ActionScheduler','','','','2019-09-18 13:09:22','2019-09-18 13:09:22','action started',0,'1','ActionScheduler','action_log',0,0),(654,3322,'ActionScheduler','','','','2019-09-18 13:09:22','2019-09-18 13:09:22','action complete',0,'1','ActionScheduler','action_log',0,0),(655,3323,'ActionScheduler','','','','2019-09-18 13:09:22','2019-09-18 13:09:22','action created',0,'1','ActionScheduler','action_log',0,0),(656,3323,'ActionScheduler','','','','2019-09-18 14:19:02','2019-09-18 14:19:02','action started',0,'1','ActionScheduler','action_log',0,0),(657,3323,'ActionScheduler','','','','2019-09-18 14:19:02','2019-09-18 14:19:02','action complete',0,'1','ActionScheduler','action_log',0,0),(658,3324,'ActionScheduler','','','','2019-09-18 14:19:02','2019-09-18 14:19:02','action created',0,'1','ActionScheduler','action_log',0,0),(659,3324,'ActionScheduler','','','','2019-09-18 15:28:17','2019-09-18 15:28:17','action started',0,'1','ActionScheduler','action_log',0,0),(660,3324,'ActionScheduler','','','','2019-09-18 15:28:17','2019-09-18 15:28:17','action complete',0,'1','ActionScheduler','action_log',0,0),(661,3325,'ActionScheduler','','','','2019-09-18 15:28:17','2019-09-18 15:28:17','action created',0,'1','ActionScheduler','action_log',0,0),(662,3325,'ActionScheduler','','','','2019-09-18 16:35:14','2019-09-18 16:35:14','action started',0,'1','ActionScheduler','action_log',0,0),(663,3325,'ActionScheduler','','','','2019-09-18 16:35:14','2019-09-18 16:35:14','action complete',0,'1','ActionScheduler','action_log',0,0),(664,3326,'ActionScheduler','','','','2019-09-18 16:35:14','2019-09-18 16:35:14','action created',0,'1','ActionScheduler','action_log',0,0),(665,3326,'ActionScheduler','','','','2019-09-18 17:35:49','2019-09-18 17:35:49','action started',0,'1','ActionScheduler','action_log',0,0),(666,3326,'ActionScheduler','','','','2019-09-18 17:35:49','2019-09-18 17:35:49','action complete',0,'1','ActionScheduler','action_log',0,0),(667,3327,'ActionScheduler','','','','2019-09-18 17:35:49','2019-09-18 17:35:49','action created',0,'1','ActionScheduler','action_log',0,0),(668,3327,'ActionScheduler','','','','2019-09-18 18:40:14','2019-09-18 18:40:14','action started',0,'1','ActionScheduler','action_log',0,0),(669,3327,'ActionScheduler','','','','2019-09-18 18:40:14','2019-09-18 18:40:14','action complete',0,'1','ActionScheduler','action_log',0,0),(670,3328,'ActionScheduler','','','','2019-09-18 18:40:14','2019-09-18 18:40:14','action created',0,'1','ActionScheduler','action_log',0,0),(671,3328,'ActionScheduler','','','','2019-09-18 19:53:47','2019-09-18 19:53:47','action started',0,'1','ActionScheduler','action_log',0,0),(672,3328,'ActionScheduler','','','','2019-09-18 19:53:47','2019-09-18 19:53:47','action complete',0,'1','ActionScheduler','action_log',0,0),(673,3329,'ActionScheduler','','','','2019-09-18 19:53:47','2019-09-18 19:53:47','action created',0,'1','ActionScheduler','action_log',0,0),(674,3329,'ActionScheduler','','','','2019-09-18 20:54:41','2019-09-18 20:54:41','action started',0,'1','ActionScheduler','action_log',0,0),(675,3329,'ActionScheduler','','','','2019-09-18 20:54:41','2019-09-18 20:54:41','action complete',0,'1','ActionScheduler','action_log',0,0),(676,3330,'ActionScheduler','','','','2019-09-18 20:54:41','2019-09-18 20:54:41','action created',0,'1','ActionScheduler','action_log',0,0),(677,3330,'ActionScheduler','','','','2019-09-18 21:58:43','2019-09-18 21:58:43','action started',0,'1','ActionScheduler','action_log',0,0),(678,3330,'ActionScheduler','','','','2019-09-18 21:58:43','2019-09-18 21:58:43','action complete',0,'1','ActionScheduler','action_log',0,0),(679,3331,'ActionScheduler','','','','2019-09-18 21:58:43','2019-09-18 21:58:43','action created',0,'1','ActionScheduler','action_log',0,0),(680,3331,'ActionScheduler','','','','2019-09-18 22:59:22','2019-09-18 22:59:22','action started',0,'1','ActionScheduler','action_log',0,0),(681,3331,'ActionScheduler','','','','2019-09-18 22:59:22','2019-09-18 22:59:22','action complete',0,'1','ActionScheduler','action_log',0,0),(682,3332,'ActionScheduler','','','','2019-09-18 22:59:23','2019-09-18 22:59:23','action created',0,'1','ActionScheduler','action_log',0,0),(683,3332,'ActionScheduler','','','','2019-09-19 00:28:11','2019-09-19 00:28:11','action started',0,'1','ActionScheduler','action_log',0,0),(684,3332,'ActionScheduler','','','','2019-09-19 00:28:11','2019-09-19 00:28:11','action complete',0,'1','ActionScheduler','action_log',0,0),(685,3333,'ActionScheduler','','','','2019-09-19 00:28:11','2019-09-19 00:28:11','action created',0,'1','ActionScheduler','action_log',0,0),(686,3333,'ActionScheduler','','','','2019-09-19 01:38:54','2019-09-19 01:38:54','action started',0,'1','ActionScheduler','action_log',0,0),(687,3333,'ActionScheduler','','','','2019-09-19 01:38:54','2019-09-19 01:38:54','action complete',0,'1','ActionScheduler','action_log',0,0),(688,3334,'ActionScheduler','','','','2019-09-19 01:38:54','2019-09-19 01:38:54','action created',0,'1','ActionScheduler','action_log',0,0),(689,3334,'ActionScheduler','','','','2019-09-19 02:47:20','2019-09-19 02:47:20','action started',0,'1','ActionScheduler','action_log',0,0),(690,3334,'ActionScheduler','','','','2019-09-19 02:47:20','2019-09-19 02:47:20','action complete',0,'1','ActionScheduler','action_log',0,0),(691,3335,'ActionScheduler','','','','2019-09-19 02:47:20','2019-09-19 02:47:20','action created',0,'1','ActionScheduler','action_log',0,0),(692,3335,'ActionScheduler','','','','2019-09-19 04:04:18','2019-09-19 04:04:18','action started',0,'1','ActionScheduler','action_log',0,0),(693,3335,'ActionScheduler','','','','2019-09-19 04:04:18','2019-09-19 04:04:18','action complete',0,'1','ActionScheduler','action_log',0,0),(694,3336,'ActionScheduler','','','','2019-09-19 04:04:18','2019-09-19 04:04:18','action created',0,'1','ActionScheduler','action_log',0,0),(695,3336,'ActionScheduler','','','','2019-09-19 05:04:24','2019-09-19 05:04:24','action started',0,'1','ActionScheduler','action_log',0,0),(696,3336,'ActionScheduler','','','','2019-09-19 05:04:24','2019-09-19 05:04:24','action complete',0,'1','ActionScheduler','action_log',0,0),(697,3337,'ActionScheduler','','','','2019-09-19 05:04:24','2019-09-19 05:04:24','action created',0,'1','ActionScheduler','action_log',0,0),(698,3337,'ActionScheduler','','','','2019-09-19 06:25:51','2019-09-19 06:25:51','action started',0,'1','ActionScheduler','action_log',0,0),(699,3337,'ActionScheduler','','','','2019-09-19 06:25:51','2019-09-19 06:25:51','action complete',0,'1','ActionScheduler','action_log',0,0),(700,3338,'ActionScheduler','','','','2019-09-19 06:25:51','2019-09-19 06:25:51','action created',0,'1','ActionScheduler','action_log',0,0),(701,3338,'ActionScheduler','','','','2019-09-19 07:39:00','2019-09-19 07:39:00','action started',0,'1','ActionScheduler','action_log',0,0),(702,3338,'ActionScheduler','','','','2019-09-19 07:39:00','2019-09-19 07:39:00','action complete',0,'1','ActionScheduler','action_log',0,0),(703,3339,'ActionScheduler','','','','2019-09-19 07:39:00','2019-09-19 07:39:00','action created',0,'1','ActionScheduler','action_log',0,0),(704,3339,'ActionScheduler','','','','2019-09-19 08:45:14','2019-09-19 08:45:14','action started',0,'1','ActionScheduler','action_log',0,0),(705,3339,'ActionScheduler','','','','2019-09-19 08:45:14','2019-09-19 08:45:14','action complete',0,'1','ActionScheduler','action_log',0,0),(706,3340,'ActionScheduler','','','','2019-09-19 08:45:14','2019-09-19 08:45:14','action created',0,'1','ActionScheduler','action_log',0,0),(707,3340,'ActionScheduler','','','','2019-09-19 09:53:30','2019-09-19 09:53:30','action started',0,'1','ActionScheduler','action_log',0,0),(708,3340,'ActionScheduler','','','','2019-09-19 09:53:30','2019-09-19 09:53:30','action complete',0,'1','ActionScheduler','action_log',0,0),(709,3341,'ActionScheduler','','','','2019-09-19 09:53:30','2019-09-19 09:53:30','action created',0,'1','ActionScheduler','action_log',0,0),(710,3341,'ActionScheduler','','','','2019-09-19 10:56:18','2019-09-19 10:56:18','action started',0,'1','ActionScheduler','action_log',0,0),(711,3341,'ActionScheduler','','','','2019-09-19 10:56:18','2019-09-19 10:56:18','action complete',0,'1','ActionScheduler','action_log',0,0),(712,3342,'ActionScheduler','','','','2019-09-19 10:56:18','2019-09-19 10:56:18','action created',0,'1','ActionScheduler','action_log',0,0),(713,3342,'ActionScheduler','','','','2019-09-19 12:02:41','2019-09-19 12:02:41','action started',0,'1','ActionScheduler','action_log',0,0),(714,3342,'ActionScheduler','','','','2019-09-19 12:02:41','2019-09-19 12:02:41','action complete',0,'1','ActionScheduler','action_log',0,0),(715,3343,'ActionScheduler','','','','2019-09-19 12:02:41','2019-09-19 12:02:41','action created',0,'1','ActionScheduler','action_log',0,0),(716,3343,'ActionScheduler','','','','2019-09-19 13:03:41','2019-09-19 13:03:41','action started',0,'1','ActionScheduler','action_log',0,0),(717,3343,'ActionScheduler','','','','2019-09-19 13:03:41','2019-09-19 13:03:41','action complete',0,'1','ActionScheduler','action_log',0,0),(718,3344,'ActionScheduler','','','','2019-09-19 13:03:41','2019-09-19 13:03:41','action created',0,'1','ActionScheduler','action_log',0,0),(719,3344,'ActionScheduler','','','','2019-09-19 14:09:06','2019-09-19 14:09:06','action started',0,'1','ActionScheduler','action_log',0,0),(720,3344,'ActionScheduler','','','','2019-09-19 14:09:06','2019-09-19 14:09:06','action complete',0,'1','ActionScheduler','action_log',0,0),(721,3345,'ActionScheduler','','','','2019-09-19 14:09:06','2019-09-19 14:09:06','action created',0,'1','ActionScheduler','action_log',0,0),(722,3345,'ActionScheduler','','','','2019-09-19 15:10:38','2019-09-19 15:10:38','action started',0,'1','ActionScheduler','action_log',0,0),(723,3345,'ActionScheduler','','','','2019-09-19 15:10:38','2019-09-19 15:10:38','action complete',0,'1','ActionScheduler','action_log',0,0),(724,3346,'ActionScheduler','','','','2019-09-19 15:10:38','2019-09-19 15:10:38','action created',0,'1','ActionScheduler','action_log',0,0),(725,3346,'ActionScheduler','','','','2019-09-19 16:20:57','2019-09-19 16:20:57','action started',0,'1','ActionScheduler','action_log',0,0),(726,3346,'ActionScheduler','','','','2019-09-19 16:20:57','2019-09-19 16:20:57','action complete',0,'1','ActionScheduler','action_log',0,0),(727,3347,'ActionScheduler','','','','2019-09-19 16:20:57','2019-09-19 16:20:57','action created',0,'1','ActionScheduler','action_log',0,0),(728,3347,'ActionScheduler','','','','2019-09-19 17:22:01','2019-09-19 17:22:01','action started',0,'1','ActionScheduler','action_log',0,0),(729,3347,'ActionScheduler','','','','2019-09-19 17:22:01','2019-09-19 17:22:01','action complete',0,'1','ActionScheduler','action_log',0,0),(730,3348,'ActionScheduler','','','','2019-09-19 17:22:01','2019-09-19 17:22:01','action created',0,'1','ActionScheduler','action_log',0,0),(731,3348,'ActionScheduler','','','','2019-09-19 18:26:45','2019-09-19 18:26:45','action started',0,'1','ActionScheduler','action_log',0,0),(732,3348,'ActionScheduler','','','','2019-09-19 18:26:45','2019-09-19 18:26:45','action complete',0,'1','ActionScheduler','action_log',0,0),(733,3349,'ActionScheduler','','','','2019-09-19 18:26:45','2019-09-19 18:26:45','action created',0,'1','ActionScheduler','action_log',0,0),(734,3349,'ActionScheduler','','','','2019-09-19 19:41:19','2019-09-19 19:41:19','action started',0,'1','ActionScheduler','action_log',0,0),(735,3349,'ActionScheduler','','','','2019-09-19 19:41:19','2019-09-19 19:41:19','action complete',0,'1','ActionScheduler','action_log',0,0),(736,3350,'ActionScheduler','','','','2019-09-19 19:41:19','2019-09-19 19:41:19','action created',0,'1','ActionScheduler','action_log',0,0),(737,3350,'ActionScheduler','','','','2019-09-19 20:42:54','2019-09-19 20:42:54','action started',0,'1','ActionScheduler','action_log',0,0),(738,3350,'ActionScheduler','','','','2019-09-19 20:42:54','2019-09-19 20:42:54','action complete',0,'1','ActionScheduler','action_log',0,0),(739,3351,'ActionScheduler','','','','2019-09-19 20:42:54','2019-09-19 20:42:54','action created',0,'1','ActionScheduler','action_log',0,0),(740,3351,'ActionScheduler','','','','2019-09-19 21:42:54','2019-09-19 21:42:54','action started',0,'1','ActionScheduler','action_log',0,0),(741,3351,'ActionScheduler','','','','2019-09-19 21:42:54','2019-09-19 21:42:54','action complete',0,'1','ActionScheduler','action_log',0,0),(742,3352,'ActionScheduler','','','','2019-09-19 21:42:54','2019-09-19 21:42:54','action created',0,'1','ActionScheduler','action_log',0,0),(743,3352,'ActionScheduler','','','','2019-09-19 23:06:54','2019-09-19 23:06:54','action started',0,'1','ActionScheduler','action_log',0,0),(744,3352,'ActionScheduler','','','','2019-09-19 23:06:54','2019-09-19 23:06:54','action complete',0,'1','ActionScheduler','action_log',0,0),(745,3353,'ActionScheduler','','','','2019-09-19 23:06:54','2019-09-19 23:06:54','action created',0,'1','ActionScheduler','action_log',0,0),(746,3353,'ActionScheduler','','','','2019-09-20 00:28:15','2019-09-20 00:28:15','action started',0,'1','ActionScheduler','action_log',0,0),(747,3353,'ActionScheduler','','','','2019-09-20 00:28:15','2019-09-20 00:28:15','action complete',0,'1','ActionScheduler','action_log',0,0),(748,3354,'ActionScheduler','','','','2019-09-20 00:28:15','2019-09-20 00:28:15','action created',0,'1','ActionScheduler','action_log',0,0),(749,3354,'ActionScheduler','','','','2019-09-20 01:30:24','2019-09-20 01:30:24','action started',0,'1','ActionScheduler','action_log',0,0),(750,3354,'ActionScheduler','','','','2019-09-20 01:30:24','2019-09-20 01:30:24','action complete',0,'1','ActionScheduler','action_log',0,0),(751,3355,'ActionScheduler','','','','2019-09-20 01:30:24','2019-09-20 01:30:24','action created',0,'1','ActionScheduler','action_log',0,0),(752,3355,'ActionScheduler','','','','2019-09-20 02:55:18','2019-09-20 02:55:18','action started',0,'1','ActionScheduler','action_log',0,0),(753,3355,'ActionScheduler','','','','2019-09-20 02:55:18','2019-09-20 02:55:18','action complete',0,'1','ActionScheduler','action_log',0,0),(754,3356,'ActionScheduler','','','','2019-09-20 02:55:18','2019-09-20 02:55:18','action created',0,'1','ActionScheduler','action_log',0,0),(755,3356,'ActionScheduler','','','','2019-09-20 04:18:09','2019-09-20 04:18:09','action started',0,'1','ActionScheduler','action_log',0,0),(756,3356,'ActionScheduler','','','','2019-09-20 04:18:09','2019-09-20 04:18:09','action complete',0,'1','ActionScheduler','action_log',0,0),(757,3357,'ActionScheduler','','','','2019-09-20 04:18:09','2019-09-20 04:18:09','action created',0,'1','ActionScheduler','action_log',0,0),(758,3357,'ActionScheduler','','','','2019-09-20 05:20:57','2019-09-20 05:20:57','action started',0,'1','ActionScheduler','action_log',0,0),(759,3357,'ActionScheduler','','','','2019-09-20 05:20:57','2019-09-20 05:20:57','action complete',0,'1','ActionScheduler','action_log',0,0),(760,3358,'ActionScheduler','','','','2019-09-20 05:20:57','2019-09-20 05:20:57','action created',0,'1','ActionScheduler','action_log',0,0),(761,3358,'ActionScheduler','','','','2019-09-20 06:21:02','2019-09-20 06:21:02','action started',0,'1','ActionScheduler','action_log',0,0),(762,3358,'ActionScheduler','','','','2019-09-20 06:21:02','2019-09-20 06:21:02','action complete',0,'1','ActionScheduler','action_log',0,0),(763,3359,'ActionScheduler','','','','2019-09-20 06:21:02','2019-09-20 06:21:02','action created',0,'1','ActionScheduler','action_log',0,0),(764,3359,'ActionScheduler','','','','2019-09-20 07:37:43','2019-09-20 07:37:43','action started',0,'1','ActionScheduler','action_log',0,0),(765,3359,'ActionScheduler','','','','2019-09-20 07:37:43','2019-09-20 07:37:43','action complete',0,'1','ActionScheduler','action_log',0,0),(766,3360,'ActionScheduler','','','','2019-09-20 07:37:43','2019-09-20 07:37:43','action created',0,'1','ActionScheduler','action_log',0,0),(767,3360,'ActionScheduler','','','','2019-09-20 08:39:19','2019-09-20 08:39:19','action started',0,'1','ActionScheduler','action_log',0,0),(768,3360,'ActionScheduler','','','','2019-09-20 08:39:19','2019-09-20 08:39:19','action complete',0,'1','ActionScheduler','action_log',0,0),(769,3361,'ActionScheduler','','','','2019-09-20 08:39:19','2019-09-20 08:39:19','action created',0,'1','ActionScheduler','action_log',0,0),(770,3361,'ActionScheduler','','','','2019-09-20 09:44:59','2019-09-20 09:44:59','action started',0,'1','ActionScheduler','action_log',0,0),(771,3361,'ActionScheduler','','','','2019-09-20 09:44:59','2019-09-20 09:44:59','action complete',0,'1','ActionScheduler','action_log',0,0),(772,3362,'ActionScheduler','','','','2019-09-20 09:44:59','2019-09-20 09:44:59','action created',0,'1','ActionScheduler','action_log',0,0),(773,3362,'ActionScheduler','','','','2019-09-20 10:57:24','2019-09-20 10:57:24','action started',0,'1','ActionScheduler','action_log',0,0),(774,3362,'ActionScheduler','','','','2019-09-20 10:57:24','2019-09-20 10:57:24','action complete',0,'1','ActionScheduler','action_log',0,0),(775,3363,'ActionScheduler','','','','2019-09-20 10:57:24','2019-09-20 10:57:24','action created',0,'1','ActionScheduler','action_log',0,0),(776,3363,'ActionScheduler','','','','2019-09-20 12:03:00','2019-09-20 12:03:00','action started',0,'1','ActionScheduler','action_log',0,0),(777,3363,'ActionScheduler','','','','2019-09-20 12:03:00','2019-09-20 12:03:00','action complete',0,'1','ActionScheduler','action_log',0,0),(778,3364,'ActionScheduler','','','','2019-09-20 12:03:00','2019-09-20 12:03:00','action created',0,'1','ActionScheduler','action_log',0,0),(779,3364,'ActionScheduler','','','','2019-09-20 13:05:03','2019-09-20 13:05:03','action started',0,'1','ActionScheduler','action_log',0,0),(780,3364,'ActionScheduler','','','','2019-09-20 13:05:03','2019-09-20 13:05:03','action complete',0,'1','ActionScheduler','action_log',0,0),(781,3365,'ActionScheduler','','','','2019-09-20 13:05:03','2019-09-20 13:05:03','action created',0,'1','ActionScheduler','action_log',0,0),(782,3365,'ActionScheduler','','','','2019-09-20 14:06:40','2019-09-20 14:06:40','action started',0,'1','ActionScheduler','action_log',0,0),(783,3365,'ActionScheduler','','','','2019-09-20 14:06:40','2019-09-20 14:06:40','action complete',0,'1','ActionScheduler','action_log',0,0),(784,3366,'ActionScheduler','','','','2019-09-20 14:06:40','2019-09-20 14:06:40','action created',0,'1','ActionScheduler','action_log',0,0),(785,3366,'ActionScheduler','','','','2019-09-20 15:09:11','2019-09-20 15:09:11','action started',0,'1','ActionScheduler','action_log',0,0),(786,3366,'ActionScheduler','','','','2019-09-20 15:09:12','2019-09-20 15:09:12','action complete',0,'1','ActionScheduler','action_log',0,0),(787,3367,'ActionScheduler','','','','2019-09-20 15:09:12','2019-09-20 15:09:12','action created',0,'1','ActionScheduler','action_log',0,0),(788,3367,'ActionScheduler','','','','2019-09-20 16:13:40','2019-09-20 16:13:40','action started',0,'1','ActionScheduler','action_log',0,0),(789,3367,'ActionScheduler','','','','2019-09-20 16:13:40','2019-09-20 16:13:40','action complete',0,'1','ActionScheduler','action_log',0,0),(790,3368,'ActionScheduler','','','','2019-09-20 16:13:40','2019-09-20 16:13:40','action created',0,'1','ActionScheduler','action_log',0,0),(791,3368,'ActionScheduler','','','','2019-09-20 17:18:18','2019-09-20 17:18:18','action started',0,'1','ActionScheduler','action_log',0,0),(792,3368,'ActionScheduler','','','','2019-09-20 17:18:18','2019-09-20 17:18:18','action complete',0,'1','ActionScheduler','action_log',0,0),(793,3369,'ActionScheduler','','','','2019-09-20 17:18:18','2019-09-20 17:18:18','action created',0,'1','ActionScheduler','action_log',0,0),(794,3369,'ActionScheduler','','','','2019-09-20 18:23:29','2019-09-20 18:23:29','action started',0,'1','ActionScheduler','action_log',0,0),(795,3369,'ActionScheduler','','','','2019-09-20 18:23:29','2019-09-20 18:23:29','action complete',0,'1','ActionScheduler','action_log',0,0),(796,3370,'ActionScheduler','','','','2019-09-20 18:23:29','2019-09-20 18:23:29','action created',0,'1','ActionScheduler','action_log',0,0),(797,3370,'ActionScheduler','','','','2019-09-20 19:36:01','2019-09-20 19:36:01','action started',0,'1','ActionScheduler','action_log',0,0),(798,3370,'ActionScheduler','','','','2019-09-20 19:36:01','2019-09-20 19:36:01','action complete',0,'1','ActionScheduler','action_log',0,0),(799,3371,'ActionScheduler','','','','2019-09-20 19:36:01','2019-09-20 19:36:01','action created',0,'1','ActionScheduler','action_log',0,0),(800,3371,'ActionScheduler','','','','2019-09-20 20:40:35','2019-09-20 20:40:35','action started',0,'1','ActionScheduler','action_log',0,0),(801,3371,'ActionScheduler','','','','2019-09-20 20:40:35','2019-09-20 20:40:35','action complete',0,'1','ActionScheduler','action_log',0,0),(802,3372,'ActionScheduler','','','','2019-09-20 20:40:35','2019-09-20 20:40:35','action created',0,'1','ActionScheduler','action_log',0,0),(803,3372,'ActionScheduler','','','','2019-09-20 21:43:56','2019-09-20 21:43:56','action started',0,'1','ActionScheduler','action_log',0,0),(804,3372,'ActionScheduler','','','','2019-09-20 21:43:56','2019-09-20 21:43:56','action complete',0,'1','ActionScheduler','action_log',0,0),(805,3373,'ActionScheduler','','','','2019-09-20 21:43:56','2019-09-20 21:43:56','action created',0,'1','ActionScheduler','action_log',0,0),(806,3373,'ActionScheduler','','','','2019-09-20 23:06:39','2019-09-20 23:06:39','action started',0,'1','ActionScheduler','action_log',0,0),(807,3373,'ActionScheduler','','','','2019-09-20 23:06:39','2019-09-20 23:06:39','action complete',0,'1','ActionScheduler','action_log',0,0),(808,3374,'ActionScheduler','','','','2019-09-20 23:06:39','2019-09-20 23:06:39','action created',0,'1','ActionScheduler','action_log',0,0),(809,3374,'ActionScheduler','','','','2019-09-21 00:10:59','2019-09-21 00:10:59','action started',0,'1','ActionScheduler','action_log',0,0),(810,3374,'ActionScheduler','','','','2019-09-21 00:10:59','2019-09-21 00:10:59','action complete',0,'1','ActionScheduler','action_log',0,0),(811,3375,'ActionScheduler','','','','2019-09-21 00:10:59','2019-09-21 00:10:59','action created',0,'1','ActionScheduler','action_log',0,0),(812,3375,'ActionScheduler','','','','2019-09-21 01:20:17','2019-09-21 01:20:17','action started',0,'1','ActionScheduler','action_log',0,0),(813,3375,'ActionScheduler','','','','2019-09-21 01:20:17','2019-09-21 01:20:17','action complete',0,'1','ActionScheduler','action_log',0,0),(814,3376,'ActionScheduler','','','','2019-09-21 01:20:18','2019-09-21 01:20:18','action created',0,'1','ActionScheduler','action_log',0,0),(815,3376,'ActionScheduler','','','','2019-09-21 02:25:16','2019-09-21 02:25:16','action started',0,'1','ActionScheduler','action_log',0,0),(816,3376,'ActionScheduler','','','','2019-09-21 02:25:16','2019-09-21 02:25:16','action complete',0,'1','ActionScheduler','action_log',0,0),(817,3377,'ActionScheduler','','','','2019-09-21 02:25:16','2019-09-21 02:25:16','action created',0,'1','ActionScheduler','action_log',0,0),(818,3377,'ActionScheduler','','','','2019-09-21 03:26:38','2019-09-21 03:26:38','action started',0,'1','ActionScheduler','action_log',0,0),(819,3377,'ActionScheduler','','','','2019-09-21 03:26:38','2019-09-21 03:26:38','action complete',0,'1','ActionScheduler','action_log',0,0),(820,3378,'ActionScheduler','','','','2019-09-21 03:26:38','2019-09-21 03:26:38','action created',0,'1','ActionScheduler','action_log',0,0),(821,3378,'ActionScheduler','','','','2019-09-21 04:32:43','2019-09-21 04:32:43','action started',0,'1','ActionScheduler','action_log',0,0),(822,3378,'ActionScheduler','','','','2019-09-21 04:32:43','2019-09-21 04:32:43','action complete',0,'1','ActionScheduler','action_log',0,0),(823,3379,'ActionScheduler','','','','2019-09-21 04:32:43','2019-09-21 04:32:43','action created',0,'1','ActionScheduler','action_log',0,0),(824,3379,'ActionScheduler','','','','2019-09-21 05:53:30','2019-09-21 05:53:30','action started',0,'1','ActionScheduler','action_log',0,0),(825,3379,'ActionScheduler','','','','2019-09-21 05:53:30','2019-09-21 05:53:30','action complete',0,'1','ActionScheduler','action_log',0,0),(826,3380,'ActionScheduler','','','','2019-09-21 05:53:30','2019-09-21 05:53:30','action created',0,'1','ActionScheduler','action_log',0,0),(827,3380,'ActionScheduler','','','','2019-09-21 06:55:41','2019-09-21 06:55:41','action started',0,'1','ActionScheduler','action_log',0,0),(828,3380,'ActionScheduler','','','','2019-09-21 06:55:41','2019-09-21 06:55:41','action complete',0,'1','ActionScheduler','action_log',0,0),(829,3381,'ActionScheduler','','','','2019-09-21 06:55:41','2019-09-21 06:55:41','action created',0,'1','ActionScheduler','action_log',0,0),(830,3381,'ActionScheduler','','','','2019-09-21 07:55:57','2019-09-21 07:55:57','action started',0,'1','ActionScheduler','action_log',0,0),(831,3381,'ActionScheduler','','','','2019-09-21 07:55:57','2019-09-21 07:55:57','action complete',0,'1','ActionScheduler','action_log',0,0),(832,3382,'ActionScheduler','','','','2019-09-21 07:55:58','2019-09-21 07:55:58','action created',0,'1','ActionScheduler','action_log',0,0),(833,3382,'ActionScheduler','','','','2019-09-21 08:56:19','2019-09-21 08:56:19','action started',0,'1','ActionScheduler','action_log',0,0),(834,3382,'ActionScheduler','','','','2019-09-21 08:56:19','2019-09-21 08:56:19','action complete',0,'1','ActionScheduler','action_log',0,0),(835,3383,'ActionScheduler','','','','2019-09-21 08:56:19','2019-09-21 08:56:19','action created',0,'1','ActionScheduler','action_log',0,0),(836,3383,'ActionScheduler','','','','2019-09-21 10:04:56','2019-09-21 10:04:56','action started',0,'1','ActionScheduler','action_log',0,0),(837,3383,'ActionScheduler','','','','2019-09-21 10:04:56','2019-09-21 10:04:56','action complete',0,'1','ActionScheduler','action_log',0,0),(838,3384,'ActionScheduler','','','','2019-09-21 10:04:56','2019-09-21 10:04:56','action created',0,'1','ActionScheduler','action_log',0,0),(839,3384,'ActionScheduler','','','','2019-09-21 11:06:31','2019-09-21 11:06:31','action started',0,'1','ActionScheduler','action_log',0,0),(840,3384,'ActionScheduler','','','','2019-09-21 11:06:31','2019-09-21 11:06:31','action complete',0,'1','ActionScheduler','action_log',0,0),(841,3385,'ActionScheduler','','','','2019-09-21 11:06:31','2019-09-21 11:06:31','action created',0,'1','ActionScheduler','action_log',0,0),(842,3385,'ActionScheduler','','','','2019-09-21 12:12:51','2019-09-21 12:12:51','action started',0,'1','ActionScheduler','action_log',0,0),(843,3385,'ActionScheduler','','','','2019-09-21 12:12:51','2019-09-21 12:12:51','action complete',0,'1','ActionScheduler','action_log',0,0),(844,3386,'ActionScheduler','','','','2019-09-21 12:12:51','2019-09-21 12:12:51','action created',0,'1','ActionScheduler','action_log',0,0),(845,3386,'ActionScheduler','','','','2019-09-21 13:20:12','2019-09-21 13:20:12','action started',0,'1','ActionScheduler','action_log',0,0),(846,3386,'ActionScheduler','','','','2019-09-21 13:20:12','2019-09-21 13:20:12','action complete',0,'1','ActionScheduler','action_log',0,0),(847,3387,'ActionScheduler','','','','2019-09-21 13:20:12','2019-09-21 13:20:12','action created',0,'1','ActionScheduler','action_log',0,0),(848,3387,'ActionScheduler','','','','2019-09-21 14:23:12','2019-09-21 14:23:12','action started',0,'1','ActionScheduler','action_log',0,0),(849,3387,'ActionScheduler','','','','2019-09-21 14:23:12','2019-09-21 14:23:12','action complete',0,'1','ActionScheduler','action_log',0,0),(850,3388,'ActionScheduler','','','','2019-09-21 14:23:12','2019-09-21 14:23:12','action created',0,'1','ActionScheduler','action_log',0,0),(851,3388,'ActionScheduler','','','','2019-09-21 15:23:14','2019-09-21 15:23:14','action started',0,'1','ActionScheduler','action_log',0,0),(852,3388,'ActionScheduler','','','','2019-09-21 15:23:14','2019-09-21 15:23:14','action complete',0,'1','ActionScheduler','action_log',0,0),(853,3389,'ActionScheduler','','','','2019-09-21 15:23:15','2019-09-21 15:23:15','action created',0,'1','ActionScheduler','action_log',0,0),(854,3389,'ActionScheduler','','','','2019-09-21 16:24:18','2019-09-21 16:24:18','action started',0,'1','ActionScheduler','action_log',0,0),(855,3389,'ActionScheduler','','','','2019-09-21 16:24:18','2019-09-21 16:24:18','action complete',0,'1','ActionScheduler','action_log',0,0),(856,3390,'ActionScheduler','','','','2019-09-21 16:24:18','2019-09-21 16:24:18','action created',0,'1','ActionScheduler','action_log',0,0),(857,3390,'ActionScheduler','','','','2019-09-21 17:27:09','2019-09-21 17:27:09','action started',0,'1','ActionScheduler','action_log',0,0),(858,3390,'ActionScheduler','','','','2019-09-21 17:27:09','2019-09-21 17:27:09','action complete',0,'1','ActionScheduler','action_log',0,0),(859,3391,'ActionScheduler','','','','2019-09-21 17:27:09','2019-09-21 17:27:09','action created',0,'1','ActionScheduler','action_log',0,0),(860,3391,'ActionScheduler','','','','2019-09-21 18:30:23','2019-09-21 18:30:23','action started',0,'1','ActionScheduler','action_log',0,0),(861,3391,'ActionScheduler','','','','2019-09-21 18:30:23','2019-09-21 18:30:23','action complete',0,'1','ActionScheduler','action_log',0,0),(862,3392,'ActionScheduler','','','','2019-09-21 18:30:23','2019-09-21 18:30:23','action created',0,'1','ActionScheduler','action_log',0,0),(863,3392,'ActionScheduler','','','','2019-09-21 19:48:14','2019-09-21 19:48:14','action started',0,'1','ActionScheduler','action_log',0,0),(864,3392,'ActionScheduler','','','','2019-09-21 19:48:14','2019-09-21 19:48:14','action complete',0,'1','ActionScheduler','action_log',0,0),(865,3393,'ActionScheduler','','','','2019-09-21 19:48:15','2019-09-21 19:48:15','action created',0,'1','ActionScheduler','action_log',0,0),(866,3393,'ActionScheduler','','','','2019-09-21 20:52:05','2019-09-21 20:52:05','action started',0,'1','ActionScheduler','action_log',0,0),(867,3393,'ActionScheduler','','','','2019-09-21 20:52:05','2019-09-21 20:52:05','action complete',0,'1','ActionScheduler','action_log',0,0),(868,3394,'ActionScheduler','','','','2019-09-21 20:52:05','2019-09-21 20:52:05','action created',0,'1','ActionScheduler','action_log',0,0),(869,3394,'ActionScheduler','','','','2019-09-21 21:52:19','2019-09-21 21:52:19','action started',0,'1','ActionScheduler','action_log',0,0),(870,3394,'ActionScheduler','','','','2019-09-21 21:52:19','2019-09-21 21:52:19','action complete',0,'1','ActionScheduler','action_log',0,0),(871,3395,'ActionScheduler','','','','2019-09-21 21:52:19','2019-09-21 21:52:19','action created',0,'1','ActionScheduler','action_log',0,0),(872,3395,'ActionScheduler','','','','2019-09-21 22:53:23','2019-09-21 22:53:23','action started',0,'1','ActionScheduler','action_log',0,0),(873,3395,'ActionScheduler','','','','2019-09-21 22:53:23','2019-09-21 22:53:23','action complete',0,'1','ActionScheduler','action_log',0,0),(874,3396,'ActionScheduler','','','','2019-09-21 22:53:23','2019-09-21 22:53:23','action created',0,'1','ActionScheduler','action_log',0,0),(875,3396,'ActionScheduler','','','','2019-09-22 00:02:21','2019-09-22 00:02:21','action started',0,'1','ActionScheduler','action_log',0,0),(876,3396,'ActionScheduler','','','','2019-09-22 00:02:21','2019-09-22 00:02:21','action complete',0,'1','ActionScheduler','action_log',0,0),(877,3397,'ActionScheduler','','','','2019-09-22 00:02:21','2019-09-22 00:02:21','action created',0,'1','ActionScheduler','action_log',0,0),(878,3397,'ActionScheduler','','','','2019-09-22 01:09:42','2019-09-22 01:09:42','action started',0,'1','ActionScheduler','action_log',0,0),(879,3397,'ActionScheduler','','','','2019-09-22 01:09:42','2019-09-22 01:09:42','action complete',0,'1','ActionScheduler','action_log',0,0),(880,3398,'ActionScheduler','','','','2019-09-22 01:09:42','2019-09-22 01:09:42','action created',0,'1','ActionScheduler','action_log',0,0),(881,3398,'ActionScheduler','','','','2019-09-22 02:29:44','2019-09-22 02:29:44','action started',0,'1','ActionScheduler','action_log',0,0),(882,3398,'ActionScheduler','','','','2019-09-22 02:29:44','2019-09-22 02:29:44','action complete',0,'1','ActionScheduler','action_log',0,0),(883,3399,'ActionScheduler','','','','2019-09-22 02:29:44','2019-09-22 02:29:44','action created',0,'1','ActionScheduler','action_log',0,0),(884,3399,'ActionScheduler','','','','2019-09-22 03:36:30','2019-09-22 03:36:30','action started',0,'1','ActionScheduler','action_log',0,0),(885,3399,'ActionScheduler','','','','2019-09-22 03:36:30','2019-09-22 03:36:30','action complete',0,'1','ActionScheduler','action_log',0,0),(886,3400,'ActionScheduler','','','','2019-09-22 03:36:30','2019-09-22 03:36:30','action created',0,'1','ActionScheduler','action_log',0,0),(887,3400,'ActionScheduler','','','','2019-09-22 04:39:01','2019-09-22 04:39:01','action started',0,'1','ActionScheduler','action_log',0,0),(888,3400,'ActionScheduler','','','','2019-09-22 04:39:02','2019-09-22 04:39:02','action complete',0,'1','ActionScheduler','action_log',0,0),(889,3401,'ActionScheduler','','','','2019-09-22 04:39:02','2019-09-22 04:39:02','action created',0,'1','ActionScheduler','action_log',0,0),(890,3401,'ActionScheduler','','','','2019-09-22 05:42:26','2019-09-22 05:42:26','action started',0,'1','ActionScheduler','action_log',0,0),(891,3401,'ActionScheduler','','','','2019-09-22 05:42:26','2019-09-22 05:42:26','action complete',0,'1','ActionScheduler','action_log',0,0),(892,3402,'ActionScheduler','','','','2019-09-22 05:42:26','2019-09-22 05:42:26','action created',0,'1','ActionScheduler','action_log',0,0),(893,3402,'ActionScheduler','','','','2019-09-22 06:54:47','2019-09-22 06:54:47','action started',0,'1','ActionScheduler','action_log',0,0),(894,3402,'ActionScheduler','','','','2019-09-22 06:54:47','2019-09-22 06:54:47','action complete',0,'1','ActionScheduler','action_log',0,0),(895,3403,'ActionScheduler','','','','2019-09-22 06:54:47','2019-09-22 06:54:47','action created',0,'1','ActionScheduler','action_log',0,0),(896,3403,'ActionScheduler','','','','2019-09-22 07:54:56','2019-09-22 07:54:56','action started',0,'1','ActionScheduler','action_log',0,0),(897,3403,'ActionScheduler','','','','2019-09-22 07:54:56','2019-09-22 07:54:56','action complete',0,'1','ActionScheduler','action_log',0,0),(898,3404,'ActionScheduler','','','','2019-09-22 07:54:56','2019-09-22 07:54:56','action created',0,'1','ActionScheduler','action_log',0,0),(899,3404,'ActionScheduler','','','','2019-09-22 09:02:29','2019-09-22 09:02:29','action started',0,'1','ActionScheduler','action_log',0,0),(900,3404,'ActionScheduler','','','','2019-09-22 09:02:29','2019-09-22 09:02:29','action complete',0,'1','ActionScheduler','action_log',0,0),(901,3405,'ActionScheduler','','','','2019-09-22 09:02:29','2019-09-22 09:02:29','action created',0,'1','ActionScheduler','action_log',0,0),(902,3405,'ActionScheduler','','','','2019-09-22 10:03:43','2019-09-22 10:03:43','action started',0,'1','ActionScheduler','action_log',0,0),(903,3405,'ActionScheduler','','','','2019-09-22 10:03:43','2019-09-22 10:03:43','action complete',0,'1','ActionScheduler','action_log',0,0),(904,3406,'ActionScheduler','','','','2019-09-22 10:03:43','2019-09-22 10:03:43','action created',0,'1','ActionScheduler','action_log',0,0),(905,3406,'ActionScheduler','','','','2019-09-22 11:04:33','2019-09-22 11:04:33','action started',0,'1','ActionScheduler','action_log',0,0),(906,3406,'ActionScheduler','','','','2019-09-22 11:04:33','2019-09-22 11:04:33','action complete',0,'1','ActionScheduler','action_log',0,0),(907,3407,'ActionScheduler','','','','2019-09-22 11:04:33','2019-09-22 11:04:33','action created',0,'1','ActionScheduler','action_log',0,0),(908,3407,'ActionScheduler','','','','2019-09-22 12:20:55','2019-09-22 12:20:55','action started',0,'1','ActionScheduler','action_log',0,0),(909,3407,'ActionScheduler','','','','2019-09-22 12:20:55','2019-09-22 12:20:55','action complete',0,'1','ActionScheduler','action_log',0,0),(910,3408,'ActionScheduler','','','','2019-09-22 12:20:55','2019-09-22 12:20:55','action created',0,'1','ActionScheduler','action_log',0,0),(911,3408,'ActionScheduler','','','','2019-09-22 13:33:36','2019-09-22 13:33:36','action started',0,'1','ActionScheduler','action_log',0,0),(912,3408,'ActionScheduler','','','','2019-09-22 13:33:36','2019-09-22 13:33:36','action complete',0,'1','ActionScheduler','action_log',0,0),(913,3409,'ActionScheduler','','','','2019-09-22 13:33:36','2019-09-22 13:33:36','action created',0,'1','ActionScheduler','action_log',0,0),(914,3409,'ActionScheduler','','','','2019-09-22 14:44:33','2019-09-22 14:44:33','action started',0,'1','ActionScheduler','action_log',0,0),(915,3409,'ActionScheduler','','','','2019-09-22 14:44:33','2019-09-22 14:44:33','action complete',0,'1','ActionScheduler','action_log',0,0),(916,3410,'ActionScheduler','','','','2019-09-22 14:44:33','2019-09-22 14:44:33','action created',0,'1','ActionScheduler','action_log',0,0),(917,3410,'ActionScheduler','','','','2019-09-22 15:46:48','2019-09-22 15:46:48','action started',0,'1','ActionScheduler','action_log',0,0),(918,3410,'ActionScheduler','','','','2019-09-22 15:46:48','2019-09-22 15:46:48','action complete',0,'1','ActionScheduler','action_log',0,0),(919,3411,'ActionScheduler','','','','2019-09-22 15:46:48','2019-09-22 15:46:48','action created',0,'1','ActionScheduler','action_log',0,0),(920,3411,'ActionScheduler','','','','2019-09-22 16:48:41','2019-09-22 16:48:41','action started',0,'1','ActionScheduler','action_log',0,0),(921,3411,'ActionScheduler','','','','2019-09-22 16:48:41','2019-09-22 16:48:41','action complete',0,'1','ActionScheduler','action_log',0,0),(922,3413,'ActionScheduler','','','','2019-09-22 16:48:41','2019-09-22 16:48:41','action created',0,'1','ActionScheduler','action_log',0,0),(923,3413,'ActionScheduler','','','','2019-09-22 17:48:42','2019-09-22 17:48:42','action started',0,'1','ActionScheduler','action_log',0,0),(924,3413,'ActionScheduler','','','','2019-09-22 17:48:42','2019-09-22 17:48:42','action complete',0,'1','ActionScheduler','action_log',0,0),(925,3414,'ActionScheduler','','','','2019-09-22 17:48:42','2019-09-22 17:48:42','action created',0,'1','ActionScheduler','action_log',0,0),(926,3414,'ActionScheduler','','','','2019-09-22 18:49:47','2019-09-22 18:49:47','action started',0,'1','ActionScheduler','action_log',0,0),(927,3414,'ActionScheduler','','','','2019-09-22 18:49:47','2019-09-22 18:49:47','action complete',0,'1','ActionScheduler','action_log',0,0),(928,3415,'ActionScheduler','','','','2019-09-22 18:49:47','2019-09-22 18:49:47','action created',0,'1','ActionScheduler','action_log',0,0);
/*!40000 ALTER TABLE `wpqj_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_cpabc_appointment_calendars`
--

DROP TABLE IF EXISTS `wpqj_cpabc_appointment_calendars`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_cpabc_appointment_calendars` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `uname` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `passwd` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `lang` varchar(5) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `cpages` tinyint(3) unsigned DEFAULT NULL,
  `ctype` tinyint(3) unsigned DEFAULT NULL,
  `msg` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `workingDates` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `restrictedDates` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `timeWorkingDates0` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `timeWorkingDates1` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `timeWorkingDates2` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `timeWorkingDates3` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `timeWorkingDates4` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `timeWorkingDates5` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `timeWorkingDates6` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `caldeleted` tinyint(3) unsigned DEFAULT NULL,
  `conwer` int(11) NOT NULL,
  `form_structure` mediumtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `specialDates` mediumtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `vs_use_validation` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_is_required` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_is_email` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_datemmddyyyy` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_dateddmmyyyy` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_number` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_digits` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_max` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_min` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_submitbtn` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `calendar_language` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `calendar_dateformat` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `calendar_pages` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `calendar_militarytime` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `calendar_weekday` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `calendar_mindate` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `calendar_maxdate` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `calendar_startmonth` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `calendar_startyear` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `calendar_theme` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `min_slots` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `max_slots` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `close_fpanel` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `quantity_field` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `paypal_mode` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `enable_paypal` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `paypal_email` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `request_cost` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `paypal_product_name` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `currency` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `url_ok` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `url_cancel` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `paypal_language` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `cu_user_email_field` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `notification_from_email` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `notification_destination_email` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `email_subject_confirmation_to_user` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `email_confirmation_to_user` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `email_subject_notification_to_admin` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `email_notification_to_admin` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `enable_reminder` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `reminder_hours` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `reminder_subject` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `reminder_content` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `dexcv_enable_captcha` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `dexcv_width` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `dexcv_height` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `dexcv_chars` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `dexcv_min_font_size` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `dexcv_max_font_size` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `dexcv_noise` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `dexcv_noise_length` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `dexcv_background` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `dexcv_border` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `dexcv_font` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `cv_text_enter_valid_captcha` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `cp_cal_checkboxes` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `nuser_emailformat` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `nadmin_emailformat` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `nremind_emailformat` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_cpabc_appointment_calendars`
--

LOCK TABLES `wpqj_cpabc_appointment_calendars` WRITE;
/*!40000 ALTER TABLE `wpqj_cpabc_appointment_calendars` DISABLE KEYS */;
INSERT INTO `wpqj_cpabc_appointment_calendars` VALUES (1,'cal1','Calendar Item 1','','-',1,3,'Please, select your appointment.','0,1,2,3,4,5,6','','','9:0:1,10:0:1,11:0:1,12:0:1,13:0:1,14:0:1,15:0:1,16:0:1','9:0:1,10:0:1,11:0:1,12:0:1,13:0:1,14:0:1,15:0:1,16:0:1','9:0:1,10:0:1,11:0:1,12:0:1,13:0:1,14:0:1,15:0:1,16:0:1','9:0:1,10:0:1,11:0:1,12:0:1,13:0:1,14:0:1,15:0:1,16:0:1','9:0:1,10:0:1,11:0:1,12:0:1,13:0:1,14:0:1,15:0:1,16:0:1','',0,1,'[[{\"name\":\"email\",\"index\":0,\"title\":\"Email\",\"ftype\":\"femail\",\"userhelp\":\"\",\"csslayout\":\"\",\"required\":true,\"predefined\":\"\",\"size\":\"medium\"},{\"name\":\"subject\",\"index\":1,\"title\":\"Subject\",\"required\":true,\"ftype\":\"ftext\",\"userhelp\":\"\",\"csslayout\":\"\",\"predefined\":\"\",\"size\":\"medium\"},{\"name\":\"message\",\"index\":2,\"size\":\"large\",\"required\":true,\"title\":\"Message\",\"ftype\":\"ftextarea\",\"userhelp\":\"\",\"csslayout\":\"\",\"predefined\":\"\"}],[{\"title\":\"\",\"description\":\"\",\"formlayout\":\"top_aligned\"}]]','9/28/2018;','','This field is required.','Please enter a valid email address.','Please enter a valid date with this format(mm/dd/yyyy)','Please enter a valid date with this format(dd/mm/yyyy)','Please enter a valid number.','Please enter only digits.','Please enter a value less than or equal to {0}.','Please enter a value greater than or equal to {0}.','Continue','EN','1','1','0','1','+1 days','','0','0','light/','1','5','yes','1','production',NULL,'mark@newcastle-hypnotherapy.com','25;50;75;100;125','Appointment','GBP','https://www.newcastle-hypnotherapy.com','https://www.newcastle-hypnotherapy.com','EN','','mark@newcastle-hypnotherapy.com','mark@newcastle-hypnotherapy.com','Thank you for your request...','We have received your request with the following information:\r\n\r\n%INFORMATION%\r\n\r\nThank you.\r\n\r\nBest regards.','New appointment requested...','New appointment made with the following information:\r\n\r\n%INFORMATION%\r\n\r\nBest regards.',NULL,NULL,NULL,NULL,'false','180','60','5','25','35','200','4','ffffff','000000','font-1.ttf','Please enter a valid captcha code.',NULL,'text','text','text');
/*!40000 ALTER TABLE `wpqj_cpabc_appointment_calendars` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_cpabc_appointment_calendars_data`
--

DROP TABLE IF EXISTS `wpqj_cpabc_appointment_calendars_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_cpabc_appointment_calendars_data` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `appointment_calendar_id` int(10) unsigned DEFAULT NULL,
  `datatime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `title` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `description` mediumtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `description_customer` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `reminder` varchar(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `reference` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `quantity` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_cpabc_appointment_calendars_data`
--

LOCK TABLES `wpqj_cpabc_appointment_calendars_data` WRITE;
/*!40000 ALTER TABLE `wpqj_cpabc_appointment_calendars_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_cpabc_appointment_calendars_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_cpabc_appointments`
--

DROP TABLE IF EXISTS `wpqj_cpabc_appointments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_cpabc_appointments` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `calendar` int(11) NOT NULL,
  `time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `booked_time` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `booked_time_unformatted` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `email` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `phone` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `question` mediumtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `quantity` varchar(30) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `buffered_date` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_cpabc_appointments`
--

LOCK TABLES `wpqj_cpabc_appointments` WRITE;
/*!40000 ALTER TABLE `wpqj_cpabc_appointments` DISABLE KEYS */;
INSERT INTO `wpqj_cpabc_appointments` VALUES (1,1,'2018-09-22 18:50:30','27/09/2018 09:00','2018-09-27 09:00:00','test','test@test.com','07941079999','dskjfdlsjkf','1','a:10:{s:9:\"UTIMEZONE\";s:5:\"GMT 1\";s:5:\"PRICE\";s:5:\"25.00\";s:10:\"COUPONCODE\";s:0:\"\";s:8:\"QUANTITY\";N;s:4:\"NAME\";s:4:\"test\";s:5:\"EMAIL\";s:13:\"test@test.com\";s:5:\"PHONE\";s:11:\"07941079999\";s:8:\"COMMENTS\";s:11:\"dskjfdlsjkf\";s:4:\"DATE\";s:10:\"27/09/2018\";s:4:\"TIME\";s:5:\"09:00\";}');
/*!40000 ALTER TABLE `wpqj_cpabc_appointments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_cpabc_appointments_discount_codes`
--

DROP TABLE IF EXISTS `wpqj_cpabc_appointments_discount_codes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_cpabc_appointments_discount_codes` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `cal_id` mediumint(9) NOT NULL DEFAULT 1,
  `code` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `discount` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `availability` int(10) unsigned NOT NULL DEFAULT 0,
  `used` int(10) unsigned NOT NULL DEFAULT 0,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_cpabc_appointments_discount_codes`
--

LOCK TABLES `wpqj_cpabc_appointments_discount_codes` WRITE;
/*!40000 ALTER TABLE `wpqj_cpabc_appointments_discount_codes` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_cpabc_appointments_discount_codes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_ea_appointments`
--

DROP TABLE IF EXISTS `wpqj_ea_appointments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_ea_appointments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `location` int(11) NOT NULL,
  `service` int(11) NOT NULL,
  `worker` int(11) NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `email` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `phone` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `date` date DEFAULT NULL,
  `start` time DEFAULT NULL,
  `end` time DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `status` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `user` int(11) DEFAULT NULL,
  `created` timestamp NULL DEFAULT current_timestamp(),
  `price` decimal(10,2) DEFAULT NULL,
  `ip` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `session` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `appointments_location` (`location`),
  KEY `appointments_service` (`service`),
  KEY `appointments_worker` (`worker`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_ea_appointments`
--

LOCK TABLES `wpqj_ea_appointments` WRITE;
/*!40000 ALTER TABLE `wpqj_ea_appointments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_ea_appointments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_ea_connections`
--

DROP TABLE IF EXISTS `wpqj_ea_connections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_ea_connections` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `group_id` int(11) DEFAULT NULL,
  `location` int(11) DEFAULT NULL,
  `service` int(11) DEFAULT NULL,
  `worker` int(11) DEFAULT NULL,
  `day_of_week` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `time_from` time DEFAULT NULL,
  `time_to` time DEFAULT NULL,
  `day_from` date DEFAULT NULL,
  `day_to` date DEFAULT NULL,
  `is_working` smallint(3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `location_to_connection` (`location`),
  KEY `service_to_location` (`service`),
  KEY `worker_to_connection` (`worker`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_ea_connections`
--

LOCK TABLES `wpqj_ea_connections` WRITE;
/*!40000 ALTER TABLE `wpqj_ea_connections` DISABLE KEYS */;
INSERT INTO `wpqj_ea_connections` VALUES (1,NULL,1,1,1,'Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday','08:00:00','18:00:00','2018-01-01','2020-01-01',0),(2,NULL,2,1,1,'Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday','08:00:00','18:00:00','2018-01-01','2020-01-01',0),(3,3,1,2,1,'Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday','08:00:00','18:00:00','2018-01-01','2020-01-01',1),(4,3,1,1,1,'Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday','08:00:00','18:00:00','2018-01-01','2020-01-01',1),(5,3,2,2,1,'Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday','08:00:00','18:00:00','2018-01-01','2020-01-01',1),(6,3,2,1,1,'Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday','08:00:00','18:00:00','2018-01-01','2020-01-01',1),(7,3,3,2,1,'Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday','08:00:00','18:00:00','2018-01-01','2020-01-01',1),(8,3,3,1,1,'Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday','08:00:00','18:00:00','2018-01-01','2020-01-01',1),(9,NULL,4,2,1,'Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday','08:00:00','18:00:00','2018-01-01','2020-01-01',0);
/*!40000 ALTER TABLE `wpqj_ea_connections` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_ea_error_logs`
--

DROP TABLE IF EXISTS `wpqj_ea_error_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_ea_error_logs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `error_type` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `errors` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `errors_data` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_ea_error_logs`
--

LOCK TABLES `wpqj_ea_error_logs` WRITE;
/*!40000 ALTER TABLE `wpqj_ea_error_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_ea_error_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_ea_fields`
--

DROP TABLE IF EXISTS `wpqj_ea_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_ea_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `app_id` int(11) NOT NULL,
  `field_id` int(11) NOT NULL,
  `value` varchar(500) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_ea_fields`
--

LOCK TABLES `wpqj_ea_fields` WRITE;
/*!40000 ALTER TABLE `wpqj_ea_fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_ea_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_ea_locations`
--

DROP TABLE IF EXISTS `wpqj_ea_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_ea_locations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `address` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `location` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `cord` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_ea_locations`
--

LOCK TABLES `wpqj_ea_locations` WRITE;
/*!40000 ALTER TABLE `wpqj_ea_locations` DISABLE KEYS */;
INSERT INTO `wpqj_ea_locations` VALUES (1,'The Vault, Wallsend.','Test address','Location',NULL),(2,'Food For Thought, Seaton Deleval','FFT','FFT Location',NULL),(3,'Online Video Session','Online','Online',NULL),(4,'FREE 15 Minute Phone Strategy Session','','',NULL);
/*!40000 ALTER TABLE `wpqj_ea_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_ea_meta_fields`
--

DROP TABLE IF EXISTS `wpqj_ea_meta_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_ea_meta_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `slug` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `label` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `mixed` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `default_value` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `visible` tinyint(4) NOT NULL,
  `required` tinyint(4) NOT NULL,
  `validation` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `position` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_ea_meta_fields`
--

LOCK TABLES `wpqj_ea_meta_fields` WRITE;
/*!40000 ALTER TABLE `wpqj_ea_meta_fields` DISABLE KEYS */;
INSERT INTO `wpqj_ea_meta_fields` VALUES (1,'INPUT','email','EMail','','',1,1,'email',1),(2,'INPUT','name','Name','','',1,1,'minlength-3',2),(3,'INPUT','phone','Phone','','',1,1,'minlength-3',3),(4,'TEXTAREA','description','Description','','',1,0,NULL,4);
/*!40000 ALTER TABLE `wpqj_ea_meta_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_ea_options`
--

DROP TABLE IF EXISTS `wpqj_ea_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_ea_options` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ea_key` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `ea_value` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `type` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=179 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_ea_options`
--

LOCK TABLES `wpqj_ea_options` WRITE;
/*!40000 ALTER TABLE `wpqj_ea_options` DISABLE KEYS */;
INSERT INTO `wpqj_ea_options` VALUES (137,'mail.pending','<p>pending</p>','default'),(138,'mail.reservation','reservation','default'),(139,'mail.canceled','canceled','default'),(140,'mail.confirmed','confirmed','default'),(141,'mail.admin','','default'),(142,'trans.service','Service','default'),(143,'trans.location','Location','default'),(144,'trans.worker','Worker','default'),(145,'trans.done_message','Done','default'),(146,'time_format','am-pm','default'),(147,'trans.currency','£','default'),(148,'pending.email','mark@newcastle-hypnotherapy.com','default'),(149,'price.hide','0','default'),(150,'datepicker','en-GB','default'),(151,'send.user.email','1','default'),(152,'custom.css','','default'),(153,'show.iagree','1','default'),(154,'cancel.scroll','calendar','default'),(155,'multiple.work','1','default'),(156,'compatibility.mode','0','default'),(157,'pending.subject.email','New Reservation #id#','default'),(158,'send.from.email','mark@newcastle-hypnotherapy.com','default'),(159,'css.off','0','default'),(160,'submit.redirect','','default'),(161,'pending.subject.visitor.email','Reservation #id#','default'),(162,'block.time','0','default'),(163,'max.appointments','5','default'),(164,'pre.reservation','0','default'),(165,'default.status','pending','default'),(166,'send.worker.email','1','default'),(167,'currency.before','1','default'),(168,'nonce.off','0','default'),(169,'gdpr.on','1','default'),(170,'gdpr.label','By using this form you agree with the storage and handling of your data by this website.','default'),(171,'gdpr.link','','default'),(172,'gdpr.message','You need to accept the privacy checkbox','default'),(173,'sort.workers-by',NULL,'default'),(174,'sort.services-by',NULL,'default'),(175,'sort.locations-by',NULL,'default'),(176,'order.workers-by',NULL,'default'),(177,'order.services-by',NULL,'default'),(178,'order.locations-by',NULL,'default');
/*!40000 ALTER TABLE `wpqj_ea_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_ea_services`
--

DROP TABLE IF EXISTS `wpqj_ea_services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_ea_services` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `duration` int(11) NOT NULL,
  `slot_step` int(11) DEFAULT NULL,
  `price` decimal(10,2) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_ea_services`
--

LOCK TABLES `wpqj_ea_services` WRITE;
/*!40000 ALTER TABLE `wpqj_ea_services` DISABLE KEYS */;
INSERT INTO `wpqj_ea_services` VALUES (1,'Hypnotherapy',60,60,75.00),(2,'Free Stratergy Session',15,15,0.00);
/*!40000 ALTER TABLE `wpqj_ea_services` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_ea_staff`
--

DROP TABLE IF EXISTS `wpqj_ea_staff`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_ea_staff` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `email` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `phone` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_ea_staff`
--

LOCK TABLES `wpqj_ea_staff` WRITE;
/*!40000 ALTER TABLE `wpqj_ea_staff` DISABLE KEYS */;
INSERT INTO `wpqj_ea_staff` VALUES (1,'Mark','','mark@newcastle-hypnotherapy.com','');
/*!40000 ALTER TABLE `wpqj_ea_staff` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_failed_jobs`
--

DROP TABLE IF EXISTS `wpqj_failed_jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_failed_jobs` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `job` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `failed_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_failed_jobs`
--

LOCK TABLES `wpqj_failed_jobs` WRITE;
/*!40000 ALTER TABLE `wpqj_failed_jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_failed_jobs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_links`
--

DROP TABLE IF EXISTS `wpqj_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
  `link_rating` int(11) NOT NULL DEFAULT 0,
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_links`
--

LOCK TABLES `wpqj_links` WRITE;
/*!40000 ALTER TABLE `wpqj_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_loginizer_logs`
--

DROP TABLE IF EXISTS `wpqj_loginizer_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_loginizer_logs` (
  `username` varchar(255) NOT NULL DEFAULT '',
  `time` int(10) NOT NULL DEFAULT 0,
  `count` int(10) NOT NULL DEFAULT 0,
  `lockout` int(10) NOT NULL DEFAULT 0,
  `ip` varchar(255) NOT NULL DEFAULT '',
  `url` varchar(255) NOT NULL DEFAULT '',
  UNIQUE KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_loginizer_logs`
--

LOCK TABLES `wpqj_loginizer_logs` WRITE;
/*!40000 ALTER TABLE `wpqj_loginizer_logs` DISABLE KEYS */;
INSERT INTO `wpqj_loginizer_logs` VALUES ('markamorley',1569177779,1,0,'117.240.93.242','https://www.newcastle-hypnotherapy.com/wp-login.php'),('markamorley',1569167833,4,1,'94.1.85.112','https://www.newcastle-hypnotherapy.com/wp-login.php'),('Miketom',1569102215,1,0,'195.211.218.5','https://www.newcastle-hypnotherapy.com/wp-login.php');
/*!40000 ALTER TABLE `wpqj_loginizer_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_mailchimp_carts`
--

DROP TABLE IF EXISTS `wpqj_mailchimp_carts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_mailchimp_carts` (
  `id` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `cart` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`email`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_mailchimp_carts`
--

LOCK TABLES `wpqj_mailchimp_carts` WRITE;
/*!40000 ALTER TABLE `wpqj_mailchimp_carts` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_mailchimp_carts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_mo_campaign_log`
--

DROP TABLE IF EXISTS `wpqj_mo_campaign_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_mo_campaign_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `email_campaign_id` bigint(20) unsigned NOT NULL,
  `title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `content_html` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `content_text` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'draft',
  `status_time` datetime DEFAULT NULL,
  `note` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_mo_campaign_log`
--

LOCK TABLES `wpqj_mo_campaign_log` WRITE;
/*!40000 ALTER TABLE `wpqj_mo_campaign_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_mo_campaign_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_mo_campaign_logmeta`
--

DROP TABLE IF EXISTS `wpqj_mo_campaign_logmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_mo_campaign_logmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `campaign_log_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_mo_campaign_logmeta`
--

LOCK TABLES `wpqj_mo_campaign_logmeta` WRITE;
/*!40000 ALTER TABLE `wpqj_mo_campaign_logmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_mo_campaign_logmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_mo_conversions`
--

DROP TABLE IF EXISTS `wpqj_mo_conversions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_mo_conversions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `optin_id` int(8) unsigned NOT NULL DEFAULT 0,
  `optin_type` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `name` varchar(128) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `email` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_agent` varchar(150) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `conversion_page` varchar(256) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `referrer` varchar(256) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `date_added` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_mo_conversions`
--

LOCK TABLES `wpqj_mo_conversions` WRITE;
/*!40000 ALTER TABLE `wpqj_mo_conversions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_mo_conversions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_mo_email_campaigns`
--

DROP TABLE IF EXISTS `wpqj_mo_email_campaigns`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_mo_email_campaigns` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `campaign_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `template_class` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_mo_email_campaigns`
--

LOCK TABLES `wpqj_mo_email_campaigns` WRITE;
/*!40000 ALTER TABLE `wpqj_mo_email_campaigns` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_mo_email_campaigns` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_mo_optin_campaignmeta`
--

DROP TABLE IF EXISTS `wpqj_mo_optin_campaignmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_mo_optin_campaignmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `optin_campaign_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_mo_optin_campaignmeta`
--

LOCK TABLES `wpqj_mo_optin_campaignmeta` WRITE;
/*!40000 ALTER TABLE `wpqj_mo_optin_campaignmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_mo_optin_campaignmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_mo_optin_campaigns`
--

DROP TABLE IF EXISTS `wpqj_mo_optin_campaigns`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_mo_optin_campaigns` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `uuid` char(10) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `optin_class` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `optin_type` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `activated` char(6) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`),
  UNIQUE KEY `uuid` (`uuid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_mo_optin_campaigns`
--

LOCK TABLES `wpqj_mo_optin_campaigns` WRITE;
/*!40000 ALTER TABLE `wpqj_mo_optin_campaigns` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_mo_optin_campaigns` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_options`
--

DROP TABLE IF EXISTS `wpqj_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=308337 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_options`
--

LOCK TABLES `wpqj_options` WRITE;
/*!40000 ALTER TABLE `wpqj_options` DISABLE KEYS */;
INSERT INTO `wpqj_options` VALUES (1,'siteurl','https://www.newcastle-hypnotherapy.com','yes'),(2,'home','https://www.newcastle-hypnotherapy.com','yes'),(3,'blogname','Newcastle Hypnotherapy ','yes'),(4,'blogdescription','Clinical Hypnotherapy in Newcastle upon Tyne, Northumberland &amp; Online','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','mark@newcastle-hypnotherapy.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','1','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','1','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(11384,'jetpack_dismissed_connection_banner','1','yes'),(79558,'wpseo_taxonomy_meta','a:2:{s:8:\"category\";a:1:{i:9;a:3:{s:13:\"wpseo_focuskw\";s:17:\"Sleep Imporvement\";s:13:\"wpseo_linkdex\";s:2:\"25\";s:19:\"wpseo_content_score\";s:2:\"30\";}}s:11:\"product_cat\";a:1:{i:48;a:4:{s:11:\"wpseo_title\";s:44:\"%%term_title%% %%page%% %%sep%% %%sitename%%\";s:13:\"wpseo_focuskw\";s:20:\"The Secret Workshops\";s:13:\"wpseo_linkdex\";s:2:\"39\";s:19:\"wpseo_content_score\";s:2:\"30\";}}}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:22:{i:0;s:17:\"aceide/AceIDE.php\";i:1;s:73:\"advanced-responsive-video-embedder/advanced-responsive-video-embedder.php\";i:2;s:19:\"akismet/akismet.php\";i:3;s:33:\"classic-editor/classic-editor.php\";i:4;s:50:\"contact-form-7-mailchimp-extension/cf7-mch-ext.php\";i:5;s:30:\"contact-form-7-skins/index.php\";i:6;s:36:\"contact-form-7/wp-contact-form-7.php\";i:7;s:35:\"cookie-law-info/cookie-law-info.php\";i:8;s:41:\"flynsarmy-iframe-shortcode/flyniframe.php\";i:9;s:35:\"insert-headers-and-footers/ihaf.php\";i:10;s:19:\"jetpack/jetpack.php\";i:11;s:23:\"loginizer/loginizer.php\";i:12;s:51:\"mailchimp-for-woocommerce/mailchimp-woocommerce.php\";i:13;s:61:\"simply-schedule-appointments/simply-schedule-appointments.php\";i:14;s:39:\"woocommerce-admin/woocommerce-admin.php\";i:15;s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";i:16;s:45:\"woocommerce-services/woocommerce-services.php\";i:17;s:27:\"woocommerce/woocommerce.php\";i:18;s:24:\"wordpress-seo/wp-seo.php\";i:19;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";i:20;s:24:\"wpforms-lite/wpforms.php\";i:21;s:25:\"zopim-live-chat/zopim.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:5:{i:0;s:103:\"/home/myfreepa/newcastle-hypnotherapy.com/wp-content/themes/swiftraytheme/template-with-only-header.php\";i:1;s:96:\"/home/myfreepa/newcastle-hypnotherapy.com/wp-content/themes/swiftraytheme/template-fullwidth.php\";i:2;s:82:\"/home/myfreepa/newcastle-hypnotherapy.com/wp-content/themes/swiftraytheme/page.php\";i:3;s:84:\"/home/myfreepa/newcastle-hypnotherapy.com/wp-content/themes/swiftraytheme/header.php\";i:4;s:83:\"/home/myfreepa/newcastle-hypnotherapy.com/wp-content/themes/swiftraytheme/style.css\";}','no'),(40,'template','responsivepro','yes'),(41,'stylesheet','responsivepro','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','1','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','44719','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:3:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;i:4;a:4:{s:5:\"title\";s:15:\"Blog Categories\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}}','yes'),(79,'widget_text','a:8:{i:1;a:0:{}i:2;a:4:{s:5:\"title\";s:22:\"Newcastle Hypnotherapy\";s:4:\"text\";s:182:\"<strong>Address</strong> - <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ</span>\r\n<strong>Telephone 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:4;a:4:{s:5:\"title\";s:5:\"links\";s:4:\"text\";s:154:\"David Waine local author <a href=\"http://www.davidwaine.net/\">www.davidwaine.net</a>\r\n\r\n<a href=\"http://www.orpheuscandles.com\">www.orpheuscandles.com</a>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:6;a:4:{s:5:\"title\";s:22:\"Newcastle Hypnotherapy\";s:4:\"text\";s:82:\"<span class=\"LrzXr\">31 Station Road, Newcastle upon Tyne, Wallsend NE28 6SZ</span>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:8;a:0:{}i:9;a:0:{}i:13;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:771:\"<div class=\"header-custom-container\"><strong>Call </strong><span style=\"color: #0000ff;\"><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" style=\"color: #0000ff;\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a></span><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\"><strong> or </strong><b><span style=\"color: #ff6600;\"><em><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em></span> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:5:{s:23:\"loginizer/loginizer.php\";s:22:\"loginizer_deactivation\";s:35:\"cookie-law-info/cookie-law-info.php\";s:30:\"cookielawinfo_uninstall_plugin\";s:45:\"woocommerce-services/woocommerce-services.php\";a:2:{i:0;s:17:\"WC_Connect_Loader\";i:1;s:16:\"plugin_uninstall\";}s:26:\"easy-appointments/main.php\";a:2:{i:0;s:15:\"EasyAppointment\";i:1;s:9:\"uninstall\";}s:33:\"classic-editor/classic-editor.php\";a:2:{i:0;s:14:\"Classic_Editor\";i:1;s:9:\"uninstall\";}}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','1399','yes'),(84,'page_on_front','1437','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','1489','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wpqj_user_roles','a:9:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:129:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;s:13:\"chimpmate_cap\";b:1;s:11:\"edit_blocks\";b:1;s:18:\"edit_others_blocks\";b:1;s:14:\"publish_blocks\";b:1;s:19:\"read_private_blocks\";b:1;s:11:\"read_blocks\";b:1;s:13:\"delete_blocks\";b:1;s:21:\"delete_private_blocks\";b:1;s:23:\"delete_published_blocks\";b:1;s:20:\"delete_others_blocks\";b:1;s:19:\"edit_private_blocks\";b:1;s:21:\"edit_published_blocks\";b:1;s:13:\"create_blocks\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:12:\"access_zopim\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:47:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:11:\"edit_blocks\";b:1;s:18:\"edit_others_blocks\";b:1;s:14:\"publish_blocks\";b:1;s:19:\"read_private_blocks\";b:1;s:11:\"read_blocks\";b:1;s:13:\"delete_blocks\";b:1;s:21:\"delete_private_blocks\";b:1;s:23:\"delete_published_blocks\";b:1;s:20:\"delete_others_blocks\";b:1;s:19:\"edit_private_blocks\";b:1;s:21:\"edit_published_blocks\";b:1;s:13:\"create_blocks\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:17:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:11:\"edit_blocks\";b:1;s:14:\"publish_blocks\";b:1;s:11:\"read_blocks\";b:1;s:13:\"delete_blocks\";b:1;s:23:\"delete_published_blocks\";b:1;s:21:\"edit_published_blocks\";b:1;s:13:\"create_blocks\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:6:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:11:\"read_blocks\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:37:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:36:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:91:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}','yes'),(93,'fresh_site','0','yes'),(94,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:22:{s:9:\"sidebar-1\";a:5:{i:0;s:13:\"media_image-6\";i:1;s:13:\"media_image-4\";i:2;s:8:\"search-2\";i:3;s:14:\"recent-posts-2\";i:4;s:12:\"categories-2\";}s:8:\"footer-1\";a:1:{i:0;s:6:\"text-2\";}s:8:\"footer-2\";a:1:{i:0;s:13:\"custom_html-2\";}s:8:\"footer-3\";a:1:{i:0;s:6:\"text-4\";}s:19:\"primary-widget-area\";a:1:{i:0;s:13:\"media_image-7\";}s:24:\"first-footer-widget-area\";a:1:{i:0;s:6:\"text-6\";}s:25:\"second-footer-widget-area\";a:1:{i:0;s:6:\"text-8\";}s:24:\"third-footer-widget-area\";a:1:{i:0;s:6:\"text-9\";}s:19:\"wp_inactive_widgets\";a:2:{i:0;s:13:\"media_video-3\";i:1;s:22:\"eu_cookie_law_widget-3\";}s:12:\"main-sidebar\";a:2:{i:0;s:12:\"categories-4\";i:1;s:14:\"media_image-13\";}s:13:\"right-sidebar\";a:2:{i:0;s:13:\"media_image-9\";i:1;s:14:\"media_image-11\";}s:12:\"left-sidebar\";a:0:{}s:17:\"left-sidebar-half\";a:0:{}s:18:\"right-sidebar-half\";a:0:{}s:13:\"home-widget-1\";a:0:{}s:13:\"home-widget-2\";a:0:{}s:13:\"home-widget-3\";a:0:{}s:14:\"gallery-widget\";a:0:{}s:15:\"colophon-widget\";a:0:{}s:10:\"top-widget\";a:1:{i:0;s:7:\"text-13\";}s:13:\"footer-widget\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(19144,'woocommerce_catalog_rows','4','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_image','a:7:{i:4;a:15:{s:13:\"attachment_id\";i:315;s:3:\"url\";s:82:\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\";s:5:\"title\";s:16:\"Proud Members Of\";s:4:\"size\";s:9:\"thumbnail\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}i:6;a:15:{s:13:\"attachment_id\";i:684;s:3:\"url\";s:84:\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/fb-logo-150x150.jpg\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:9:\"thumbnail\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:22:\"Newcastle Hypnotherapy\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}i:7;a:15:{s:13:\"attachment_id\";i:822;s:3:\"url\";s:89:\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/smiley-2979107_1280.jpg\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"width\";i:1280;s:6:\"height\";i:719;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:22:\"Newcastle Hypnotherapy\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:39:\"https://www.newcastle-hypnotherapy.com/\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}i:9;a:15:{s:13:\"attachment_id\";i:2476;s:3:\"url\";s:82:\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/NHHS-150x150.png\";s:5:\"title\";s:24:\"Meet Your Hypnotherapist\";s:4:\"size\";s:9:\"thumbnail\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:7:\"caption\";s:45:\"Click to learn more about Mark &amp; the team\";s:3:\"alt\";s:22:\"Newcastle Hypnotherapy\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:48:\"https://www.newcastle-hypnotherapy.com/about-us/\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;i:11;a:15:{s:13:\"attachment_id\";i:2487;s:3:\"url\";s:126:\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/26219346_10215918480661430_8877811450273727224_n-300x300.jpg\";s:5:\"title\";s:21:\"Read Customer Reviews\";s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:22:\"Happy Customer Reviews\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:55:\"https://www.newcastle-hypnotherapy.com/client-feedback/\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}i:13;a:15:{s:13:\"attachment_id\";i:2487;s:3:\"url\";s:126:\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/26219346_10215918480661430_8877811450273727224_n-300x300.jpg\";s:5:\"title\";s:21:\"Read Customer Reviews\";s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:55:\"https://www.newcastle-hypnotherapy.com/client-feedback/\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}}','yes'),(104,'widget_media_video','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:11:{s:13:\"attachment_id\";i:0;s:3:\"url\";s:43:\"https://www.youtube.com/watch?v=OWeDKoIMFug\";s:5:\"title\";s:0:\"\";s:7:\"preload\";s:8:\"metadata\";s:4:\"loop\";b:0;s:7:\"content\";s:0:\"\";s:3:\"mp4\";s:0:\"\";s:3:\"m4v\";s:0:\"\";s:4:\"webm\";s:0:\"\";s:3:\"ogv\";s:0:\"\";s:3:\"flv\";s:0:\"\";}}','yes'),(105,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_custom_html','a:3:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:126:\"<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\";}s:12:\"_multiwidget\";i:1;i:4;a:0:{}}','yes'),(108,'cron','a:29:{i:1569180150;a:2:{s:22:\"jetpack_sync_full_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}s:17:\"jetpack_sync_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1569180159;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1569180166;a:1:{s:30:\"ssa_cron_process_async_actions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:18:\"ssa_async_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1569180204;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1569180447;a:1:{s:40:\"jetpack_display_posts_widget_cron_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"minutes_10\";s:4:\"args\";a:0:{}s:8:\"interval\";i:600;}}}i:1569181292;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1569181647;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1569181727;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1569183216;a:1:{s:25:\"appointments_gdpr_wp_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1569188904;a:1:{s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1569196800;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1569199182;a:1:{s:29:\"akismet_schedule_cron_recheck\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1569204959;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1569219765;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1569229260;a:1:{s:24:\"akismet_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1569240944;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1569241365;a:1:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1569241375;a:1:{s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1569242492;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1569247200;a:1:{s:28:\"wpforms_email_summaries_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:30:\"wpforms_email_summaries_weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1569248189;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1569250914;a:1:{s:19:\"wpseo-reindex-links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1569251259;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1569252165;a:1:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1569260850;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1569260852;a:1:{s:32:\"wc_connect_fetch_service_schemas\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1569260902;a:1:{s:24:\"jp_purge_transients_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1569888000;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2635200;}}}s:7:\"version\";i:2;}','yes'),(109,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1506521930;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(112,'loginizer_version','1.4.2','yes'),(113,'loginizer_options','a:0:{}','yes'),(114,'loginizer_last_reset','1569145559','yes'),(115,'loginizer_whitelist','a:0:{}','yes'),(116,'loginizer_blacklist','a:0:{}','yes'),(117,'loginizer_ins_time','1506521761','yes'),(118,'loginizer_promo_time','-1528128540','yes'),(6215,'optinforms_form_action_madmimi','','yes'),(6422,'wpmchimpa_prover','1.3.2','yes'),(6423,'widget_chimpmate','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(455,'wpseo','a:20:{s:15:\"ms_defaults_set\";b:0;s:7:\"version\";s:4:\"12.0\";s:20:\"disableadvanced_meta\";b:1;s:19:\"onpage_indexability\";b:1;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:13:\"smallBusiness\";s:20:\"has_multiple_authors\";b:0;s:16:\"environment_type\";s:10:\"production\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1507820514;s:13:\"myyoast-oauth\";b:0;}','yes'),(457,'wpseo_titles','a:101:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-pipe\";s:16:\"title-home-wpseo\";s:60:\"Newcastle Hypnotherapy | Expert Hypnotherapy, Hypnosis & NLP\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:19:\"metadesc-home-wpseo\";s:174:\"Expert Hypnosis Services in Newcastle, Northumberland & Online for anxiety, stress, depression, weight loss, stop smoking and other issues. Call Mark Morley on 07568 455 809.\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:1;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:0;s:23:\"is-media-purge-relevant\";b:1;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:0;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:2:\"»\";s:12:\"website_name\";s:22:\"Newcastle Hypnotherapy\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:14:\"person_logo_id\";i:0;s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:91:\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/Newcastle-Hypnotherapy.jpg\";s:15:\"company_logo_id\";i:958;s:12:\"company_name\";s:22:\"Newcastle Hypnotherapy\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:13:\"title-product\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"metadesc-product\";s:0:\"\";s:15:\"noindex-product\";b:0;s:16:\"showdate-product\";b:0;s:26:\"display-metabox-pt-product\";b:1;s:26:\"post_types-product-maintax\";i:0;s:23:\"title-ptarchive-product\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-ptarchive-product\";s:0:\"\";s:25:\"bctitle-ptarchive-product\";s:0:\"\";s:25:\"noindex-ptarchive-product\";b:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:0;s:23:\"noindex-tax-post_format\";b:1;s:21:\"title-tax-product_cat\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-product_cat\";s:0:\"\";s:31:\"display-metabox-tax-product_cat\";b:1;s:23:\"noindex-tax-product_cat\";b:0;s:29:\"taxonomy-product_cat-ptparent\";i:0;s:21:\"title-tax-product_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-product_tag\";s:0:\"\";s:31:\"display-metabox-tax-product_tag\";b:1;s:23:\"noindex-tax-product_tag\";b:0;s:29:\"taxonomy-product_tag-ptparent\";i:0;s:32:\"title-tax-product_shipping_class\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:35:\"metadesc-tax-product_shipping_class\";s:0:\"\";s:42:\"display-metabox-tax-product_shipping_class\";b:1;s:34:\"noindex-tax-product_shipping_class\";b:0;s:40:\"taxonomy-product_shipping_class-ptparent\";i:0;s:19:\"title-cookielawinfo\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:22:\"metadesc-cookielawinfo\";s:0:\"\";s:21:\"noindex-cookielawinfo\";b:0;s:22:\"showdate-cookielawinfo\";b:0;s:32:\"display-metabox-pt-cookielawinfo\";b:1;}','yes'),(458,'wpseo_social','a:18:{s:13:\"facebook_site\";s:43:\"https://www.facebook.com/newcastlehypnosis/\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:14:\"plus-publisher\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:14:\"Newcastlehypno\";s:17:\"twitter_card_type\";s:7:\"summary\";s:11:\"youtube_url\";s:56:\"https://www.youtube.com/channel/UC5Aa6CyIpadoA80ICPvN2eA\";s:15:\"google_plus_url\";s:0:\"\";s:10:\"fbadminapp\";s:0:\"\";}','yes'),(462,'wpseo_flush_rewrite','1','yes'),(691,'jetpack_activated','1','yes'),(694,'jetpack_activation_source','a:2:{i:0;s:7:\"unknown\";i:1;N;}','yes'),(695,'jetpack_sync_settings_disable','0','yes'),(696,'jetpack_file_data','a:1:{s:3:\"5.4\";a:55:{s:32:\"31e5b9ae08b62c2b0cd8a7792242298b\";a:14:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:39:\"Check your spelling, style, and grammar\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"6\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:115:\"after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche\";}s:32:\"3f41b2d629265b5de8108b463abbe8e2\";a:14:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:75:\"Display images and galleries in a gorgeous, full-screen browsing experience\";s:14:\"jumpstart_desc\";s:79:\"Brings your photos and images to life as full-size, easily navigable galleries.\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";}s:32:\"e1c539d5b392f5a1709dada3da5793cc\";a:14:{s:4:\"name\";s:13:\"Comment Likes\";s:11:\"description\";s:64:\"Increase visitor engagement by adding a Like button to comments.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"39\";s:20:\"recommendation_order\";s:2:\"17\";s:10:\"introduced\";s:3:\"5.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:37:\"like widget, like button, like, likes\";}s:32:\"c6ebb418dde302de09600a6025370583\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:80:\"Let readers use WordPress.com, Twitter, Facebook, or Google+ accounts to comment\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";}s:32:\"836f9485669e1bbb02920cb474730df0\";a:14:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:57:\"Insert a customizable contact form anywhere on your site.\";s:14:\"jumpstart_desc\";s:111:\"Adds a button to your post and page editors, allowing you to build simple forms to help visitors stay in touch.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:18:\"Writing, Jumpstart\";s:25:\"additional_search_queries\";s:44:\"contact, form, grunion, feedback, submission\";}s:32:\"ea3970eebf8aac55fc3eca5dca0e0157\";a:14:{s:4:\"name\";s:20:\"Custom content types\";s:11:\"description\";s:74:\"Display different types of content on your site with custom content types.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";}s:32:\"d2bb05ccad3d8789df40ca3abb97336c\";a:14:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:53:\"Tweak your site’s CSS without modifying your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";}s:32:\"a2064eec5b9c7e0d816af71dee7a715f\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"53a4ec755022ef3953699734c343da02\";a:14:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";}s:32:\"e1f1f6e3689fc31c477e64b06e2f8fbf\";a:14:{s:4:\"name\";s:16:\"Google Analytics\";s:11:\"description\";s:56:\"Set up Google Analytics without touching a line of code.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"37\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"4.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:37:\"webmaster, google, analytics, console\";}s:32:\"72fecb67ee6704ba0a33e0225316ad06\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"d56e2886185a9eace719cc57d46770df\";a:14:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:14:\"jumpstart_desc\";s:131:\"Let commenters link their profiles to their Gravatar accounts, making it easy for your visitors to learn more about your community.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";}s:32:\"e391e760617bd0e0736550e34a73d7fe\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:8:\"2.0.3 ??\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"2e345370766346c616b3c5046e817720\";a:14:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:53:\"Automatically load new content when a visitor scrolls\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";}s:32:\"bd69edbf134de5fae8fdcf2e70a45b56\";a:14:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";}s:32:\"8110b7a4423aaa619dfa46b8843e10d1\";a:14:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:57:\"Use LaTeX markup for complex equations and other geekery.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";}s:32:\"fd7e85d3b4887fa6b6f997d6592c1f33\";a:14:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:14:\"jumpstart_desc\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";}s:32:\"c5dfef41fad5bcdcaae8e315e5cfc420\";a:14:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:54:\"Manage all of your sites from a centralized dashboard.\";s:14:\"jumpstart_desc\";s:151:\"Helps you remotely manage plugins, turn on automated updates, and more from <a href=\"https://wordpress.com/plugins/\" target=\"_blank\">wordpress.com</a>.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"3\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:26:\"manage, management, remote\";}s:32:\"fd6dc399b92bce76013427e3107c314f\";a:14:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:50:\"Write posts or pages in plain-text Markdown syntax\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";}s:32:\"614679778a7db6d8129c9f69ac8e10a5\";a:14:{s:4:\"name\";s:21:\"WordPress.com Toolbar\";s:11:\"description\";s:91:\"Replaces the admin bar with a useful toolbar to quickly manage your site via WordPress.com.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"16\";s:10:\"introduced\";s:3:\"4.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"General\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:19:\"adminbar, masterbar\";}s:32:\"c49a35b6482b0426cb07ad28ecf5d7df\";a:14:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:31:\"Enable the Jetpack Mobile theme\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";}s:32:\"b42e38f6fafd2e4104ebe5bf39b4be47\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"771cfeeba0d3d23ec344d5e781fb0ae2\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"54f0661d27c814fc8bde39580181d939\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"46c4c413b5c72bbd3c3dbd14ff8f8adc\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"9ea52fa25783e5ceeb6bfaed3268e64e\";a:14:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";s:14:\"jumpstart_desc\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:37:\"monitor, uptime, downtime, monitoring\";}s:32:\"cfcaafd0fcad087899d715e0b877474d\";a:14:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";}s:32:\"0d18bfa69bec61550c1d813ce64149b0\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"3f0a11e23118f0788d424b646a6d465f\";a:14:{s:4:\"name\";s:6:\"Photon\";s:11:\"description\";s:26:\"Speed up images and photos\";s:14:\"jumpstart_desc\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:34:\"Recommended, Jumpstart, Appearance\";s:25:\"additional_search_queries\";s:38:\"photon, image, cdn, performance, speed\";}s:32:\"e37cfbcb72323fb1fe8255a2edb4d738\";a:14:{s:4:\"name\";s:13:\"Post by email\";s:11:\"description\";s:33:\"Publish posts by sending an email\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";}s:32:\"728290d131a480bfe7b9e405d7cd925f\";a:14:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:41:\"Block suspicious-looking sign in activity\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:65:\"security, secure, protection, botnet, brute force, protect, login\";}s:32:\"f9ce784babbbf4dcca99b8cd2ceb420c\";a:14:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:27:\"Automated social marketing.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:107:\"facebook, twitter, google+, googleplus, google, path, tumblr, linkedin, social, tweet, connections, sharing\";}s:32:\"052c03877dd3d296a71531cb07ad939a\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"52edecb2a75222e75b2dce4356a4efce\";a:14:{s:4:\"name\";s:13:\"Related posts\";s:11:\"description\";s:64:\"Increase page views by showing related content to your visitors.\";s:14:\"jumpstart_desc\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:22:\"related, related posts\";}s:32:\"fe7a38addc9275dcbe6c4ff6c44a9350\";a:14:{s:4:\"name\";s:6:\"Search\";s:11:\"description\";s:41:\"Enhanced search, powered by Elasticsearch\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:6:\"Search\";s:25:\"additional_search_queries\";s:6:\"search\";}s:32:\"68b0d01689803c0ea7e4e60a86de2519\";a:14:{s:4:\"name\";s:9:\"SEO Tools\";s:11:\"description\";s:50:\"Better results on search engines and social media.\";s:14:\"jumpstart_desc\";s:50:\"Better results on search engines and social media.\";s:4:\"sort\";s:2:\"35\";s:20:\"recommendation_order\";s:2:\"15\";s:10:\"introduced\";s:3:\"4.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:18:\"Traffic, Jumpstart\";s:25:\"additional_search_queries\";s:81:\"search engine optimization, social preview, meta description, custom title format\";}s:32:\"8b059cb50a66b717f1ec842e736b858c\";a:14:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:37:\"Allow visitors to share your content.\";s:14:\"jumpstart_desc\";s:116:\"Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:141:\"share, sharing, sharedaddy, buttons, icons, email, facebook, twitter, google+, linkedin, pinterest, pocket, press this, print, reddit, tumblr\";}s:32:\"a6d2394329871857401255533a9873f7\";a:14:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:50:\"Embed media from popular sites without any coding.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:236:\"shortcodes, shortcode, embeds, media, bandcamp, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";}s:32:\"21496e2897ea5f81605e2f2ac3beb921\";a:14:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:54:\"Create short and simple links for all posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";}s:32:\"e2a54a5d7879a4162709e6ffb540dd08\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"f5c537bc304f55b29c1a87e30be0cd24\";a:14:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";}s:32:\"59a23643437358a9b557f1d1e20ab040\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"6a90f97c3194cfca5671728eaaeaf15e\";a:14:{s:4:\"name\";s:14:\"Single Sign On\";s:11:\"description\";s:62:\"Allow users to log into this site using WordPress.com accounts\";s:14:\"jumpstart_desc\";s:98:\"Lets you log in to all your Jetpack-enabled sites with one click using your WordPress.com account.\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";}s:32:\"b65604e920392e2f7134b646760b75e8\";a:14:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable traffic stats and insights.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";}s:32:\"23a586dd7ead00e69ec53eb32ef740e4\";a:14:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:87:\"Allow users to subscribe to your posts and comments and receive notifications via email\";s:14:\"jumpstart_desc\";s:126:\"Give visitors two easy subscription options — while commenting, or via a separate email subscription widget you can display.\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";}s:32:\"1d978b8d84d2f378fe1a702a67633b6d\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"b3b983461d7f3d27322a3551ed8a9405\";a:14:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:14:\"jumpstart_desc\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";}s:32:\"d924e5b05722b0e104448543598f54c0\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"36741583b10c521997e563ad8e1e8b77\";a:14:{s:4:\"name\";s:12:\"Data Backups\";s:11:\"description\";s:54:\"Off-site backups, security scans, and automatic fixes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:16:\"Security, Health\";s:25:\"additional_search_queries\";s:28:\"vaultpress, backup, security\";}s:32:\"2b9b44f09b5459617d68dd82ee17002a\";a:14:{s:4:\"name\";s:17:\"Site verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";}s:32:\"5ab4c0db7c42e10e646342da0274c491\";a:14:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:27:\"Fast, ad-free video hosting\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:25:\"video, videos, videopress\";}s:32:\"60a1d3aa38bc0fe1039e59dd60888543\";a:14:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";}s:32:\"174ed3416476c2cb9ff5b0f671280b15\";a:14:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:54:\"Add images, Twitter streams, and more to your sidebar.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";}s:32:\"a668bc9418d6de87409f867892fcdd7f\";a:14:{s:4:\"name\";s:3:\"Ads\";s:11:\"description\";s:60:\"Earn income by allowing Jetpack to display high quality ads.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"4.5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Traffic, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"advertising, ad codes, ads\";}s:32:\"28b931a1db19bd24869bd54b14e733d5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}}}','yes'),(2930,'jetpack_log','a:2:{i:0;a:4:{s:4:\"time\";i:1512424221;s:7:\"user_id\";i:1;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}i:1;a:5:{s:4:\"time\";i:1535910456;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:151150710;s:4:\"code\";s:24:\"custom_css_4.7_migration\";s:4:\"data\";s:5:\"start\";}}','no'),(2931,'jetpack_secrets','a:2:{s:19:\"jetpack_authorize_2\";a:3:{s:8:\"secret_1\";s:32:\"GKjd9GkMcfxu8iey1kTBuU1yBZleLIME\";s:8:\"secret_2\";s:32:\"88rwgnUQMLeHzURhvr3EVUlJ37T7oyyt\";s:3:\"exp\";i:1525246972;}s:19:\"jetpack_authorize_1\";a:3:{s:8:\"secret_1\";s:32:\"eMWxZJu3iWoN3a1J80nvGGs5gGBgfZSC\";s:8:\"secret_2\";s:32:\"TDPzE5zzDrKRWjKbtpydzh27gRIVErqs\";s:3:\"exp\";i:1542543743;}}','no'),(2932,'jetpack_private_options','a:2:{s:10:\"blog_token\";s:65:\"quAoBQwnS3X0EjPboUhqNY8kJKLHP7F&.JmdgkhH%Xv%dW5wsTwDpiCdS4qgk07eA\";s:11:\"user_tokens\";a:1:{i:1;s:67:\"53lSXXCPu0VXsz6qR4(5!XV29u)7M^Uz.OcZMR3NFiegiToi5mAB)7QBAjsFYxfH7.1\";}}','yes'),(148,'current_theme','Responsive Pro','yes'),(149,'theme_mods_squirreltheme','a:3:{i:0;b:0;s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1506528407;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:19:\"primary-widget-area\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:21:\"secondary-widget-area\";a:0:{}s:24:\"first-footer-widget-area\";a:0:{}s:25:\"second-footer-widget-area\";N;s:24:\"third-footer-widget-area\";N;}}}','yes'),(150,'theme_switched','','yes'),(151,'inkthemes_options','a:58:{s:11:\"of_template\";a:64:{i:0;a:2:{s:4:\"name\";s:16:\"General Settings\";s:4:\"type\";s:7:\"heading\";}i:1;a:4:{s:4:\"name\";s:11:\"Custom Logo\";s:4:\"desc\";s:62:\"Choose your own logo. Optimal Size: 300px Wide by 90px Height.\";s:2:\"id\";s:14:\"inkthemes_logo\";s:4:\"type\";s:6:\"upload\";}i:2;a:4:{s:4:\"name\";s:14:\"Custom Favicon\";s:4:\"desc\";s:71:\"Specify a 16px x 16px image that will represent your website\'s favicon.\";s:2:\"id\";s:17:\"inkthemes_favicon\";s:4:\"type\";s:6:\"upload\";}i:3;a:5:{s:4:\"name\";s:21:\"Body Background Image\";s:4:\"desc\";s:46:\"Select image to change your website background\";s:2:\"id\";s:16:\"inkthemes_bodybg\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";}i:4;a:5:{s:4:\"name\";s:38:\"Contact Number For Tap To Call Feature\";s:4:\"desc\";s:208:\"Mention your contact number here through which users can interact to you directly. This feature is called tap to call and this will work when the user will access your website through mobile phones or iPhone.\";s:2:\"id\";s:24:\"inkthemes_contact_number\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:5;a:5:{s:4:\"name\";s:13:\"Tracking Code\";s:4:\"desc\";s:58:\"Paste your Google Analytics (or other) tracking code here.\";s:2:\"id\";s:19:\"inkthemes_analytics\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:6;a:6:{s:4:\"name\";s:17:\"Front Page On/Off\";s:4:\"desc\";s:82:\"Check on for enabling front page or check off for enabling blog page in front page\";s:2:\"id\";s:5:\"re_nm\";s:3:\"std\";s:2:\"on\";s:4:\"type\";s:5:\"radio\";s:7:\"options\";a:2:{s:2:\"on\";s:2:\"On\";s:3:\"off\";s:3:\"Off\";}}i:7;a:2:{s:4:\"name\";s:16:\"Homepage Heading\";s:4:\"type\";s:7:\"heading\";}i:8;a:5:{s:4:\"name\";s:13:\"First Heading\";s:4:\"desc\";s:34:\"Enter your text for first heading.\";s:2:\"id\";s:20:\"inkthemes_first_head\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:9;a:5:{s:4:\"name\";s:14:\"Second Heading\";s:4:\"desc\";s:35:\"Enter your text for second heading.\";s:2:\"id\";s:21:\"inkthemes_second_head\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:10;a:2:{s:4:\"name\";s:14:\"Slider Setting\";s:4:\"type\";s:7:\"heading\";}i:11;a:5:{s:4:\"name\";s:12:\"Slider Speed\";s:4:\"desc\";s:224:\"Set the speed of the slider in milliseconds. For e.g. if you want to set the speed of the slider for 8 seconds then enter 8000 in the field or if you want to set the slider speed for 2.5 seconds then enter 2500 in the field.\";s:2:\"id\";s:21:\"inkthemes_slide_speed\";s:3:\"std\";s:4:\"8000\";s:4:\"type\";s:4:\"text\";}i:12;a:5:{s:4:\"name\";s:14:\"Slider Image 1\";s:4:\"desc\";s:80:\"Choose your image for first slider. Optimal size is 580px wide and 325px height.\";s:2:\"id\";s:16:\"inkthemes_image1\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";}i:13;a:5:{s:4:\"name\";s:12:\"Slide 1 Link\";s:4:\"desc\";s:30:\"Enter yout link for url slide3\";s:2:\"id\";s:20:\"inkthemes_slidelink1\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:14;a:5:{s:4:\"name\";s:14:\"Slider Image 2\";s:4:\"desc\";s:81:\"Choose your image for second slider. Optimal size is 580px wide and 325px height.\";s:2:\"id\";s:16:\"inkthemes_image2\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";}i:15;a:5:{s:4:\"name\";s:12:\"Slide 2 Link\";s:4:\"desc\";s:30:\"Enter yout link for url slide3\";s:2:\"id\";s:20:\"inkthemes_slidelink2\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:16;a:5:{s:4:\"name\";s:14:\"Slider Image 3\";s:4:\"desc\";s:80:\"Choose your image for third slider. Optimal size is 580px wide and 325px height.\";s:2:\"id\";s:16:\"inkthemes_image3\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";}i:17;a:5:{s:4:\"name\";s:12:\"Slide 3 Link\";s:4:\"desc\";s:30:\"Enter yout link for url slide3\";s:2:\"id\";s:20:\"inkthemes_slidelink3\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:18;a:5:{s:4:\"name\";s:14:\"Slider Image 4\";s:4:\"desc\";s:81:\"Choose your image for fourth slider. Optimal size is 580px wide and 325px height.\";s:2:\"id\";s:16:\"inkthemes_image4\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";}i:19;a:5:{s:4:\"name\";s:12:\"Slide 4 Link\";s:4:\"desc\";s:30:\"Enter yout link for url slide4\";s:2:\"id\";s:20:\"inkthemes_slidelink4\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:20;a:5:{s:4:\"name\";s:14:\"Slider Image 5\";s:4:\"desc\";s:80:\"Choose your image for fifth slider. Optimal size is 580px wide and 325px height.\";s:2:\"id\";s:16:\"inkthemes_image5\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";}i:21;a:5:{s:4:\"name\";s:12:\"Slide 5 Link\";s:4:\"desc\";s:30:\"Enter yout link for url slide5\";s:2:\"id\";s:20:\"inkthemes_slidelink5\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:22;a:5:{s:4:\"name\";s:14:\"Slider Image 6\";s:4:\"desc\";s:80:\"Choose your image for sixth slider. Optimal size is 580px wide and 325px height.\";s:2:\"id\";s:16:\"inkthemes_image6\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";}i:23;a:5:{s:4:\"name\";s:12:\"Slide 6 Link\";s:4:\"desc\";s:30:\"Enter yout link for url slide6\";s:2:\"id\";s:20:\"inkthemes_slidelink6\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:24;a:5:{s:4:\"name\";s:14:\"Slider Heading\";s:4:\"desc\";s:35:\"Enter your text for slider heading.\";s:2:\"id\";s:19:\"inkthemes_slidehead\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:25;a:5:{s:4:\"name\";s:18:\"Slider Description\";s:4:\"desc\";s:39:\"Enter your text for slider description.\";s:2:\"id\";s:19:\"inkthemes_slidedesc\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:26;a:2:{s:4:\"name\";s:17:\"Homepage Two Cols\";s:4:\"type\";s:7:\"heading\";}i:27;a:5:{s:4:\"name\";s:25:\"Homepage Left Col Heading\";s:4:\"desc\";s:39:\"Enter your text for home page left col.\";s:2:\"id\";s:21:\"inkthemes_leftcolhead\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:28;a:5:{s:4:\"name\";s:29:\"Homepage Left Col Description\";s:4:\"desc\";s:51:\"Enter your text for home page left col description.\";s:2:\"id\";s:21:\"inkthemes_leftcoldesc\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:29;a:5:{s:4:\"name\";s:26:\"Homepage Right Col Heading\";s:4:\"desc\";s:38:\"Enter your text for right col heading.\";s:2:\"id\";s:22:\"inkthemes_rightcolhead\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:30;a:5:{s:4:\"name\";s:30:\"Homepage Right Col Description\";s:4:\"desc\";s:42:\"Enter your text for right col description.\";s:2:\"id\";s:22:\"inkthemes_rightcoldesc\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:31;a:2:{s:4:\"name\";s:19:\"Homepage Three Cols\";s:4:\"type\";s:7:\"heading\";}i:32;a:5:{s:4:\"name\";s:31:\"Homepage Three Cols First Image\";s:4:\"desc\";s:95:\"Choose your image for homepage three cols first image. Optimal size is 290px wide 153px height.\";s:2:\"id\";s:19:\"inkthemes_threeimg1\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";}i:33;a:5:{s:4:\"name\";s:32:\"Homepage Three Cols Second Image\";s:4:\"desc\";s:96:\"Choose your image for homepage three cols Second image.  Optimal size is 290px wide 153px height\";s:2:\"id\";s:19:\"inkthemes_threeimg2\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";}i:34;a:5:{s:4:\"name\";s:31:\"Homepage Three Cols Third Image\";s:4:\"desc\";s:95:\"Choose your image for homepage three cols third image.  Optimal size is 290px wide 153px height\";s:2:\"id\";s:19:\"inkthemes_threeimg3\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";}i:35;a:5:{s:4:\"name\";s:17:\"First Col Heading\";s:4:\"desc\";s:38:\"Enter your text for first col heading.\";s:2:\"id\";s:19:\"inkthemes_firsthead\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:36;a:5:{s:4:\"name\";s:21:\"First Col Description\";s:4:\"desc\";s:42:\"Enter your text for first col description.\";s:2:\"id\";s:19:\"inkthemes_firstdesc\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:37;a:5:{s:4:\"name\";s:18:\"First Col Link URL\";s:4:\"desc\";s:34:\"Enter your link url for first col.\";s:2:\"id\";s:22:\"inkthemes_firstcollink\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:38;a:5:{s:4:\"name\";s:18:\"Second Col Heading\";s:4:\"desc\";s:39:\"Enter your text for second col heading.\";s:2:\"id\";s:20:\"inkthemes_secondhead\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:39;a:5:{s:4:\"name\";s:22:\"Second Col Description\";s:4:\"desc\";s:43:\"Enter your text for second col description.\";s:2:\"id\";s:20:\"inkthemes_seconddesc\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:40;a:5:{s:4:\"name\";s:19:\"Second Col Link URL\";s:4:\"desc\";s:35:\"Enter your link url for second col.\";s:2:\"id\";s:23:\"inkthemes_secondcollink\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:41;a:5:{s:4:\"name\";s:17:\"Third Col Heading\";s:4:\"desc\";s:38:\"Enter your text for third col heading.\";s:2:\"id\";s:19:\"inkthemes_thridhead\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:42;a:5:{s:4:\"name\";s:21:\"Third Col Description\";s:4:\"desc\";s:42:\"Enter your text for thrid col description.\";s:2:\"id\";s:19:\"inkthemes_thriddesc\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:43;a:5:{s:4:\"name\";s:18:\"Third Col Link URL\";s:4:\"desc\";s:34:\"Enter your link url for third col.\";s:2:\"id\";s:22:\"inkthemes_thirdcollink\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:44;a:2:{s:4:\"name\";s:22:\"Homepage Fullwidth Col\";s:4:\"type\";s:7:\"heading\";}i:45;a:5:{s:4:\"name\";s:16:\"Full Col Heading\";s:4:\"desc\";s:36:\"Enter your text for full col heading\";s:2:\"id\";s:21:\"inkthemes_fullcolhead\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:46;a:5:{s:4:\"name\";s:20:\"Full Col Description\";s:4:\"desc\";s:40:\"Enter your text for full col description\";s:2:\"id\";s:21:\"inkthemes_fullcoldesc\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:47;a:2:{s:4:\"name\";s:12:\"Social Logos\";s:4:\"type\";s:7:\"heading\";}i:48;a:5:{s:4:\"name\";s:11:\"Google+ URL\";s:4:\"desc\";s:38:\"Enter your Google+ URL if you have one\";s:2:\"id\";s:16:\"inkthemes_google\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:49;a:5:{s:4:\"name\";s:12:\"RSS Feed URL\";s:4:\"desc\";s:39:\"Enter your RSS Feed URL if you have one\";s:2:\"id\";s:13:\"inkthemes_rss\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:50;a:5:{s:4:\"name\";s:12:\"Facebook URL\";s:4:\"desc\";s:39:\"Enter your Facebook URL if you have one\";s:2:\"id\";s:18:\"inkthemes_facebook\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:51;a:5:{s:4:\"name\";s:12:\"LinkedIn URL\";s:4:\"desc\";s:39:\"Enter your LinkedIn URL if you have one\";s:2:\"id\";s:18:\"inkthemes_linkedin\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:52;a:5:{s:4:\"name\";s:11:\"Twitter URL\";s:4:\"desc\";s:38:\"Enter your Twitter URL if you have one\";s:2:\"id\";s:17:\"inkthemes_twitter\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:53;a:5:{s:4:\"name\";s:11:\"Dribble URL\";s:4:\"desc\";s:38:\"Enter your Dribble URL if you have one\";s:2:\"id\";s:17:\"inkthemes_dribble\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:54;a:5:{s:4:\"name\";s:10:\"Forrst URL\";s:4:\"desc\";s:37:\"Enter your Forrst URL if you have one\";s:2:\"id\";s:16:\"inkthemes_forrst\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:55;a:2:{s:4:\"name\";s:15:\"Styling Options\";s:4:\"type\";s:7:\"heading\";}i:56;a:6:{s:4:\"name\";s:16:\"Theme Stylesheet\";s:4:\"desc\";s:44:\"Select your themes alternative color scheme.\";s:2:\"id\";s:23:\"inkthemes_altstylesheet\";s:3:\"std\";s:5:\"black\";s:4:\"type\";s:6:\"select\";s:7:\"options\";a:8:{s:5:\"black\";s:5:\"black\";s:4:\"blue\";s:4:\"blue\";s:5:\"green\";s:5:\"green\";s:5:\"grass\";s:5:\"grass\";s:6:\"maroon\";s:6:\"maroon\";s:6:\"orange\";s:6:\"orange\";s:6:\"purple\";s:6:\"purple\";s:3:\"red\";s:3:\"red\";}}i:57;a:5:{s:4:\"name\";s:10:\"Custom CSS\";s:4:\"desc\";s:62:\"Quickly add some CSS to your theme by adding it to this block.\";s:2:\"id\";s:19:\"inkthemes_customcss\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:58;a:2:{s:4:\"name\";s:11:\"SEO Options\";s:4:\"type\";s:7:\"heading\";}i:59;a:5:{s:4:\"name\";s:31:\"Meta Keywords (comma separated)\";s:4:\"desc\";s:164:\"Meta keywords provide search engines with additional information about topics that appear on your site. This only applies to your home page. Keyword Limit Maximum 8\";s:2:\"id\";s:17:\"inkthemes_keyword\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:60;a:5:{s:4:\"name\";s:16:\"Meta Description\";s:4:\"desc\";s:219:\"You should use meta descriptions to provide search engines with additional information about topics that appear on your site. This only applies to your home page.Optimal Length for Search Engines, Roughly 155 Characters\";s:2:\"id\";s:21:\"inkthemes_description\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:61;a:5:{s:4:\"name\";s:16:\"Meta Author Name\";s:4:\"desc\";s:87:\"You should write the full name of the author here. This only applies to your home page.\";s:2:\"id\";s:16:\"inkthemes_author\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:62;a:2:{s:4:\"name\";s:15:\"Footer Settings\";s:4:\"type\";s:7:\"heading\";}i:63;a:5:{s:4:\"name\";s:11:\"Footer Text\";s:4:\"desc\";s:45:\"Enter text you want to be displayed on Footer\";s:2:\"id\";s:20:\"inkthemes_footertext\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}}s:12:\"of_themename\";s:29:\"Squirrel Pro Responsive Theme\";s:12:\"of_shortname\";s:2:\"of\";s:14:\"inkthemes_logo\";s:0:\"\";s:17:\"inkthemes_favicon\";s:0:\"\";s:16:\"inkthemes_bodybg\";s:0:\"\";s:24:\"inkthemes_contact_number\";s:0:\"\";s:19:\"inkthemes_analytics\";s:0:\"\";s:5:\"re_nm\";s:2:\"on\";s:20:\"inkthemes_first_head\";s:29:\"Welcome. How can we help you?\";s:21:\"inkthemes_second_head\";s:0:\"\";s:21:\"inkthemes_slide_speed\";s:4:\"8000\";s:20:\"inkthemes_slidelink1\";s:0:\"\";s:16:\"inkthemes_image2\";s:0:\"\";s:20:\"inkthemes_slidelink2\";s:0:\"\";s:16:\"inkthemes_image3\";s:0:\"\";s:20:\"inkthemes_slidelink3\";s:0:\"\";s:16:\"inkthemes_image4\";s:0:\"\";s:20:\"inkthemes_slidelink4\";s:0:\"\";s:16:\"inkthemes_image5\";s:0:\"\";s:20:\"inkthemes_slidelink5\";s:0:\"\";s:16:\"inkthemes_image6\";s:0:\"\";s:20:\"inkthemes_slidelink6\";s:0:\"\";s:19:\"inkthemes_slidehead\";s:20:\"Life is for living\r\n\";s:19:\"inkthemes_slidedesc\";s:0:\"\";s:21:\"inkthemes_leftcolhead\";s:0:\"\";s:21:\"inkthemes_leftcoldesc\";s:0:\"\";s:22:\"inkthemes_rightcolhead\";s:0:\"\";s:22:\"inkthemes_rightcoldesc\";s:0:\"\";s:19:\"inkthemes_threeimg1\";s:0:\"\";s:19:\"inkthemes_threeimg2\";s:0:\"\";s:19:\"inkthemes_threeimg3\";s:0:\"\";s:19:\"inkthemes_firsthead\";s:0:\"\";s:19:\"inkthemes_firstdesc\";s:0:\"\";s:22:\"inkthemes_firstcollink\";s:0:\"\";s:20:\"inkthemes_secondhead\";s:0:\"\";s:20:\"inkthemes_seconddesc\";s:0:\"\";s:23:\"inkthemes_secondcollink\";s:0:\"\";s:19:\"inkthemes_thridhead\";s:0:\"\";s:19:\"inkthemes_thriddesc\";s:0:\"\";s:22:\"inkthemes_thirdcollink\";s:0:\"\";s:21:\"inkthemes_fullcolhead\";s:0:\"\";s:21:\"inkthemes_fullcoldesc\";s:0:\"\";s:16:\"inkthemes_google\";s:0:\"\";s:13:\"inkthemes_rss\";s:0:\"\";s:18:\"inkthemes_facebook\";s:0:\"\";s:18:\"inkthemes_linkedin\";s:0:\"\";s:17:\"inkthemes_twitter\";s:0:\"\";s:17:\"inkthemes_dribble\";s:0:\"\";s:16:\"inkthemes_forrst\";s:0:\"\";s:23:\"inkthemes_altstylesheet\";s:5:\"grass\";s:19:\"inkthemes_customcss\";s:0:\"\";s:17:\"inkthemes_keyword\";s:0:\"\";s:21:\"inkthemes_description\";s:0:\"\";s:16:\"inkthemes_author\";s:0:\"\";s:20:\"inkthemes_footertext\";s:0:\"\";s:10:\"of_options\";a:54:{s:14:\"inkthemes_logo\";s:0:\"\";s:17:\"inkthemes_favicon\";s:0:\"\";s:16:\"inkthemes_bodybg\";s:0:\"\";s:24:\"inkthemes_contact_number\";s:0:\"\";s:19:\"inkthemes_analytics\";s:0:\"\";s:5:\"re_nm\";s:2:\"on\";s:20:\"inkthemes_first_head\";s:0:\"\";s:21:\"inkthemes_second_head\";s:0:\"\";s:21:\"inkthemes_slide_speed\";s:4:\"8000\";s:16:\"inkthemes_image1\";s:0:\"\";s:20:\"inkthemes_slidelink1\";s:0:\"\";s:16:\"inkthemes_image2\";s:0:\"\";s:20:\"inkthemes_slidelink2\";s:0:\"\";s:16:\"inkthemes_image3\";s:0:\"\";s:20:\"inkthemes_slidelink3\";s:0:\"\";s:16:\"inkthemes_image4\";s:0:\"\";s:20:\"inkthemes_slidelink4\";s:0:\"\";s:16:\"inkthemes_image5\";s:0:\"\";s:20:\"inkthemes_slidelink5\";s:0:\"\";s:16:\"inkthemes_image6\";s:0:\"\";s:20:\"inkthemes_slidelink6\";s:0:\"\";s:19:\"inkthemes_slidehead\";s:0:\"\";s:19:\"inkthemes_slidedesc\";s:0:\"\";s:21:\"inkthemes_leftcolhead\";s:0:\"\";s:21:\"inkthemes_leftcoldesc\";s:0:\"\";s:22:\"inkthemes_rightcolhead\";s:0:\"\";s:22:\"inkthemes_rightcoldesc\";s:0:\"\";s:19:\"inkthemes_threeimg1\";s:0:\"\";s:19:\"inkthemes_threeimg2\";s:0:\"\";s:19:\"inkthemes_threeimg3\";s:0:\"\";s:19:\"inkthemes_firsthead\";s:0:\"\";s:19:\"inkthemes_firstdesc\";s:0:\"\";s:22:\"inkthemes_firstcollink\";s:0:\"\";s:20:\"inkthemes_secondhead\";s:0:\"\";s:20:\"inkthemes_seconddesc\";s:0:\"\";s:23:\"inkthemes_secondcollink\";s:0:\"\";s:19:\"inkthemes_thridhead\";s:0:\"\";s:19:\"inkthemes_thriddesc\";s:0:\"\";s:22:\"inkthemes_thirdcollink\";s:0:\"\";s:21:\"inkthemes_fullcolhead\";s:0:\"\";s:21:\"inkthemes_fullcoldesc\";s:0:\"\";s:16:\"inkthemes_google\";s:0:\"\";s:13:\"inkthemes_rss\";s:0:\"\";s:18:\"inkthemes_facebook\";s:0:\"\";s:18:\"inkthemes_linkedin\";s:0:\"\";s:17:\"inkthemes_twitter\";s:0:\"\";s:17:\"inkthemes_dribble\";s:0:\"\";s:16:\"inkthemes_forrst\";s:0:\"\";s:23:\"inkthemes_altstylesheet\";s:5:\"black\";s:19:\"inkthemes_customcss\";s:0:\"\";s:17:\"inkthemes_keyword\";s:0:\"\";s:21:\"inkthemes_description\";s:0:\"\";s:16:\"inkthemes_author\";s:0:\"\";s:20:\"inkthemes_footertext\";s:0:\"\";}s:16:\"inkthemes_image1\";s:80:\"https://inkthemes.com/wpthemes/wp-content/uploads/sites/125/2012/01/Slider-2.jpg\";}','yes'),(152,'of_options','a:26:{s:14:\"inkthemes_logo\";s:0:\"\";s:17:\"inkthemes_favicon\";s:0:\"\";s:19:\"inkthemes_analytics\";s:0:\"\";s:16:\"inkthemes_bodybg\";s:0:\"\";s:18:\"inkthemes_topright\";s:0:\"\";s:20:\"inkthemes_pagelayout\";s:10:\"2c-l-fixed\";s:5:\"re_nm\";s:2:\"on\";s:18:\"inkthemes_homehead\";s:0:\"\";s:21:\"inkthemes_homecontent\";s:0:\"\";s:23:\"inkthemes_altstylesheet\";s:7:\"#261a1a\";s:21:\"inkthemes_footer_text\";s:4:\"#fff\";s:23:\"inkthemes_sidebar_color\";s:7:\"#6C9729\";s:28:\"inkthemes_sidebar_menu_hover\";s:7:\"#49710B\";s:19:\"inkthemes_customcss\";s:0:\"\";s:17:\"inkthemes_twitter\";s:0:\"\";s:13:\"inkthemes_rss\";s:0:\"\";s:16:\"inkthemes_linked\";s:0:\"\";s:18:\"inkthemes_facebook\";s:0:\"\";s:17:\"inkthemes_dribble\";s:0:\"\";s:16:\"inkthemes_google\";s:0:\"\";s:17:\"inkthemes_youtube\";s:0:\"\";s:19:\"inkthemes_pinterest\";s:0:\"\";s:16:\"inkthemes_cright\";s:0:\"\";s:17:\"inkthemes_keyword\";s:0:\"\";s:21:\"inkthemes_description\";s:0:\"\";s:16:\"inkthemes_author\";s:0:\"\";}','yes'),(131685,'category_children','a:0:{}','yes'),(163,'theme_mods_responsive','a:3:{i:0;b:0;s:18:\"custom_css_post_id\";i:11;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1508964280;s:4:\"data\";a:13:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"main-sidebar\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"right-sidebar\";a:0:{}s:12:\"left-sidebar\";a:0:{}s:17:\"left-sidebar-half\";a:0:{}s:18:\"right-sidebar-half\";a:0:{}s:13:\"home-widget-1\";a:0:{}s:13:\"home-widget-2\";a:0:{}s:13:\"home-widget-3\";a:0:{}s:14:\"gallery-widget\";a:0:{}s:15:\"colophon-widget\";a:0:{}s:10:\"top-widget\";a:0:{}s:13:\"footer-widget\";a:1:{i:0;s:6:\"text-2\";}}}}','yes'),(164,'responsive_theme_options','a:113:{s:10:\"breadcrumb\";i:0;s:10:\"cta_button\";i:0;s:12:\"minified_css\";b:0;s:13:\"sticky-header\";b:0;s:10:\"front_page\";i:0;s:13:\"home_headline\";N;s:16:\"home_subheadline\";N;s:17:\"home_content_area\";N;s:8:\"cta_text\";N;s:7:\"cta_url\";N;s:16:\"featured_content\";N;s:24:\"google_site_verification\";N;s:22:\"bing_site_verification\";N;s:23:\"yahoo_site_verification\";N;s:23:\"site_statistics_tracker\";N;s:11:\"twitter_uid\";s:34:\"https://twitter.com/Newcastlehypno\";s:12:\"facebook_uid\";s:43:\"https://www.facebook.com/newcastlehypnosis/\";s:12:\"linkedin_uid\";s:0:\"\";s:11:\"youtube_uid\";s:56:\"https://www.youtube.com/channel/UC5Aa6CyIpadoA80ICPvN2eA\";s:11:\"stumble_uid\";s:0:\"\";s:7:\"rss_uid\";s:0:\"\";s:15:\"google_plus_uid\";s:49:\"https://plus.google.com/u/3/110237008372581503389\";s:13:\"instagram_uid\";s:0:\"\";s:13:\"pinterest_uid\";s:0:\"\";s:8:\"yelp_uid\";s:0:\"\";s:9:\"vimeo_uid\";s:0:\"\";s:14:\"foursquare_uid\";s:0:\"\";s:9:\"email_uid\";s:31:\"mark@newcastle-hypnotherapy.com\";s:15:\"testimonial_val\";s:0:\"\";s:11:\"teammember1\";N;s:11:\"teammember2\";N;s:11:\"teammember3\";N;s:8:\"feature1\";N;s:8:\"feature2\";N;s:21:\"responsive_inline_css\";s:0:\"\";s:25:\"responsive_inline_js_head\";s:325:\"<!-- Global site tag (gtag.js) - Google Analytics -->\r\n<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-133444082-1\"></script>\r\n<script>\r\n  window.dataLayer = window.dataLayer || [];\r\n  function gtag(){dataLayer.push(arguments);}\r\n  gtag(\'js\', new Date());\r\n\r\n  gtag(\'config\', \'UA-133444082-1\');\r\n</script>\r\n\";s:27:\"responsive_inline_js_footer\";s:0:\"\";s:31:\"responsive_inline_css_js_footer\";s:0:\"\";s:26:\"static_page_layout_default\";s:15:\"full-width-page\";s:26:\"single_post_layout_default\";s:20:\"content-sidebar-page\";s:31:\"blog_posts_index_layout_default\";s:20:\"content-sidebar-page\";s:18:\"site_footer_option\";s:12:\"footer-3-col\";s:12:\"home-widgets\";b:0;s:20:\"featured_area_layout\";s:7:\"default\";s:11:\"team_design\";s:13:\"team_design-1\";s:18:\"blog_post_excerpts\";i:1;s:20:\"blog_featured_images\";i:1;s:18:\"blog_byline_author\";i:1;s:22:\"blog_byline_categories\";i:1;s:16:\"blog_byline_date\";i:1;s:20:\"blog_byline_comments\";i:1;s:16:\"blog_byline_tags\";i:1;s:22:\"single_featured_images\";i:1;s:20:\"single_byline_author\";i:1;s:24:\"single_byline_categories\";i:1;s:18:\"single_byline_date\";i:1;s:22:\"single_byline_comments\";i:1;s:18:\"single_byline_tags\";i:1;s:21:\"archive_post_excerpts\";i:1;s:23:\"archive_featured_images\";i:1;s:21:\"archive_byline_author\";i:1;s:25:\"archive_byline_categories\";i:1;s:19:\"archive_byline_date\";i:1;s:23:\"archive_byline_comments\";i:1;s:19:\"archive_byline_tags\";i:1;s:20:\"search_post_excerpts\";i:1;s:9:\"font_size\";s:2:\"14\";s:19:\"heading_colorpicker\";s:0:\"\";s:16:\"text_colorpicker\";s:0:\"\";s:16:\"link_colorpicker\";s:0:\"\";s:22:\"link_hover_colorpicker\";s:0:\"\";s:12:\"font_heading\";s:28:\"Arial, Helvetica, sans-serif\";s:19:\"google_font_heading\";s:0:\"\";s:9:\"font_text\";s:28:\"Arial, Helvetica, sans-serif\";s:16:\"google_font_text\";s:0:\"\";s:4:\"skin\";s:7:\"default\";s:20:\"blog_post_title_text\";s:0:\"\";s:12:\"button_style\";s:7:\"default\";s:15:\"featured_images\";b:0;s:12:\"testimonials\";i:0;s:17:\"testimonial_title\";s:0:\"\";s:8:\"feature3\";N;s:18:\"site_layout_option\";s:14:\"default-layout\";s:12:\"override_woo\";s:1:\"1\";s:7:\"favicon\";s:0:\"\";s:16:\"apple_touch_icon\";s:0:\"\";s:24:\"custom_mobile_menu_title\";s:0:\"\";s:17:\"copyright_textbox\";s:32:\"Copyright Newcastle Hypnotherapy\";s:18:\"social_icon_design\";s:13:\"rounded-icons\";s:11:\"home_slider\";s:0:\"\";s:12:\"banner_image\";s:0:\"\";s:11:\"about_title\";s:0:\"\";s:10:\"about_text\";s:0:\"\";s:14:\"about_cta_text\";s:0:\"\";s:13:\"about_cta_url\";s:0:\"\";s:13:\"feature_title\";s:0:\"\";s:11:\"feature_val\";s:0:\"\";s:10:\"team_title\";s:0:\"\";s:8:\"team_val\";s:0:\"\";s:15:\"contact_bgimage\";s:0:\"\";s:13:\"contact_title\";s:0:\"\";s:16:\"contact_subtitle\";s:0:\"\";s:11:\"contact_add\";s:0:\"\";s:13:\"contact_email\";s:0:\"\";s:10:\"contact_ph\";s:12:\"07568 455809\";s:15:\"contact_content\";s:0:\"\";s:13:\"excerpts_text\";s:0:\"\";s:15:\"excerpts_length\";s:0:\"\";s:9:\"404_title\";s:0:\"\";s:11:\"404_content\";s:0:\"\";s:24:\"single_byline_author_bio\";i:0;s:14:\"googleplus_uid\";s:49:\"https://plus.google.com/u/3/110237008372581503389\";s:15:\"stumbleupon_uid\";s:0:\"\";}','yes'),(185,'wpforms_preview_page','33','yes'),(186,'wpforms_version','1.4.0.1','yes'),(187,'wpforms_activated','a:1:{s:4:\"lite\";i:1506534456;}','yes'),(195,'wpforms_review','a:2:{s:4:\"time\";i:1507816916;s:9:\"dismissed\";b:1;}','yes'),(190,'recently_activated','a:0:{}','yes'),(191,'widget_wpforms-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(194,'_amn_wpforms-lite_last_checked','1567900800','yes'),(196,'WPLANG','en_GB','yes'),(475,'ihaf_insert_header','<!-- Facebook Pixel Code -->\r\n<script>\r\n  !function(f,b,e,v,n,t,s)\r\n  {if(f.fbq)return;n=f.fbq=function(){n.callMethod?\r\n  n.callMethod.apply(n,arguments):n.queue.push(arguments)};\r\n  if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version=\\\'2.0\\\';\r\n  n.queue=[];t=b.createElement(e);t.async=!0;\r\n  t.src=v;s=b.getElementsByTagName(e)[0];\r\n  s.parentNode.insertBefore(t,s)}(window, document,\\\'script\\\',\r\n  \\\'https://connect.facebook.net/en_US/fbevents.js\\\');\r\n  fbq(\\\'init\\\', \\\'365086347263173\\\');\r\n  fbq(\\\'track\\\', \\\'PageView\\\');\r\n</script>\r\n<noscript><img height=\\\"1\\\" width=\\\"1\\\" style=\\\"display:none\\\"\r\n  src=\\\"https://www.facebook.com/tr?id=365086347263173&ev=PageView&noscript=1\\\"\r\n/></noscript>\r\n<!-- End Facebook Pixel Code -->','yes'),(476,'ihaf_insert_footer','','yes'),(477,'insert-headers-and-footers_welcome_dismissed_key','1','yes'),(679,'theme_mods_confit','a:6:{i:0;b:0;s:18:\"custom_css_post_id\";i:-1;s:30:\"confit_disable_background_size\";i:1;s:16:\"header_textcolor\";s:6:\"81d742\";s:16:\"background_image\";s:0:\"\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1509388236;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:18:\"orphaned_widgets_1\";a:1:{i:0;s:6:\"text-2\";}}}}','yes'),(1099,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:31:\"mark@newcastle-hypnotherapy.com\";s:7:\"version\";s:5:\"5.1.2\";s:9:\"timestamp\";i:1567649802;}','no'),(697,'jetpack_available_modules','a:1:{s:5:\"7.7.1\";a:43:{s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:11:\"lazy-images\";s:5:\"5.6.0\";s:5:\"likes\";s:3:\"2.2\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:9:\"minileven\";s:3:\"1.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:3:\"pwa\";s:5:\"5.6.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(698,'jetpack_options','a:13:{s:7:\"version\";s:16:\"7.7.1:1568377366\";s:11:\"old_version\";s:14:\"6.9:1547679713\";s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:1;s:2:\"id\";i:151150710;s:6:\"public\";i:1;s:9:\"jumpstart\";s:20:\"jetpack_action_taken\";s:11:\"master_user\";i:1;s:14:\"last_heartbeat\";i:1569174522;s:22:\"image_widget_migration\";b:1;s:24:\"gallery_widget_migration\";b:1;s:24:\"custom_css_4.7_migration\";b:1;s:9:\"hide_jitm\";a:3:{s:6:\"themes\";a:2:{s:14:\"last_dismissal\";i:1537294795;s:6:\"number\";i:1;}s:19:\"wccom_cat_marketing\";a:2:{s:14:\"last_dismissal\";i:1537464519;s:6:\"number\";i:1;}s:7:\"privacy\";a:2:{s:14:\"last_dismissal\";i:1568376740;s:6:\"number\";i:2;}}}','yes'),(700,'do_activate','0','yes'),(735,'_transient_all_the_cool_cats','1','yes'),(900,'theme_mods_swiftraytheme','a:4:{i:0;b:0;s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:1:{s:11:\"custom_menu\";i:17;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1537360161;s:4:\"data\";a:10:{s:9:\"sidebar-1\";a:5:{i:0;s:13:\"media_image-6\";i:1;s:13:\"media_image-4\";i:2;s:8:\"search-2\";i:3;s:14:\"recent-posts-2\";i:4;s:12:\"categories-2\";}s:8:\"footer-1\";a:1:{i:0;s:6:\"text-2\";}s:8:\"footer-2\";a:1:{i:0;s:13:\"custom_html-2\";}s:8:\"footer-3\";a:1:{i:0;s:6:\"text-4\";}s:19:\"wp_inactive_widgets\";a:2:{i:0;s:11:\"top-posts-3\";i:1;s:6:\"text-7\";}s:19:\"primary-widget-area\";a:1:{i:0;s:13:\"media_image-7\";}s:21:\"secondary-widget-area\";a:0:{}s:24:\"first-footer-widget-area\";a:1:{i:0;s:6:\"text-6\";}s:25:\"second-footer-widget-area\";a:1:{i:0;s:6:\"text-8\";}s:24:\"third-footer-widget-area\";a:1:{i:0;s:6:\"text-9\";}}}}','yes'),(901,'of_template','a:32:{i:0;a:2:{s:4:\"name\";s:16:\"General Settings\";s:4:\"type\";s:7:\"heading\";}i:1;a:4:{s:4:\"name\";s:11:\"Custom Logo\";s:4:\"desc\";s:61:\"Choose your own logo. Optimal Size: 170px Wide by 30px Height\";s:2:\"id\";s:14:\"inkthemes_logo\";s:4:\"type\";s:6:\"upload\";}i:2;a:4:{s:4:\"name\";s:14:\"Custom Favicon\";s:4:\"desc\";s:71:\"Specify a 16px x 16px image that will represent your website\'s favicon.\";s:2:\"id\";s:17:\"inkthemes_favicon\";s:4:\"type\";s:6:\"upload\";}i:3;a:5:{s:4:\"name\";s:20:\"Google Analytic Code\";s:4:\"desc\";s:58:\"Paste your Google Analytics (or other) tracking code here.\";s:2:\"id\";s:19:\"inkthemes_analytics\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:4;a:5:{s:4:\"name\";s:21:\"Body Background Image\";s:4:\"desc\";s:46:\"Select image to change your website background\";s:2:\"id\";s:16:\"inkthemes_bodybg\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";}i:5;a:5:{s:4:\"name\";s:20:\"Top Header Right Bar\";s:4:\"desc\";s:55:\"Enter your text description for top herader right area.\";s:2:\"id\";s:18:\"inkthemes_topright\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:6;a:6:{s:4:\"name\";s:11:\"Page Layout\";s:4:\"desc\";s:24:\"Select your page layout.\";s:2:\"id\";s:20:\"inkthemes_pagelayout\";s:3:\"std\";s:10:\"2c-l-fixed\";s:4:\"type\";s:6:\"images\";s:7:\"options\";a:2:{s:10:\"2c-l-fixed\";s:85:\"https://www.newcastle-hypnotherapy.com/wp-content/themes/swiftraytheme/images/2cl.png\";s:10:\"2c-r-fixed\";s:85:\"https://www.newcastle-hypnotherapy.com/wp-content/themes/swiftraytheme/images/2cr.png\";}}i:7;a:6:{s:4:\"name\";s:17:\"Front Page On/Off\";s:4:\"desc\";s:82:\"Check on for enabling front page or check off for enabling blog page in front page\";s:2:\"id\";s:5:\"re_nm\";s:3:\"std\";s:2:\"on\";s:4:\"type\";s:5:\"radio\";s:7:\"options\";a:2:{s:2:\"on\";s:2:\"On\";s:3:\"off\";s:3:\"Off\";}}i:8;a:2:{s:4:\"name\";s:18:\"Home Page Settings\";s:4:\"type\";s:7:\"heading\";}i:9;a:5:{s:4:\"name\";s:25:\"Home Page Content Heading\";s:4:\"desc\";s:39:\"Enter your content heading in homepage.\";s:2:\"id\";s:18:\"inkthemes_homehead\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:10;a:5:{s:4:\"name\";s:17:\"Home Page Content\";s:4:\"desc\";s:177:\"Put your text content or html code in this area. If required, You can visually design using the WordPress Page/Post Editor too and later copy and paste the HTML from that editor\";s:2:\"id\";s:21:\"inkthemes_homecontent\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:10:\"texteditor\";}i:11;a:2:{s:4:\"name\";s:15:\"Styling Options\";s:4:\"type\";s:7:\"heading\";}i:12;a:5:{s:4:\"name\";s:27:\"Theme Footer & Button Color\";s:4:\"desc\";s:58:\"Select your themes alternative color for footer and button\";s:2:\"id\";s:23:\"inkthemes_altstylesheet\";s:3:\"std\";s:7:\"#261a1a\";s:4:\"type\";s:5:\"color\";}i:13;a:5:{s:4:\"name\";s:34:\"Theme Footer Text and Border Color\";s:4:\"desc\";s:58:\"Select your themes alternative color for footer and border\";s:2:\"id\";s:21:\"inkthemes_footer_text\";s:3:\"std\";s:4:\"#fff\";s:4:\"type\";s:5:\"color\";}i:14;a:5:{s:4:\"name\";s:26:\"Theme Sidebar & Link Color\";s:4:\"desc\";s:57:\"Select your themes alternative color for sidebar and link\";s:2:\"id\";s:23:\"inkthemes_sidebar_color\";s:3:\"std\";s:7:\"#6C9729\";s:4:\"type\";s:5:\"color\";}i:15;a:5:{s:4:\"name\";s:16:\"Theme Menu Hover\";s:4:\"desc\";s:51:\"Select your themes alternative color for menu hover\";s:2:\"id\";s:28:\"inkthemes_sidebar_menu_hover\";s:3:\"std\";s:7:\"#49710B\";s:4:\"type\";s:5:\"color\";}i:16;a:5:{s:4:\"name\";s:10:\"Custom CSS\";s:4:\"desc\";s:62:\"Quickly add some CSS to your theme by adding it to this block.\";s:2:\"id\";s:19:\"inkthemes_customcss\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:17;a:2:{s:4:\"name\";s:12:\"Social Icons\";s:4:\"type\";s:7:\"heading\";}i:18;a:5:{s:4:\"name\";s:11:\"Twitter URL\";s:4:\"desc\";s:38:\"Enter your Twitter URL if you have one\";s:2:\"id\";s:17:\"inkthemes_twitter\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:19;a:5:{s:4:\"name\";s:7:\"RSS URL\";s:4:\"desc\";s:39:\"Enter your RSS Feed URL if you have one\";s:2:\"id\";s:13:\"inkthemes_rss\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:20;a:5:{s:4:\"name\";s:12:\"Linkedin URL\";s:4:\"desc\";s:39:\"Enter your Linkedin URL if you have one\";s:2:\"id\";s:16:\"inkthemes_linked\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:21;a:5:{s:4:\"name\";s:12:\"Facebook URL\";s:4:\"desc\";s:39:\"Enter your Facebook URL if you have one\";s:2:\"id\";s:18:\"inkthemes_facebook\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:22;a:5:{s:4:\"name\";s:12:\"Dribbble URL\";s:4:\"desc\";s:39:\"Enter your Dribbble URL if you have one\";s:2:\"id\";s:17:\"inkthemes_dribble\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:23;a:5:{s:4:\"name\";s:15:\"Google Plus URL\";s:4:\"desc\";s:42:\"Enter your google plus URL if you have one\";s:2:\"id\";s:16:\"inkthemes_google\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:24;a:5:{s:4:\"name\";s:11:\"YouTube URL\";s:4:\"desc\";s:38:\"Enter your Youtube URL if you have one\";s:2:\"id\";s:17:\"inkthemes_youtube\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:25;a:5:{s:4:\"name\";s:13:\"Pinterest URL\";s:4:\"desc\";s:40:\"Enter your pinterest URL if you have one\";s:2:\"id\";s:19:\"inkthemes_pinterest\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:26;a:2:{s:4:\"name\";s:14:\"Footer Setting\";s:4:\"type\";s:7:\"heading\";}i:27;a:5:{s:4:\"name\";s:14:\"Copyright Text\";s:4:\"desc\";s:26:\"Write your copyright text.\";s:2:\"id\";s:16:\"inkthemes_cright\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";}i:28;a:2:{s:4:\"name\";s:11:\"SEO Options\";s:4:\"type\";s:7:\"heading\";}i:29;a:5:{s:4:\"name\";s:31:\"Meta Keywords (comma separated)\";s:4:\"desc\";s:164:\"Meta keywords provide search engines with additional information about topics that appear on your site. This only applies to your home page. Keyword Limit Maximum 8\";s:2:\"id\";s:17:\"inkthemes_keyword\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:30;a:5:{s:4:\"name\";s:16:\"Meta Description\";s:4:\"desc\";s:219:\"You should use meta descriptions to provide search engines with additional information about topics that appear on your site. This only applies to your home page.Optimal Length for Search Engines, Roughly 155 Characters\";s:2:\"id\";s:21:\"inkthemes_description\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}i:31;a:5:{s:4:\"name\";s:16:\"Meta Author Name\";s:4:\"desc\";s:87:\"You should write the full name of the author here. This only applies to your home page.\";s:2:\"id\";s:16:\"inkthemes_author\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";}}','yes'),(902,'of_themename','Swiftray Pro Responsive Theme','yes'),(903,'of_shortname','of','yes'),(9574,'inkthemes_logo','https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/NHlogo2.jpg','yes'),(905,'inkthemes_favicon','','yes'),(906,'inkthemes_analytics','<meta name=\"google-site-verification\" content=\"F76DTBjszjM861QKy14T5p3aFfZjpdKN8olxYjHi8lo\" />\r\n<meta name=\"google-site-verification\" content=\"8U8p7A-q9xsY9BrrM4sIrSH81MbiCZRpRxGDnb7YNXU\" />','yes'),(16217,'wpseo-gsc','a:1:{s:7:\"profile\";s:38:\"http://www.newcastle-hypnotherapy.com/\";}','yes'),(908,'inkthemes_topright','Expert Hypnotherapy & More.\r\n Call 07568 455 809 Today, For Your Free,  Confidential Phone Consultation','yes'),(909,'inkthemes_pagelayout','2c-l-fixed','yes'),(910,'re_nm','on','yes'),(911,'inkthemes_homehead','Newcastle Hypnotherapy - Clinical Hypnotherapy in Newcastle upon Tyne, Northumberland & Online','yes'),(912,'inkthemes_homecontent','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, Master NLP Practitioner at Newcastle Hypnotherapy.</span></strong>\r\n</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy With A Difference.\r\n</span></strong></span></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong>\r\n</span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"\"></iframe>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.\r\n</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','yes'),(913,'inkthemes_altstylesheet','#261a1a','yes'),(914,'inkthemes_footer_text','#fff','yes'),(915,'inkthemes_sidebar_color','#6C9729','yes'),(916,'inkthemes_sidebar_menu_hover','#49710B','yes'),(917,'inkthemes_customcss','','yes'),(918,'inkthemes_twitter','https://twitter.com/Newcastlehypno','yes'),(919,'inkthemes_rss','','yes'),(920,'inkthemes_linked','','yes'),(921,'inkthemes_facebook','https://www.facebook.com/groups/newcastlehypnotherapy/','yes'),(922,'inkthemes_dribble','','yes'),(923,'inkthemes_google','','yes'),(924,'inkthemes_youtube','','yes'),(925,'inkthemes_pinterest','','yes'),(926,'inkthemes_cright','Newcastle Hypnotherapy - Hypnosis in Tyneside, Northumberland, Northumberland & Online','yes'),(927,'inkthemes_keyword','','yes'),(928,'inkthemes_description','','yes'),(929,'inkthemes_author','','yes'),(4572,'wpseo_onpage','a:2:{s:6:\"status\";i:1;s:10:\"last_fetch\";i:1533199594;}','yes'),(7372,'sendgrid_asm_permission','true','yes'),(7374,'sendgrid_api_key','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','yes'),(7375,'sendgrid_from_name','Mark Morley','yes'),(7376,'sendgrid_from_email','mark@newcastle-hypnotherapy.com','yes'),(6212,'optinforms_email_solution','optinforms_email_solution_option3','yes'),(6213,'optinforms_form_action','','yes'),(6214,'optinforms_form_action_mailchimp','http://newcastle-hypnotherapy.us17.list-manage.com/subscribe/post?u=40aa05bd1c8984cc46693bcdf&id=fe9511afe5','yes'),(2924,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7377,'sendgrid_reply_to','mark@newcastle-hypnotherapy.com','yes'),(7378,'sendgrid_categories','','yes'),(7379,'sendgrid_stats_categories','','yes'),(7380,'sendgrid_template','','yes'),(7381,'sendgrid_api','api','yes'),(7382,'sendgrid_port','587','yes'),(7383,'sendgrid_content_type','html','yes'),(7387,'sendgrid_unsubscribe_group','0','yes'),(7388,'sendgrid_mc_list_id','3288674','yes'),(7462,'sendgrid_mc_opt_use_transactional','true','yes'),(7463,'sendgrid_mc_api_key','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','yes'),(7464,'sendgrid_mc_opt_incl_fname_lname','true','yes'),(7465,'sendgrid_mc_opt_req_fname_lname','false','yes'),(7466,'sendgrid_mc_signup_email_subject','Confirm your subscription to Newcastle Hypnotherapy Tyneside &amp; Northumberland,','yes'),(7467,'sendgrid_mc_signup_email_content','&amp;lt;p&amp;gt;Greetings!&amp;lt;/p&amp;gt;\r\n\r\n&amp;lt;p&amp;gt;Please click &amp;lt;a href=\\&amp;quot;%confirmation_link%\\&amp;quot;&amp;gt;here&amp;lt;/a&amp;gt; in order to subscribe to our newsletter!&amp;lt;/p&amp;gt;\r\n\r\n&amp;lt;p&amp;gt;Thank you,&amp;lt;/p&amp;gt;\r\n&amp;lt;p&amp;gt;Newcastle Hypnotherapy Tyneside &amp;amp; Northumberland,&amp;lt;/p&amp;gt;','yes'),(8273,'widget_smart-youtube','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6216,'optinforms_form_action_interspire','','yes'),(6217,'optinforms_form_list_name_aweber','','yes'),(6218,'optinforms_form_redirect_aweber','','yes'),(6219,'optinforms_form_listid_icontact','','yes'),(6220,'optinforms_form_specialid_icontact','','yes'),(6221,'optinforms_form_clientid_icontact','','yes'),(6222,'optinforms_form_redirect_icontact','','yes'),(6223,'optinforms_form_error_icontact','','yes'),(6224,'optinforms_form_webformid_getresponse','','yes'),(6225,'optinforms_form_name_field_interspire','','yes'),(6226,'optinforms_form_id_convertkit','','yes'),(6227,'optinforms_form_success_convertkit','Success! Now check your email to confirm your subscription.','yes'),(6228,'optinforms_form_error_convertkit','There was an error submitting your subscription. Please try again.','yes'),(6229,'optinforms_form_design','optinforms_form_design_option5','yes'),(6230,'optinforms_form_placement_post','4','yes'),(6231,'optinforms_form_placement_page','4','yes'),(6232,'optinforms_form_placement_popup','','yes'),(6233,'optinforms_form_placement_box','','yes'),(6234,'optinforms_form_placement_bar','','yes'),(6235,'optinforms_form_exclude_posts','','yes'),(6236,'optinforms_form_exclude_pages','','yes'),(6237,'optinforms_powered_by','0','yes'),(6238,'optinforms_form_target','','yes'),(6239,'optinforms_form1_background','#FFFFFF','yes'),(6240,'optinforms_form1_border','#E0E0E0','yes'),(6241,'optinforms_form1_title','Get Free Email Updates!','yes'),(6242,'optinforms_form1_title_font','Damion','yes'),(6243,'optinforms_form1_title_size','36px','yes'),(6244,'optinforms_form1_title_color','#eb432c','yes'),(6245,'optinforms_form1_subtitle','Signup now and receive an email once I publish new content.','yes'),(6246,'optinforms_form1_subtitle_font','Arial','yes'),(6247,'optinforms_form1_subtitle_size','16px','yes'),(6248,'optinforms_form1_subtitle_color','#000000','yes'),(6249,'optinforms_form1_name_field','Enter Your Name','yes'),(6250,'optinforms_form1_email_field','Enter Your Email Address','yes'),(6251,'optinforms_form1_fields_font','Arial, Helvetica, sans-serif','yes'),(6252,'optinforms_form1_fields_size','12px','yes'),(6253,'optinforms_form1_fields_color','#666666','yes'),(6254,'optinforms_form1_button_text','SIGN UP','yes'),(6255,'optinforms_form1_button_text_font','Arial, Helvetica, sans-serif','yes'),(6256,'optinforms_form1_button_text_size','14px','yes'),(6257,'optinforms_form1_button_text_color','#FFFFFF','yes'),(6258,'optinforms_form1_button_background','#20A64C','yes'),(6259,'optinforms_form1_disclaimer','I will never give away, trade or sell your email address. You can unsubscribe at any time.','yes'),(6260,'optinforms_form1_disclaimer_font','Arial, Helvetica, sans-serif','yes'),(6261,'optinforms_form1_disclaimer_size','12px','yes'),(6262,'optinforms_form1_disclaimer_color','#666666','yes'),(6263,'optinforms_form1_width','0','yes'),(6264,'optinforms_form1_width_pixels','','yes'),(6265,'optinforms_form1_hide_title','','yes'),(6266,'optinforms_form1_hide_subtitle','','yes'),(6267,'optinforms_form1_hide_name_field','','yes'),(6268,'optinforms_form1_hide_disclaimer','','yes'),(6269,'optinforms_form1_css','','yes'),(6270,'optinforms_form2_background','#266d7c','yes'),(6271,'optinforms_form2_title','Receive Updates','yes'),(6272,'optinforms_form2_title_font','Pacifico','yes'),(6273,'optinforms_form2_title_size','28px','yes'),(6274,'optinforms_form2_title_color','#ffffff','yes'),(6275,'optinforms_form2_email_field','Enter Your Email Address','yes'),(6276,'optinforms_form2_fields_font','Arial, Helvetica, sans-serif','yes'),(6277,'optinforms_form2_fields_size','12px','yes'),(6278,'optinforms_form2_fields_color','#000000','yes'),(6279,'optinforms_form2_button_text','Sign Up','yes'),(6280,'optinforms_form2_button_text_font','Arial, Helvetica, sans-serif','yes'),(6281,'optinforms_form2_button_text_size','14px','yes'),(6282,'optinforms_form2_button_text_color','#FFFFFF','yes'),(6283,'optinforms_form2_button_background','#49A3FE','yes'),(6284,'optinforms_form2_disclaimer','No spam guarantee.','yes'),(6285,'optinforms_form2_disclaimer_font','Arial, Helvetica, sans-serif','yes'),(6286,'optinforms_form2_disclaimer_size','11px','yes'),(6287,'optinforms_form2_disclaimer_color','#ffffff','yes'),(6288,'optinforms_form2_width','0','yes'),(6289,'optinforms_form2_width_pixels','','yes'),(6290,'optinforms_form2_hide_title','','yes'),(6291,'optinforms_form2_hide_disclaimer','','yes'),(6292,'optinforms_form2_css','','yes'),(6293,'optinforms_form3_background','#FFFFFF','yes'),(6294,'optinforms_form3_title','Did you enjoy this article?','yes'),(6295,'optinforms_form3_title_font','Droid Serif','yes'),(6296,'optinforms_form3_title_size','28px','yes'),(6297,'optinforms_form3_title_color','#505050','yes'),(6298,'optinforms_form3_subtitle','Signup today and receive free updates straight in your inbox. We will never share or sell your email address.','yes'),(6299,'optinforms_form3_subtitle_font','Arial','yes'),(6300,'optinforms_form3_subtitle_size','16px','yes'),(6301,'optinforms_form3_subtitle_color','#000000','yes'),(6302,'optinforms_form3_name_field','Your Name','yes'),(6303,'optinforms_form3_email_field','Your Email Address','yes'),(6304,'optinforms_form3_fields_font','Arial, Helvetica, sans-serif','yes'),(6305,'optinforms_form3_fields_size','12px','yes'),(6306,'optinforms_form3_fields_color','#666666','yes'),(6307,'optinforms_form3_button_text','Sign Up Today!','yes'),(6308,'optinforms_form3_button_text_font','Arial, Helvetica, sans-serif','yes'),(6309,'optinforms_form3_button_text_size','18px','yes'),(6310,'optinforms_form3_button_text_color','#FFFFFF','yes'),(6311,'optinforms_form3_button_background','#49A3FE','yes'),(6312,'optinforms_form3_width','0','yes'),(6313,'optinforms_form3_width_pixels','','yes'),(6314,'optinforms_form3_hide_title','','yes'),(6315,'optinforms_form3_hide_subtitle','','yes'),(6316,'optinforms_form3_hide_name_field','','yes'),(6317,'optinforms_form3_css','','yes'),(6318,'optinforms_form4_background','#FCFCFC','yes'),(6319,'optinforms_form4_border','#ECEAED','yes'),(6320,'optinforms_form4_title','Get the FREE eBook...','yes'),(6321,'optinforms_form4_title_font','Arial','yes'),(6322,'optinforms_form4_title_size','24px','yes'),(6323,'optinforms_form4_title_color','#505050','yes'),(6324,'optinforms_form4_subtitle','Enter your email address and click on the Get Instant Access button.','yes'),(6325,'optinforms_form4_subtitle_font','Arial','yes'),(6326,'optinforms_form4_subtitle_size','16px','yes'),(6327,'optinforms_form4_subtitle_color','#505050','yes'),(6328,'optinforms_form4_email_field','Email Address','yes'),(6329,'optinforms_form4_fields_font','Arial, Helvetica, sans-serif','yes'),(6330,'optinforms_form4_fields_size','16px','yes'),(6331,'optinforms_form4_fields_color','#666666','yes'),(6332,'optinforms_form4_button_text','Get Instant Access','yes'),(6333,'optinforms_form4_button_text_font','Arial, Helvetica, sans-serif','yes'),(6334,'optinforms_form4_button_text_size','20px','yes'),(6335,'optinforms_form4_button_text_color','#1d629b','yes'),(6336,'optinforms_form4_button_background','#faff5b','yes'),(6337,'optinforms_form4_disclaimer','We respect your privacy','yes'),(6338,'optinforms_form4_disclaimer_font','Arial, Helvetica, sans-serif','yes'),(6339,'optinforms_form4_disclaimer_size','12px','yes'),(6340,'optinforms_form4_disclaimer_color','#999999','yes'),(6341,'optinforms_form4_width','0','yes'),(6342,'optinforms_form4_width_pixels','','yes'),(6343,'optinforms_form4_hide_title','','yes'),(6344,'optinforms_form4_hide_subtitle','','yes'),(6345,'optinforms_form4_hide_disclaimer','','yes'),(6346,'optinforms_form4_css','','yes'),(6347,'optinforms_form5_background','#333333','yes'),(6348,'optinforms_form5_title','ANXIETY SELF HELP & TIPS NEWSLETTER - Join Today','yes'),(6349,'optinforms_form5_title_font','News Cycle','yes'),(6350,'optinforms_form5_title_size','24px','yes'),(6351,'optinforms_form5_title_color','#fb6a13','yes'),(6352,'optinforms_form5_subtitle','Join 1000\'s of other visitors who are receiving our newsletter and learn power methods to manage anxiety levels yourself.','yes'),(6353,'optinforms_form5_subtitle_font','Georgia','yes'),(6354,'optinforms_form5_subtitle_size','16px','yes'),(6355,'optinforms_form5_subtitle_color','#cccccc','yes'),(6356,'optinforms_form5_name_field','Enter Your Name','yes'),(6357,'optinforms_form5_email_field','Enter Your Email','yes'),(6358,'optinforms_form5_fields_font','Arial, Helvetica, sans-serif','yes'),(6359,'optinforms_form5_fields_size','12px','yes'),(6360,'optinforms_form5_fields_color','#000000','yes'),(6361,'optinforms_form5_button_text','SUBSCRIBE FOR FREE','yes'),(6362,'optinforms_form5_button_text_font','Arial, Helvetica, sans-serif','yes'),(6363,'optinforms_form5_button_text_size','16px','yes'),(6364,'optinforms_form5_button_text_color','#FFFFFF','yes'),(6365,'optinforms_form5_button_background','#fb6a13','yes'),(6366,'optinforms_form5_disclaimer','We hate spam. Your email address will not be sold or shared with anyone else.','yes'),(6367,'optinforms_form5_disclaimer_font','Georgia, Times New Roman, Times, serif','yes'),(6368,'optinforms_form5_disclaimer_size','14px','yes'),(6369,'optinforms_form5_disclaimer_color','#f2f2f2','yes'),(6370,'optinforms_form5_width','0','yes'),(6371,'optinforms_form5_width_pixels','','yes'),(6372,'optinforms_form5_hide_title','','yes'),(6373,'optinforms_form5_hide_subtitle','','yes'),(6374,'optinforms_form5_hide_name_field','','yes'),(6375,'optinforms_form5_hide_disclaimer','','yes'),(6376,'optinforms_form5_css','','yes'),(6421,'wpmchimpa_options','a:54:{s:7:\"namebox\";s:1:\"1\";s:8:\"loggedin\";s:1:\"1\";s:11:\"notloggedin\";s:1:\"1\";s:9:\"commented\";s:1:\"1\";s:12:\"notcommented\";s:1:\"1\";s:7:\"suc_sub\";s:7:\"suc_msg\";s:7:\"suc_msg\";s:54:\"Added Successfully. Check your inbox for confirmation.\";s:7:\"litebox\";s:1:\"1\";s:12:\"lite_desktop\";s:1:\"1\";s:11:\"lite_tablet\";s:1:\"1\";s:11:\"lite_mobile\";s:1:\"1\";s:13:\"lite_homepage\";s:1:\"1\";s:9:\"lite_blog\";s:1:\"1\";s:9:\"lite_page\";s:1:\"1\";s:9:\"lite_post\";s:1:\"1\";s:16:\"lite_behave_time\";s:1:\"1\";s:14:\"lite_close_bck\";s:1:\"1\";s:6:\"slider\";s:1:\"1\";s:12:\"slider_theme\";s:1:\"4\";s:14:\"slider_desktop\";s:1:\"1\";s:13:\"slider_tablet\";s:1:\"1\";s:13:\"slider_mobile\";s:1:\"1\";s:15:\"slider_homepage\";s:1:\"1\";s:11:\"slider_blog\";s:1:\"1\";s:11:\"slider_page\";s:1:\"1\";s:11:\"slider_post\";s:1:\"1\";s:13:\"slider_orient\";s:4:\"left\";s:6:\"widget\";s:1:\"1\";s:12:\"widget_theme\";s:1:\"4\";s:11:\"addon_theme\";s:1:\"4\";s:13:\"addon_desktop\";s:1:\"1\";s:12:\"addon_tablet\";s:1:\"1\";s:12:\"addon_mobile\";s:1:\"1\";s:10:\"addon_page\";s:1:\"1\";s:10:\"addon_post\";s:1:\"1\";s:11:\"topbar_page\";s:1:\"1\";s:11:\"topbar_post\";s:1:\"1\";s:12:\"flipbox_page\";s:1:\"1\";s:12:\"flipbox_post\";s:1:\"1\";s:12:\"addon_orient\";s:3:\"top\";s:6:\"cforms\";a:1:{i:0;a:4:{s:2:\"id\";s:1:\"1\";s:4:\"name\";s:6:\"Form 1\";s:6:\"fields\";a:1:{i:0;a:8:{s:2:\"id\";s:5:\"email\";s:4:\"name\";s:13:\"Email address\";s:4:\"icon\";s:4:\"idef\";s:5:\"label\";s:13:\"Email address\";s:3:\"tag\";s:5:\"email\";s:4:\"type\";s:5:\"email\";s:3:\"req\";b:1;s:3:\"cat\";s:5:\"field\";}}s:4:\"list\";a:2:{s:2:\"id\";s:10:\"fe9511afe5\";s:4:\"name\";s:30:\"Anxiety Help & Tips Newsletter\";}}}s:14:\"slider_transit\";s:1:\"1\";s:6:\"cformi\";s:1:\"1\";s:9:\"lite_form\";s:1:\"1\";s:11:\"slider_form\";s:1:\"1\";s:11:\"widget_form\";s:1:\"1\";s:10:\"addon_form\";s:1:\"1\";s:11:\"topbar_form\";s:1:\"1\";s:12:\"flipbox_form\";s:1:\"1\";s:6:\"themes\";a:4:{i:0;a:3:{s:2:\"id\";i:1;s:4:\"name\";s:5:\"Basic\";s:7:\"options\";a:12:{s:7:\"heading\";s:22:\"GET YOUR EMAIL UPDATES\";s:3:\"msg\";s:197:\"<div>We send out our lovely email newsletter with useful tips and techniques, recent articles and upcoming events. Thousands of readers have signed up already. Get a free WordPress eBook now.</div>\";s:8:\"tbox_bor\";s:1:\"1\";s:9:\"tbox_borc\";s:7:\"#dddddd\";s:6:\"button\";s:9:\"Subscribe\";s:6:\"tag_en\";s:1:\"1\";s:5:\"bg_op\";s:2:\"50\";s:11:\"trigger_top\";s:2:\"50\";s:10:\"button_fch\";s:7:\"#ffffff\";s:3:\"tpl\";i:0;s:10:\"lite_bg_op\";s:2:\"40\";s:18:\"slider_trigger_top\";s:2:\"40\";}}i:1;a:3:{s:2:\"id\";i:2;s:4:\"name\";s:7:\"Epsilon\";s:7:\"options\";a:14:{s:7:\"heading\";s:20:\"Get Amazing Stories \";s:9:\"heading_f\";a:1:{s:1:\"f\";s:7:\"Raleway\";}s:3:\"msg\";s:109:\"<div>Get great contents delivered straight to your inbox everyday,&nbsp;just a click away, Sign Up Now.</div>\";s:5:\"msg_f\";a:2:{s:1:\"f\";s:7:\"Raleway\";s:1:\"s\";s:2:\"18\";}s:6:\"tbox_f\";a:1:{s:1:\"f\";s:7:\"Raleway\";}s:6:\"button\";s:12:\"Register Now\";s:8:\"button_f\";a:1:{s:1:\"f\";s:7:\"Raleway\";}s:8:\"status_f\";a:1:{s:1:\"f\";s:7:\"Raleway\";}s:6:\"tag_en\";s:1:\"1\";s:5:\"tag_f\";a:1:{s:1:\"f\";s:7:\"Raleway\";}s:5:\"bg_op\";s:2:\"50\";s:5:\"soc_f\";a:1:{s:1:\"f\";s:7:\"Raleway\";}s:11:\"trigger_top\";s:2:\"40\";s:3:\"tpl\";i:1;}}i:2;a:3:{s:2:\"id\";i:3;s:4:\"name\";s:4:\"Nova\";s:7:\"options\";a:7:{s:7:\"heading\";s:20:\"Get Amazing Stories \";s:3:\"msg\";s:93:\"Get great contents delivered straight to your inbox everyday, just a click away, Sign Up Now.\";s:6:\"button\";s:12:\"Register Now\";s:6:\"tag_en\";s:1:\"1\";s:5:\"bg_op\";s:2:\"50\";s:11:\"trigger_top\";s:2:\"50\";s:3:\"tpl\";i:8;}}i:3;a:3:{s:2:\"id\";i:4;s:4:\"name\";s:3:\"Leo\";s:7:\"options\";a:12:{s:7:\"heading\";s:28:\"Anxiety Self Help Newsletter\";s:3:\"msg\";s:105:\"<div><b>Join today for the latest tips on managing anxiety and reducing symptoms</b></div><div><br></div>\";s:6:\"button\";s:7:\"Join Us\";s:6:\"tag_en\";s:1:\"1\";s:5:\"bg_op\";s:2:\"50\";s:11:\"trigger_top\";s:2:\"50\";s:3:\"tpl\";i:9;s:10:\"lite_bg_op\";s:2:\"40\";s:18:\"slider_trigger_top\";s:2:\"40\";s:9:\"heading_f\";a:1:{s:1:\"w\";s:4:\"bold\";}s:11:\"check_shade\";s:1:\"2\";s:3:\"tag\";s:45:\"We hate spam. Your privacy is important to us\";}}}s:9:\"themehead\";s:1:\"4\";s:10:\"lite_theme\";s:1:\"4\";s:5:\"lists\";a:4:{i:0;a:2:{s:2:\"id\";s:10:\"3acb8e6729\";s:4:\"name\";s:34:\"Depression Helps & Tips Newsletter\";}i:1;a:2:{s:2:\"id\";s:10:\"42fe2321f7\";s:4:\"name\";s:29:\"Stress Help & Tips Newsletter\";}i:2;a:2:{s:2:\"id\";s:10:\"d6d10cfa63\";s:4:\"name\";s:19:\"The Vault MBS Event\";}i:3;a:2:{s:2:\"id\";s:10:\"fe9511afe5\";s:4:\"name\";s:30:\"Anxiety Help & Tips Newsletter\";}}s:8:\"mailserv\";a:2:{s:3:\"key\";s:37:\"01c68d77fa6b047772b1bda2f7d64267-us17\";s:3:\"acc\";s:45:\"Newcastle Hypnotherapy & Life Unlimited Group\";}}','yes'),(6403,'mailoptin_settings','a:13:{s:9:\"from_name\";s:22:\"Newcastle Hypnotherapy\";s:10:\"from_email\";s:31:\"mark@newcastle-hypnotherapy.com\";s:8:\"reply_to\";s:31:\"mark@newcastle-hypnotherapy.com\";s:18:\"remove_plugin_data\";s:5:\"false\";s:14:\"allow_tracking\";s:5:\"false\";s:23:\"mailoptin_affiliate_url\";s:0:\"\";s:12:\"company_name\";s:22:\"Newcastle Hypnotherapy\";s:15:\"company_address\";s:0:\"\";s:17:\"company_address_2\";s:0:\"\";s:12:\"company_city\";s:0:\"\";s:13:\"company_state\";s:0:\"\";s:11:\"company_zip\";s:0:\"\";s:15:\"company_country\";s:2:\"GB\";}','yes'),(6404,'mo_install_date','2018-03-06 11:18:22','yes'),(6405,'mo_plugin_activated','true','yes'),(6406,'mo_db_ver','3','no'),(6407,'mailoptin_connections','a:16:{s:18:\"elementor_activate\";s:4:\"true\";s:17:\"mailchimp_api_key\";s:37:\"01c68d77fa6b047772b1bda2f7d64267-us17\";s:13:\"sendy_api_key\";s:0:\"\";s:22:\"sendy_installation_url\";s:0:\"\";s:16:\"sendy_email_list\";a:1:{i:1;a:2:{s:9:\"list_name\";s:0:\"\";s:7:\"list_id\";s:0:\"\";}}s:14:\"drip_api_token\";s:0:\"\";s:15:\"drip_account_id\";s:0:\"\";s:18:\"convertkit_api_key\";s:0:\"\";s:22:\"activecampaign_api_url\";s:0:\"\";s:22:\"activecampaign_api_key\";s:0:\"\";s:18:\"mailerlite_api_key\";s:0:\"\";s:20:\"emailoctopus_api_key\";s:0:\"\";s:19:\"getresponse_api_key\";s:0:\"\";s:18:\"getresponse_is_360\";s:5:\"false\";s:32:\"getresponse360_registered_domain\";s:0:\"\";s:22:\"getresponse360_country\";s:4:\"none\";}','yes'),(6408,'widget_mo_optin_widgets','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6143,'new_admin_email','mark@newcastle-hypnotherapy.com','yes'),(7468,'sendgrid_mc_signup_email_content_text','Greetings!\r\n\r\nPlease open %confirmation_link% in order to subscribe to our newsletter!\r\n\r\nThank you,\r\nNewcastle Hypnotherapy Tyneside &amp;amp; Northumberland,','yes'),(7469,'sendgrid_mc_signup_confirmation_page','default','yes'),(7470,'sendgrid_mc_email_label','Email','yes'),(7471,'sendgrid_mc_first_name_label','First Name','yes'),(7472,'sendgrid_mc_last_name_label','Last Name','yes'),(7473,'sendgrid_mc_subscribe_label','SUBSCRIBE','yes'),(7474,'sendgrid_mc_input_padding','{\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}','yes'),(7475,'sendgrid_mc_button_padding','{\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\"}','yes'),(7476,'sendgrid_mc_auth_valid','true','yes'),(7477,'widget_sendgrid_nlvx_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(8052,'mce_sent','742','no'),(8047,'cf7_mch_447','a:25:{s:3:\"api\";s:37:\"01c68d77fa6b047772b1bda2f7d64267-us17\";s:4:\"list\";s:10:\"6456f132ca\";s:5:\"email\";s:12:\"[your-email]\";s:4:\"name\";s:11:\"[your-name]\";s:6:\"accept\";s:0:\"\";s:12:\"CustomValue1\";s:0:\"\";s:10:\"CustomKey1\";s:0:\"\";s:12:\"CustomValue2\";s:0:\"\";s:10:\"CustomKey2\";s:0:\"\";s:12:\"CustomValue3\";s:0:\"\";s:10:\"CustomKey3\";s:0:\"\";s:12:\"CustomValue4\";s:0:\"\";s:10:\"CustomKey4\";s:0:\"\";s:12:\"CustomValue5\";s:0:\"\";s:10:\"CustomKey5\";s:0:\"\";s:12:\"CustomValue6\";s:0:\"\";s:10:\"CustomKey6\";s:0:\"\";s:12:\"CustomValue7\";s:0:\"\";s:10:\"CustomKey7\";s:0:\"\";s:12:\"CustomValue8\";s:0:\"\";s:10:\"CustomKey8\";s:0:\"\";s:12:\"CustomValue9\";s:0:\"\";s:10:\"CustomKey9\";s:0:\"\";s:13:\"CustomValue10\";s:0:\"\";s:11:\"CustomKey10\";s:0:\"\";}','yes'),(18980,'woocommerce_store_address','31 Station Road','yes'),(18981,'woocommerce_store_address_2','Wallsend','yes'),(18982,'woocommerce_store_city','Newcastle upon Tyne','yes'),(18983,'woocommerce_default_country','GB','yes'),(18984,'woocommerce_store_postcode','NE28 6SZ','yes'),(18985,'woocommerce_allowed_countries','all','yes'),(18986,'woocommerce_all_except_countries','a:0:{}','yes'),(18987,'woocommerce_specific_allowed_countries','a:0:{}','yes'),(18988,'woocommerce_ship_to_countries','','yes'),(18989,'woocommerce_specific_ship_to_countries','a:0:{}','yes'),(18990,'woocommerce_default_customer_address','geolocation','yes'),(18991,'woocommerce_calc_taxes','yes','yes'),(18992,'woocommerce_enable_coupons','yes','yes'),(18993,'woocommerce_calc_discounts_sequentially','no','no'),(18994,'woocommerce_currency','GBP','yes'),(18995,'woocommerce_currency_pos','left','yes'),(18996,'woocommerce_price_thousand_sep',',','yes'),(18997,'woocommerce_price_decimal_sep','.','yes'),(18998,'woocommerce_price_num_decimals','2','yes'),(18999,'woocommerce_shop_page_id','1375','yes'),(19000,'woocommerce_cart_redirect_after_add','yes','yes'),(19001,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(19002,'woocommerce_weight_unit','kg','yes'),(19003,'woocommerce_dimension_unit','cm','yes'),(19004,'woocommerce_enable_reviews','no','yes'),(19005,'woocommerce_review_rating_verification_label','yes','no'),(19006,'woocommerce_review_rating_verification_required','yes','no'),(19007,'woocommerce_enable_review_rating','yes','yes'),(19008,'woocommerce_review_rating_required','yes','no'),(19009,'woocommerce_manage_stock','yes','yes'),(19010,'woocommerce_hold_stock_minutes','60','no'),(19011,'woocommerce_notify_low_stock','yes','no'),(19012,'woocommerce_notify_no_stock','yes','no'),(19013,'woocommerce_stock_email_recipient','mark@newcastle-hypnotherapy.com','no'),(19014,'woocommerce_notify_low_stock_amount','2','no'),(19015,'woocommerce_notify_no_stock_amount','0','yes'),(19016,'woocommerce_hide_out_of_stock_items','no','yes'),(19017,'woocommerce_stock_format','','yes'),(19018,'woocommerce_file_download_method','force','no'),(19019,'woocommerce_downloads_require_login','no','no'),(19020,'woocommerce_downloads_grant_access_after_payment','yes','no'),(19021,'woocommerce_prices_include_tax','no','yes'),(19022,'woocommerce_tax_based_on','shipping','yes'),(19023,'woocommerce_shipping_tax_class','','yes'),(19024,'woocommerce_tax_round_at_subtotal','no','yes'),(19026,'woocommerce_tax_display_shop','excl','yes'),(19027,'woocommerce_tax_display_cart','excl','yes'),(19028,'woocommerce_price_display_suffix','','yes'),(19029,'woocommerce_tax_total_display','single','no'),(19030,'woocommerce_enable_shipping_calc','yes','no'),(19031,'woocommerce_shipping_cost_requires_address','no','yes'),(19032,'woocommerce_ship_to_destination','billing','no'),(19033,'woocommerce_shipping_debug_mode','no','yes'),(19034,'woocommerce_enable_guest_checkout','yes','no'),(19035,'woocommerce_enable_checkout_login_reminder','no','no'),(19036,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(19037,'woocommerce_enable_myaccount_registration','no','no'),(19038,'woocommerce_registration_generate_username','yes','no'),(19039,'woocommerce_registration_generate_password','yes','no'),(19040,'woocommerce_erasure_request_removes_order_data','no','no'),(19041,'woocommerce_erasure_request_removes_download_data','no','no'),(19042,'woocommerce_registration_privacy_policy_text','We take your privacy seriously and always GDPR compliant. \r\nYou can read our privacy policy here [privacy_policy].','yes'),(19043,'woocommerce_checkout_privacy_policy_text','We take your privacy seriously and always GDPR compliant. \r\nYou can read our privacy policy here [privacy_policy].','yes'),(19044,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(19045,'woocommerce_trash_pending_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(19046,'woocommerce_trash_failed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(19047,'woocommerce_trash_cancelled_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(19048,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(19049,'woocommerce_email_from_name','Mark & Newcastle Hypnotherapy','no'),(19050,'woocommerce_email_from_address','mark@newcastle-hypnotherapy.com','no'),(19051,'woocommerce_email_header_image','https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Newcastle-Hypnotherapy-270.png','no'),(19052,'woocommerce_email_footer_text','Thanks again,\r\n\r\nMark\r\nNewcastle Hypnotherapy','no'),(19053,'woocommerce_email_base_color','#138707','no'),(19054,'woocommerce_email_background_color','#f7f7f7','no'),(19055,'woocommerce_email_body_background_color','#ffffff','no'),(19056,'woocommerce_email_text_color','#3c3c3c','no'),(19057,'woocommerce_cart_page_id','1376','yes'),(19058,'woocommerce_checkout_page_id','1377','yes'),(19059,'woocommerce_myaccount_page_id','1378','yes'),(19060,'woocommerce_terms_page_id','1317','no'),(19061,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(19062,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(19063,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(19064,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(19065,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(19066,'woocommerce_myaccount_orders_endpoint','orders','yes'),(19067,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(19068,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(19069,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(19070,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(19071,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(19072,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(19073,'woocommerce_logout_endpoint','customer-logout','yes'),(19074,'woocommerce_api_enabled','no','yes'),(19075,'woocommerce_single_image_width','400','yes'),(19076,'woocommerce_thumbnail_image_width','300','yes'),(19077,'woocommerce_checkout_highlight_required_fields','yes','yes'),(19078,'woocommerce_demo_store','no','no'),(10723,'inkthemes_bodybg','','yes'),(26368,'theme_mods_responsivepro','a:12:{s:18:\"custom_css_post_id\";i:1886;s:18:\"nav_menu_locations\";a:2:{s:8:\"top-menu\";i:0;s:11:\"header-menu\";i:17;}s:12:\"header_image\";s:75:\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NHw01.png\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:1524;s:3:\"url\";s:75:\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NHw01.png\";s:13:\"thumbnail_url\";s:75:\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NHw01.png\";s:6:\"height\";i:100;s:5:\"width\";i:361;}s:34:\"responsive_menu_gradients_checkbox\";i:0;s:38:\"responsive_menu_background_colorpicker\";s:7:\"#357c25\";s:40:\"responsive_menu_background_colorpicker_2\";s:7:\"#565656\";s:38:\"responsive_menu_text_hover_colorpicker\";s:7:\"#ef8d37\";s:15:\"responsive_skin\";s:5:\"green\";s:32:\"responsive_menu_text_colorpicker\";s:7:\"#ffffff\";s:38:\"responsive_menu_item_hover_colorpicker\";s:7:\"#41a834\";s:20:\"responsive_font_size\";s:2:\"16\";}','yes'),(29263,'_transient_orders-transient-version','1568793057','yes'),(29308,'woocommerce_gateway_order','a:5:{s:4:\"bacs\";i:0;s:6:\"cheque\";i:1;s:3:\"cod\";i:2;s:6:\"paypal\";i:3;s:11:\"ppec_paypal\";i:4;}','yes'),(78995,'cf7_mch_2058','a:25:{s:3:\"api\";s:37:\"01c68d77fa6b047772b1bda2f7d64267-us17\";s:4:\"list\";s:10:\"c7b348a10b\";s:5:\"email\";s:0:\"\";s:4:\"name\";s:0:\"\";s:6:\"accept\";s:0:\"\";s:12:\"CustomValue1\";s:0:\"\";s:10:\"CustomKey1\";s:0:\"\";s:12:\"CustomValue2\";s:0:\"\";s:10:\"CustomKey2\";s:0:\"\";s:12:\"CustomValue3\";s:0:\"\";s:10:\"CustomKey3\";s:0:\"\";s:12:\"CustomValue4\";s:0:\"\";s:10:\"CustomKey4\";s:0:\"\";s:12:\"CustomValue5\";s:0:\"\";s:10:\"CustomKey5\";s:0:\"\";s:12:\"CustomValue6\";s:0:\"\";s:10:\"CustomKey6\";s:0:\"\";s:12:\"CustomValue7\";s:0:\"\";s:10:\"CustomKey7\";s:0:\"\";s:12:\"CustomValue8\";s:0:\"\";s:10:\"CustomKey8\";s:0:\"\";s:12:\"CustomValue9\";s:0:\"\";s:10:\"CustomKey9\";s:0:\"\";s:13:\"CustomValue10\";s:0:\"\";s:11:\"CustomKey10\";s:0:\"\";}','yes'),(9127,'cf7skins','a:2:{s:12:\"color_scheme\";s:7:\"default\";s:11:\"delete_data\";b:0;}','yes'),(10044,'elementor_version','2.0.8','yes'),(9126,'cf7skins_version_installed','2.1.3','yes'),(9128,'cf7_mch_644','a:25:{s:3:\"api\";s:37:\"01c68d77fa6b047772b1bda2f7d64267-us17\";s:4:\"list\";s:10:\"341d3f5080\";s:5:\"email\";s:12:\"[your-email]\";s:4:\"name\";s:12:\" [your-name]\";s:6:\"accept\";s:0:\"\";s:12:\"CustomValue1\";s:0:\"\";s:10:\"CustomKey1\";s:0:\"\";s:12:\"CustomValue2\";s:0:\"\";s:10:\"CustomKey2\";s:0:\"\";s:12:\"CustomValue3\";s:0:\"\";s:10:\"CustomKey3\";s:0:\"\";s:12:\"CustomValue4\";s:0:\"\";s:10:\"CustomKey4\";s:0:\"\";s:12:\"CustomValue5\";s:0:\"\";s:10:\"CustomKey5\";s:0:\"\";s:12:\"CustomValue6\";s:0:\"\";s:10:\"CustomKey6\";s:0:\"\";s:12:\"CustomValue7\";s:0:\"\";s:10:\"CustomKey7\";s:0:\"\";s:12:\"CustomValue8\";s:0:\"\";s:10:\"CustomKey8\";s:0:\"\";s:12:\"CustomValue9\";s:0:\"\";s:10:\"CustomKey9\";s:0:\"\";s:13:\"CustomValue10\";s:0:\"\";s:11:\"CustomKey10\";s:0:\"\";}','yes'),(9357,'cf7_mch_667','a:25:{s:3:\"api\";s:37:\"01c68d77fa6b047772b1bda2f7d64267-us17\";s:4:\"list\";s:10:\"d17442eee7\";s:5:\"email\";s:12:\"[cf7s-email]\";s:4:\"name\";s:11:\"[cf7s-name]\";s:6:\"accept\";s:0:\"\";s:12:\"CustomValue1\";s:0:\"\";s:10:\"CustomKey1\";s:0:\"\";s:12:\"CustomValue2\";s:0:\"\";s:10:\"CustomKey2\";s:0:\"\";s:12:\"CustomValue3\";s:0:\"\";s:10:\"CustomKey3\";s:0:\"\";s:12:\"CustomValue4\";s:0:\"\";s:10:\"CustomKey4\";s:0:\"\";s:12:\"CustomValue5\";s:0:\"\";s:10:\"CustomKey5\";s:0:\"\";s:12:\"CustomValue6\";s:0:\"\";s:10:\"CustomKey6\";s:0:\"\";s:12:\"CustomValue7\";s:0:\"\";s:10:\"CustomKey7\";s:0:\"\";s:12:\"CustomValue8\";s:0:\"\";s:10:\"CustomKey8\";s:0:\"\";s:12:\"CustomValue9\";s:0:\"\";s:10:\"CustomKey9\";s:0:\"\";s:13:\"CustomValue10\";s:0:\"\";s:11:\"CustomKey10\";s:0:\"\";}','yes'),(20264,'theme_switch_menu_locations','a:1:{s:11:\"custom_menu\";i:17;}','yes'),(19477,'jetpack_next_sync_time_sync','1569119395','yes'),(57268,'wpqj_ssa_async_actions_db_version','1.8.4','yes'),(36996,'jetpack_sync_full__started','1537976383','no'),(36997,'jetpack_sync_full__params','a:4:{s:7:\"options\";b:1;s:9:\"functions\";b:1;s:9:\"constants\";b:1;s:5:\"users\";a:1:{i:0;i:1;}}','no'),(36998,'jetpack_sync_full_config','a:4:{s:9:\"constants\";b:1;s:9:\"functions\";b:1;s:7:\"options\";b:1;s:5:\"users\";a:1:{i:0;i:1;}}','no'),(36999,'jetpack_sync_full_enqueue_status','a:4:{s:9:\"constants\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:9:\"functions\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:7:\"options\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:5:\"users\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}}','no'),(19512,'jetpack_next_sync_time_full-sync-enqueue','1569180128','yes'),(19513,'jpsq_full_sync_checkout','0:0','no'),(19517,'jetpack_callables_sync_checksum','a:33:{s:18:\"wp_max_upload_size\";i:677931734;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:17:\"main_network_site\";i:3913184155;s:8:\"site_url\";i:3913184155;s:8:\"home_url\";i:3913184155;s:16:\"single_user_site\";i:734881840;s:7:\"updates\";i:3404891113;s:28:\"has_file_system_write_access\";i:4261170317;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:1506195535;s:10:\"post_types\";i:1703188382;s:18:\"post_type_features\";i:3940377322;s:10:\"shortcodes\";i:2014198758;s:27:\"rest_api_allowed_post_types\";i:2154153385;s:32:\"rest_api_allowed_public_metadata\";i:223132457;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;s:10:\"wp_version\";i:2800914340;s:11:\"get_plugins\";i:3843909989;s:24:\"get_plugins_action_links\";i:3062871894;s:14:\"active_modules\";i:2707871016;s:16:\"hosting_provider\";i:769900095;s:6:\"locale\";i:1256278236;s:13:\"site_icon_url\";i:708173682;s:5:\"roles\";i:2128515937;s:8:\"timezone\";i:3808505409;s:24:\"available_jetpack_blocks\";i:804422697;s:13:\"paused_themes\";i:223132457;s:14:\"paused_plugins\";i:223132457;}','no'),(19514,'jetpack_sync_https_history_main_network_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(19245,'jetpack_unique_connection','a:3:{s:9:\"connected\";i:1;s:12:\"disconnected\";i:0;s:7:\"version\";s:5:\"3.6.1\";}','yes'),(19247,'jetpack_sync_settings_max_queue_lag','900','yes'),(8272,'smart_youtube_pro','a:35:{s:5:\"posts\";s:2:\"on\";s:8:\"comments\";s:3:\"off\";s:3:\"img\";s:3:\"off\";s:5:\"width\";i:425;s:6:\"height\";i:344;s:7:\"widthhq\";i:480;s:8:\"heighthq\";i:295;s:9:\"widthside\";i:200;s:10:\"heightside\";i:167;s:3:\"rel\";s:1:\"1\";s:4:\"link\";s:2:\"on\";s:5:\"valid\";s:3:\"off\";s:6:\"search\";s:3:\"off\";s:4:\"info\";s:2:\"on\";s:3:\"ann\";s:2:\"on\";s:8:\"template\";s:7:\"{video}\";s:8:\"autoplay\";i:0;s:14:\"autoplay_first\";i:0;s:7:\"privacy\";i:0;s:5:\"wtext\";s:0:\"\";s:6:\"wtitle\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:6:\"iframe\";s:2:\"on\";s:4:\"http\";s:2:\"on\";s:3:\"www\";s:3:\"off\";s:4:\"loop\";i:0;s:5:\"thumb\";s:3:\"off\";s:8:\"colorbox\";s:3:\"off\";s:14:\"colorbox_theme\";i:1;s:7:\"excerpt\";s:3:\"not\";s:8:\"logoless\";s:2:\"on\";s:7:\"wiziapp\";s:3:\"off\";s:7:\"ogimage\";s:3:\"off\";s:5:\"theme\";s:4:\"dark\";s:13:\"excerpt_align\";s:4:\"left\";}','yes'),(8380,'cf7_mch_528','a:25:{s:3:\"api\";s:37:\"01c68d77fa6b047772b1bda2f7d64267-us17\";s:4:\"list\";s:10:\"fe9511afe5\";s:5:\"email\";s:12:\"[cf7s-email]\";s:4:\"name\";s:11:\"[cf7s-name]\";s:6:\"accept\";s:0:\"\";s:12:\"CustomValue1\";s:0:\"\";s:10:\"CustomKey1\";s:0:\"\";s:12:\"CustomValue2\";s:0:\"\";s:10:\"CustomKey2\";s:0:\"\";s:12:\"CustomValue3\";s:0:\"\";s:10:\"CustomKey3\";s:0:\"\";s:12:\"CustomValue4\";s:0:\"\";s:10:\"CustomKey4\";s:0:\"\";s:12:\"CustomValue5\";s:0:\"\";s:10:\"CustomKey5\";s:0:\"\";s:12:\"CustomValue6\";s:0:\"\";s:10:\"CustomKey6\";s:0:\"\";s:12:\"CustomValue7\";s:0:\"\";s:10:\"CustomKey7\";s:0:\"\";s:12:\"CustomValue8\";s:0:\"\";s:10:\"CustomKey8\";s:0:\"\";s:12:\"CustomValue9\";s:0:\"\";s:10:\"CustomKey9\";s:0:\"\";s:13:\"CustomValue10\";s:0:\"\";s:11:\"CustomKey10\";s:0:\"\";}','yes'),(19629,'stats_options','a:7:{s:9:\"admin_bar\";b:1;s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:11:\"count_roles\";a:0:{}s:7:\"blog_id\";i:151150710;s:12:\"do_not_track\";b:1;s:10:\"hide_smile\";b:1;s:7:\"version\";s:1:\"9\";}','yes'),(19691,'_transient_product_query-transient-version','1569178187','yes'),(57276,'woocommerce_placeholder_image','3151','yes'),(11318,'cf7_mch_875','a:25:{s:3:\"api\";s:37:\"01c68d77fa6b047772b1bda2f7d64267-us17\";s:4:\"list\";s:10:\"7b2c1a3c2a\";s:5:\"email\";s:12:\"[your-email]\";s:4:\"name\";s:11:\"[your-name]\";s:6:\"accept\";s:0:\"\";s:12:\"CustomValue1\";s:0:\"\";s:10:\"CustomKey1\";s:0:\"\";s:12:\"CustomValue2\";s:0:\"\";s:10:\"CustomKey2\";s:0:\"\";s:12:\"CustomValue3\";s:0:\"\";s:10:\"CustomKey3\";s:0:\"\";s:12:\"CustomValue4\";s:0:\"\";s:10:\"CustomKey4\";s:0:\"\";s:12:\"CustomValue5\";s:0:\"\";s:10:\"CustomKey5\";s:0:\"\";s:12:\"CustomValue6\";s:0:\"\";s:10:\"CustomKey6\";s:0:\"\";s:12:\"CustomValue7\";s:0:\"\";s:10:\"CustomKey7\";s:0:\"\";s:12:\"CustomValue8\";s:0:\"\";s:10:\"CustomKey8\";s:0:\"\";s:12:\"CustomValue9\";s:0:\"\";s:10:\"CustomKey9\";s:0:\"\";s:13:\"CustomValue10\";s:0:\"\";s:11:\"CustomKey10\";s:0:\"\";}','yes'),(19797,'sharing-options','a:1:{s:6:\"global\";a:5:{s:12:\"button_style\";s:9:\"icon-text\";s:13:\"sharing_label\";s:11:\"Share this:\";s:10:\"open_links\";s:4:\"same\";s:4:\"show\";a:0:{}s:6:\"custom\";a:0:{}}}','yes'),(19713,'storefront_nux_dismissed','1','yes'),(19345,'widget_blog_subscription','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19346,'widget_authors','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19347,'widget_eu_cookie_law_widget','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:9:{s:4:\"hide\";s:6:\"scroll\";s:4:\"text\";s:7:\"default\";s:12:\"color-scheme\";s:7:\"default\";s:10:\"policy-url\";s:6:\"custom\";s:8:\"position\";s:6:\"bottom\";s:12:\"hide-timeout\";i:10;s:18:\"consent-expiration\";i:180;s:10:\"customtext\";s:0:\"\";s:17:\"custom-policy-url\";s:54:\"https://www.newcastle-hypnotherapy.com/privacy-policy/\";}}','yes'),(19348,'widget_facebook-likebox','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19349,'widget_flickr','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19350,'widget_wpcom-goodreads','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19351,'widget_google_translate_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19353,'widget_grofile','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19354,'widget_internet_defense_league_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19355,'widget_widget_mailchimp_subscriber_popup','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19356,'widget_milestone_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19357,'widget_jetpack_my_community','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19358,'widget_rss_links','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19359,'widget_jetpack_widget_social_icons','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19360,'widget_twitter_timeline','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19361,'widget_upcoming_events_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19362,'widget_jetpack_display_posts_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19366,'jetpack_portfolio','0','yes'),(19368,'sharedaddy_disable_resources','0','yes'),(19369,'jetpack_testimonial','0','yes'),(29724,'woocommerce_customer_on_hold_order_settings','a:4:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";}','yes'),(37007,'jetpack_sync_full__queue_finished','1537976383','yes'),(36995,'wpcom_publish_posts_with_markdown','1','yes'),(20319,'customize_stashed_theme_mods','a:0:{}','no'),(15826,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:29:\"contact-form-7-skins/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.0.1\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1547555872;s:11:\"plugin_path\";s:36:\"contact-form-7/wp-contact-form-7.php\";}}s:7:\"abspath\";s:27:\"/home/newcastl/public_html/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:8:\"sdk_path\";s:29:\"contact-form-7-skins/freemius\";s:7:\"version\";s:5:\"2.0.1\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1547555872;}}','yes'),(15827,'fs_debug_mode','','yes'),(15828,'fs_accounts','a:6:{s:21:\"id_slug_type_path_map\";a:1:{i:1656;a:3:{s:4:\"slug\";s:20:\"contact-form-7-skins\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:30:\"contact-form-7-skins/index.php\";}}s:11:\"plugin_data\";a:1:{s:20:\"contact-form-7-skins\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:30:\"contact-form-7-skins/index.php\";}s:17:\"install_timestamp\";i:1532280326;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.0.1\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"2.0.1\";s:14:\"plugin_version\";s:5:\"2.0.2\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:30:\"www.newcastle-hypnotherapy.com\";s:9:\"server_ip\";s:13:\"89.249.74.188\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1532280399;s:7:\"version\";s:3:\"2.0\";}s:15:\"prev_is_premium\";b:0;s:18:\"sticky_optin_added\";b:1;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1550578547;s:7:\"version\";s:5:\"2.0.2\";}}}s:13:\"file_slug_map\";a:1:{s:30:\"contact-form-7-skins/index.php\";s:20:\"contact-form-7-skins\";}s:7:\"plugins\";a:1:{s:20:\"contact-form-7-skins\";O:9:\"FS_Plugin\":18:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:20:\"Contact Form 7 Skins\";s:4:\"slug\";s:20:\"contact-form-7-skins\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:4:\"file\";s:30:\"contact-form-7-skins/index.php\";s:7:\"version\";s:5:\"2.0.2\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:7:\"is_live\";b:1;s:10:\"public_key\";s:32:\"pk_cc0be6b0925b0cbff144d85e42916\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"1656\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"cae1dab0f48c2ab42033c7ad3e0463e6\";s:13:\"admin_notices\";a:1:{s:20:\"contact-form-7-skins\";a:0:{}}}','yes'),(72128,'cf7_mch_2017','a:26:{s:3:\"api\";s:37:\"01c68d77fa6b047772b1bda2f7d64267-us17\";s:4:\"list\";s:10:\"42fe2321f7\";s:5:\"email\";s:12:\"[cf7s-email]\";s:4:\"name\";s:11:\"[cf7s-name]\";s:6:\"accept\";s:0:\"\";s:8:\"cfactive\";s:1:\"1\";s:12:\"CustomValue1\";s:0:\"\";s:10:\"CustomKey1\";s:0:\"\";s:12:\"CustomValue2\";s:0:\"\";s:10:\"CustomKey2\";s:0:\"\";s:12:\"CustomValue3\";s:0:\"\";s:10:\"CustomKey3\";s:0:\"\";s:12:\"CustomValue4\";s:0:\"\";s:10:\"CustomKey4\";s:0:\"\";s:12:\"CustomValue5\";s:0:\"\";s:10:\"CustomKey5\";s:0:\"\";s:12:\"CustomValue6\";s:0:\"\";s:10:\"CustomKey6\";s:0:\"\";s:12:\"CustomValue7\";s:0:\"\";s:10:\"CustomKey7\";s:0:\"\";s:12:\"CustomValue8\";s:0:\"\";s:10:\"CustomKey8\";s:0:\"\";s:12:\"CustomValue9\";s:0:\"\";s:10:\"CustomKey9\";s:0:\"\";s:13:\"CustomValue10\";s:0:\"\";s:11:\"CustomKey10\";s:0:\"\";}','yes'),(15837,'cf7skins_update_notice','1545777028','yes'),(19341,'wc_connect_taxes_enabled','yes','yes'),(10732,'arve_install_date','1526063955','yes'),(11391,'CookieLawInfo-0.9','a:79:{s:18:\"animate_speed_hide\";s:3:\"500\";s:18:\"animate_speed_show\";s:3:\"500\";s:10:\"background\";s:7:\"#276820\";s:14:\"background_url\";s:0:\"\";s:6:\"border\";s:4:\"#444\";s:9:\"border_on\";b:1;s:9:\"bar_style\";s:0:\"\";s:13:\"button_1_text\";s:6:\"Accept\";s:12:\"button_1_url\";s:1:\"#\";s:15:\"button_1_action\";s:27:\"#cookie_action_close_header\";s:20:\"button_1_link_colour\";s:4:\"#fff\";s:16:\"button_1_new_win\";b:0;s:18:\"button_1_as_button\";b:1;s:22:\"button_1_button_colour\";s:4:\"#000\";s:20:\"button_1_button_size\";s:6:\"medium\";s:14:\"button_1_style\";s:0:\"\";s:13:\"button_2_text\";s:9:\"Read More\";s:12:\"button_2_url\";s:37:\"http://www.newcastle-hypnotherapy.com\";s:15:\"button_2_action\";s:17:\"CONSTANT_OPEN_URL\";s:20:\"button_2_link_colour\";s:4:\"#444\";s:16:\"button_2_new_win\";b:1;s:18:\"button_2_as_button\";b:0;s:22:\"button_2_button_colour\";s:4:\"#333\";s:20:\"button_2_button_size\";s:6:\"medium\";s:17:\"button_2_url_type\";s:3:\"url\";s:13:\"button_2_page\";s:3:\"892\";s:16:\"button_2_hidebar\";b:0;s:14:\"button_2_style\";s:0:\"\";s:13:\"button_3_text\";s:6:\"Reject\";s:12:\"button_3_url\";s:1:\"#\";s:15:\"button_3_action\";s:34:\"#cookie_action_close_header_reject\";s:20:\"button_3_link_colour\";s:4:\"#fff\";s:16:\"button_3_new_win\";b:0;s:18:\"button_3_as_button\";b:1;s:22:\"button_3_button_colour\";s:4:\"#000\";s:20:\"button_3_button_size\";s:6:\"medium\";s:14:\"button_3_style\";s:0:\"\";s:13:\"button_4_text\";s:8:\"Settings\";s:12:\"button_4_url\";s:1:\"#\";s:15:\"button_4_action\";s:23:\"#cookie_action_settings\";s:20:\"button_4_link_colour\";s:4:\"#fff\";s:16:\"button_4_new_win\";b:0;s:18:\"button_4_as_button\";b:1;s:22:\"button_4_button_colour\";s:4:\"#000\";s:20:\"button_4_button_size\";s:6:\"medium\";s:14:\"button_4_style\";s:0:\"\";s:11:\"font_family\";s:7:\"inherit\";s:10:\"header_fix\";b:0;s:5:\"is_on\";b:1;s:8:\"is_eu_on\";b:0;s:10:\"logging_on\";b:0;s:19:\"notify_animate_hide\";b:0;s:19:\"notify_animate_show\";b:0;s:13:\"notify_div_id\";s:20:\"#cookie-law-info-bar\";s:26:\"notify_position_horizontal\";s:5:\"right\";s:24:\"notify_position_vertical\";s:6:\"bottom\";s:14:\"notify_message\";s:257:\"We use cookies to offer you a better browsing experience. Read about how we use cookies and how you can control them by clicking Privacy Policy If you continue to use this site, you consent to our use of cookies.[cookie_button] [cookie_reject] [cookie_link]\";s:12:\"scroll_close\";b:1;s:19:\"scroll_close_reload\";b:0;s:19:\"accept_close_reload\";b:0;s:19:\"reject_close_reload\";b:0;s:20:\"showagain_background\";s:4:\"#fff\";s:16:\"showagain_border\";s:4:\"#000\";s:14:\"showagain_text\";s:24:\"Privacy & Cookies Policy\";s:16:\"showagain_div_id\";s:22:\"#cookie-law-info-again\";s:13:\"showagain_tab\";b:0;s:20:\"showagain_x_position\";s:5:\"100px\";s:4:\"text\";s:4:\"#000\";s:17:\"use_colour_picker\";b:1;s:12:\"show_once_yn\";b:1;s:9:\"show_once\";s:5:\"10000\";s:9:\"is_GMT_on\";b:1;s:8:\"as_popup\";b:0;s:13:\"popup_overlay\";b:1;s:16:\"bar_heading_text\";s:13:\"Cookie Policy\";s:13:\"cookie_bar_as\";s:6:\"banner\";s:24:\"popup_showagain_position\";s:12:\"bottom-right\";s:15:\"widget_position\";s:4:\"left\";s:12:\"is_reject_on\";b:0;}','yes'),(11731,'cf7_mch_903','a:25:{s:3:\"api\";s:37:\"01c68d77fa6b047772b1bda2f7d64267-us17\";s:4:\"list\";s:10:\"497971fd5f\";s:5:\"email\";s:12:\"[your-email]\";s:4:\"name\";s:12:\" [your-name]\";s:6:\"accept\";s:0:\"\";s:12:\"CustomValue1\";s:0:\"\";s:10:\"CustomKey1\";s:0:\"\";s:12:\"CustomValue2\";s:0:\"\";s:10:\"CustomKey2\";s:0:\"\";s:12:\"CustomValue3\";s:0:\"\";s:10:\"CustomKey3\";s:0:\"\";s:12:\"CustomValue4\";s:0:\"\";s:10:\"CustomKey4\";s:0:\"\";s:12:\"CustomValue5\";s:0:\"\";s:10:\"CustomKey5\";s:0:\"\";s:12:\"CustomValue6\";s:0:\"\";s:10:\"CustomKey6\";s:0:\"\";s:12:\"CustomValue7\";s:0:\"\";s:10:\"CustomKey7\";s:0:\"\";s:12:\"CustomValue8\";s:0:\"\";s:10:\"CustomKey8\";s:0:\"\";s:12:\"CustomValue9\";s:0:\"\";s:10:\"CustomKey9\";s:0:\"\";s:13:\"CustomValue10\";s:0:\"\";s:11:\"CustomKey10\";s:0:\"\";}','yes'),(31469,'appointments_salt','439246085','yes'),(31470,'app_db_version','2.4.0','yes'),(16766,'advancediFrameAdminOptions','a:142:{s:11:\"securitykey\";s:0:\"\";s:3:\"src\";s:45:\"//www.tinywebgallery.com/blog/advanced-iframe\";s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:3:\"600\";s:9:\"scrolling\";s:4:\"none\";s:11:\"marginwidth\";s:1:\"0\";s:12:\"marginheight\";s:1:\"0\";s:11:\"frameborder\";s:1:\"0\";s:12:\"transparency\";s:4:\"true\";s:10:\"content_id\";s:0:\"\";s:14:\"content_styles\";s:0:\"\";s:13:\"hide_elements\";s:0:\"\";s:5:\"class\";s:0:\"\";s:20:\"shortcode_attributes\";s:4:\"true\";s:21:\"url_forward_parameter\";s:0:\"\";s:2:\"id\";s:15:\"advanced_iframe\";s:4:\"name\";s:0:\"\";s:6:\"onload\";s:0:\"\";s:13:\"onload_resize\";s:5:\"false\";s:17:\"onload_scroll_top\";s:5:\"false\";s:13:\"additional_js\";s:0:\"\";s:14:\"additional_css\";s:0:\"\";s:22:\"store_height_in_cookie\";s:5:\"false\";s:17:\"additional_height\";s:1:\"0\";s:17:\"iframe_content_id\";s:0:\"\";s:21:\"iframe_content_styles\";s:0:\"\";s:20:\"iframe_hide_elements\";s:0:\"\";s:15:\"version_counter\";s:1:\"1\";s:24:\"onload_show_element_only\";s:0:\"\";s:11:\"include_url\";s:0:\"\";s:15:\"include_content\";s:0:\"\";s:14:\"include_height\";s:0:\"\";s:12:\"include_fade\";s:0:\"\";s:30:\"include_hide_page_until_loaded\";s:5:\"false\";s:15:\"donation_bottom\";s:5:\"false\";s:19:\"onload_resize_width\";s:5:\"false\";s:14:\"resize_on_ajax\";s:0:\"\";s:21:\"resize_on_ajax_jquery\";s:4:\"true\";s:15:\"resize_on_click\";s:0:\"\";s:24:\"resize_on_click_elements\";s:1:\"a\";s:22:\"hide_page_until_loaded\";s:5:\"false\";s:19:\"show_part_of_iframe\";s:5:\"false\";s:21:\"show_part_of_iframe_x\";s:3:\"100\";s:21:\"show_part_of_iframe_y\";s:3:\"100\";s:25:\"show_part_of_iframe_width\";s:3:\"400\";s:26:\"show_part_of_iframe_height\";s:3:\"300\";s:30:\"show_part_of_iframe_new_window\";s:0:\"\";s:27:\"show_part_of_iframe_new_url\";s:0:\"\";s:39:\"show_part_of_iframe_next_viewports_hide\";s:5:\"false\";s:34:\"show_part_of_iframe_next_viewports\";s:0:\"\";s:39:\"show_part_of_iframe_next_viewports_loop\";s:5:\"false\";s:5:\"style\";s:0:\"\";s:29:\"use_shortcode_attributes_only\";s:5:\"false\";s:33:\"enable_external_height_workaround\";s:8:\"external\";s:20:\"keep_overflow_hidden\";s:5:\"false\";s:31:\"hide_page_until_loaded_external\";s:5:\"false\";s:19:\"onload_resize_delay\";s:0:\"\";s:11:\"expert_mode\";s:5:\"false\";s:44:\"show_part_of_iframe_allow_scrollbar_vertical\";s:5:\"false\";s:46:\"show_part_of_iframe_allow_scrollbar_horizontal\";s:5:\"false\";s:19:\"hide_part_of_iframe\";s:0:\"\";s:26:\"change_parent_links_target\";s:0:\"\";s:19:\"change_iframe_links\";s:0:\"\";s:26:\"change_iframe_links_target\";s:0:\"\";s:7:\"browser\";s:0:\"\";s:25:\"show_part_of_iframe_style\";s:0:\"\";s:20:\"map_parameter_to_url\";s:0:\"\";s:11:\"iframe_zoom\";s:0:\"\";s:14:\"accordeon_menu\";s:2:\"no\";s:18:\"show_iframe_loader\";s:5:\"false\";s:11:\"tab_visible\";s:0:\"\";s:10:\"tab_hidden\";s:0:\"\";s:24:\"enable_responsive_iframe\";s:5:\"false\";s:15:\"allowfullscreen\";s:5:\"false\";s:19:\"iframe_height_ratio\";s:0:\"\";s:16:\"enable_lazy_load\";s:5:\"false\";s:26:\"enable_lazy_load_threshold\";s:4:\"3000\";s:25:\"enable_lazy_load_fadetime\";s:1:\"0\";s:23:\"enable_lazy_load_manual\";s:5:\"false\";s:14:\"pass_id_by_url\";s:0:\"\";s:25:\"include_scripts_in_footer\";s:4:\"true\";s:18:\"write_css_directly\";s:5:\"false\";s:24:\"resize_on_element_resize\";s:0:\"\";s:30:\"resize_on_element_resize_delay\";s:3:\"250\";s:20:\"add_css_class_parent\";s:5:\"false\";s:9:\"auto_zoom\";s:5:\"false\";s:18:\"auto_zoom_by_ratio\";s:0:\"\";s:18:\"single_save_button\";s:4:\"true\";s:31:\"enable_lazy_load_manual_element\";s:0:\"\";s:21:\"alternative_shortcode\";s:0:\"\";s:14:\"show_menu_link\";s:4:\"true\";s:19:\"iframe_redirect_url\";s:0:\"\";s:12:\"install_date\";i:0;s:40:\"show_part_of_iframe_last_viewport_remove\";s:5:\"false\";s:11:\"load_jquery\";s:4:\"true\";s:20:\"show_iframe_as_layer\";s:5:\"false\";s:23:\"add_iframe_url_as_param\";s:5:\"false\";s:30:\"add_iframe_url_as_param_prefix\";s:0:\"\";s:15:\"reload_interval\";s:0:\"\";s:18:\"iframe_content_css\";s:0:\"\";s:25:\"additional_js_file_iframe\";s:0:\"\";s:26:\"additional_css_file_iframe\";s:0:\"\";s:20:\"add_css_class_iframe\";s:5:\"false\";s:12:\"editorbutton\";s:16:\"src,width,height\";s:15:\"iframe_zoom_ie8\";s:5:\"false\";s:30:\"enable_lazy_load_reserve_space\";s:4:\"true\";s:31:\"hide_content_until_iframe_color\";s:0:\"\";s:21:\"use_zoom_absolute_fix\";s:5:\"false\";s:12:\"include_html\";s:0:\"\";s:26:\"enable_ios_mobile_scolling\";s:5:\"false\";s:7:\"sandbox\";s:0:\"\";s:32:\"show_iframe_as_layer_header_file\";s:0:\"\";s:34:\"show_iframe_as_layer_header_height\";s:3:\"100\";s:36:\"show_iframe_as_layer_header_position\";s:3:\"top\";s:17:\"resize_min_height\";s:1:\"1\";s:25:\"show_iframe_as_layer_full\";s:5:\"false\";s:4:\"demo\";s:5:\"false\";s:24:\"show_part_of_iframe_zoom\";s:5:\"false\";s:32:\"external_height_workaround_delay\";s:1:\"0\";s:19:\"add_document_domain\";s:5:\"false\";s:15:\"document_domain\";s:14:\"unknown domain\";s:20:\"multi_domain_enabled\";s:4:\"true\";s:15:\"check_shortcode\";s:5:\"false\";s:16:\"use_post_message\";s:5:\"false\";s:25:\"element_to_measure_offset\";s:1:\"0\";s:17:\"data_post_message\";s:0:\"\";s:18:\"element_to_measure\";s:7:\"default\";s:33:\"show_iframe_as_layer_keep_content\";s:4:\"true\";s:5:\"roles\";s:4:\"none\";s:18:\"parent_content_css\";s:0:\"\";s:26:\"include_scripts_in_content\";s:5:\"false\";s:8:\"debug_js\";s:5:\"false\";s:20:\"check_iframe_cronjob\";s:5:\"false\";s:26:\"check_iframe_cronjob_email\";s:0:\"\";s:21:\"enable_content_filter\";s:5:\"false\";s:21:\"add_ai_external_local\";s:5:\"false\";s:5:\"title\";s:0:\"\";s:23:\"check_iframes_when_save\";s:5:\"false\";s:16:\"admin_was_loaded\";b:1;s:26:\"check_iframe_url_when_load\";s:4:\"true\";s:23:\"modify_iframe_if_cookie\";s:5:\"false\";s:5:\"allow\";s:0:\"\";}','yes'),(18365,'classic-editor-replace','replace','yes'),(8045,'mce_show_notice','0','no'),(8046,'mce_loyalty','a:11:{s:7:\"seconds\";i:48;s:7:\"minutes\";i:22;s:5:\"hours\";i:22;s:4:\"mday\";i:31;s:4:\"wday\";i:6;s:3:\"mon\";i:3;s:4:\"year\";i:2018;s:4:\"yday\";i:89;s:7:\"weekday\";s:8:\"Saturday\";s:5:\"month\";s:5:\"March\";i:0;i:1522534968;}','no'),(8039,'wpcf7','a:3:{s:7:\"version\";s:5:\"5.1.4\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1538138855;s:7:\"version\";s:5:\"5.0.4\";s:11:\"count_valid\";i:8;s:13:\"count_invalid\";i:0;}s:9:\"recaptcha\";a:1:{s:40:\"6Le6QbcUAAAAAAJmULHCD8t7cRmNlJrtM9eyJHAV\";s:40:\"6Le6QbcUAAAAABJjdVLzHh1MjpKNOtc_d2tsdDyW\";}}','yes'),(10047,'_elementor_installed_time','1525155137','yes'),(10048,'elementor_remote_info_library','a:2:{s:10:\"categories\";a:18:{i:0;s:5:\"about\";i:1;s:7:\"archive\";i:2;s:14:\"call to action\";i:3;s:7:\"clients\";i:4;s:7:\"contact\";i:5;s:3:\"faq\";i:6;s:8:\"features\";i:7;s:6:\"footer\";i:8;s:6:\"header\";i:9;s:4:\"hero\";i:10;s:9:\"portfolio\";i:11;s:7:\"pricing\";i:12;s:8:\"services\";i:13;s:6:\"single\";i:14;s:5:\"stats\";i:15;s:9:\"subscribe\";i:16;s:4:\"team\";i:17;s:12:\"testimonials\";}s:9:\"templates\";a:397:{i:0;a:14:{s:2:\"id\";s:4:\"5525\";s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443532\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"45\";s:11:\"trend_index\";s:2:\"15\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:1;a:14:{s:2:\"id\";s:4:\"5533\";s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520443534\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"83\";s:11:\"trend_index\";s:2:\"59\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:2;a:14:{s:2:\"id\";s:4:\"5575\";s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443543\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"51\";s:11:\"trend_index\";s:2:\"28\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:3;a:14:{s:2:\"id\";s:4:\"5615\";s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443551\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"72\";s:11:\"trend_index\";s:2:\"47\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:4;a:14:{s:2:\"id\";s:4:\"5624\";s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443553\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"165\";s:11:\"trend_index\";s:3:\"108\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:5;a:14:{s:2:\"id\";s:4:\"5684\";s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443565\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"126\";s:11:\"trend_index\";s:2:\"67\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:6;a:14:{s:2:\"id\";s:4:\"5693\";s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"246\";s:11:\"trend_index\";s:3:\"212\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:7;a:14:{s:2:\"id\";s:4:\"5703\";s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443569\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"73\";s:11:\"trend_index\";s:2:\"43\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:8;a:14:{s:2:\"id\";s:4:\"5711\";s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443571\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"257\";s:11:\"trend_index\";s:3:\"245\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:9;a:14:{s:2:\"id\";s:4:\"5719\";s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443573\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"180\";s:11:\"trend_index\";s:3:\"157\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:10;a:14:{s:2:\"id\";s:4:\"5729\";s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443575\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"299\";s:11:\"trend_index\";s:3:\"219\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:11;a:14:{s:2:\"id\";s:4:\"5737\";s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443576\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"216\";s:11:\"trend_index\";s:3:\"161\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:12;a:14:{s:2:\"id\";s:4:\"5746\";s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443578\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"232\";s:11:\"trend_index\";s:3:\"198\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:13;a:14:{s:2:\"id\";s:4:\"5755\";s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443580\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"142\";s:11:\"trend_index\";s:2:\"82\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:14;a:14:{s:2:\"id\";s:4:\"5764\";s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443582\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"305\";s:11:\"trend_index\";s:3:\"214\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:15;a:14:{s:2:\"id\";s:4:\"5773\";s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";s:10:\"1520443584\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"60\";s:11:\"trend_index\";s:2:\"41\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:16;a:14:{s:2:\"id\";s:4:\"5783\";s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";s:10:\"1520443586\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"290\";s:11:\"trend_index\";s:3:\"253\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:17;a:14:{s:2:\"id\";s:4:\"5792\";s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";s:10:\"1520443588\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"241\";s:11:\"trend_index\";s:3:\"234\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:18;a:14:{s:2:\"id\";s:4:\"5801\";s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";s:10:\"1520443589\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"47\";s:11:\"trend_index\";s:2:\"21\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:19;a:14:{s:2:\"id\";s:4:\"5811\";s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";s:10:\"1520443591\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"143\";s:11:\"trend_index\";s:3:\"107\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:20;a:14:{s:2:\"id\";s:4:\"5820\";s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"236\";s:11:\"trend_index\";s:3:\"128\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:21;a:14:{s:2:\"id\";s:4:\"5828\";s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443595\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"297\";s:11:\"trend_index\";s:3:\"235\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:22;a:14:{s:2:\"id\";s:4:\"5836\";s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443597\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"167\";s:11:\"trend_index\";s:3:\"101\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:23;a:14:{s:2:\"id\";s:4:\"5844\";s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443599\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"285\";s:11:\"trend_index\";s:3:\"327\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:24;a:14:{s:2:\"id\";s:4:\"5852\";s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";s:10:\"1520443600\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"370\";s:11:\"trend_index\";s:3:\"377\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:25;a:14:{s:2:\"id\";s:4:\"5947\";s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443621\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"321\";s:11:\"trend_index\";s:3:\"336\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:26;a:14:{s:2:\"id\";s:4:\"5956\";s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443623\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"373\";s:11:\"trend_index\";s:3:\"359\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:27;a:14:{s:2:\"id\";s:4:\"5963\";s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443626\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"113\";s:11:\"trend_index\";s:2:\"65\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:28;a:14:{s:2:\"id\";s:4:\"5974\";s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443629\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"109\";s:11:\"trend_index\";s:2:\"94\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:29;a:14:{s:2:\"id\";s:4:\"5983\";s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443630\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"260\";s:11:\"trend_index\";s:3:\"187\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:30;a:14:{s:2:\"id\";s:4:\"5991\";s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443632\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"178\";s:11:\"trend_index\";s:2:\"89\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:31;a:14:{s:2:\"id\";s:4:\"5999\";s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520443634\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"133\";s:11:\"trend_index\";s:2:\"66\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:32;a:14:{s:2:\"id\";s:4:\"6008\";s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"118\";s:11:\"trend_index\";s:2:\"71\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:33;a:14:{s:2:\"id\";s:4:\"6027\";s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";s:10:\"1520443639\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"81\";s:11:\"trend_index\";s:2:\"61\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:34;a:14:{s:2:\"id\";s:4:\"6036\";s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";s:10:\"1520443641\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"137\";s:11:\"trend_index\";s:3:\"136\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:35;a:14:{s:2:\"id\";s:4:\"6044\";s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443643\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"130\";s:11:\"trend_index\";s:2:\"74\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:36;a:14:{s:2:\"id\";s:4:\"6053\";s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443645\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"221\";s:11:\"trend_index\";s:3:\"126\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:37;a:14:{s:2:\"id\";s:4:\"6063\";s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443647\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"214\";s:11:\"trend_index\";s:3:\"138\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:38;a:14:{s:2:\"id\";s:4:\"6071\";s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443649\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"223\";s:11:\"trend_index\";s:3:\"200\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:39;a:14:{s:2:\"id\";s:4:\"6079\";s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443651\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"312\";s:11:\"trend_index\";s:3:\"284\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:40;a:14:{s:2:\"id\";s:4:\"6089\";s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443653\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"235\";s:11:\"trend_index\";s:3:\"201\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:41;a:14:{s:2:\"id\";s:4:\"6097\";s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443655\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"278\";s:11:\"trend_index\";s:3:\"223\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:42;a:14:{s:2:\"id\";s:4:\"6106\";s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443657\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"326\";s:11:\"trend_index\";s:3:\"293\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:43;a:14:{s:2:\"id\";s:4:\"6114\";s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443659\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"347\";s:11:\"trend_index\";s:3:\"304\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:44;a:14:{s:2:\"id\";s:4:\"6122\";s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";s:10:\"1520443661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"71\";s:11:\"trend_index\";s:2:\"49\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:45;a:14:{s:2:\"id\";s:4:\"6135\";s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443663\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"125\";s:11:\"trend_index\";s:2:\"80\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:46;a:14:{s:2:\"id\";s:4:\"6144\";s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520443664\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"237\";s:11:\"trend_index\";s:3:\"226\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:47;a:14:{s:2:\"id\";s:4:\"6152\";s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443666\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"272\";s:11:\"trend_index\";s:3:\"268\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:48;a:14:{s:2:\"id\";s:4:\"6162\";s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443668\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"311\";s:11:\"trend_index\";s:3:\"278\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:49;a:14:{s:2:\"id\";s:4:\"6170\";s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443670\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"317\";s:11:\"trend_index\";s:3:\"274\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:50;a:14:{s:2:\"id\";s:4:\"6178\";s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443676\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"331\";s:11:\"trend_index\";s:3:\"312\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:51;a:14:{s:2:\"id\";s:4:\"6186\";s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443678\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"369\";s:11:\"trend_index\";s:3:\"390\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:52;a:14:{s:2:\"id\";s:4:\"6196\";s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443680\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"147\";s:11:\"trend_index\";s:2:\"96\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:53;a:14:{s:2:\"id\";s:4:\"6204\";s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443681\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"234\";s:11:\"trend_index\";s:3:\"171\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:54;a:14:{s:2:\"id\";s:4:\"6212\";s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443684\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"138\";s:11:\"trend_index\";s:2:\"84\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:55;a:14:{s:2:\"id\";s:4:\"6220\";s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443685\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"136\";s:11:\"trend_index\";s:2:\"75\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:56;a:14:{s:2:\"id\";s:4:\"6230\";s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443687\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"314\";s:11:\"trend_index\";s:3:\"310\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:57;a:14:{s:2:\"id\";s:4:\"6239\";s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443689\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"66\";s:11:\"trend_index\";s:2:\"37\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:58;a:14:{s:2:\"id\";s:4:\"6249\";s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"105\";s:11:\"trend_index\";s:2:\"76\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:59;a:14:{s:2:\"id\";s:4:\"6258\";s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443693\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"325\";s:11:\"trend_index\";s:3:\"221\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:60;a:14:{s:2:\"id\";s:4:\"6266\";s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443695\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"74\";s:11:\"trend_index\";s:2:\"50\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:61;a:14:{s:2:\"id\";s:4:\"6274\";s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443698\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"123\";s:11:\"trend_index\";s:2:\"85\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:62;a:14:{s:2:\"id\";s:4:\"6017\";s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";s:10:\"1520520331\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"191\";s:11:\"trend_index\";s:3:\"144\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:63;a:14:{s:2:\"id\";s:4:\"4826\";s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520544\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"298\";s:11:\"trend_index\";s:3:\"217\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:64;a:14:{s:2:\"id\";s:4:\"4835\";s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520546\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"343\";s:11:\"trend_index\";s:3:\"269\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:65;a:14:{s:2:\"id\";s:4:\"4843\";s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520548\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"348\";s:11:\"trend_index\";s:3:\"272\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:66;a:14:{s:2:\"id\";s:4:\"4854\";s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520520549\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"385\";s:11:\"trend_index\";s:3:\"389\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:67;a:14:{s:2:\"id\";s:4:\"4863\";s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520520551\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"282\";s:11:\"trend_index\";s:3:\"256\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:68;a:14:{s:2:\"id\";s:4:\"4871\";s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520520552\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"289\";s:11:\"trend_index\";s:3:\"159\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:69;a:14:{s:2:\"id\";s:4:\"4880\";s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";s:10:\"1520520554\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"337\";s:11:\"trend_index\";s:3:\"265\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:70;a:14:{s:2:\"id\";s:4:\"4889\";s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";s:10:\"1520520556\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"360\";s:11:\"trend_index\";s:3:\"356\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:71;a:14:{s:2:\"id\";s:4:\"4897\";s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520520557\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"169\";s:11:\"trend_index\";s:3:\"109\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:72;a:14:{s:2:\"id\";s:4:\"4905\";s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520559\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"201\";s:11:\"trend_index\";s:3:\"127\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:73;a:14:{s:2:\"id\";s:4:\"4913\";s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520561\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"292\";s:11:\"trend_index\";s:3:\"189\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:74;a:14:{s:2:\"id\";s:4:\"4921\";s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520520562\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"263\";s:11:\"trend_index\";s:3:\"242\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:75;a:14:{s:2:\"id\";s:4:\"4929\";s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520564\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"102\";s:11:\"trend_index\";s:2:\"54\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:76;a:14:{s:2:\"id\";s:4:\"4939\";s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520565\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"156\";s:11:\"trend_index\";s:3:\"100\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:77;a:14:{s:2:\"id\";s:4:\"4947\";s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"242\";s:11:\"trend_index\";s:3:\"191\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:78;a:14:{s:2:\"id\";s:4:\"4955\";s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520520569\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"310\";s:11:\"trend_index\";s:3:\"357\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:79;a:14:{s:2:\"id\";s:4:\"4963\";s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520570\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"342\";s:11:\"trend_index\";s:3:\"279\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:80;a:14:{s:2:\"id\";s:4:\"4971\";s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520520572\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"388\";s:11:\"trend_index\";s:3:\"331\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:81;a:14:{s:2:\"id\";s:4:\"4979\";s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520573\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"364\";s:11:\"trend_index\";s:3:\"315\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:82;a:14:{s:2:\"id\";s:4:\"4987\";s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";s:10:\"1520520575\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"218\";s:11:\"trend_index\";s:3:\"203\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:83;a:14:{s:2:\"id\";s:4:\"4995\";s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520520577\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"324\";s:11:\"trend_index\";s:3:\"300\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:84;a:14:{s:2:\"id\";s:4:\"5007\";s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520578\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"92\";s:11:\"trend_index\";s:2:\"52\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:85;a:14:{s:2:\"id\";s:4:\"5019\";s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520580\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"206\";s:11:\"trend_index\";s:3:\"139\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:86;a:14:{s:2:\"id\";s:4:\"5027\";s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520581\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"301\";s:11:\"trend_index\";s:3:\"267\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:87;a:14:{s:2:\"id\";s:4:\"5037\";s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520520583\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"248\";s:11:\"trend_index\";s:3:\"192\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:88;a:14:{s:2:\"id\";s:4:\"5057\";s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520520586\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"247\";s:11:\"trend_index\";s:3:\"252\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:89;a:14:{s:2:\"id\";s:4:\"5071\";s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520520588\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"276\";s:11:\"trend_index\";s:3:\"190\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:90;a:14:{s:2:\"id\";s:4:\"5082\";s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520520589\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"334\";s:11:\"trend_index\";s:3:\"355\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:91;a:14:{s:2:\"id\";s:4:\"5090\";s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520591\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"266\";s:11:\"trend_index\";s:3:\"170\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:92;a:14:{s:2:\"id\";s:4:\"5098\";s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"231\";s:11:\"trend_index\";s:3:\"164\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:93;a:14:{s:2:\"id\";s:4:\"5107\";s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520520594\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"328\";s:11:\"trend_index\";s:3:\"322\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:94;a:14:{s:2:\"id\";s:4:\"5115\";s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520596\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"61\";s:11:\"trend_index\";s:2:\"29\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:95;a:14:{s:2:\"id\";s:4:\"5125\";s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520597\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"258\";s:11:\"trend_index\";s:3:\"225\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:96;a:14:{s:2:\"id\";s:4:\"5133\";s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520599\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"224\";s:11:\"trend_index\";s:3:\"151\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:97;a:14:{s:2:\"id\";s:4:\"5141\";s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520601\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"196\";s:11:\"trend_index\";s:3:\"111\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:98;a:14:{s:2:\"id\";s:4:\"5149\";s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520602\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"183\";s:11:\"trend_index\";s:3:\"119\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:99;a:14:{s:2:\"id\";s:4:\"5542\";s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520681\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"205\";s:11:\"trend_index\";s:3:\"135\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:100;a:14:{s:2:\"id\";s:4:\"5550\";s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520682\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"294\";s:11:\"trend_index\";s:3:\"258\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:101;a:14:{s:2:\"id\";s:4:\"5558\";s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520684\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"175\";s:11:\"trend_index\";s:2:\"98\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:102;a:14:{s:2:\"id\";s:4:\"5567\";s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520520685\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"229\";s:11:\"trend_index\";s:3:\"173\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:103;a:14:{s:2:\"id\";s:4:\"5583\";s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520520689\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"275\";s:11:\"trend_index\";s:3:\"227\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:104;a:14:{s:2:\"id\";s:4:\"5591\";s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520520691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"162\";s:11:\"trend_index\";s:3:\"104\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:105;a:14:{s:2:\"id\";s:4:\"5599\";s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520520693\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"288\";s:11:\"trend_index\";s:3:\"264\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:106;a:14:{s:2:\"id\";s:4:\"5607\";s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520520695\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"207\";s:11:\"trend_index\";s:3:\"153\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:107;a:14:{s:2:\"id\";s:4:\"5634\";s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520699\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"217\";s:11:\"trend_index\";s:3:\"152\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:108;a:14:{s:2:\"id\";s:4:\"5642\";s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520520701\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"261\";s:11:\"trend_index\";s:3:\"181\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:109;a:14:{s:2:\"id\";s:4:\"5650\";s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520702\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"173\";s:11:\"trend_index\";s:2:\"78\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:110;a:14:{s:2:\"id\";s:4:\"5658\";s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520520704\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"252\";s:11:\"trend_index\";s:3:\"194\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:111;a:14:{s:2:\"id\";s:4:\"5667\";s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520705\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"190\";s:11:\"trend_index\";s:2:\"92\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:112;a:14:{s:2:\"id\";s:4:\"5675\";s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520707\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"332\";s:11:\"trend_index\";s:3:\"261\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:113;a:14:{s:2:\"id\";s:4:\"5860\";s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520746\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"185\";s:11:\"trend_index\";s:3:\"149\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:114;a:14:{s:2:\"id\";s:4:\"5869\";s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520747\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"284\";s:11:\"trend_index\";s:3:\"188\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:115;a:14:{s:2:\"id\";s:4:\"5877\";s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520749\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"371\";s:11:\"trend_index\";s:3:\"385\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:116;a:14:{s:2:\"id\";s:4:\"5885\";s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520520751\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"300\";s:11:\"trend_index\";s:3:\"337\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:117;a:14:{s:2:\"id\";s:4:\"5893\";s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520520752\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"269\";s:11:\"trend_index\";s:3:\"199\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:118;a:14:{s:2:\"id\";s:4:\"5904\";s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";s:10:\"1520520754\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"350\";s:11:\"trend_index\";s:3:\"298\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:119;a:14:{s:2:\"id\";s:4:\"5912\";s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";s:10:\"1520520755\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"390\";s:11:\"trend_index\";s:3:\"358\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:120;a:14:{s:2:\"id\";s:4:\"5921\";s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";s:10:\"1520520757\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"271\";s:11:\"trend_index\";s:3:\"154\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:121;a:14:{s:2:\"id\";s:4:\"5930\";s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";s:10:\"1520520758\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"101\";s:11:\"trend_index\";s:2:\"53\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:122;a:14:{s:2:\"id\";s:4:\"5939\";s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";s:10:\"1520520760\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"227\";s:11:\"trend_index\";s:3:\"193\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:123;a:14:{s:2:\"id\";s:4:\"7596\";s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";s:10:\"1521546999\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"54\";s:11:\"trend_index\";s:2:\"22\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:124;a:14:{s:2:\"id\";s:4:\"7615\";s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1521547237\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"44\";s:11:\"trend_index\";s:2:\"26\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:125;a:14:{s:2:\"id\";s:4:\"7627\";s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";s:10:\"1521547332\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"122\";s:11:\"trend_index\";s:3:\"132\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:126;a:14:{s:2:\"id\";s:4:\"7638\";s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";s:10:\"1521547502\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"106\";s:11:\"trend_index\";s:3:\"117\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:127;a:14:{s:2:\"id\";s:4:\"7663\";s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2.png\";s:12:\"tmpl_created\";s:10:\"1521547761\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"single\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"86\";s:11:\"trend_index\";s:2:\"27\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:128;a:14:{s:2:\"id\";s:4:\"7650\";s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1.png\";s:12:\"tmpl_created\";s:10:\"1521557736\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"single\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"85\";s:11:\"trend_index\";s:2:\"40\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:129;a:14:{s:2:\"id\";s:4:\"7686\";s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";s:10:\"1521558047\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:26:\"[\"archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"64\";s:11:\"trend_index\";s:2:\"32\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:130;a:14:{s:2:\"id\";s:4:\"4676\";s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";s:10:\"1522014215\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"146\";s:11:\"trend_index\";s:3:\"167\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:131;a:14:{s:2:\"id\";s:4:\"7997\";s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1524582343\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"358\";s:11:\"trend_index\";s:2:\"95\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:132;a:14:{s:2:\"id\";s:4:\"7982\";s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1524582468\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"387\";s:11:\"trend_index\";s:3:\"141\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:133;a:14:{s:2:\"id\";s:4:\"7959\";s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1524582605\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"375\";s:11:\"trend_index\";s:3:\"142\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:134;a:14:{s:2:\"id\";s:4:\"7950\";s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1524582631\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"391\";s:11:\"trend_index\";s:3:\"178\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:135;a:14:{s:2:\"id\";s:4:\"7937\";s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1524582665\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"386\";s:11:\"trend_index\";s:3:\"176\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:136;a:14:{s:2:\"id\";s:4:\"7927\";s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1524582691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"377\";s:11:\"trend_index\";s:3:\"125\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:137;a:14:{s:2:\"id\";s:4:\"7917\";s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1524582788\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"344\";s:11:\"trend_index\";s:2:\"72\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:138;a:14:{s:2:\"id\";s:4:\"7904\";s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1524582814\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"389\";s:11:\"trend_index\";s:3:\"224\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:139;a:14:{s:2:\"id\";s:4:\"7837\";s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";s:10:\"1524582852\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"397\";s:11:\"trend_index\";s:3:\"326\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:140;a:14:{s:2:\"id\";s:4:\"7852\";s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";s:10:\"1524582875\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"382\";s:11:\"trend_index\";s:3:\"158\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:141;a:14:{s:2:\"id\";s:4:\"7862\";s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";s:10:\"1524582903\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"363\";s:11:\"trend_index\";s:3:\"105\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:142;a:14:{s:2:\"id\";s:4:\"7871\";s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";s:10:\"1524582927\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"355\";s:11:\"trend_index\";s:3:\"110\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:143;a:14:{s:2:\"id\";s:4:\"7884\";s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";s:10:\"1524582944\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"189\";s:11:\"trend_index\";s:2:\"10\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:144;a:14:{s:2:\"id\";s:4:\"7892\";s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1524583015\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"368\";s:11:\"trend_index\";s:3:\"124\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:145;a:14:{s:2:\"id\";s:4:\"4212\";s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443248\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"198\";s:11:\"trend_index\";s:2:\"97\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:146;a:14:{s:2:\"id\";s:4:\"7825\";s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";s:10:\"1524583273\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"295\";s:11:\"trend_index\";s:2:\"23\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:147;a:14:{s:2:\"id\";s:4:\"4227\";s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443250\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"319\";s:11:\"trend_index\";s:3:\"249\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:148;a:14:{s:2:\"id\";s:4:\"7812\";s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";s:10:\"1524583298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"329\";s:11:\"trend_index\";s:2:\"56\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:149;a:14:{s:2:\"id\";s:4:\"4235\";s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443251\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"303\";s:11:\"trend_index\";s:3:\"250\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:150;a:14:{s:2:\"id\";s:4:\"7724\";s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1524583367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"277\";s:11:\"trend_index\";s:2:\"30\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:151;a:14:{s:2:\"id\";s:4:\"4244\";s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443253\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"367\";s:11:\"trend_index\";s:3:\"376\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:152;a:14:{s:2:\"id\";s:4:\"7734\";s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1524583436\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"279\";s:11:\"trend_index\";s:2:\"24\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:153;a:14:{s:2:\"id\";s:4:\"4252\";s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443255\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"91\";s:11:\"trend_index\";s:2:\"51\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:154;a:14:{s:2:\"id\";s:4:\"7771\";s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1524583540\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"335\";s:11:\"trend_index\";s:2:\"73\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:155;a:14:{s:2:\"id\";s:4:\"4260\";s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443257\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"240\";s:11:\"trend_index\";s:3:\"145\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:156;a:14:{s:2:\"id\";s:4:\"7787\";s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1524583598\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"346\";s:11:\"trend_index\";s:2:\"86\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:157;a:14:{s:2:\"id\";s:4:\"4268\";s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443259\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"212\";s:11:\"trend_index\";s:3:\"160\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:158;a:14:{s:2:\"id\";s:4:\"7801\";s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1524583659\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"307\";s:11:\"trend_index\";s:2:\"38\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:159;a:14:{s:2:\"id\";s:4:\"4276\";s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443261\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"315\";s:11:\"trend_index\";s:3:\"184\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:160;a:14:{s:2:\"id\";s:4:\"7754\";s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1524583712\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"203\";s:11:\"trend_index\";s:2:\"11\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:161;a:14:{s:2:\"id\";s:4:\"4284\";s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443263\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"116\";s:11:\"trend_index\";s:2:\"81\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:162;a:14:{s:2:\"id\";s:4:\"7713\";s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1524584780\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"262\";s:11:\"trend_index\";s:2:\"14\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:163;a:14:{s:2:\"id\";s:4:\"4293\";s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443265\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"308\";s:11:\"trend_index\";s:3:\"324\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:164;a:14:{s:2:\"id\";s:4:\"7744\";s:5:\"title\";s:8:\"header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1524584784\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"322\";s:11:\"trend_index\";s:2:\"46\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:165;a:14:{s:2:\"id\";s:4:\"4302\";s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443266\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"121\";s:11:\"trend_index\";s:2:\"64\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:166;a:14:{s:2:\"id\";s:4:\"4313\";s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443268\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"193\";s:11:\"trend_index\";s:3:\"116\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:167;a:14:{s:2:\"id\";s:4:\"4324\";s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443270\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"306\";s:11:\"trend_index\";s:3:\"260\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:168;a:14:{s:2:\"id\";s:4:\"4332\";s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443272\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"195\";s:11:\"trend_index\";s:3:\"148\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:169;a:14:{s:2:\"id\";s:4:\"4341\";s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520443274\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"184\";s:11:\"trend_index\";s:3:\"130\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:170;a:14:{s:2:\"id\";s:4:\"4349\";s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";s:10:\"1520443275\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"293\";s:11:\"trend_index\";s:3:\"314\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:171;a:14:{s:2:\"id\";s:4:\"4357\";s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";s:10:\"1520443277\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"69\";s:11:\"trend_index\";s:2:\"55\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:172;a:14:{s:2:\"id\";s:4:\"4368\";s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";s:10:\"1520443279\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"107\";s:11:\"trend_index\";s:2:\"57\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:173;a:14:{s:2:\"id\";s:4:\"4376\";s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520443281\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"174\";s:11:\"trend_index\";s:3:\"175\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:174;a:14:{s:2:\"id\";s:4:\"4391\";s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";s:10:\"1520443283\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"182\";s:11:\"trend_index\";s:3:\"113\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:175;a:14:{s:2:\"id\";s:4:\"4400\";s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";s:10:\"1520443285\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"255\";s:11:\"trend_index\";s:3:\"180\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:176;a:14:{s:2:\"id\";s:4:\"4411\";s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443287\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"151\";s:11:\"trend_index\";s:2:\"83\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:177;a:14:{s:2:\"id\";s:4:\"4420\";s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443289\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"215\";s:11:\"trend_index\";s:3:\"120\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:178;a:14:{s:2:\"id\";s:4:\"4428\";s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443291\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"154\";s:11:\"trend_index\";s:3:\"134\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:179;a:14:{s:2:\"id\";s:4:\"4436\";s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443293\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"210\";s:11:\"trend_index\";s:3:\"156\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:180;a:14:{s:2:\"id\";s:4:\"4444\";s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443295\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"163\";s:11:\"trend_index\";s:3:\"121\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:181;a:14:{s:2:\"id\";s:4:\"4452\";s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443296\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"213\";s:11:\"trend_index\";s:3:\"179\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:182;a:14:{s:2:\"id\";s:4:\"4460\";s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"192\";s:11:\"trend_index\";s:3:\"112\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:183;a:14:{s:2:\"id\";s:4:\"4468\";s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443301\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"194\";s:11:\"trend_index\";s:3:\"143\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:184;a:14:{s:2:\"id\";s:4:\"4476\";s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443303\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"268\";s:11:\"trend_index\";s:3:\"209\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:185;a:14:{s:2:\"id\";s:4:\"4484\";s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443305\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"302\";s:11:\"trend_index\";s:3:\"229\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:186;a:14:{s:2:\"id\";s:4:\"4492\";s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443307\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"95\";s:11:\"trend_index\";s:2:\"60\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:187;a:14:{s:2:\"id\";s:4:\"4500\";s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443308\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"365\";s:11:\"trend_index\";s:3:\"305\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:188;a:14:{s:2:\"id\";s:4:\"4509\";s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443310\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"396\";s:11:\"trend_index\";s:3:\"373\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:189;a:14:{s:2:\"id\";s:4:\"4521\";s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443312\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"318\";s:11:\"trend_index\";s:3:\"286\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:190;a:14:{s:2:\"id\";s:4:\"4529\";s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443314\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"379\";s:11:\"trend_index\";s:3:\"380\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:191;a:14:{s:2:\"id\";s:4:\"4537\";s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443315\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"381\";s:11:\"trend_index\";s:3:\"363\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:192;a:14:{s:2:\"id\";s:4:\"4545\";s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"394\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:193;a:14:{s:2:\"id\";s:4:\"4553\";s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443319\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"362\";s:11:\"trend_index\";s:3:\"311\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:194;a:14:{s:2:\"id\";s:4:\"4562\";s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443322\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"392\";s:11:\"trend_index\";s:3:\"367\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:195;a:14:{s:2:\"id\";s:4:\"4572\";s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443324\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"304\";s:11:\"trend_index\";s:3:\"263\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:196;a:14:{s:2:\"id\";s:4:\"4580\";s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443326\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"380\";s:11:\"trend_index\";s:3:\"361\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:197;a:14:{s:2:\"id\";s:4:\"4589\";s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443327\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"393\";s:11:\"trend_index\";s:3:\"386\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:198;a:14:{s:2:\"id\";s:4:\"4597\";s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443330\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"384\";s:11:\"trend_index\";s:3:\"334\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:199;a:14:{s:2:\"id\";s:4:\"4605\";s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520443332\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"395\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:200;a:14:{s:2:\"id\";s:4:\"4613\";s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443334\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"376\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:201;a:14:{s:2:\"id\";s:4:\"4690\";s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443348\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"273\";s:11:\"trend_index\";s:3:\"236\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:202;a:14:{s:2:\"id\";s:4:\"4698\";s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443350\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"352\";s:11:\"trend_index\";s:3:\"383\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:203;a:14:{s:2:\"id\";s:4:\"4706\";s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443352\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"208\";s:11:\"trend_index\";s:3:\"114\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:204;a:14:{s:2:\"id\";s:4:\"4718\";s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443354\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"230\";s:11:\"trend_index\";s:3:\"237\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:205;a:14:{s:2:\"id\";s:4:\"4727\";s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443356\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"330\";s:11:\"trend_index\";s:3:\"282\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:206;a:14:{s:2:\"id\";s:4:\"4736\";s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443358\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"222\";s:11:\"trend_index\";s:3:\"177\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:207;a:14:{s:2:\"id\";s:4:\"4746\";s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443360\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"270\";s:11:\"trend_index\";s:3:\"163\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:208;a:14:{s:2:\"id\";s:4:\"4759\";s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443362\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"281\";s:11:\"trend_index\";s:3:\"288\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:209;a:14:{s:2:\"id\";s:4:\"4770\";s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443364\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"313\";s:11:\"trend_index\";s:3:\"248\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:210;a:14:{s:2:\"id\";s:4:\"4781\";s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443365\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"233\";s:11:\"trend_index\";s:3:\"146\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:211;a:14:{s:2:\"id\";s:4:\"4793\";s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"253\";s:11:\"trend_index\";s:3:\"204\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:212;a:14:{s:2:\"id\";s:4:\"4801\";s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520443369\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"316\";s:11:\"trend_index\";s:3:\"216\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:213;a:14:{s:2:\"id\";s:4:\"4809\";s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443371\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"280\";s:11:\"trend_index\";s:3:\"230\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:214;a:14:{s:2:\"id\";s:4:\"4818\";s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443373\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"351\";s:11:\"trend_index\";s:3:\"370\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:215;a:14:{s:2:\"id\";s:4:\"5045\";s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443423\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"359\";s:11:\"trend_index\";s:3:\"364\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:216;a:14:{s:2:\"id\";s:4:\"5157\";s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443448\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"333\";s:11:\"trend_index\";s:3:\"299\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:217;a:14:{s:2:\"id\";s:4:\"5165\";s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443450\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"372\";s:11:\"trend_index\";s:3:\"342\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:218;a:14:{s:2:\"id\";s:4:\"5173\";s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443452\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"283\";s:11:\"trend_index\";s:3:\"186\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:219;a:14:{s:2:\"id\";s:4:\"5181\";s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443454\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"340\";s:11:\"trend_index\";s:3:\"349\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:220;a:14:{s:2:\"id\";s:4:\"5189\";s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443456\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"338\";s:11:\"trend_index\";s:3:\"273\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:221;a:14:{s:2:\"id\";s:4:\"5198\";s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443458\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"353\";s:11:\"trend_index\";s:3:\"277\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:222;a:14:{s:2:\"id\";s:4:\"5206\";s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443459\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"374\";s:11:\"trend_index\";s:3:\"351\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:223;a:14:{s:2:\"id\";s:4:\"5214\";s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443462\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"204\";s:11:\"trend_index\";s:3:\"244\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:224;a:14:{s:2:\"id\";s:4:\"5222\";s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443464\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"354\";s:11:\"trend_index\";s:3:\"281\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:225;a:14:{s:2:\"id\";s:4:\"5230\";s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443466\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"323\";s:11:\"trend_index\";s:3:\"303\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:226;a:14:{s:2:\"id\";s:4:\"5238\";s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443468\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"357\";s:11:\"trend_index\";s:3:\"275\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:227;a:14:{s:2:\"id\";s:4:\"5249\";s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443470\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"336\";s:11:\"trend_index\";s:3:\"332\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:228;a:14:{s:2:\"id\";s:4:\"5257\";s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443472\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"345\";s:11:\"trend_index\";s:3:\"378\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:229;a:14:{s:2:\"id\";s:4:\"5266\";s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443474\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"181\";s:11:\"trend_index\";s:3:\"118\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:230;a:14:{s:2:\"id\";s:4:\"5275\";s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443476\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"320\";s:11:\"trend_index\";s:3:\"239\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:231;a:14:{s:2:\"id\";s:4:\"5283\";s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443478\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"309\";s:11:\"trend_index\";s:3:\"347\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:232;a:14:{s:2:\"id\";s:4:\"5290\";s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443480\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"361\";s:11:\"trend_index\";s:3:\"375\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:233;a:14:{s:2:\"id\";s:4:\"5298\";s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443482\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"339\";s:11:\"trend_index\";s:3:\"348\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:234;a:14:{s:2:\"id\";s:4:\"5306\";s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"383\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:235;a:14:{s:2:\"id\";s:4:\"5315\";s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";s:10:\"1520443486\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"349\";s:11:\"trend_index\";s:3:\"317\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:236;a:14:{s:2:\"id\";s:4:\"5324\";s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";s:10:\"1520443488\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"366\";s:11:\"trend_index\";s:3:\"353\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:237;a:14:{s:2:\"id\";s:4:\"5333\";s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443489\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"267\";s:11:\"trend_index\";s:3:\"208\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:238;a:14:{s:2:\"id\";s:4:\"5341\";s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443491\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"378\";s:11:\"trend_index\";s:3:\"365\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:239;a:14:{s:2:\"id\";s:4:\"5349\";s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443493\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"265\";s:11:\"trend_index\";s:3:\"182\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:240;a:14:{s:2:\"id\";s:4:\"5357\";s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520443495\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"286\";s:11:\"trend_index\";s:3:\"231\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:241;a:14:{s:2:\"id\";s:4:\"5368\";s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443497\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"244\";s:11:\"trend_index\";s:3:\"172\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:242;a:14:{s:2:\"id\";s:4:\"5381\";s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443499\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"238\";s:11:\"trend_index\";s:3:\"155\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:243;a:14:{s:2:\"id\";s:4:\"5389\";s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443501\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"327\";s:11:\"trend_index\";s:3:\"301\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:244;a:14:{s:2:\"id\";s:4:\"5397\";s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443503\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"187\";s:11:\"trend_index\";s:3:\"168\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:245;a:14:{s:2:\"id\";s:4:\"5405\";s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443505\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"254\";s:11:\"trend_index\";s:3:\"174\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:246;a:14:{s:2:\"id\";s:4:\"5413\";s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443507\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"186\";s:11:\"trend_index\";s:3:\"133\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:247;a:14:{s:2:\"id\";s:4:\"5421\";s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443509\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"264\";s:11:\"trend_index\";s:3:\"195\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:248;a:14:{s:2:\"id\";s:4:\"5429\";s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443510\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"164\";s:11:\"trend_index\";s:2:\"77\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:249;a:14:{s:2:\"id\";s:4:\"5438\";s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443512\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"250\";s:11:\"trend_index\";s:3:\"166\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:250;a:14:{s:2:\"id\";s:4:\"5447\";s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443514\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"112\";s:11:\"trend_index\";s:2:\"88\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:251;a:14:{s:2:\"id\";s:4:\"5455\";s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443516\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"179\";s:11:\"trend_index\";s:3:\"102\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:252;a:14:{s:2:\"id\";s:4:\"5464\";s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443518\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"245\";s:11:\"trend_index\";s:3:\"162\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:253;a:14:{s:2:\"id\";s:4:\"5472\";s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443520\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"226\";s:11:\"trend_index\";s:3:\"123\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:254;a:14:{s:2:\"id\";s:4:\"5480\";s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520443522\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"341\";s:11:\"trend_index\";s:3:\"306\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:255;a:14:{s:2:\"id\";s:4:\"5488\";s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443524\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"296\";s:11:\"trend_index\";s:3:\"255\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:256;a:14:{s:2:\"id\";s:4:\"5496\";s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520443526\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"356\";s:11:\"trend_index\";s:3:\"325\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:257;a:14:{s:2:\"id\";s:4:\"5504\";s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443528\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"135\";s:11:\"trend_index\";s:2:\"93\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:258;a:14:{s:2:\"id\";s:4:\"5515\";s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443530\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"249\";s:11:\"trend_index\";s:3:\"131\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:259;a:14:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:20:\"Homepage &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0004.png\";s:12:\"tmpl_created\";s:10:\"1470829868\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/homepage-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"App\",\"Homepage\"]\";s:10:\"menu_order\";s:1:\"2\";s:16:\"popularity_index\";s:1:\"1\";s:11:\"trend_index\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:260;a:14:{s:2:\"id\";s:4:\"2402\";s:5:\"title\";s:32:\"Homepage &#8211; Interior Design\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2017/09/Interior.png\";s:12:\"tmpl_created\";s:10:\"1506441447\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:193:\"[\"Architecture\",\"building\",\"business\",\"Creative\",\"exterior design\",\"furniture design\",\"Gallery\",\"garden design\",\"house\",\"interior design\",\"landscape design\",\"multipurpose\",\"portfolio\",\"studio\"]\";s:10:\"menu_order\";s:1:\"3\";s:16:\"popularity_index\";s:2:\"40\";s:11:\"trend_index\";s:2:\"62\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:261;a:14:{s:2:\"id\";s:3:\"777\";s:5:\"title\";s:28:\"Homepage &#8211; Coffee Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/01/rest-home.jpg\";s:12:\"tmpl_created\";s:10:\"1485273092\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/homepage-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:41:\"[\"Coffee\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";s:1:\"4\";s:16:\"popularity_index\";s:2:\"39\";s:11:\"trend_index\";s:3:\"103\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:262;a:14:{s:2:\"id\";s:4:\"2404\";s:5:\"title\";s:24:\"Homepage &#8211; Product\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/09/product.png\";s:12:\"tmpl_created\";s:10:\"1506441452\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:103:\"[\"business\",\"colorful\",\"ecommerce\",\"flat\",\"mobile\",\"modern\",\"responsive\",\"retina\",\"Shop\",\"woocommerce\"]\";s:10:\"menu_order\";s:1:\"5\";s:16:\"popularity_index\";s:2:\"43\";s:11:\"trend_index\";s:3:\"106\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:263;a:14:{s:2:\"id\";s:3:\"519\";s:5:\"title\";s:24:\"Homepage &#8211; Fitness\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0023.png\";s:12:\"tmpl_created\";s:10:\"1477388808\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Fitness\",\"Gym\",\"Health\",\"Homepage\",\"Sport\"]\";s:10:\"menu_order\";s:1:\"6\";s:16:\"popularity_index\";s:1:\"6\";s:11:\"trend_index\";s:1:\"5\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:264;a:14:{s:2:\"id\";s:3:\"492\";s:5:\"title\";s:25:\"Homepage &#8211; Law firm\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0024.png\";s:12:\"tmpl_created\";s:10:\"1477388365\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-law-firm/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Firm\",\"Homepage\",\"Law\"]\";s:10:\"menu_order\";s:1:\"7\";s:16:\"popularity_index\";s:1:\"5\";s:11:\"trend_index\";s:1:\"7\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:265;a:14:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:27:\"Homepage &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0016.png\";s:12:\"tmpl_created\";s:10:\"1470829872\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Homepage\",\"Restaurant\"]\";s:10:\"menu_order\";s:1:\"8\";s:16:\"popularity_index\";s:1:\"2\";s:11:\"trend_index\";s:1:\"2\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:266;a:14:{s:2:\"id\";s:4:\"3451\";s:5:\"title\";s:39:\"Homepage &#8211; Goodness meal services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/11/goodness-featured-image.png\";s:12:\"tmpl_created\";s:10:\"1512054116\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/homepage-goodness-meal-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"9\";s:16:\"popularity_index\";s:2:\"62\";s:11:\"trend_index\";s:3:\"122\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:267;a:14:{s:2:\"id\";s:4:\"2152\";s:5:\"title\";s:26:\"Homepage &#8211; Cake Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-home.png\";s:12:\"tmpl_created\";s:10:\"1499774132\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/homepage-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Cake\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";s:2:\"10\";s:16:\"popularity_index\";s:2:\"80\";s:11:\"trend_index\";s:3:\"243\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:268;a:14:{s:2:\"id\";s:4:\"1068\";s:5:\"title\";s:27:\"Homepage &#8211; Copywriter\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/copywriter.png\";s:12:\"tmpl_created\";s:10:\"1488805928\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-copywriter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Copywriter\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"11\";s:16:\"popularity_index\";s:2:\"46\";s:11:\"trend_index\";s:3:\"137\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:269;a:14:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:23:\"Homepage &#8211; Agency\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0019.png\";s:12:\"tmpl_created\";s:10:\"1470826567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/homepage-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"12\";s:16:\"popularity_index\";s:1:\"3\";s:11:\"trend_index\";s:1:\"6\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:270;a:14:{s:2:\"id\";s:3:\"463\";s:5:\"title\";s:22:\"Homepage &#8211; Study\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0022.png\";s:12:\"tmpl_created\";s:10:\"1477388340\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/homepage-study/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Education\",\"Homepage\",\"Study\"]\";s:10:\"menu_order\";s:2:\"13\";s:16:\"popularity_index\";s:1:\"7\";s:11:\"trend_index\";s:1:\"3\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:271;a:14:{s:2:\"id\";s:4:\"2813\";s:5:\"title\";s:32:\"Homepage &#8211; Creative Agency\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/11/Creative-Agency-–-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1509615049\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-creative-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"14\";s:16:\"popularity_index\";s:2:\"42\";s:11:\"trend_index\";s:2:\"90\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:272;a:14:{s:2:\"id\";s:3:\"728\";s:5:\"title\";s:33:\"Homepage &#8211; Delivery Company\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/01/delivery-company-home-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485269993\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/homepage-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Delivery\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"15\";s:16:\"popularity_index\";s:2:\"48\";s:11:\"trend_index\";s:3:\"307\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:273;a:14:{s:2:\"id\";s:4:\"2403\";s:5:\"title\";s:29:\"Homepage &#8211; Luxury Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/09/Hotel.png\";s:12:\"tmpl_created\";s:10:\"1506441428\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/homepage-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"16\";s:16:\"popularity_index\";s:2:\"67\";s:11:\"trend_index\";s:3:\"210\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:274;a:14:{s:2:\"id\";s:4:\"1903\";s:5:\"title\";s:20:\"One Page &#8211; Spa\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/06/spa.png\";s:12:\"tmpl_created\";s:10:\"1496822325\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/one-page-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:132:\"[\"beauty\",\"care\",\"girly\",\"hair\",\"Health\",\"hospitality\",\"massage\",\"medical\",\"parlor\",\"physiotherapy\",\"salon\",\"spa\",\"wellness\",\"yoga\"]\";s:10:\"menu_order\";s:2:\"17\";s:16:\"popularity_index\";s:2:\"49\";s:11:\"trend_index\";s:3:\"169\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:275;a:14:{s:2:\"id\";s:4:\"2123\";s:5:\"title\";s:33:\"One Page &#8211; Architect Office\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/06/architect.png\";s:12:\"tmpl_created\";s:10:\"1499772989\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/one-page-architect-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"18\";s:16:\"popularity_index\";s:1:\"8\";s:11:\"trend_index\";s:1:\"8\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:276;a:14:{s:2:\"id\";s:4:\"1888\";s:5:\"title\";s:32:\"One Page &#8211; Creative Meetup\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2017/06/creative-meetup.png\";s:12:\"tmpl_created\";s:10:\"1496822319\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/one-page-creative-meetup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"19\";s:16:\"popularity_index\";s:2:\"52\";s:11:\"trend_index\";s:3:\"196\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:277;a:14:{s:2:\"id\";s:4:\"1880\";s:5:\"title\";s:24:\"One Page &#8211; Wedding\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/06/wedding.png\";s:12:\"tmpl_created\";s:10:\"1496822317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/one-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"bride\",\"ceremony\",\"cute\",\"event\",\"fancy\",\"girly\",\"groom\",\"guestbook\",\"marriage\"]\";s:10:\"menu_order\";s:2:\"20\";s:16:\"popularity_index\";s:3:\"159\";s:11:\"trend_index\";s:3:\"379\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:278;a:14:{s:2:\"id\";s:4:\"1891\";s:5:\"title\";s:35:\"One Page &#8211; Textile Convention\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/06/textile-meetup.png\";s:12:\"tmpl_created\";s:10:\"1496822323\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/one-page-textile-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"21\";s:16:\"popularity_index\";s:3:\"119\";s:11:\"trend_index\";s:3:\"228\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:279;a:14:{s:2:\"id\";s:4:\"1885\";s:5:\"title\";s:29:\"One Page &#8211; Yacht Rental\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/06/yacht-home.png\";s:12:\"tmpl_created\";s:10:\"1496822321\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/one-page-yacht-rental/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"22\";s:16:\"popularity_index\";s:2:\"50\";s:11:\"trend_index\";s:3:\"185\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:280;a:14:{s:2:\"id\";s:4:\"2723\";s:5:\"title\";s:34:\"Portfolio &#8211; Graphic Designer\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/11/Graphic-Designer-–-Portfolio.png\";s:12:\"tmpl_created\";s:10:\"1509633883\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-graphic-designer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"23\";s:16:\"popularity_index\";s:2:\"56\";s:11:\"trend_index\";s:3:\"150\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:281;a:14:{s:2:\"id\";s:4:\"2145\";s:5:\"title\";s:30:\"About &#8211; Delivery Company\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-about.png\";s:12:\"tmpl_created\";s:10:\"1499774125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/about-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:10:\"[\"moving\"]\";s:10:\"menu_order\";s:2:\"24\";s:16:\"popularity_index\";s:2:\"96\";s:11:\"trend_index\";s:3:\"328\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:282;a:14:{s:2:\"id\";s:4:\"2155\";s:5:\"title\";s:23:\"About &#8211; Cake Shop\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-about.png\";s:12:\"tmpl_created\";s:10:\"1499774130\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/about-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Food\"]\";s:10:\"menu_order\";s:2:\"25\";s:16:\"popularity_index\";s:3:\"144\";s:11:\"trend_index\";s:3:\"295\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:283;a:14:{s:2:\"id\";s:4:\"1085\";s:5:\"title\";s:21:\"About &#8211; Startup\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/03/Startup.png\";s:12:\"tmpl_created\";s:10:\"1488810874\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/about-startup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"About\",\"Startup\"]\";s:10:\"menu_order\";s:2:\"26\";s:16:\"popularity_index\";s:1:\"4\";s:11:\"trend_index\";s:1:\"4\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:284;a:14:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:22:\"About &#8211; Personal\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0010.png\";s:12:\"tmpl_created\";s:10:\"1470820447\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-personal/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"About\",\"Personal\"]\";s:10:\"menu_order\";s:2:\"27\";s:16:\"popularity_index\";s:2:\"15\";s:11:\"trend_index\";s:2:\"19\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:285;a:14:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:16:\"About &#8211; CV\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0018.png\";s:12:\"tmpl_created\";s:10:\"1470829785\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:98:\"https://library.elementor.com/about-cv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"creative portfolio\",\"Personal\",\"portfolio\",\"professional\",\"resume\",\"vcard\"]\";s:10:\"menu_order\";s:2:\"28\";s:16:\"popularity_index\";s:2:\"22\";s:11:\"trend_index\";s:2:\"34\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:286;a:14:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:25:\"About &#8211; Art Gallery\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0009.png\";s:12:\"tmpl_created\";s:10:\"1470820463\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/about-art-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"About\",\"Art\",\"Gallery\"]\";s:10:\"menu_order\";s:2:\"29\";s:16:\"popularity_index\";s:2:\"12\";s:11:\"trend_index\";s:2:\"12\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:287;a:14:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:26:\"About &#8211; Architecture\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0008.png\";s:12:\"tmpl_created\";s:10:\"1470829766\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/about-architecture/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"About\",\"Architecture\"]\";s:10:\"menu_order\";s:2:\"30\";s:16:\"popularity_index\";s:2:\"13\";s:11:\"trend_index\";s:2:\"20\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:288;a:14:{s:2:\"id\";s:4:\"2802\";s:5:\"title\";s:38:\"Portfolio &#8211; Fashion Photographer\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2017/11/Fashion-photographer-–-Portfolio.png\";s:12:\"tmpl_created\";s:10:\"1509615440\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/portfolio-fashion-photographer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"31\";s:16:\"popularity_index\";s:2:\"70\";s:11:\"trend_index\";s:3:\"183\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:289;a:14:{s:2:\"id\";s:4:\"2828\";s:5:\"title\";s:35:\"Landing Page &#8211; Law Convention\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-–-Landing-Page.png\";s:12:\"tmpl_created\";s:10:\"1509631636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/landing-page-law-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"Convention\",\"Landing Page\",\"Law\"]\";s:10:\"menu_order\";s:2:\"32\";s:16:\"popularity_index\";s:3:\"128\";s:11:\"trend_index\";s:3:\"207\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:290;a:14:{s:2:\"id\";s:4:\"1461\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png\";s:12:\"tmpl_created\";s:10:\"1494352121\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:127:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"ebook\",\"marketing\",\"product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";s:2:\"33\";s:16:\"popularity_index\";s:2:\"87\";s:11:\"trend_index\";s:3:\"220\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:291;a:14:{s:2:\"id\";s:4:\"1460\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png\";s:12:\"tmpl_created\";s:10:\"1494352124\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"34\";s:16:\"popularity_index\";s:2:\"82\";s:11:\"trend_index\";s:3:\"246\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:292;a:14:{s:2:\"id\";s:4:\"1459\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png\";s:12:\"tmpl_created\";s:10:\"1494352125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"35\";s:16:\"popularity_index\";s:2:\"63\";s:11:\"trend_index\";s:3:\"205\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:293;a:14:{s:2:\"id\";s:4:\"1052\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 1\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/03/app.png\";s:12:\"tmpl_created\";s:10:\"1488810873\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-mobile-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"36\";s:16:\"popularity_index\";s:2:\"18\";s:11:\"trend_index\";s:2:\"33\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:294;a:14:{s:2:\"id\";s:4:\"1503\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png\";s:12:\"tmpl_created\";s:10:\"1494352113\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"37\";s:16:\"popularity_index\";s:2:\"65\";s:11:\"trend_index\";s:3:\"197\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:295;a:14:{s:2:\"id\";s:4:\"1504\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png\";s:12:\"tmpl_created\";s:10:\"1494352112\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"38\";s:16:\"popularity_index\";s:2:\"68\";s:11:\"trend_index\";s:3:\"202\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:296;a:14:{s:2:\"id\";s:4:\"1505\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png\";s:12:\"tmpl_created\";s:10:\"1494352110\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"39\";s:16:\"popularity_index\";s:3:\"114\";s:11:\"trend_index\";s:3:\"343\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:297;a:14:{s:2:\"id\";s:3:\"726\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485270062\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"40\";s:16:\"popularity_index\";s:3:\"120\";s:11:\"trend_index\";s:3:\"371\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:298;a:14:{s:2:\"id\";s:4:\"1613\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 2\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352129\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"41\";s:16:\"popularity_index\";s:3:\"150\";s:11:\"trend_index\";s:3:\"345\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:299;a:14:{s:2:\"id\";s:4:\"1612\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 3\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352127\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"42\";s:16:\"popularity_index\";s:3:\"157\";s:11:\"trend_index\";s:3:\"247\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:300;a:14:{s:2:\"id\";s:4:\"1614\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 4\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352131\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"43\";s:16:\"popularity_index\";s:2:\"94\";s:11:\"trend_index\";s:3:\"262\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:301;a:14:{s:2:\"id\";s:3:\"906\";s:5:\"title\";s:29:\"Landing Page &#8211;  Coacher\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png\";s:12:\"tmpl_created\";s:10:\"1494352066\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-coacher/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"44\";s:16:\"popularity_index\";s:2:\"53\";s:11:\"trend_index\";s:3:\"165\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:302;a:14:{s:2:\"id\";s:3:\"955\";s:5:\"title\";s:31:\"Landing Page &#8211; Law Office\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png\";s:12:\"tmpl_created\";s:10:\"1494352069\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-law-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:31:\"[\"Landing Page\",\"Law\",\"Office\"]\";s:10:\"menu_order\";s:2:\"45\";s:16:\"popularity_index\";s:2:\"58\";s:11:\"trend_index\";s:3:\"147\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:303;a:14:{s:2:\"id\";s:3:\"879\";s:5:\"title\";s:41:\"Landing Page &#8211; Financial Consultant\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png\";s:12:\"tmpl_created\";s:10:\"1494352064\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/landing-page-financial-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"46\";s:16:\"popularity_index\";s:2:\"59\";s:11:\"trend_index\";s:3:\"222\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:304;a:14:{s:2:\"id\";s:3:\"926\";s:5:\"title\";s:33:\"Landing Page &#8211; Private Chef\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png\";s:12:\"tmpl_created\";s:10:\"1494352068\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-private-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"47\";s:16:\"popularity_index\";s:3:\"111\";s:11:\"trend_index\";s:3:\"319\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:305;a:14:{s:2:\"id\";s:3:\"855\";s:5:\"title\";s:37:\"Landing Page &#8211; Personal Trainer\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png\";s:12:\"tmpl_created\";s:10:\"1494352061\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/landing-page-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"48\";s:16:\"popularity_index\";s:2:\"97\";s:11:\"trend_index\";s:3:\"238\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:306;a:14:{s:2:\"id\";s:3:\"974\";s:5:\"title\";s:28:\"Landing Page &#8211; Stylist\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png\";s:12:\"tmpl_created\";s:10:\"1494352071\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-stylist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"cosmetics\",\"fashion\",\"girly\",\"hairdresser\",\"lifestyle\",\"makeup\",\"manicure\",\"pedicure\",\"products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";s:2:\"49\";s:16:\"popularity_index\";s:3:\"132\";s:11:\"trend_index\";s:3:\"340\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:307;a:14:{s:2:\"id\";s:4:\"1032\";s:5:\"title\";s:27:\"Landing Page &#8211; Agency\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png\";s:12:\"tmpl_created\";s:10:\"1488810866\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"50\";s:16:\"popularity_index\";s:2:\"90\";s:11:\"trend_index\";s:3:\"308\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:308;a:14:{s:2:\"id\";s:4:\"1634\";s:5:\"title\";s:33:\"Landing Page &#8211; Chiropractor\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png\";s:12:\"tmpl_created\";s:10:\"1494352119\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-chiropractor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"51\";s:16:\"popularity_index\";s:3:\"104\";s:11:\"trend_index\";s:3:\"309\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:309;a:14:{s:2:\"id\";s:3:\"730\";s:5:\"title\";s:24:\"Landing Page &#8211; App\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485273430\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/landing-page-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"52\";s:16:\"popularity_index\";s:2:\"88\";s:11:\"trend_index\";s:3:\"285\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:310;a:14:{s:2:\"id\";s:3:\"643\";s:5:\"title\";s:29:\"Landing Page &#8211; Festival\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg\";s:12:\"tmpl_created\";s:10:\"1481549290\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"53\";s:16:\"popularity_index\";s:2:\"84\";s:11:\"trend_index\";s:3:\"344\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:311;a:14:{s:2:\"id\";s:3:\"487\";s:5:\"title\";s:29:\"Landing Page &#8211; Vacation\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0021.png\";s:12:\"tmpl_created\";s:10:\"1477388357\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-vacation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"54\";s:16:\"popularity_index\";s:2:\"23\";s:11:\"trend_index\";s:2:\"36\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:312;a:14:{s:2:\"id\";s:3:\"542\";s:5:\"title\";s:28:\"Landing Page &#8211; Wedding\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0025.png\";s:12:\"tmpl_created\";s:10:\"1477388484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"55\";s:16:\"popularity_index\";s:2:\"33\";s:11:\"trend_index\";s:2:\"70\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:313;a:14:{s:2:\"id\";s:4:\"1187\";s:5:\"title\";s:32:\"Landing Page &#8211; Photography\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png\";s:12:\"tmpl_created\";s:10:\"1490707385\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"56\";s:16:\"popularity_index\";s:2:\"24\";s:11:\"trend_index\";s:2:\"35\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:314;a:14:{s:2:\"id\";s:3:\"641\";s:5:\"title\";s:28:\"Landing Page &#8211; Fashion\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1481549264\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"57\";s:16:\"popularity_index\";s:2:\"55\";s:11:\"trend_index\";s:3:\"330\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:315;a:14:{s:2:\"id\";s:3:\"189\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0005.png\";s:12:\"tmpl_created\";s:10:\"1470820715\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-tourism/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"58\";s:16:\"popularity_index\";s:1:\"9\";s:11:\"trend_index\";s:1:\"9\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:316;a:14:{s:2:\"id\";s:4:\"1547\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png\";s:12:\"tmpl_created\";s:10:\"1494352115\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"59\";s:16:\"popularity_index\";s:2:\"98\";s:11:\"trend_index\";s:3:\"233\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:317;a:14:{s:2:\"id\";s:4:\"1546\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png\";s:12:\"tmpl_created\";s:10:\"1494352116\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"60\";s:16:\"popularity_index\";s:3:\"152\";s:11:\"trend_index\";s:3:\"287\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:318;a:14:{s:2:\"id\";s:4:\"1545\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png\";s:12:\"tmpl_created\";s:10:\"1494352118\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"61\";s:16:\"popularity_index\";s:3:\"129\";s:11:\"trend_index\";s:3:\"259\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:319;a:14:{s:2:\"id\";s:4:\"2714\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 5\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-–-Landing-Page.png\";s:12:\"tmpl_created\";s:10:\"1509631782\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"62\";s:16:\"popularity_index\";s:3:\"161\";s:11:\"trend_index\";s:3:\"254\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:320;a:14:{s:2:\"id\";s:4:\"1190\";s:5:\"title\";s:26:\"Landing Page &#8211; Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png\";s:12:\"tmpl_created\";s:10:\"1490707391\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/landing-page-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"63\";s:16:\"popularity_index\";s:2:\"20\";s:11:\"trend_index\";s:2:\"25\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:321;a:14:{s:2:\"id\";s:3:\"195\";s:5:\"title\";s:28:\"Landing Page &#8211; Product\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0006.png\";s:12:\"tmpl_created\";s:10:\"1470820765\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"64\";s:16:\"popularity_index\";s:2:\"21\";s:11:\"trend_index\";s:2:\"45\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:322;a:14:{s:2:\"id\";s:3:\"197\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0007.png\";s:12:\"tmpl_created\";s:10:\"1470825711\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"65\";s:16:\"popularity_index\";s:2:\"35\";s:11:\"trend_index\";s:2:\"91\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:323;a:14:{s:2:\"id\";s:4:\"1193\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 2\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";s:10:\"1490707422\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"66\";s:16:\"popularity_index\";s:2:\"28\";s:11:\"trend_index\";s:2:\"44\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:324;a:14:{s:2:\"id\";s:4:\"1415\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png\";s:12:\"tmpl_created\";s:10:\"1494352106\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"67\";s:16:\"popularity_index\";s:3:\"115\";s:11:\"trend_index\";s:3:\"206\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:325;a:14:{s:2:\"id\";s:4:\"1414\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 4\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png\";s:12:\"tmpl_created\";s:10:\"1494352107\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"68\";s:16:\"popularity_index\";s:3:\"211\";s:11:\"trend_index\";s:3:\"382\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:326;a:14:{s:2:\"id\";s:4:\"1413\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 5\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png\";s:12:\"tmpl_created\";s:10:\"1494352109\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:134:\"[\"Agent\",\"business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"listing\",\"modern\",\"real estate\",\"realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";s:2:\"69\";s:16:\"popularity_index\";s:3:\"176\";s:11:\"trend_index\";s:3:\"339\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:327;a:14:{s:2:\"id\";s:4:\"1573\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png\";s:12:\"tmpl_created\";s:10:\"1494352133\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"70\";s:16:\"popularity_index\";s:3:\"197\";s:11:\"trend_index\";s:3:\"316\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:328;a:14:{s:2:\"id\";s:4:\"1572\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png\";s:12:\"tmpl_created\";s:10:\"1494352134\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"71\";s:16:\"popularity_index\";s:3:\"225\";s:11:\"trend_index\";s:3:\"366\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:329;a:14:{s:2:\"id\";s:4:\"1570\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png\";s:12:\"tmpl_created\";s:10:\"1494352136\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"72\";s:16:\"popularity_index\";s:3:\"274\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:330;a:14:{s:2:\"id\";s:4:\"1571\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 4\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png\";s:12:\"tmpl_created\";s:10:\"1494352138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"73\";s:16:\"popularity_index\";s:3:\"228\";s:11:\"trend_index\";s:3:\"369\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:331;a:14:{s:2:\"id\";s:3:\"192\";s:5:\"title\";s:28:\"Landing Page &#8211; Webinar\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0015.png\";s:12:\"tmpl_created\";s:10:\"1470820734\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"74\";s:16:\"popularity_index\";s:2:\"30\";s:11:\"trend_index\";s:3:\"140\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:332;a:14:{s:2:\"id\";s:4:\"2141\";s:5:\"title\";s:32:\"Contact &#8211; Delivery Company\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-contact.png\";s:12:\"tmpl_created\";s:10:\"1499774122\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/contact-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"75\";s:16:\"popularity_index\";s:2:\"93\";s:11:\"trend_index\";s:3:\"335\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:333;a:14:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Contact &#8211; Modern\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0013.png\";s:12:\"tmpl_created\";s:10:\"1470829828\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/contact-modern/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"76\";s:16:\"popularity_index\";s:2:\"25\";s:11:\"trend_index\";s:2:\"42\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:334;a:14:{s:2:\"id\";s:3:\"256\";s:5:\"title\";s:26:\"Contact &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0011.png\";s:12:\"tmpl_created\";s:10:\"1470829796\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/contact-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"77\";s:16:\"popularity_index\";s:2:\"38\";s:11:\"trend_index\";s:2:\"99\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:335;a:14:{s:2:\"id\";s:4:\"2150\";s:5:\"title\";s:25:\"Contact &#8211; Cake Shop\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-contact.png\";s:12:\"tmpl_created\";s:10:\"1499774127\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"78\";s:16:\"popularity_index\";s:2:\"36\";s:11:\"trend_index\";s:2:\"58\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:336;a:14:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:21:\"Contact &#8211; Hotel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0002.png\";s:12:\"tmpl_created\";s:10:\"1470820471\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/contact-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"79\";s:16:\"popularity_index\";s:2:\"37\";s:11:\"trend_index\";s:3:\"115\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:337;a:14:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:25:\"Contact &#8211; Corporate\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0012.png\";s:12:\"tmpl_created\";s:10:\"1470248619\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-corporate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"80\";s:16:\"popularity_index\";s:2:\"11\";s:11:\"trend_index\";s:2:\"13\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:338;a:14:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:23:\"Services &#8211; Moving\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0017.png\";s:12:\"tmpl_created\";s:10:\"1470829889\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/services-moving/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"81\";s:16:\"popularity_index\";s:2:\"17\";s:11:\"trend_index\";s:2:\"31\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:339;a:14:{s:2:\"id\";s:3:\"625\";s:5:\"title\";s:31:\"Services &#8211; Cake Shop Menu\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2016/12/cake-shop-menu.jpg\";s:12:\"tmpl_created\";s:10:\"1481549196\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/services-cake-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"82\";s:16:\"popularity_index\";s:3:\"166\";s:11:\"trend_index\";s:3:\"388\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:340;a:14:{s:2:\"id\";s:3:\"187\";s:5:\"title\";s:20:\"Services &#8211; Fun\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0001.png\";s:12:\"tmpl_created\";s:10:\"1470829892\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/services-fun/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"83\";s:16:\"popularity_index\";s:2:\"27\";s:11:\"trend_index\";s:2:\"69\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:341;a:14:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:27:\"Services &#8211; Consulting\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0014.png\";s:12:\"tmpl_created\";s:10:\"1470829865\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/services-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"84\";s:16:\"popularity_index\";s:2:\"14\";s:11:\"trend_index\";s:2:\"18\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:342;a:14:{s:2:\"id\";s:3:\"647\";s:5:\"title\";s:33:\"Services &#8211; Coffee Shop Menu\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2016/12/restaurant-menu.jpg\";s:12:\"tmpl_created\";s:10:\"1481549320\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-coffee-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"85\";s:16:\"popularity_index\";s:3:\"140\";s:11:\"trend_index\";s:3:\"381\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:343;a:14:{s:2:\"id\";s:4:\"2138\";s:5:\"title\";s:33:\"Services &#8211; Delivery Company\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-services.png\";s:12:\"tmpl_created\";s:10:\"1499774119\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"86\";s:16:\"popularity_index\";s:3:\"145\";s:11:\"trend_index\";s:3:\"283\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:344;a:14:{s:2:\"id\";s:3:\"823\";s:5:\"title\";s:19:\"Pricing &#8211; App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-app.jpg\";s:12:\"tmpl_created\";s:10:\"1485272966\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/pricing-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"87\";s:16:\"popularity_index\";s:2:\"89\";s:11:\"trend_index\";s:3:\"280\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:345;a:14:{s:2:\"id\";s:3:\"824\";s:5:\"title\";s:24:\"Pricing &#8211; Software\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-software.png\";s:12:\"tmpl_created\";s:10:\"1485272900\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/pricing-software-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"88\";s:16:\"popularity_index\";s:3:\"103\";s:11:\"trend_index\";s:3:\"333\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:346;a:14:{s:2:\"id\";s:3:\"825\";s:5:\"title\";s:24:\"Product &#8211; Speakers\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/01/product-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485272513\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/product-speakers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"89\";s:16:\"popularity_index\";s:3:\"110\";s:11:\"trend_index\";s:3:\"362\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:347;a:14:{s:2:\"id\";s:3:\"245\";s:5:\"title\";s:21:\"Product &#8211; Clean\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0020.png\";s:12:\"tmpl_created\";s:10:\"1470829876\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/product-clean/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"fast\",\"minimal\",\"minimalistic\",\"seo\",\"simple\"]\";s:10:\"menu_order\";s:2:\"90\";s:16:\"popularity_index\";s:2:\"29\";s:11:\"trend_index\";s:2:\"87\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:348;a:14:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:19:\"Product &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0003.png\";s:12:\"tmpl_created\";s:10:\"1470829879\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/product-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"91\";s:16:\"popularity_index\";s:2:\"16\";s:11:\"trend_index\";s:2:\"39\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:349;a:14:{s:2:\"id\";s:3:\"751\";s:5:\"title\";s:25:\"Homepage &#8211; Interior\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-home.png\";s:12:\"tmpl_created\";s:10:\"1485269743\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"92\";s:16:\"popularity_index\";s:2:\"75\";s:11:\"trend_index\";s:3:\"323\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:350;a:14:{s:2:\"id\";s:3:\"753\";s:5:\"title\";s:22:\"About &#8211; Interior\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-About.png\";s:12:\"tmpl_created\";s:10:\"1485269710\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"93\";s:16:\"popularity_index\";s:2:\"99\";s:11:\"trend_index\";s:3:\"297\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:351;a:14:{s:2:\"id\";s:3:\"754\";s:5:\"title\";s:25:\"Services &#8211; Interior\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-Services.png\";s:12:\"tmpl_created\";s:10:\"1485269691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/services-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"94\";s:16:\"popularity_index\";s:3:\"124\";s:11:\"trend_index\";s:3:\"291\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:352;a:14:{s:2:\"id\";s:3:\"752\";s:5:\"title\";s:24:\"Contact &#8211; Interior\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-contact.png\";s:12:\"tmpl_created\";s:10:\"1485269737\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/contact-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"95\";s:16:\"popularity_index\";s:3:\"100\";s:11:\"trend_index\";s:3:\"257\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:353;a:14:{s:2:\"id\";s:4:\"1075\";s:5:\"title\";s:19:\"Shop &#8211; Sweets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Sweets.png\";s:12:\"tmpl_created\";s:10:\"1488810871\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/shop-sweets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:154:\"[\"bakery\",\"beverage\",\"business\",\"cafe\",\"candy bar\",\"catering\",\"delivery service\",\"Food\",\"online shop\",\"pastry\",\"Restaurant\",\"store\",\"sweet shop\",\"sweets\"]\";s:10:\"menu_order\";s:2:\"96\";s:16:\"popularity_index\";s:2:\"31\";s:11:\"trend_index\";s:2:\"63\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:354;a:14:{s:2:\"id\";s:4:\"1051\";s:5:\"title\";s:24:\"Blog Post &#8211; Launch\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/post-cloud.png\";s:12:\"tmpl_created\";s:10:\"1488810869\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blog-post-launch/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:210:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"launch\",\"marketing campaign\",\"marketing landing page\",\"marketing template landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";s:2:\"97\";s:16:\"popularity_index\";s:2:\"19\";s:11:\"trend_index\";s:2:\"17\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:355;a:14:{s:2:\"id\";s:4:\"1245\";s:5:\"title\";s:13:\"Coming Soon 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-1.png\";s:12:\"tmpl_created\";s:10:\"1491207184\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"98\";s:16:\"popularity_index\";s:2:\"79\";s:11:\"trend_index\";s:3:\"240\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:356;a:14:{s:2:\"id\";s:4:\"1247\";s:5:\"title\";s:13:\"Coming Soon 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-2.png\";s:12:\"tmpl_created\";s:10:\"1491207138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"99\";s:16:\"popularity_index\";s:2:\"26\";s:11:\"trend_index\";s:2:\"48\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:357;a:14:{s:2:\"id\";s:4:\"1248\";s:5:\"title\";s:13:\"Coming Soon 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-3.png\";s:12:\"tmpl_created\";s:10:\"1491207050\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"100\";s:16:\"popularity_index\";s:3:\"131\";s:11:\"trend_index\";s:3:\"290\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:358;a:14:{s:2:\"id\";s:4:\"1249\";s:5:\"title\";s:13:\"Coming Soon 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-4.png\";s:12:\"tmpl_created\";s:10:\"1491207380\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"101\";s:16:\"popularity_index\";s:3:\"188\";s:11:\"trend_index\";s:3:\"352\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:359;a:14:{s:2:\"id\";s:4:\"1250\";s:5:\"title\";s:13:\"Coming Soon 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-5.png\";s:12:\"tmpl_created\";s:10:\"1491207450\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"102\";s:16:\"popularity_index\";s:2:\"32\";s:11:\"trend_index\";s:2:\"68\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:360;a:14:{s:2:\"id\";s:4:\"1260\";s:5:\"title\";s:13:\"Coming Soon 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-6.png\";s:12:\"tmpl_created\";s:10:\"1491207507\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"103\";s:16:\"popularity_index\";s:3:\"177\";s:11:\"trend_index\";s:3:\"368\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:361;a:14:{s:2:\"id\";s:4:\"1261\";s:5:\"title\";s:13:\"Coming Soon 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/04/Coming-Soon-7.png\";s:12:\"tmpl_created\";s:10:\"1491207584\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"104\";s:16:\"popularity_index\";s:2:\"34\";s:11:\"trend_index\";s:2:\"79\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:362;a:14:{s:2:\"id\";s:4:\"1272\";s:5:\"title\";s:13:\"Coming Soon 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-8.png\";s:12:\"tmpl_created\";s:10:\"1491207674\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"105\";s:16:\"popularity_index\";s:2:\"76\";s:11:\"trend_index\";s:3:\"320\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:363;a:14:{s:2:\"id\";s:4:\"1279\";s:5:\"title\";s:13:\"Coming Soon 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-9.png\";s:12:\"tmpl_created\";s:10:\"1491207756\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"106\";s:16:\"popularity_index\";s:2:\"41\";s:11:\"trend_index\";s:3:\"129\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:364;a:14:{s:2:\"id\";s:4:\"1745\";s:5:\"title\";s:14:\"Coming Soon 10\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-002.png\";s:12:\"tmpl_created\";s:10:\"1494849745\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/coming-soon-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"107\";s:16:\"popularity_index\";s:2:\"78\";s:11:\"trend_index\";s:3:\"218\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:365;a:14:{s:2:\"id\";s:4:\"1742\";s:5:\"title\";s:12:\"Login Page 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-003.png\";s:12:\"tmpl_created\";s:10:\"1494849744\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/login-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"108\";s:16:\"popularity_index\";s:3:\"160\";s:11:\"trend_index\";s:3:\"232\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:366;a:14:{s:2:\"id\";s:4:\"1748\";s:5:\"title\";s:12:\"Login Page 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-001.png\";s:12:\"tmpl_created\";s:10:\"1494849742\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/login-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"109\";s:16:\"popularity_index\";s:2:\"77\";s:11:\"trend_index\";s:3:\"266\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:367;a:14:{s:2:\"id\";s:4:\"3963\";s:5:\"title\";s:32:\"Restaurant Site &#8211; Homepage\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/01/R.HomepageThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284821\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/restaurant-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"110\";s:16:\"popularity_index\";s:3:\"127\";s:11:\"trend_index\";s:3:\"213\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:368;a:14:{s:2:\"id\";s:4:\"3969\";s:5:\"title\";s:28:\"Restaurant Site &#8211; Menu\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/01/R.MenuThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284829\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/restaurant-site-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"111\";s:16:\"popularity_index\";s:3:\"239\";s:11:\"trend_index\";s:3:\"270\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:369;a:14:{s:2:\"id\";s:4:\"3966\";s:5:\"title\";s:29:\"Restaurant Site &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/01/R.AboutThumb.png.png\";s:12:\"tmpl_created\";s:10:\"1516284839\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/restaurant-site-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"112\";s:16:\"popularity_index\";s:3:\"172\";s:11:\"trend_index\";s:3:\"289\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:370;a:14:{s:2:\"id\";s:4:\"3972\";s:5:\"title\";s:31:\"Restaurant Site &#8211; Contact\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/01/R.ContactThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284847\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/restaurant-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"113\";s:16:\"popularity_index\";s:3:\"209\";s:11:\"trend_index\";s:3:\"215\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:371;a:14:{s:2:\"id\";s:4:\"2080\";s:5:\"title\";s:27:\"Ski Resort &#8211; Homepage\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1508161124\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"114\";s:16:\"popularity_index\";s:3:\"117\";s:11:\"trend_index\";s:3:\"292\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:372;a:14:{s:2:\"id\";s:4:\"2088\";s:5:\"title\";s:24:\"Ski Resort &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-About.png\";s:12:\"tmpl_created\";s:10:\"1508161129\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/ski-resort-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"115\";s:16:\"popularity_index\";s:3:\"219\";s:11:\"trend_index\";s:3:\"271\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:373;a:14:{s:2:\"id\";s:4:\"2085\";s:5:\"title\";s:27:\"Ski Resort &#8211; Services\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Services.png\";s:12:\"tmpl_created\";s:10:\"1508161134\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"116\";s:16:\"popularity_index\";s:3:\"256\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:374;a:14:{s:2:\"id\";s:4:\"2462\";s:5:\"title\";s:23:\"Architect &#8211; About\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/architect-–-about.png\";s:12:\"tmpl_created\";s:10:\"1508243317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/architect-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"117\";s:16:\"popularity_index\";s:3:\"168\";s:11:\"trend_index\";s:3:\"276\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:375;a:14:{s:2:\"id\";s:4:\"2362\";s:5:\"title\";s:26:\"Architect &#8211; Projects\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2017/10/Architect-Projects.png\";s:12:\"tmpl_created\";s:10:\"1508243335\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/architect-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"118\";s:16:\"popularity_index\";s:3:\"199\";s:11:\"trend_index\";s:3:\"294\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:376;a:14:{s:2:\"id\";s:3:\"614\";s:5:\"title\";s:25:\"Architect &#8211; Contact\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2016/12/architect-contact.jpg\";s:12:\"tmpl_created\";s:10:\"1481549169\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/architect-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"119\";s:16:\"popularity_index\";s:2:\"57\";s:11:\"trend_index\";s:3:\"302\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:377;a:14:{s:2:\"id\";s:4:\"2126\";s:5:\"title\";s:37:\"Construction Company &#8211; Homepage\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1508325849\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-company-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"120\";s:16:\"popularity_index\";s:3:\"108\";s:11:\"trend_index\";s:3:\"241\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:378;a:14:{s:2:\"id\";s:4:\"2129\";s:5:\"title\";s:34:\"Construction Company &#8211; About\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-About.png\";s:12:\"tmpl_created\";s:10:\"1508325881\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/construction-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"121\";s:16:\"popularity_index\";s:3:\"149\";s:11:\"trend_index\";s:3:\"296\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:379;a:14:{s:2:\"id\";s:4:\"2135\";s:5:\"title\";s:36:\"Construction Company &#8211; Contact\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Contact.png\";s:12:\"tmpl_created\";s:10:\"1508325922\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/construction-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"122\";s:16:\"popularity_index\";s:3:\"148\";s:11:\"trend_index\";s:3:\"346\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:380;a:14:{s:2:\"id\";s:4:\"2094\";s:5:\"title\";s:28:\"Plants Shop &#8211; Homepage\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-Home.png\";s:12:\"tmpl_created\";s:10:\"1509621053\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/plants-shop-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"123\";s:16:\"popularity_index\";s:3:\"141\";s:11:\"trend_index\";s:3:\"313\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:381;a:14:{s:2:\"id\";s:4:\"2120\";s:5:\"title\";s:25:\"Plants Shop &#8211; About\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-About.png\";s:12:\"tmpl_created\";s:10:\"1509631820\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/plants-shop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"124\";s:16:\"popularity_index\";s:3:\"134\";s:11:\"trend_index\";s:3:\"321\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:382;a:14:{s:2:\"id\";s:4:\"3619\";s:5:\"title\";s:31:\"Snowboard Site &#8211; Homepage\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2017/12/home.png\";s:12:\"tmpl_created\";s:10:\"1513513137\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"125\";s:16:\"popularity_index\";s:3:\"153\";s:11:\"trend_index\";s:3:\"211\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:383;a:14:{s:2:\"id\";s:4:\"3632\";s:5:\"title\";s:31:\"Snowboard Site &#8211; Services\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/2.png\";s:12:\"tmpl_created\";s:10:\"1513513171\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"126\";s:16:\"popularity_index\";s:3:\"155\";s:11:\"trend_index\";s:3:\"318\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:384;a:14:{s:2:\"id\";s:4:\"3626\";s:5:\"title\";s:30:\"Snowboard Site &#8211; Contact\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/3.png\";s:12:\"tmpl_created\";s:10:\"1513513193\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/snowboard-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"127\";s:16:\"popularity_index\";s:3:\"139\";s:11:\"trend_index\";s:3:\"251\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:385;a:14:{s:2:\"id\";s:4:\"3153\";s:5:\"title\";s:14:\"Halloween Pack\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/10/halloween.png\";s:12:\"tmpl_created\";s:10:\"1508950132\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/halloween-pack/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"128\";s:16:\"popularity_index\";s:3:\"243\";s:11:\"trend_index\";s:3:\"338\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:386;a:14:{s:2:\"id\";s:4:\"3338\";s:5:\"title\";s:31:\"Black Friday &#8211; Nature Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-1.png\";s:12:\"tmpl_created\";s:10:\"1511203351\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-nature-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"129\";s:16:\"popularity_index\";s:3:\"220\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:387;a:14:{s:2:\"id\";s:4:\"3339\";s:5:\"title\";s:35:\"Black Friday &#8211; Pop-Styled Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-2.png\";s:12:\"tmpl_created\";s:10:\"1511203636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/black-friday-pop-styled-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"130\";s:16:\"popularity_index\";s:3:\"158\";s:11:\"trend_index\";s:3:\"374\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:388;a:14:{s:2:\"id\";s:4:\"3335\";s:5:\"title\";s:31:\"Black Friday &#8211; Retail Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-4.png\";s:12:\"tmpl_created\";s:10:\"1511203246\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-retail-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"131\";s:16:\"popularity_index\";s:3:\"170\";s:11:\"trend_index\";s:3:\"329\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:389;a:14:{s:2:\"id\";s:4:\"3340\";s:5:\"title\";s:41:\"Black Friday &#8211; Software Product Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-3.png\";s:12:\"tmpl_created\";s:10:\"1511203713\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/black-friday-software-product-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"132\";s:16:\"popularity_index\";s:3:\"171\";s:11:\"trend_index\";s:3:\"384\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:390;a:14:{s:2:\"id\";s:4:\"3517\";s:5:\"title\";s:27:\"Christmas &#8211; Gift Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasThumb.png\";s:12:\"tmpl_created\";s:10:\"1513877937\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-gift-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"133\";s:16:\"popularity_index\";s:3:\"291\";s:11:\"trend_index\";s:3:\"354\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:391;a:14:{s:2:\"id\";s:4:\"3734\";s:5:\"title\";s:28:\"Christmas &#8211; Car Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v3.png\";s:12:\"tmpl_created\";s:10:\"1514197794\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/christmas-car-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"134\";s:16:\"popularity_index\";s:3:\"287\";s:11:\"trend_index\";s:3:\"360\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:392;a:14:{s:2:\"id\";s:4:\"3764\";s:5:\"title\";s:33:\"Christmas &#8211; Interior Design\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v6.png\";s:12:\"tmpl_created\";s:10:\"1514198234\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/christmas-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"135\";s:16:\"popularity_index\";s:3:\"259\";s:11:\"trend_index\";s:3:\"350\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:393;a:14:{s:2:\"id\";s:4:\"3565\";s:5:\"title\";s:27:\"Christmas &#8211; Tree Shop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasTreeThumb.png\";s:12:\"tmpl_created\";s:10:\"1514204382\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-tree-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"136\";s:16:\"popularity_index\";s:3:\"251\";s:11:\"trend_index\";s:3:\"372\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:394;a:14:{s:2:\"id\";s:4:\"3862\";s:5:\"title\";s:35:\"Christmas &#8211; Design Conference\";s:9:\"thumbnail\";s:63:\"https://library.elementor.com/wp-content/uploads/2017/12/q1.png\";s:12:\"tmpl_created\";s:10:\"1514206745\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/christmas-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"137\";s:16:\"popularity_index\";s:3:\"200\";s:11:\"trend_index\";s:3:\"341\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:395;a:14:{s:2:\"id\";s:4:\"3777\";s:5:\"title\";s:39:\"Christmas &#8211; Snowboard Competition\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v7.png\";s:12:\"tmpl_created\";s:10:\"1514205420\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/christmas-snowboard-competition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"138\";s:16:\"popularity_index\";s:3:\"202\";s:11:\"trend_index\";s:3:\"387\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:396;a:14:{s:2:\"id\";s:3:\"420\";s:5:\"title\";s:11:\"Hero UI Kit\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/09/library-ui-kit-cover.png\";s:12:\"tmpl_created\";s:10:\"1475067229\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/hero-ui-kit/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"139\";s:16:\"popularity_index\";s:2:\"10\";s:11:\"trend_index\";s:2:\"16\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}}}','no'),(19145,'woocommerce_catalog_columns','4','yes'),(19139,'theme_mods_storefront','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1535910834;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:13:\"media_image-6\";i:1;s:13:\"media_image-4\";i:2;s:8:\"search-2\";i:3;s:14:\"recent-posts-2\";i:4;s:12:\"categories-2\";}s:8:\"header-1\";a:0:{}s:8:\"footer-1\";a:1:{i:0;s:6:\"text-2\";}s:8:\"footer-2\";a:1:{i:0;s:13:\"custom_html-2\";}s:8:\"footer-3\";a:1:{i:0;s:6:\"text-4\";}s:8:\"footer-4\";a:0:{}}}}','yes'),(19141,'mailchimp-woocommerce','a:2:{s:33:\"woocommerce_settings_save_general\";b:1;s:19:\"store_currency_code\";s:3:\"GBP\";}','yes'),(19142,'mailchimp-woocommerce-store_id','5b8c21de42924','yes'),(19127,'wc_ppec_version','1.6.17','yes'),(19282,'jetpack_active_modules','a:18:{i:0;s:20:\"custom-content-types\";i:1;s:10:\"custom-css\";i:2;s:21:\"enhanced-distribution\";i:3;s:19:\"gravatar-hovercards\";i:4;s:8:\"json-api\";i:5;s:5:\"latex\";i:6;s:5:\"notes\";i:7;s:13:\"post-by-email\";i:8;s:7:\"protect\";i:9;s:9:\"publicize\";i:10;s:10:\"sharedaddy\";i:11;s:10:\"shortcodes\";i:12;s:10:\"shortlinks\";i:13;s:5:\"stats\";i:14;s:13:\"subscriptions\";i:15;s:10:\"vaultpress\";i:16;s:17:\"widget-visibility\";i:17;s:7:\"widgets\";}','yes'),(19079,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(10049,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:31:\"Header & Footer Builder Is Here\";s:7:\"excerpt\";s:223:\"Elementor now offers never-before-seen flexibility to visually design the header & footer areas, including Sticky Header, 25+ brand-new stunning header-footer blocks and full compatibility to virtually any WordPress theme. \";s:7:\"created\";s:10:\"1525078229\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:116:\"https://elementor.com/header-footer-builder/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:56:\"Introducing Theme Builder, Built-in to Elementor Pro 2.0\";s:7:\"excerpt\";s:168:\"We just released Elementor Pro 2.0, the most advanced page builder ever created, with out-of-the-box theme builder capabilities. Here’s what it\'s going to do for you.\";s:7:\"created\";s:10:\"1523876582\";s:5:\"badge\";s:12:\"Announcement\";s:3:\"url\";s:120:\"https://elementor.com/introducing-theme-builder/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:35:\"Introducing Elementor Developer API\";s:7:\"excerpt\";s:197:\"Take a look at the new resource center for Elementor developers, which comes included with complete code reference, as well as tutorials explaining how to develop your own extensions for Elementor.\";s:7:\"created\";s:10:\"1523442624\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:130:\"https://elementor.com/introducing-elementor-developer-api/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(10054,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(10055,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(10056,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(10057,'elementor_debug_log','a:1:{i:0;a:7:{s:4:\"type\";s:9:\"TypeError\";s:9:\"timestamp\";s:10:\"1525156317\";s:7:\"message\";s:46:\"Cannot set property \\\'className\\\' of undefined\";s:3:\"url\";s:98:\"http://www.newcastle-hypnotherapy.com/wp-content/themes/swiftraytheme/js/ddsmoothmenu.js?ver=4.9.5\";s:4:\"line\";s:2:\"50\";s:6:\"column\";s:2:\"37\";s:12:\"customFields\";a:0:{}}}','yes'),(19178,'jetpack_tos_agreed','1','yes'),(19179,'wc_connect_options','a:3:{s:12:\"tos_accepted\";b:1;s:10:\"store_guid\";s:36:\"89a3c8ed-acf5-470d-9dfe-dbb7c25c45cd\";s:25:\"shipping_methods_migrated\";b:1;}','yes'),(19268,'jetpack_sync_settings_sync_via_cron','1','yes'),(19269,'jetpack_sync_settings_cron_sync_time_limit','30','yes'),(19152,'mailchimp_woocommerce_db_mailchimp_carts','1','no'),(11726,'wp_page_for_privacy_policy','892','yes'),(12425,'cf7_mch_960','a:25:{s:3:\"api\";s:37:\"01c68d77fa6b047772b1bda2f7d64267-us17\";s:4:\"list\";s:10:\"9bca2b189a\";s:5:\"email\";s:12:\"[your-email]\";s:4:\"name\";s:11:\"[your-name]\";s:6:\"accept\";s:0:\"\";s:12:\"CustomValue1\";s:0:\"\";s:10:\"CustomKey1\";s:0:\"\";s:12:\"CustomValue2\";s:0:\"\";s:10:\"CustomKey2\";s:0:\"\";s:12:\"CustomValue3\";s:0:\"\";s:10:\"CustomKey3\";s:0:\"\";s:12:\"CustomValue4\";s:0:\"\";s:10:\"CustomKey4\";s:0:\"\";s:12:\"CustomValue5\";s:0:\"\";s:10:\"CustomKey5\";s:0:\"\";s:12:\"CustomValue6\";s:0:\"\";s:10:\"CustomKey6\";s:0:\"\";s:12:\"CustomValue7\";s:0:\"\";s:10:\"CustomKey7\";s:0:\"\";s:12:\"CustomValue8\";s:0:\"\";s:10:\"CustomKey8\";s:0:\"\";s:12:\"CustomValue9\";s:0:\"\";s:10:\"CustomKey9\";s:0:\"\";s:13:\"CustomValue10\";s:0:\"\";s:11:\"CustomKey10\";s:0:\"\";}','yes'),(20571,'stats_cache','a:2:{s:32:\"66c874ff6a8b269112160df04cd994c4\";a:1:{i:1568376722;a:4:{i:0;a:4:{s:7:\"post_id\";s:4:\"2836\";s:10:\"post_title\";s:39:\"The Secrets Of Deep Relaxation Workshop\";s:14:\"post_permalink\";s:82:\"https://www.newcastle-hypnotherapy.com/product/deep-relaxation-mind-body-workshop/\";s:5:\"views\";s:1:\"3\";}i:1;a:4:{s:7:\"post_id\";s:4:\"1437\";s:10:\"post_title\";s:22:\"Newcastle Hypnotherapy\";s:14:\"post_permalink\";s:39:\"https://www.newcastle-hypnotherapy.com/\";s:5:\"views\";s:1:\"2\";}i:2;a:4:{s:7:\"post_id\";s:4:\"1960\";s:10:\"post_title\";s:45:\"Deep Breathing Excercise For Anxiety & Stress\";s:14:\"post_permalink\";s:67:\"https://www.newcastle-hypnotherapy.com/anxiety-breathing-exercises/\";s:5:\"views\";s:1:\"1\";}i:3;a:4:{s:7:\"post_id\";s:4:\"2813\";s:10:\"post_title\";s:39:\"The Secrets Of Deep Relaxation Workshop\";s:14:\"post_permalink\";s:79:\"https://www.newcastle-hypnotherapy.com/the-secrets-of-deep-relaxation-workshop/\";s:5:\"views\";s:1:\"1\";}}}s:32:\"56a4a66cd5a2b398a7043d1c6b624fc8\";a:1:{i:1568376722;a:0:{}}}','yes'),(20268,'theme_switched_via_customizer','','yes'),(37019,'jetpack_sync_full__finished','1537976394','no'),(10147,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(19790,'storefront_nux_guided_tour','1','yes'),(19791,'widget_blog-stats','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(19794,'widget_widget_contact_info','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(19795,'widget_top-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(19800,'_transient_shipping-transient-version','1535910701','yes'),(19632,'jetpack_updates_sync_checksum','a:3:{s:14:\"update_plugins\";i:504092672;s:13:\"update_themes\";i:356752356;s:11:\"update_core\";i:1119189618;}','yes'),(16358,'wpseo-gsc-refresh_token','1/hjsOOzL56Pf4XYpTZtvUlkBh0--WHLjL6jgXoDxOQ8E','yes'),(16359,'wpseo-gsc-access_token','a:5:{s:13:\"refresh_token\";s:45:\"1/hjsOOzL56Pf4XYpTZtvUlkBh0--WHLjL6jgXoDxOQ8E\";s:12:\"access_token\";s:132:\"ya29.Gl0JB_hD-ilAuWnK0JeG9nsLnUiNiL91wTwgivZtw7nN03QpdYm7IcKjtjTnEjb6ruYX7HkS3-d09U8vfTeyPkn0S2XOL17x7tUUo0J3Titbq7lY1zCVoRI1z5kg7uM\";s:7:\"expires\";i:1557952022;s:10:\"expires_in\";i:3600;s:7:\"created\";i:1557948422;}','yes'),(16364,'wpseo-gsc-issues-web-not_found','a:5:{i:0;a:6:{s:3:\"url\";s:10:\"/about-us/\";s:14:\"first_detected\";s:13:\"July 11, 2018\";s:18:\"first_detected_raw\";s:10:\"1531304587\";s:12:\"last_crawled\";s:13:\"July 11, 2018\";s:16:\"last_crawled_raw\";s:10:\"1531304587\";s:13:\"response_code\";i:404;}i:1;a:6:{s:3:\"url\";s:9:\"/reveiws/\";s:14:\"first_detected\";s:12:\"May 12, 2018\";s:18:\"first_detected_raw\";s:10:\"1526155772\";s:12:\"last_crawled\";s:13:\"July 25, 2018\";s:16:\"last_crawled_raw\";s:10:\"1532509044\";s:13:\"response_code\";i:404;}i:2;a:6:{s:3:\"url\";s:12:\"/depression/\";s:14:\"first_detected\";s:13:\"July 14, 2018\";s:18:\"first_detected_raw\";s:10:\"1531532577\";s:12:\"last_crawled\";s:13:\"July 28, 2018\";s:16:\"last_crawled_raw\";s:10:\"1532741315\";s:13:\"response_code\";i:404;}i:3;a:6:{s:3:\"url\";s:19:\"/free-consultation/\";s:14:\"first_detected\";s:12:\"June 6, 2018\";s:18:\"first_detected_raw\";s:10:\"1528280609\";s:12:\"last_crawled\";s:13:\"July 22, 2018\";s:16:\"last_crawled_raw\";s:10:\"1532253969\";s:13:\"response_code\";i:404;}i:4;a:6:{s:3:\"url\";s:30:\"/anxiety-relief-with-hypnosis/\";s:14:\"first_detected\";s:14:\"March 18, 2019\";s:18:\"first_detected_raw\";s:10:\"1552901197\";s:12:\"last_crawled\";s:14:\"March 18, 2019\";s:16:\"last_crawled_raw\";s:10:\"1552901197\";s:13:\"response_code\";i:404;}}','no'),(16362,'wpseo_gsc_issues_counts','a:0:{}','yes'),(37014,'jetpack_sync_full__send_started','1537976394','no'),(37015,'jetpack_sync_full__constants_sent','1','no'),(37016,'jetpack_sync_full__functions_sent','1','no'),(37017,'jetpack_sync_full__options_sent','1','no'),(37018,'jetpack_sync_full__users_sent','1','no'),(90448,'db_upgraded','','yes'),(31710,'easy_app_db_version','2.2.0','yes'),(16768,'default_a_options','2','yes'),(19080,'current_theme_supports_woocommerce','yes','yes'),(19081,'woocommerce_queue_flush_rewrite_rules','no','yes'),(19639,'trusted_ip_header','O:8:\"stdClass\":3:{s:14:\"trusted_header\";s:11:\"REMOTE_ADDR\";s:8:\"segments\";i:1;s:7:\"reverse\";b:0;}','no'),(19686,'jetpack_plugin_api_action_links','a:8:{s:73:\"advanced-responsive-video-embedder/advanced-responsive-video-embedder.php\";a:3:{s:13:\"Buy Pro Addon\";s:43:\"https://nextgenthemes.com/plugins/arve-pro/\";s:6:\"Donate\";s:33:\"https://nextgenthemes.com/donate/\";s:8:\"Settings\";s:107:\"https://www.newcastle-hypnotherapy.com/wp-admin/options-general.php?page=advanced-responsive-video-embedder\";}s:50:\"contact-form-7-mailchimp-extension/cf7-mch-ext.php\";a:1:{s:8:\"Settings\";s:91:\"https://www.newcastle-hypnotherapy.com/wp-admin/admin.php?page=wpcf7&post=3047&active-tab=4\";}s:35:\"cookie-law-info/cookie-law-info.php\";a:3:{s:8:\"Settings\";s:101:\"https://www.newcastle-hypnotherapy.com/wp-admin/edit.php?post_type=cookielawinfo&page=cookie-law-info\";s:7:\"Support\";s:54:\"https://www.webtoffee.com/product/gdpr-cookie-consent/\";s:15:\"Premium Upgrade\";s:54:\"https://www.webtoffee.com/product/gdpr-cookie-consent/\";}s:23:\"loginizer/loginizer.php\";a:2:{s:8:\"Settings\";s:72:\"https://www.newcastle-hypnotherapy.com/wp-admin/admin.php?page=loginizer\";s:7:\"Upgrade\";s:38:\"https://loginizer.com/features#compare\";}s:51:\"mailchimp-for-woocommerce/mailchimp-woocommerce.php\";a:1:{s:8:\"Settings\";s:84:\"https://www.newcastle-hypnotherapy.com/wp-admin/admin.php?page=mailchimp-woocommerce\";}s:27:\"woocommerce/woocommerce.php\";a:1:{s:8:\"Settings\";s:74:\"https://www.newcastle-hypnotherapy.com/wp-admin/admin.php?page=wc-settings\";}s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";a:2:{s:8:\"Settings\";s:107:\"https://www.newcastle-hypnotherapy.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=ppec_paypal\";s:4:\"Docs\";s:62:\"https://docs.woocommerce.com/document/paypal-express-checkout/\";}s:45:\"woocommerce-services/woocommerce-services.php\";a:1:{s:7:\"Support\";s:51:\"https://woocommerce.com/my-account/create-a-ticket/\";}}','yes'),(19297,'jetpack_protect_key','52ff90c5f073f1024705767b77978017df2b1fb6','no'),(21593,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:36:\"Pay via PayPal, Debit or Credit Card\";s:5:\"email\";s:31:\"mark@newcastle-hypnotherapy.com\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:31:\"mark@newcastle-hypnotherapy.com\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:4:\"NH--\";s:13:\"send_shipping\";s:2:\"no\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:10:\"page_style\";s:0:\"\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";}','yes'),(19519,'jetpack_next_sync_time_full_sync','1537976404','yes'),(19333,'jetpack_constants_sync_checksum','a:32:{s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:17:\"WP_POST_REVISIONS\";i:4261170317;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:7:\"ABSPATH\";i:3640655219;s:14:\"WP_CONTENT_DIR\";i:1719666578;s:9:\"FS_METHOD\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:634125391;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:16:\"JETPACK__VERSION\";i:4006788127;s:12:\"IS_PRESSABLE\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;s:11:\"PHP_VERSION\";i:182473304;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1474498405;s:14:\"WC_PLUGIN_FILE\";i:2648981584;s:10:\"WC_ABSPATH\";i:4105543746;s:18:\"WC_PLUGIN_BASENAME\";i:1149093810;s:10:\"WC_VERSION\";i:1817759560;s:19:\"WOOCOMMERCE_VERSION\";i:1817759560;s:21:\"WC_ROUNDING_PRECISION\";i:498629140;s:25:\"WC_DISCOUNT_ROUNDING_MODE\";i:450215437;s:20:\"WC_TAX_ROUNDING_MODE\";i:2212294583;s:12:\"WC_DELIMITER\";i:2455911554;s:10:\"WC_LOG_DIR\";i:785553209;s:22:\"WC_SESSION_CACHE_GROUP\";i:4278978988;s:22:\"WC_TEMPLATE_DEBUG_MODE\";i:734881840;s:8:\"WP_DEBUG\";i:734881840;}','yes'),(19334,'jpsq_sync_checkout','0:0','no'),(19335,'jetpack_sync_https_history_home_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(19336,'jetpack_sync_https_history_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(19338,'wc_connect_services_last_update','1569174527','yes'),(19339,'wc_connect_last_heartbeat','1569088700','yes'),(19340,'wc_connect_services','O:8:\"stdClass\":3:{s:8:\"shipping\";a:0:{}s:5:\"boxes\";O:8:\"stdClass\":5:{s:4:\"type\";s:5:\"array\";s:5:\"title\";s:9:\"Box Sizes\";s:11:\"description\";s:240:\"Items will be packed into these boxes based on item dimensions and volume. Outer dimensions will be passed to the delivery service, whereas inner dimensions will be used for packing. Items not fitting into boxes will be packed individually.\";s:7:\"default\";a:0:{}s:5:\"items\";O:8:\"stdClass\":4:{s:4:\"type\";s:6:\"object\";s:5:\"title\";s:3:\"Box\";s:8:\"required\";a:4:{i:0;s:4:\"name\";i:1;s:16:\"inner_dimensions\";i:2;s:10:\"box_weight\";i:3;s:10:\"max_weight\";}s:10:\"properties\";O:8:\"stdClass\":7:{s:4:\"name\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:4:\"Name\";}s:15:\"is_user_defined\";O:8:\"stdClass\":1:{s:4:\"type\";s:7:\"boolean\";}s:16:\"inner_dimensions\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:28:\"Inner Dimensions (L x W x H)\";s:7:\"pattern\";s:62:\"^(\\d+|(?:\\d*\\.\\d+)) x (\\d+|(?:\\d*\\.\\d+)) x (\\d+|(?:\\d*\\.\\d+))$\";}s:16:\"outer_dimensions\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:28:\"Outer Dimensions (L x W x H)\";s:7:\"pattern\";s:62:\"^(\\d+|(?:\\d*\\.\\d+)) x (\\d+|(?:\\d*\\.\\d+)) x (\\d+|(?:\\d*\\.\\d+))$\";}s:10:\"box_weight\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:5:\"title\";s:19:\"Weight of Box (lbs)\";}s:10:\"max_weight\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:5:\"title\";s:16:\"Max Weight (lbs)\";}s:9:\"is_letter\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:6:\"Letter\";}}}}s:7:\"notices\";a:0:{}}','yes'),(21627,'woocommerce_bacs_accounts','a:1:{i:0;a:6:{s:12:\"account_name\";s:22:\"Newcastle Hypnotherapy\";s:14:\"account_number\";s:8:\"82851940\";s:9:\"bank_name\";s:9:\"Santander\";s:9:\"sort_code\";s:6:\"090126\";s:4:\"iban\";s:0:\"\";s:3:\"bic\";s:0:\"\";}}','yes'),(293633,'woocommerce_allow_bulk_remove_personal_data','no','no'),(140890,'product_cat_children','a:0:{}','yes'),(19084,'default_product_cat','42','yes'),(19107,'woocommerce_meta_box_errors','a:0:{}','yes'),(21571,'jetpack_protect_blocked_attempts','19215','no'),(19090,'woocommerce_admin_notices','a:2:{i:0;s:6:\"update\";i:1;s:14:\"template_files\";}','yes'),(19091,'_transient_woocommerce_webhook_ids','a:0:{}','yes'),(19092,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19093,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19094,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19095,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19096,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19097,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19098,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19099,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19100,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19101,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19102,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19103,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(19854,'_transient_product-transient-version','1568409360','yes'),(19115,'woocommerce_product_type','virtual','yes'),(19116,'woocommerce_sell_in_person','1','yes'),(19117,'woocommerce_allow_tracking','yes','yes'),(19119,'woocommerce_tracker_last_send','1568983189','yes'),(19120,'woocommerce_square_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(19122,'woocommerce_ppec_paypal_settings','a:53:{s:16:\"reroute_requests\";b:0;s:5:\"email\";s:20:\"myfreepack@gmail.com\";s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:38:\"Pay via PayPal or Debit or Credit Card\";s:11:\"environment\";s:4:\"live\";s:12:\"api_username\";s:26:\"markamorley_api1.gmail.com\";s:12:\"api_password\";s:16:\"ALFV3M4BWUC2BAMB\";s:13:\"api_signature\";s:56:\"AiPC9BjkCyDFQXbSkoZcgqH3hpacA.qUd1rhSHNxJMlli9F2yey2TXqH\";s:15:\"api_certificate\";s:0:\"\";s:11:\"api_subject\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:23:\"sandbox_api_certificate\";s:0:\"\";s:19:\"sandbox_api_subject\";s:0:\"\";s:10:\"brand_name\";s:22:\"Newcastle Hypnotherapy\";s:14:\"logo_image_url\";s:3:\"958\";s:16:\"header_image_url\";s:0:\"\";s:10:\"page_style\";s:0:\"\";s:12:\"landing_page\";s:5:\"Login\";s:5:\"debug\";s:2:\"no\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:15:\"require_billing\";s:2:\"no\";s:20:\"require_phone_number\";s:3:\"yes\";s:13:\"paymentaction\";s:4:\"sale\";s:16:\"instant_payments\";s:3:\"yes\";s:26:\"subtotal_mismatch_behavior\";s:3:\"add\";s:7:\"use_spb\";s:3:\"yes\";s:12:\"button_color\";s:4:\"gold\";s:12:\"button_shape\";s:4:\"rect\";s:13:\"button_layout\";s:10:\"horizontal\";s:11:\"button_size\";s:10:\"responsive\";s:20:\"hide_funding_methods\";s:0:\"\";s:14:\"credit_enabled\";s:2:\"no\";s:21:\"cart_checkout_enabled\";s:3:\"yes\";s:25:\"mini_cart_settings_toggle\";s:3:\"yes\";s:23:\"mini_cart_button_layout\";s:10:\"horizontal\";s:21:\"mini_cart_button_size\";s:10:\"responsive\";s:30:\"mini_cart_hide_funding_methods\";a:1:{i:0;s:4:\"CARD\";}s:24:\"mini_cart_credit_enabled\";s:2:\"no\";s:34:\"checkout_on_single_product_enabled\";s:3:\"yes\";s:30:\"single_product_settings_toggle\";s:3:\"yes\";s:28:\"single_product_button_layout\";s:10:\"horizontal\";s:26:\"single_product_button_size\";s:10:\"responsive\";s:35:\"single_product_hide_funding_methods\";s:0:\"\";s:29:\"single_product_credit_enabled\";s:2:\"no\";s:12:\"mark_enabled\";s:3:\"yes\";s:20:\"mark_settings_toggle\";s:3:\"yes\";s:18:\"mark_button_layout\";s:8:\"vertical\";s:16:\"mark_button_size\";s:10:\"responsive\";s:25:\"mark_hide_funding_methods\";s:0:\"\";s:19:\"mark_credit_enabled\";s:2:\"no\";}','yes'),(19123,'woocommerce_stripe_settings','a:3:{s:7:\"enabled\";s:2:\"no\";s:14:\"create_account\";b:0;s:5:\"email\";b:0;}','yes'),(19124,'woocommerce_cheque_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(19125,'woocommerce_bacs_settings','a:11:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:20:\"Direct bank transfer\";s:11:\"description\";s:167:\"Make your payment by Bank Transfer (BACS). Simply transfer through your payment once you have completed your order.\r\nPlease use your Order ID as the payment reference.\";s:12:\"instructions\";s:72:\"Please complete your payment quoting your order number above. Thank you.\";s:12:\"account_name\";s:0:\"\";s:14:\"account_number\";s:0:\"\";s:9:\"sort_code\";s:0:\"\";s:9:\"bank_name\";s:0:\"\";s:4:\"iban\";s:0:\"\";s:3:\"bic\";s:0:\"\";s:15:\"account_details\";s:0:\"\";}','yes'),(19126,'woocommerce_cod_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(19140,'mailchimp_woocommerce_version','2.2.2','no'),(19135,'mailchimp_woocommerce_plugin_do_activation_redirect','','yes'),(19143,'storefront_nux_fresh_site','0','yes'),(19146,'woocommerce_maybe_regenerate_images_hash','a672f1f46ff66b011d20917e81c1d892','yes'),(19255,'jetpack_sync_settings_dequeue_max_bytes','500000','yes'),(19256,'jetpack_sync_settings_upload_max_bytes','600000','yes'),(19257,'jetpack_sync_settings_upload_max_rows','500','yes'),(19258,'jetpack_sync_settings_sync_wait_time','10','yes'),(19259,'jetpack_sync_settings_sync_wait_threshold','5','yes'),(19260,'jetpack_sync_settings_enqueue_wait_time','10','yes'),(19261,'jetpack_sync_settings_queue_max_writes_sec','100','yes'),(19262,'jetpack_sync_settings_post_types_blacklist','a:0:{}','yes'),(19263,'jetpack_sync_settings_render_filtered_content','0','yes'),(19264,'jetpack_sync_settings_post_meta_whitelist','a:0:{}','yes'),(19265,'jetpack_sync_settings_comment_meta_whitelist','a:0:{}','yes'),(19266,'jetpack_sync_settings_max_enqueue_full_sync','100','yes'),(19267,'jetpack_sync_settings_max_queue_size_full_sync','1000','yes'),(19246,'jetpack_sync_settings_max_queue_size','1000','yes'),(34157,'wpqj_ssa_appointments_db_version','1.9.1','yes'),(34158,'wpqj_ssa_appointment_types_db_version','2.2.1','yes'),(34159,'wpqj_ssa_availability_db_version','1.4','yes'),(34162,'ssa_settings_json','{\"installed\":{\"schema_version\":\"2019-07-18\",\"blackout_dates\":true,\"advanced_scheduling\":true,\"google_calendar\":false,\"license\":false,\"mailchimp\":false,\"styles\":true,\"notifications\":true,\"offline_payments\":true,\"payments\":false,\"paypal\":false,\"sms\":false,\"reminders\":false,\"stripe\":false,\"tracking\":false,\"webhooks\":false,\"woocommerce\":false},\"global\":{\"enabled\":false,\"wizard_completed\":\"2018-09-25 12:39:14\",\"timezone_string\":\"Europe\\/London\",\"start_of_week\":\"1\",\"date_format\":\"l, F jS, Y\",\"time_format\":\"g:i a\",\"admin_email\":\"mark@newcastle-hypnotherapy.com\",\"admin_phone\":false,\"staff_name\":\"Mark\",\"company_name\":\"Newcastle Hypnotherapy \",\"last_updated\":\"2018-09-25 12:40:04\",\"booking_post_id\":1579,\"schema_version\":\"2019-06-20\",\"date_format_moment\":\"dddd, MMMM Do, YYYY\",\"time_format_moment\":\"h:mm a\",\"booking_post_permalink\":\"https:\\/\\/www.newcastle-hypnotherapy.com\\/appointments\\/\",\"locale\":\"en_GB\"},\"advanced_scheduling\":{\"enabled\":true,\"schema_version\":\"2018-09-04\",\"last_updated\":\"2018-09-25 12:53:29\"},\"blackout_dates\":{\"enabled\":true,\"dates\":[\"2018-09-28\"],\"schema_version\":\"2018-02-20\",\"last_updated\":\"2018-09-25 19:17:58\"},\"staff\":{\"enabled\":false,\"schema_version\":\"2018-03-20.1700\"},\"styles\":{\"enabled\":true,\"font\":\"Roboto\",\"accent_color\":\"rgba(139, 195, 74, 1)\",\"background\":\"rgba(250,123,54,1)\",\"padding\":\"1rem\",\"contrast\":false,\"css\":\"\",\"schema_version\":\"2018-10-23\",\"last_updated\":\"2018-09-25 13:27:25\"},\"notifications\":{\"enabled\":true,\"notifications\":[{\"appointment_types\":[],\"id\":1568377366,\"schema\":\"2019-04-02\",\"sent_to\":[\"{{admin_email}}\"],\"title\":\"Email (Admin)\",\"subject\":\"{{ Appointment.customer_information.Name }} just booked an appointment\",\"message\":\"<p>{{ Appointment.customer_information.Name }} just booked an appointment on {{ Global.site_url }} <\\/p>\\n<p>Appointment Details: <br \\/>\\nStarting at {{ Appointment.start_date | date(\\\"F d, Y g:ia (T)\\\", Appointment.date_timezone) }} <\\/p>\\n<p>{% if Appointment.AppointmentType.instructions %}<br \\/>\\nInstructions: {{ Appointment.AppointmentType.instructions|raw }} <br \\/>\\n{% endif %}<\\/p>\\n<p>Type: {{ Appointment.AppointmentType.title|raw }} <\\/p>\\n<p>Customer details: <br \\/>\\n{{ Appointment.customer_information_summary }}<\\/p>\\n\",\"trigger\":\"appointment_booked\",\"type\":\"email\",\"when\":\"after\",\"duration\":0},{\"appointment_types\":[],\"id\":1568377367,\"schema\":\"2019-04-02\",\"sent_to\":[\"{{customer_email}}\"],\"subject\":\"Your appointment details\",\"message\":\"<p>Hi {{ Appointment.customer_information.Name }}, <\\/p>\\n<p>This is a confirmation of the appointment you just booked on {{ Global.site_url }} <\\/p>\\n<p>Appointment scheduled for {{ Appointment.start_date | date(\\\"F d, Y g:ia (T)\\\", Appointment.customer_timezone) }} <\\/p>\\n<p>{% if Appointment.AppointmentType.instructions %}<br \\/>\\nInstructions: {{ Appointment.AppointmentType.instructions|raw }} <br \\/>\\n{% endif %}<\\/p>\\n<p>Type: {{ Appointment.AppointmentType.title|raw }} <\\/p>\\n<p>Your details: <br \\/>\\n{{ Appointment.customer_information_summary }}<\\/p>\\n<p>If you need to cancel or change your appointment, you can do so by visiting this link: <br \\/>\\n{{ Appointment.public_edit_url }}<\\/p>\\n\",\"title\":\"Email (Customer)\",\"trigger\":\"appointment_booked\",\"type\":\"email\",\"when\":\"after\",\"duration\":0},{\"appointment_types\":[],\"id\":1568377368,\"schema\":\"2019-04-02\",\"sent_to\":[\"{{admin_email}}\"],\"title\":\"Email (Admin)\",\"subject\":\"{{ Appointment.customer_information.Name }} just canceled an appointment\",\"message\":\"<p>Your appointment \\\"{{ Appointment.AppointmentType.title|raw }}\\\" with {{ Appointment.customer_information.Name }} has been canceled <\\/p>\\n<p>*** Canceled *** <br \\/>\\nAppointment Details: <br \\/>\\n{{ Appointment.start_date | date(\\\"F d, Y g:ia (T)\\\", Appointment.date_timezone) }} <\\/p>\\n<p>Type: {{ Appointment.AppointmentType.title|raw }} <\\/p>\\n<p>Customer details: <br \\/>\\n{{ Appointment.customer_information_summary }}<\\/p>\\n\",\"trigger\":\"appointment_canceled\",\"type\":\"email\",\"when\":\"after\",\"duration\":0},{\"appointment_types\":[],\"id\":1568377369,\"schema\":\"2019-04-02\",\"sent_to\":[\"{{customer_email}}\"],\"subject\":\"Your appointment has been canceled\",\"message\":\"<p>Hi {{ Appointment.customer_information.Name }},<br \\/>\\nYour appointment \\\"{{ Appointment.AppointmentType.title|raw }}\\\" (booked on {{ Global.site_url }}) has been canceled<\\/p>\\n\",\"title\":\"Email (Customer)\",\"trigger\":\"appointment_canceled\",\"type\":\"email\",\"when\":\"after\",\"duration\":0}],\"schema_version\":\"2018-09-18 18:30\",\"last_updated\":\"2019-09-13 12:22:46\"},\"offline_payments\":{\"enabled\":false,\"title\":\"Pay in person\",\"description\":\"You are agreeing to pay this amount in person.\",\"schema_version\":\"2018-10-23\"}}','yes'),(34163,'ssa_versions','{\"2018-09-25 12:24:08\":\"1.5.1\",\"2019-09-13 12:22:46\":\"3.1.0\"}','yes'),(20594,'woocommerce_ppec_payer_id_live_9dcaae3e2b104cc22b1cde9e32dabb1c','F6Y38XWC6G4C8','yes'),(20595,'woo_pp_admin_error','a:1:{i:0;a:1:{s:7:\"success\";s:59:\"Success!  Your PayPal account has been set up successfully.\";}}','yes'),(20603,'_transient_wcc_is_new_label_user','yes','yes'),(32008,'_transient_codepeople_promote_banner_appointment-booking-calendar','1537641188','yes'),(23063,'woocommerce_tracker_ua','a:20:{i:0;s:78:\"mozilla/5.0 (windows nt 10.0; win64; x64; rv:61.0) gecko/20100101 firefox/61.0\";i:1;s:78:\"mozilla/5.0 (windows nt 10.0; win64; x64; rv:62.0) gecko/20100101 firefox/62.0\";i:2;s:150:\"mozilla/5.0 (linux; android 7.0; bv6000 build/nrd90m; wv) applewebkit/537.36 (khtml, like gecko) version/4.0 chrome/69.0.3497.100 mobile safari/537.36\";i:3;s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0\";i:4;s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0\";i:5;s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";i:6;s:149:\"Mozilla/5.0 (Linux; Android 7.0; BV6000 Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/71.0.3578.99 Mobile Safari/537.36\";i:7;s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0\";i:8;s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36\";i:9;s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0\";i:10;s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:64.0) Gecko/20100101 Firefox/64.0\";i:11;s:149:\"Mozilla/5.0 (Linux; Android 7.0; BV6000 Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/72.0.3626.76 Mobile Safari/537.36\";i:12;s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0\";i:13;s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0\";i:14;s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0\";i:15;s:73:\"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Firefox/68.0\";i:16;s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0\";i:17;s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";i:18;s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:66.0) Gecko/20100101 Firefox/66.0\";i:19;s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0\";}','yes'),(23146,'jetpack_site_icon_url','https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/cropped-sq.png','yes'),(36399,'woocommerce_customer_processing_order_settings','a:4:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:40:\"Please Read. Thank you for your payment.\";s:7:\"heading\";s:41:\"Thank You. Please check this information.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(36514,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(28991,'post_by_email_address1','NULL','yes'),(28992,'monitor_receive_notifications','1','yes'),(28994,'jetpack_last_connect_url_check','1542536543','no'),(31999,'installed_appointment-booking-calendar','1537641186','yes'),(31480,'widget_appointments_services','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(31481,'widget_appointments_service_providers','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(31482,'widget_appointments_monthly_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(31486,'app_admin_notices','a:1:{s:8:\"1-7-gcal\";a:1:{s:3:\"cap\";s:14:\"manage_options\";}}','yes'),(31484,'app_last_update','1537630425','yes'),(31485,'appointments_options','a:72:{s:8:\"min_time\";s:2:\"30\";s:19:\"additional_min_time\";s:0:\"\";s:14:\"admin_min_time\";s:0:\"\";s:15:\"app_lower_limit\";s:1:\"0\";s:9:\"app_limit\";s:2:\"90\";s:10:\"clear_time\";s:2:\"60\";s:9:\"spam_time\";s:1:\"0\";s:12:\"auto_confirm\";s:2:\"no\";s:22:\"allow_worker_selection\";s:2:\"no\";s:20:\"allow_worker_confirm\";s:2:\"no\";s:14:\"allow_overwork\";s:2:\"no\";s:20:\"allow_overwork_break\";s:2:\"no\";s:17:\"dummy_assigned_to\";s:1:\"0\";s:13:\"app_page_type\";s:7:\"monthly\";s:17:\"accept_api_logins\";b:0;s:15:\"facebook-app_id\";s:0:\"\";s:14:\"twitter-app_id\";s:0:\"\";s:18:\"twitter-app_secret\";s:0:\"\";s:11:\"show_legend\";s:3:\"yes\";s:4:\"gcal\";s:3:\"yes\";s:13:\"gcal_location\";s:0:\"\";s:14:\"gcal_overwrite\";b:0;s:9:\"color_set\";s:1:\"1\";s:10:\"free_color\";s:6:\"48c048\";s:10:\"busy_color\";s:6:\"ffffff\";s:17:\"notpossible_color\";s:6:\"ffffff\";s:19:\"make_an_appointment\";s:0:\"\";s:8:\"ask_name\";b:1;s:9:\"ask_email\";b:1;s:9:\"ask_phone\";b:1;s:11:\"ask_address\";b:0;s:8:\"ask_city\";b:0;s:8:\"ask_note\";b:0;s:14:\"additional_css\";s:48:\".appointments-list td{ border:none; width:50%; }\";s:16:\"payment_required\";s:2:\"no\";s:15:\"percent_deposit\";s:0:\"\";s:13:\"fixed_deposit\";s:0:\"\";s:8:\"currency\";s:3:\"USD\";s:4:\"mode\";s:7:\"sandbox\";s:14:\"merchant_email\";s:0:\"\";s:6:\"return\";s:0:\"\";s:14:\"login_required\";s:2:\"no\";s:17:\"send_confirmation\";s:3:\"yes\";s:17:\"send_notification\";s:2:\"no\";s:13:\"send_reminder\";s:3:\"yes\";s:13:\"reminder_time\";s:2:\"24\";s:20:\"send_reminder_worker\";s:3:\"yes\";s:20:\"reminder_time_worker\";s:1:\"4\";s:20:\"confirmation_subject\";s:32:\"Confirmation of your Appointment\";s:20:\"confirmation_message\";s:248:\"Dear CLIENT,\r\n\r\nWe are pleased to confirm your appointment for SITE_NAME.\r\n\r\nHere are the appointment details:\r\nRequested service: SERVICE\r\nDate and time: DATE_TIME\r\n\r\nSERVICE_PROVIDER will assist you for this service.\r\n\r\nKind regards,\r\nSITE_NAME\r\n\";s:16:\"reminder_subject\";s:29:\"Reminder for your Appointment\";s:16:\"reminder_message\";s:255:\"Dear CLIENT,\r\n\r\nWe would like to remind you of your appointment with SITE_NAME.\r\n\r\nHere are your appointment details:\r\nRequested service: SERVICE\r\nDate and time: DATE_TIME\r\n\r\nSERVICE_PROVIDER will assist you for this service.\r\n\r\nKind regards,\r\nSITE_NAME\r\n\";s:10:\"log_emails\";s:3:\"yes\";s:12:\"allow_cancel\";N;s:11:\"cancel_page\";s:0:\"\";s:10:\"thank_page\";s:0:\"\";s:25:\"keep_options_on_uninstall\";b:1;s:11:\"gdpr_delete\";s:2:\"no\";s:19:\"gdpr_number_of_days\";i:28;s:31:\"gdpr_number_of_days_user_erease\";i:28;s:18:\"gdpr_checkbox_show\";s:2:\"no\";s:18:\"gdpr_checkbox_text\";s:88:\"By using this form you agree with the storage and handling of your data by this website.\";s:19:\"gdpr_checkbox_alert\";s:35:\"Please accept the privacy checkbox.\";s:19:\"always_load_scripts\";s:2:\"no\";s:15:\"allow_worker_wh\";s:2:\"no\";s:25:\"send_removal_notification\";s:2:\"no\";s:16:\"facebook-no_init\";b:0;s:22:\"allow_free_autoconfirm\";b:0;s:28:\"removal_notification_subject\";s:28:\"Appointment has been removed\";s:28:\"removal_notification_message\";s:233:\"Dear CLIENT,\r\n\r\nWe would like to inform you that your appointment with SITE_NAME on DATE_TIME has been removed.\r\n\r\nHere are your appointment details:\r\nRequested service: SERVICE\r\nDate and time: DATE_TIME\r\n\r\nKind regards,\r\nSITE_NAME\r\n\";s:22:\"disable_js_check_admin\";b:0;s:25:\"disable_js_check_frontend\";b:0;}','yes'),(39673,'zopimUsername','mark@newcastle-hypnotherapy.com','yes'),(39674,'zopimSalt','mark@newcastle-hypnotherapy.com_$1$gIZSc9lnDYSEi6jORiCfssFKHpjimdW1$aM1uoEgnsW5YlQoDrxjUW60pdPqCmjfcUUbnAMXWUbAVYhHfVaN4jMZu3ecishPXDWEaQzstJ1o6Or6inFjMLg==','yes'),(39675,'zopimCode','62iDaN8fqVRENsjzGZMM6pVX5B4Eb7dl','yes'),(39676,'zopimGreetings','{\"away\":{\"window\":\"If you leave a question or comment, our agents will be notified and will try to attend to you shortly =)\",\"bar\":\"Click here to chat\"},\"offline\":{\"window\":\"We are offline, but if you leave your message and contact details, we will try to get back to you =)\",\"bar\":\"Leave a message\"},\"online\":{\"window\":\"Leave a question or comment and our agents will try to attend to you shortly =)\",\"bar\":\"Click here to chat\"}}','yes'),(39677,'zopimWidgetOptions','$zopim( function() {\n})','yes'),(90446,'show_comments_cookies_opt_in','0','yes'),(38592,'cf7_mch_1668','a:25:{s:3:\"api\";s:37:\"01c68d77fa6b047772b1bda2f7d64267-us17\";s:4:\"list\";s:10:\"9c5129cc9b\";s:5:\"email\";s:20:\"[cf7s-email-address]\";s:4:\"name\";s:11:\"[cf7s-name]\";s:6:\"accept\";s:0:\"\";s:12:\"CustomValue1\";s:0:\"\";s:10:\"CustomKey1\";s:0:\"\";s:12:\"CustomValue2\";s:0:\"\";s:10:\"CustomKey2\";s:0:\"\";s:12:\"CustomValue3\";s:0:\"\";s:10:\"CustomKey3\";s:0:\"\";s:12:\"CustomValue4\";s:0:\"\";s:10:\"CustomKey4\";s:0:\"\";s:12:\"CustomValue5\";s:0:\"\";s:10:\"CustomKey5\";s:0:\"\";s:12:\"CustomValue6\";s:0:\"\";s:10:\"CustomKey6\";s:0:\"\";s:12:\"CustomValue7\";s:0:\"\";s:10:\"CustomKey7\";s:0:\"\";s:12:\"CustomValue8\";s:0:\"\";s:10:\"CustomKey8\";s:0:\"\";s:12:\"CustomValue9\";s:0:\"\";s:10:\"CustomKey9\";s:0:\"\";s:13:\"CustomValue10\";s:0:\"\";s:11:\"CustomKey10\";s:0:\"\";}','yes'),(37758,'woocommerce_shop_page_display','','yes'),(293641,'woocommerce_version','3.7.0','yes'),(295798,'rewrite_rules','a:184:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:39:\"index.php?yoast-sitemap-xsl=$matches[1]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:11:\"^ssa-embed?\";s:23:\"index.php?ssa_embed=yes\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:57:\"wpforms_log_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?taxonomy=wpforms_log_type&term=$matches[1]&feed=$matches[2]\";s:52:\"wpforms_log_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?taxonomy=wpforms_log_type&term=$matches[1]&feed=$matches[2]\";s:33:\"wpforms_log_type/([^/]+)/embed/?$\";s:63:\"index.php?taxonomy=wpforms_log_type&term=$matches[1]&embed=true\";s:45:\"wpforms_log_type/([^/]+)/page/?([0-9]{1,})/?$\";s:70:\"index.php?taxonomy=wpforms_log_type&term=$matches[1]&paged=$matches[2]\";s:27:\"wpforms_log_type/([^/]+)/?$\";s:52:\"index.php?taxonomy=wpforms_log_type&term=$matches[1]\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:41:\"cookielawinfo/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"cookielawinfo/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"cookielawinfo/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"cookielawinfo/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"cookielawinfo/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"cookielawinfo/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"cookielawinfo/([^/]+)/embed/?$\";s:46:\"index.php?cookielawinfo=$matches[1]&embed=true\";s:34:\"cookielawinfo/([^/]+)/trackback/?$\";s:40:\"index.php?cookielawinfo=$matches[1]&tb=1\";s:42:\"cookielawinfo/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?cookielawinfo=$matches[1]&paged=$matches[2]\";s:49:\"cookielawinfo/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?cookielawinfo=$matches[1]&cpage=$matches[2]\";s:39:\"cookielawinfo/([^/]+)/wc-api(/(.*))?/?$\";s:54:\"index.php?cookielawinfo=$matches[1]&wc-api=$matches[3]\";s:45:\"cookielawinfo/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:56:\"cookielawinfo/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:38:\"cookielawinfo/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?cookielawinfo=$matches[1]&page=$matches[2]\";s:30:\"cookielawinfo/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"cookielawinfo/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"cookielawinfo/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"cookielawinfo/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"cookielawinfo/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"cookielawinfo/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:41:\"index.php?&page_id=1437&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:25:\"([^/]+)/wc-api(/(.*))?/?$\";s:45:\"index.php?name=$matches[1]&wc-api=$matches[3]\";s:31:\"[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\"[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(286256,'_transient_timeout_jetpack_file_data_6.9','1570368923','no'),(286257,'_transient_jetpack_file_data_6.9','a:60:{s:32:\"c22c48d7cfe9d38dff2864cfea64636a\";a:15:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:39:\"Check your spelling, style, and grammar\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"6\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:115:\"after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"fb5c4814ddc3946a3f22cc838fcb2af3\";a:15:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:75:\"Display images and galleries in a gorgeous, full-screen browsing experience\";s:14:\"jumpstart_desc\";s:79:\"Brings your photos and images to life as full-size, easily navigable galleries.\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5813eda53235a9a81a69b1f6a4a15db6\";a:15:{s:4:\"name\";s:13:\"Comment Likes\";s:11:\"description\";s:64:\"Increase visitor engagement by adding a Like button to comments.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"39\";s:20:\"recommendation_order\";s:2:\"17\";s:10:\"introduced\";s:3:\"5.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:37:\"like widget, like button, like, likes\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7ef4ca32a1c84fc10ef50c8293cae5df\";a:15:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:80:\"Let readers use WordPress.com, Twitter, Facebook, or Google+ accounts to comment\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"c5331bfc2648dfeeebe486736d79a72c\";a:15:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:57:\"Insert a customizable contact form anywhere on your site.\";s:14:\"jumpstart_desc\";s:111:\"Adds a button to your post and page editors, allowing you to build simple forms to help visitors stay in touch.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:18:\"Writing, Jumpstart\";s:25:\"additional_search_queries\";s:44:\"contact, form, grunion, feedback, submission\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"707c77d2e8cb0c12d094e5423c8beda8\";a:15:{s:4:\"name\";s:20:\"Custom content types\";s:11:\"description\";s:74:\"Display different types of content on your site with custom content types.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cd499b1678cfe3aabfc8ca0d3eb7e8b9\";a:15:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:53:\"Tweak your site’s CSS without modifying your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5d436678d5e010ac6b0f157aa1021554\";a:15:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"092b94702bb483a5472578283c2103d6\";a:15:{s:4:\"name\";s:16:\"Google Analytics\";s:11:\"description\";s:56:\"Set up Google Analytics without touching a line of code.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"37\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"4.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:37:\"webmaster, google, analytics, console\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"ee1a10e2ef5733ab19eb1eb552d5ecb3\";a:15:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:14:\"jumpstart_desc\";s:131:\"Let commenters link their profiles to their Gravatar accounts, making it easy for your visitors to learn more about your community.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0ce5c3ac630dea9f41215e48bb0f52f3\";a:15:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:53:\"Automatically load new content when a visitor scrolls\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"87da2858d4f9cadb6a44fdcf32e8d2b5\";a:15:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"004962cb7cb9ec2b64769ac4df509217\";a:15:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:57:\"Use LaTeX markup for complex equations and other geekery.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7f408184bee8850d439c01322867e72c\";a:15:{s:4:\"name\";s:11:\"Lazy Images\";s:11:\"description\";s:16:\"Lazy load images\";s:14:\"jumpstart_desc\";s:164:\"Lazy-loading images improve your site\'s speed and create a smoother viewing experience. Images will load as visitors scroll down the screen, instead of all at once.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:5:\"5.6.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:23:\"Appearance, Recommended\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:33:\"mobile, theme, performance, image\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2ad914b747f382ae918ed3b37077d4a1\";a:15:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"b347263e3470979442ebf0514e41e893\";a:15:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:54:\"Manage all of your sites from a centralized dashboard.\";s:14:\"jumpstart_desc\";s:151:\"Helps you remotely manage plugins, turn on automated updates, and more from <a href=\"https://wordpress.com/plugins/\" target=\"_blank\">wordpress.com</a>.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"3\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:26:\"manage, management, remote\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"589982245aa6f495b72ab7cf57a1a48e\";a:15:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:50:\"Write posts or pages in plain-text Markdown syntax\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d3bec8e063d637bc285018241b783725\";a:15:{s:4:\"name\";s:21:\"WordPress.com Toolbar\";s:11:\"description\";s:91:\"Replaces the admin bar with a useful toolbar to quickly manage your site via WordPress.com.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"16\";s:10:\"introduced\";s:3:\"4.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"General\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:19:\"adminbar, masterbar\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"6ab1c3e749bcfba2dedbaebe6c9fc614\";a:15:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:31:\"Enable the Jetpack Mobile theme\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"f07fde8db279ffb0116c727df72c6374\";a:15:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";s:14:\"jumpstart_desc\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:37:\"monitor, uptime, downtime, monitoring\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"136a5445a49150db75472862f3d3aefb\";a:15:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0b7b5e3ff80355a67c5485b0d00cd1a2\";a:15:{s:4:\"name\";s:9:\"Asset CDN\";s:11:\"description\";s:36:\"Serve static assets from our servers\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"6.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:23:\"Recommended, Appearance\";s:25:\"additional_search_queries\";s:46:\"photon, image, cdn, performance, speed, assets\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4484ac68583fbbaab0ef698cdc986950\";a:15:{s:4:\"name\";s:6:\"Photon\";s:11:\"description\";s:29:\"Serve images from our servers\";s:14:\"jumpstart_desc\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:34:\"Recommended, Jumpstart, Appearance\";s:25:\"additional_search_queries\";s:38:\"photon, image, cdn, performance, speed\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"6f30193afa5b1360e3fa2676501b5e3a\";a:15:{s:4:\"name\";s:13:\"Post by email\";s:11:\"description\";s:33:\"Publish posts by sending an email\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"3e9f8bd3755d92e8e5d06966a957beb8\";a:15:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:41:\"Block suspicious-looking sign in activity\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:65:\"security, secure, protection, botnet, brute force, protect, login\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0cacc8ab2145ad11cb54d181a98aa550\";a:15:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:27:\"Automated social marketing.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:101:\"facebook, twitter, google+, googleplus, google, tumblr, linkedin, social, tweet, connections, sharing\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"a528c2f803a92c5c2effa67cd33ab33a\";a:15:{s:4:\"name\";s:20:\"Progressive Web Apps\";s:11:\"description\";s:85:\"Speed up and improve the reliability of your site using the latest in web technology.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"18\";s:10:\"introduced\";s:5:\"5.6.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:26:\"manifest, pwa, progressive\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5fdd42d482712fbdaf000b28ea7adce9\";a:15:{s:4:\"name\";s:13:\"Related posts\";s:11:\"description\";s:64:\"Increase page views by showing related content to your visitors.\";s:14:\"jumpstart_desc\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:22:\"related, related posts\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2c5096ef610018e98a8bcccfbea4471e\";a:15:{s:4:\"name\";s:6:\"Search\";s:11:\"description\";s:41:\"Enhanced search, powered by Elasticsearch\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:6:\"Search\";s:25:\"additional_search_queries\";s:6:\"search\";s:12:\"plan_classes\";s:8:\"business\";}s:32:\"0d81dd7df3ad2f245e84fd4fb66bf829\";a:15:{s:4:\"name\";s:9:\"SEO Tools\";s:11:\"description\";s:50:\"Better results on search engines and social media.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"35\";s:20:\"recommendation_order\";s:2:\"15\";s:10:\"introduced\";s:3:\"4.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:81:\"search engine optimization, social preview, meta description, custom title format\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"32aaa676b3b6c9f3ef22430e1e0bca24\";a:15:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:37:\"Allow visitors to share your content.\";s:14:\"jumpstart_desc\";s:116:\"Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:141:\"share, sharing, sharedaddy, buttons, icons, email, facebook, twitter, google+, linkedin, pinterest, pocket, press this, print, reddit, tumblr\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"948472b453cda59b38bb7c37af889af0\";a:15:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:50:\"Embed media from popular sites without any coding.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:236:\"shortcodes, shortcode, embeds, media, bandcamp, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7d00a6ca0a79fbe893275aaf6ed6ae42\";a:15:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:54:\"Create short and simple links for all posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2ea687cec293289a2a3e5f0459e79768\";a:15:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"e7cf8a7e0f151ccf7cbdc6d8f118f316\";a:15:{s:4:\"name\";s:14:\"Secure Sign On\";s:11:\"description\";s:62:\"Allow users to log into this site using WordPress.com accounts\";s:14:\"jumpstart_desc\";s:98:\"Lets you log in to all your Jetpack-enabled sites with one click using your WordPress.com account.\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"34fb073ed896af853ed48bd5739240cb\";a:15:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable traffic stats and insights.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"8de0dfff24a17cf0fa0011dfc691a3f3\";a:15:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:87:\"Allow users to subscribe to your posts and comments and receive notifications via email\";s:14:\"jumpstart_desc\";s:126:\"Give visitors two easy subscription options — while commenting, or via a separate email subscription widget you can display.\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d89db0d934b39f86065ff58e73594070\";a:15:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:14:\"jumpstart_desc\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"20459cc462babfc5a82adf6b34f6e8b1\";a:15:{s:4:\"name\";s:12:\"Data Backups\";s:11:\"description\";s:54:\"Off-site backups, security scans, and automatic fixes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:16:\"Security, Health\";s:25:\"additional_search_queries\";s:28:\"vaultpress, backup, security\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"836245eb0a8f0c5272542305a88940c1\";a:15:{s:4:\"name\";s:17:\"Site verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"e94397a5c47c1be995eff613e65a674f\";a:15:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:27:\"Fast, ad-free video hosting\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:25:\"video, videos, videopress\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"032cd76e08467c732ccb026efda0c9cd\";a:15:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"9b3e84beedf2e96f1ac5dd6498d2b1aa\";a:15:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:54:\"Add images, Twitter streams, and more to your sidebar.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7724fd9600745cf93e37cc09282e1a37\";a:15:{s:4:\"name\";s:3:\"Ads\";s:11:\"description\";s:60:\"Earn income by allowing Jetpack to display high quality ads.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"4.5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Traffic, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"advertising, ad codes, ads\";s:12:\"plan_classes\";s:17:\"premium, business\";}s:32:\"933d4f6d290580156e0652ce850af1b2\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7d266d6546645f42cf52a66387699c50\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2c9ff765b826940496a65c0f927a594a\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"6bd77e09440df2b63044cf8cb7963773\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"284c08538b0bdc266315b2cf80b9c044\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"b7be7da643ec641511839ecc6afb6def\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d54f83ff429a8a37ace796de98459411\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0f8b373fa12c825162c0b0bc20b8bbdd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5d7b0750cb34a4a72a44fa67790de639\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"395d8ae651afabb54d1e98440674b384\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"329b8efce059081d46936ece0c6736b3\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"372e711395f23c466e04d4fd07f73099\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2fe9dc2c7389d4f0825a0b23bc8b19d1\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4744f348db095538d3edcacb0ed99c89\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"01987a7ba5e19786f2992501add8181a\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5b8f8e5b5a1887e3c0393cb78d5143a3\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(141906,'wp_mail_smtp_initial_version','1.4.1','no'),(141907,'wp_mail_smtp_version','1.6.2','no'),(141908,'wp_mail_smtp','a:5:{s:4:\"mail\";a:6:{s:10:\"from_email\";s:31:\"mark@newcastle-hypnotherapy.com\";s:9:\"from_name\";s:22:\"Newcastle Hypnotherapy\";s:6:\"mailer\";s:4:\"smtp\";s:11:\"return_path\";b:1;s:16:\"from_email_force\";b:0;s:15:\"from_name_force\";b:0;}s:4:\"smtp\";a:7:{s:7:\"autotls\";b:1;s:4:\"host\";s:31:\"mail.newcastle-hypnotherapy.com\";s:10:\"encryption\";s:3:\"ssl\";s:4:\"port\";i:465;s:4:\"auth\";b:1;s:4:\"user\";s:31:\"mark@newcastle-hypnotherapy.com\";s:4:\"pass\";s:16:\"SweetRevenge3076\";}s:5:\"gmail\";a:2:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";}s:7:\"mailgun\";a:3:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";s:6:\"region\";s:2:\"US\";}s:8:\"sendgrid\";a:1:{s:7:\"api_key\";s:0:\"\";}}','no'),(141919,'_amn_smtp_last_checked','1569110400','yes'),(141930,'wp_mail_smtp_debug','a:0:{}','no'),(287788,'_amn_wpforms-lite_to_check','1569427446','yes'),(307426,'_transient_timeout_jetpack_idc_allowed','1569180205','no'),(307427,'_transient_jetpack_idc_allowed','1','no'),(283000,'_transient_timeout_wc_shipping_method_count_1_1535910701','1569892586','no'),(283001,'_transient_wc_shipping_method_count_1_1535910701','0','no'),(307428,'_transient_timeout_wpcom_social_media_icons_widget::is_active','1569180206','no'),(307429,'_transient_wpcom_social_media_icons_widget::is_active','0','no'),(307447,'_site_transient_php_check_a5907c2ea4d6fbd7e531b3aa7734f0e4','a:5:{s:19:\"recommended_version\";s:3:\"7.3\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}','no'),(306354,'_transient_timeout_jpp_li_d64c7279c00b5a55bcb694ed8fdfdfc8','1569173475','no'),(306355,'_transient_jpp_li_d64c7279c00b5a55bcb694ed8fdfdfc8','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (185.85.190.132)\";s:17:\"seconds_remaining\";i:3490;s:16:\"blocked_attempts\";s:5:\"19212\";s:6:\"expire\";i:1569173475;}','no'),(307240,'_transient_timeout_jpp_li_9761d7ec1662cf778cd19bed08b5f691','1569178323','no'),(307241,'_transient_jpp_li_9761d7ec1662cf778cd19bed08b5f691','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:49:\"No current blocks on this IP address (51.89.7.30)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"19214\";s:6:\"expire\";i:1569178323;}','no'),(305733,'_transient_timeout_wc_admin_report','1569266519','no'),(305734,'_transient_wc_admin_report','a:2:{s:32:\"184c987a13a05eec382c0b98bf775e90\";a:5:{i:0;O:8:\"stdClass\":2:{s:15:\"sparkline_value\";s:2:\"15\";s:9:\"post_date\";s:19:\"2019-09-08 10:02:00\";}i:1;O:8:\"stdClass\":2:{s:15:\"sparkline_value\";s:2:\"15\";s:9:\"post_date\";s:19:\"2019-09-12 22:53:19\";}i:2;O:8:\"stdClass\":2:{s:15:\"sparkline_value\";s:2:\"45\";s:9:\"post_date\";s:19:\"2019-09-13 14:09:13\";}i:3;O:8:\"stdClass\":2:{s:15:\"sparkline_value\";s:2:\"30\";s:9:\"post_date\";s:19:\"2019-09-14 13:30:09\";}i:4;O:8:\"stdClass\":2:{s:15:\"sparkline_value\";s:2:\"30\";s:9:\"post_date\";s:19:\"2019-09-18 06:34:58\";}}s:32:\"86740e4cb2917dd6285df5d3b284dbe0\";a:5:{i:0;O:8:\"stdClass\":3:{s:10:\"product_id\";s:4:\"2836\";s:15:\"sparkline_value\";s:1:\"1\";s:9:\"post_date\";s:19:\"2019-09-08 10:02:00\";}i:1;O:8:\"stdClass\":3:{s:10:\"product_id\";s:4:\"2836\";s:15:\"sparkline_value\";s:1:\"1\";s:9:\"post_date\";s:19:\"2019-09-12 22:53:19\";}i:2;O:8:\"stdClass\":3:{s:10:\"product_id\";s:4:\"2836\";s:15:\"sparkline_value\";s:1:\"1\";s:9:\"post_date\";s:19:\"2019-09-13 14:09:13\";}i:3;O:8:\"stdClass\":3:{s:10:\"product_id\";s:4:\"2836\";s:15:\"sparkline_value\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-09-14 13:30:09\";}i:4;O:8:\"stdClass\":3:{s:10:\"product_id\";s:4:\"2836\";s:15:\"sparkline_value\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-09-18 07:50:56\";}}}','no'),(307236,'jetpack_active_plan','a:8:{s:10:\"product_id\";i:2002;s:12:\"product_slug\";s:12:\"jetpack_free\";s:12:\"product_name\";s:12:\"Jetpack Free\";s:18:\"product_name_short\";s:4:\"Free\";s:7:\"expired\";b:0;s:13:\"user_is_owner\";b:0;s:7:\"is_free\";b:1;s:8:\"features\";a:2:{s:6:\"active\";a:1:{i:0;s:7:\"akismet\";}s:9:\"available\";a:10:{s:7:\"akismet\";a:6:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";}s:18:\"vaultpress-backups\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:25:\"vaultpress-backup-archive\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:24:\"vaultpress-storage-space\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:29:\"vaultpress-automated-restores\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:15:\"simple-payments\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:7:\"support\";a:6:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";}s:14:\"premium-themes\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:28:\"vaultpress-security-scanning\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:9:\"polldaddy\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}}}}','yes'),(303014,'jetpack_nonce_1568915423_g4fBDPTlwa','1568915422','no'),(307233,'jetpack_nonce_1569174525_ryJfJFbMGN','1569174524','no'),(306601,'_transient_timeout_jpp_li_ce7f85f978e6cb963bb80b6d35610f9d','1569175415','no'),(306602,'_transient_jpp_li_ce7f85f978e6cb963bb80b6d35610f9d','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (168.90.199.247)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"19213\";s:6:\"expire\";i:1569175415;}','no'),(308272,'_transient_timeout_brute_use_math','1569180686','no'),(308273,'_transient_brute_use_math','1','no'),(308274,'jetpack_protect_error','Invalid Action Specified','no'),(306373,'_site_transient_timeout_browser_471e4b86e3560c6feb474def098169b6','1569775406','no'),(306374,'_site_transient_browser_471e4b86e3560c6feb474def098169b6','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"76.0.3809.132\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(306340,'_transient_timeout_wc_related_2564','1569255726','no'),(306341,'_transient_wc_related_2564','a:1:{s:52:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=2564\";a:9:{i:0;s:4:\"1917\";i:1;s:4:\"2287\";i:2;s:4:\"1548\";i:3;s:4:\"2454\";i:4;s:4:\"2628\";i:5;s:4:\"2732\";i:6;s:4:\"2972\";i:7;s:4:\"3026\";i:8;s:4:\"2701\";}}','no'),(293630,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(293634,'woocommerce_show_marketplace_suggestions','yes','no'),(308179,'_transient_timeout_jetpack_sync_last_checked_queue_state_sync','1569180161','no'),(308180,'_transient_jetpack_sync_last_checked_queue_state_sync','a:2:{i:0;i:0;i:1;i:0;}','no'),(293636,'jetpack_sync_settings_taxonomies_blacklist','a:0:{}','yes'),(293637,'jetpack_sync_settings_known_importers','a:6:{s:16:\"Blogger_Importer\";s:7:\"blogger\";s:13:\"LJ_API_Import\";s:11:\"livejournal\";s:9:\"MT_Import\";s:2:\"mt\";s:10:\"RSS_Import\";s:3:\"rss\";s:20:\"WC_Tax_Rate_Importer\";s:12:\"woo-tax-rate\";s:9:\"WP_Import\";s:9:\"wordpress\";}','yes'),(298675,'jetpack_nonce_1568570002_qT1hXhoBge','1568570002','no'),(158744,'can_compress_scripts','0','no'),(293886,'woocommerce_marketplace_suggestions','a:2:{s:11:\"suggestions\";a:26:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:117:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:117:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:119:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:114:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:12;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:13;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:98:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:14;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:15;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:16;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:119:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:17;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:18;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:19;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:20;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:21;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:103:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:22;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:23;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:105:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:24;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:25;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1568378385;}','no'),(293963,'woocommerce_sales_record_date','2019-09-13','yes'),(293964,'woocommerce_sales_record_amount','45','yes'),(293965,'wc_admin_install_timestamp','1568378493','yes'),(293966,'wc_admin_last_orders_milestone','10','yes'),(293969,'wc_admin_version','0.18.0','yes'),(307993,'_transient_timeout_jetpack_sync_constants_await','1569181727','no'),(307994,'_transient_jetpack_sync_constants_await','1569178127.9393','no'),(293647,'DRA_route_whitelist','a:36:{i:0;s:7:\"/ssa/v1\";i:1;s:16:\"/ssa/v1/settings\";i:2;s:45:\"/ssa/v1/settings/(?P&lt;id&gt;[a-zA-Z0-9_-]+)\";i:3;s:23:\"/ssa/v1/settings/schema\";i:4;s:15:\"/ssa/v1/notices\";i:5;s:44:\"/ssa/v1/notices/(?P&lt;id&gt;[a-zA-Z0-9_-]+)\";i:6;s:22:\"/ssa/v1/notices/schema\";i:7;s:15:\"/ssa/v1/license\";i:8;s:22:\"/ssa/v1/license/schema\";i:9;s:24:\"/ssa/v1/google_calendars\";i:10;s:35:\"/ssa/v1/google_calendars/disconnect\";i:11;s:38:\"/ssa/v1/google_calendars/authorize_url\";i:12;s:17:\"/ssa/v1/mailchimp\";i:13;s:28:\"/ssa/v1/mailchimp/disconnect\";i:14;s:27:\"/ssa/v1/mailchimp/authorize\";i:15;s:29:\"/ssa/v1/mailchimp/deauthorize\";i:16;s:23:\"/ssa/v1/mailchimp/lists\";i:17;s:27:\"/ssa/v1/mailchimp/subscribe\";i:18;s:22:\"/ssa/v1/support_status\";i:19;s:22:\"/ssa/v1/support_ticket\";i:20;s:11:\"/oembed/1.0\";i:21;s:20:\"/ssa/v1/appointments\";i:22;s:25:\"/ssa/v1/appointments/bulk\";i:23;s:40:\"/ssa/v1/appointments/(?P&lt;id&gt;[\\d]+)\";i:24;s:44:\"/ssa/v1/appointments/(?P&lt;id&gt;[\\d]+)/ics\";i:25;s:25:\"/ssa/v1/appointment_types\";i:26;s:30:\"/ssa/v1/appointment_types/bulk\";i:27;s:45:\"/ssa/v1/appointment_types/(?P&lt;id&gt;[\\d]+)\";i:28;s:58:\"/ssa/v1/appointment_types/(?P&lt;id&gt;[\\d]+)/availability\";i:29;s:20:\"/ssa/v1/availability\";i:30;s:25:\"/ssa/v1/availability/bulk\";i:31;s:40:\"/ssa/v1/availability/(?P&lt;id&gt;[\\d]+)\";i:32;s:13:\"/ssa/v1/async\";i:33;s:16:\"/ssa/v1/payments\";i:34;s:21:\"/ssa/v1/payments/bulk\";i:35;s:36:\"/ssa/v1/payments/(?P&lt;id&gt;[\\d]+)\";}','yes'),(293654,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(293657,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/en_GB/wordpress-5.2.3.zip\";s:6:\"locale\";s:5:\"en_GB\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/en_GB/wordpress-5.2.3.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.2.3\";s:7:\"version\";s:5:\"5.2.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1569162037;s:15:\"version_checked\";s:5:\"5.2.3\";s:12:\"translations\";a:0:{}}','no'),(305552,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1569162039;s:7:\"checked\";a:5:{s:10:\"responsive\";s:4:\"3.11\";s:13:\"responsivepro\";s:4:\"2.13\";s:10:\"storefront\";s:5:\"2.3.3\";s:13:\"swiftraytheme\";s:3:\"2.1\";s:14:\"twentynineteen\";s:3:\"1.0\";}s:8:\"response\";a:3:{s:10:\"responsive\";a:6:{s:5:\"theme\";s:10:\"responsive\";s:11:\"new_version\";s:6:\"3.17.1\";s:3:\"url\";s:40:\"https://wordpress.org/themes/responsive/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/responsive.3.17.1.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:10:\"storefront\";a:6:{s:5:\"theme\";s:10:\"storefront\";s:11:\"new_version\";s:5:\"2.5.3\";s:3:\"url\";s:40:\"https://wordpress.org/themes/storefront/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/storefront.2.5.3.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";b:0;}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.1.4.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:12:\"translations\";a:0:{}}','no'),(305553,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1569162040;s:7:\"checked\";a:32:{s:17:\"aceide/AceIDE.php\";s:5:\"2.6.2\";s:19:\"akismet/akismet.php\";s:5:\"4.1.2\";s:73:\"advanced-responsive-video-embedder/advanced-responsive-video-embedder.php\";s:7:\"8.10.10\";s:27:\"auto-iframe/auto-iframe.php\";s:3:\"1.6\";s:23:\"chimpmate/chimpmate.php\";s:5:\"1.3.2\";s:33:\"classic-editor/classic-editor.php\";s:3:\"1.5\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.1.4\";s:50:\"contact-form-7-mailchimp-extension/cf7-mch-ext.php\";s:6:\"0.4.58\";s:30:\"contact-form-7-skins/index.php\";s:5:\"2.1.3\";s:26:\"easy-appointments/main.php\";s:5:\"2.5.8\";s:35:\"cookie-law-info/cookie-law-info.php\";s:5:\"1.8.0\";s:23:\"gutenberg/gutenberg.php\";s:5:\"6.4.0\";s:41:\"flynsarmy-iframe-shortcode/flyniframe.php\";s:5:\"1.0.5\";s:35:\"insert-headers-and-footers/ihaf.php\";s:5:\"1.4.4\";s:19:\"jetpack/jetpack.php\";s:5:\"7.7.1\";s:23:\"loginizer/loginizer.php\";s:5:\"1.4.2\";s:51:\"mailchimp-for-woocommerce/mailchimp-woocommerce.php\";s:5:\"2.2.2\";s:23:\"mailoptin/mailoptin.php\";s:8:\"1.2.19.1\";s:27:\"optin-forms/optin-forms.php\";s:7:\"1.2.9.6\";s:41:\"responsive-add-ons/responsive-add-ons.php\";s:5:\"2.0.5\";s:49:\"sendgrid-email-delivery-simplified/wpsendgrid.php\";s:6:\"1.11.8\";s:61:\"simply-schedule-appointments/simply-schedule-appointments.php\";s:7:\"1.3.2.2\";s:23:\"slidedeck/slidedeck.php\";s:5:\"5.3.4\";s:30:\"smart-youtube/smartyoutube.php\";s:3:\"4.3\";s:27:\"woocommerce/woocommerce.php\";s:5:\"3.7.0\";s:39:\"woocommerce-admin/woocommerce-admin.php\";s:6:\"0.18.0\";s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";s:6:\"1.6.17\";s:45:\"woocommerce-services/woocommerce-services.php\";s:6:\"1.21.1\";s:24:\"wpforms-lite/wpforms.php\";s:5:\"1.5.5\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:5:\"1.6.2\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"12.0\";s:25:\"zopim-live-chat/zopim.php\";s:6:\"1.4.15\";}s:8:\"response\";a:5:{s:23:\"gutenberg/gutenberg.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:6:\"plugin\";s:23:\"gutenberg/gutenberg.php\";s:11:\"new_version\";s:5:\"6.5.0\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/gutenberg/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/gutenberg.6.5.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/gutenberg/assets/icon-256x256.jpg?rev=1776042\";s:2:\"1x\";s:62:\"https://ps.w.org/gutenberg/assets/icon-128x128.jpg?rev=1776042\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/gutenberg/assets/banner-1544x500.jpg?rev=1718710\";s:2:\"1x\";s:64:\"https://ps.w.org/gutenberg/assets/banner-772x250.jpg?rev=1718710\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.3\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:41:\"responsive-add-ons/responsive-add-ons.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:32:\"w.org/plugins/responsive-add-ons\";s:4:\"slug\";s:18:\"responsive-add-ons\";s:6:\"plugin\";s:41:\"responsive-add-ons/responsive-add-ons.php\";s:11:\"new_version\";s:5:\"2.0.6\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/responsive-add-ons/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/responsive-add-ons.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/responsive-add-ons/assets/icon-256x256.png?rev=2128492\";s:2:\"1x\";s:71:\"https://ps.w.org/responsive-add-ons/assets/icon-128x128.png?rev=2128492\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/responsive-add-ons/assets/banner-1544x500.png?rev=2128492\";s:2:\"1x\";s:73:\"https://ps.w.org/responsive-add-ons/assets/banner-772x250.png?rev=2128492\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.3\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:61:\"simply-schedule-appointments/simply-schedule-appointments.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:42:\"w.org/plugins/simply-schedule-appointments\";s:4:\"slug\";s:28:\"simply-schedule-appointments\";s:6:\"plugin\";s:61:\"simply-schedule-appointments/simply-schedule-appointments.php\";s:11:\"new_version\";s:7:\"1.3.2.3\";s:3:\"url\";s:59:\"https://wordpress.org/plugins/simply-schedule-appointments/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/simply-schedule-appointments.1.3.2.3.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:81:\"https://ps.w.org/simply-schedule-appointments/assets/icon-256x256.png?rev=1879632\";s:2:\"1x\";s:73:\"https://ps.w.org/simply-schedule-appointments/assets/icon.svg?rev=2124191\";s:3:\"svg\";s:73:\"https://ps.w.org/simply-schedule-appointments/assets/icon.svg?rev=2124191\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:84:\"https://ps.w.org/simply-schedule-appointments/assets/banner-1544x500.png?rev=1879632\";s:2:\"1x\";s:83:\"https://ps.w.org/simply-schedule-appointments/assets/banner-772x250.png?rev=1879632\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.3\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:24:\"wpforms-lite/wpforms.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:26:\"w.org/plugins/wpforms-lite\";s:4:\"slug\";s:12:\"wpforms-lite\";s:6:\"plugin\";s:24:\"wpforms-lite/wpforms.php\";s:11:\"new_version\";s:7:\"1.5.5.1\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wpforms-lite/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wpforms-lite.1.5.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wpforms-lite/assets/icon-256x256.png?rev=1371112\";s:2:\"1x\";s:65:\"https://ps.w.org/wpforms-lite/assets/icon-128x128.png?rev=1371112\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wpforms-lite/assets/banner-1544x500.png?rev=1371112\";s:2:\"1x\";s:67:\"https://ps.w.org/wpforms-lite/assets/banner-772x250.png?rev=1371112\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.3\";s:12:\"requires_php\";s:5:\"5.3.3\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"12.1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.png?rev=1834347\";s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=1946641\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=1946641\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=1843435\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=1843435\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=1843435\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=1843435\";}s:6:\"tested\";s:5:\"5.2.3\";s:12:\"requires_php\";s:5:\"5.2.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:27:{s:17:\"aceide/AceIDE.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:20:\"w.org/plugins/aceide\";s:4:\"slug\";s:6:\"aceide\";s:6:\"plugin\";s:17:\"aceide/AceIDE.php\";s:11:\"new_version\";s:5:\"2.6.2\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/aceide/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/aceide.2.6.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/aceide/assets/icon-256x256.png?rev=1616049\";s:2:\"1x\";s:59:\"https://ps.w.org/aceide/assets/icon-128x128.png?rev=1616049\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/aceide/assets/banner-772x250.jpg?rev=1465710\";}s:11:\"banners_rtl\";a:0:{}}s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}}s:73:\"advanced-responsive-video-embedder/advanced-responsive-video-embedder.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:48:\"w.org/plugins/advanced-responsive-video-embedder\";s:4:\"slug\";s:34:\"advanced-responsive-video-embedder\";s:6:\"plugin\";s:73:\"advanced-responsive-video-embedder/advanced-responsive-video-embedder.php\";s:11:\"new_version\";s:7:\"8.10.10\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/advanced-responsive-video-embedder/\";s:7:\"package\";s:85:\"https://downloads.wordpress.org/plugin/advanced-responsive-video-embedder.8.10.10.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:87:\"https://ps.w.org/advanced-responsive-video-embedder/assets/icon-128x128.png?rev=1950038\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:90:\"https://ps.w.org/advanced-responsive-video-embedder/assets/banner-1544x500.png?rev=1950038\";s:2:\"1x\";s:89:\"https://ps.w.org/advanced-responsive-video-embedder/assets/banner-772x250.png?rev=1950038\";}s:11:\"banners_rtl\";a:0:{}}s:27:\"auto-iframe/auto-iframe.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/auto-iframe\";s:4:\"slug\";s:11:\"auto-iframe\";s:6:\"plugin\";s:27:\"auto-iframe/auto-iframe.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/auto-iframe/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/auto-iframe.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/auto-iframe/assets/icon-256x256.png?rev=1121446\";s:2:\"1x\";s:64:\"https://ps.w.org/auto-iframe/assets/icon-128x128.png?rev=1121446\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/auto-iframe/assets/banner-772x250.jpg?rev=1121446\";}s:11:\"banners_rtl\";a:0:{}}s:23:\"chimpmate/chimpmate.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:23:\"w.org/plugins/chimpmate\";s:4:\"slug\";s:9:\"chimpmate\";s:6:\"plugin\";s:23:\"chimpmate/chimpmate.php\";s:11:\"new_version\";s:5:\"1.3.2\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/chimpmate/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/chimpmate.1.3.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/chimpmate/assets/icon-256x256.png?rev=1114461\";s:2:\"1x\";s:62:\"https://ps.w.org/chimpmate/assets/icon-128x128.png?rev=1114461\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/chimpmate/assets/banner-1544x500.png?rev=1114548\";s:2:\"1x\";s:64:\"https://ps.w.org/chimpmate/assets/banner-772x250.png?rev=1114548\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/classic-editor.1.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.1.4\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=984007\";s:2:\"1x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-128x128.png?rev=984007\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}}s:50:\"contact-form-7-mailchimp-extension/cf7-mch-ext.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:48:\"w.org/plugins/contact-form-7-mailchimp-extension\";s:4:\"slug\";s:34:\"contact-form-7-mailchimp-extension\";s:6:\"plugin\";s:50:\"contact-form-7-mailchimp-extension/cf7-mch-ext.php\";s:11:\"new_version\";s:6:\"0.4.58\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/contact-form-7-mailchimp-extension/\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/plugin/contact-form-7-mailchimp-extension.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:87:\"https://ps.w.org/contact-form-7-mailchimp-extension/assets/icon-256x256.png?rev=1072113\";s:2:\"1x\";s:87:\"https://ps.w.org/contact-form-7-mailchimp-extension/assets/icon-128x128.png?rev=1072113\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:90:\"https://ps.w.org/contact-form-7-mailchimp-extension/assets/banner-1544x500.png?rev=1072092\";s:2:\"1x\";s:89:\"https://ps.w.org/contact-form-7-mailchimp-extension/assets/banner-772x250.png?rev=1625715\";}s:11:\"banners_rtl\";a:0:{}}s:30:\"contact-form-7-skins/index.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:34:\"w.org/plugins/contact-form-7-skins\";s:4:\"slug\";s:20:\"contact-form-7-skins\";s:6:\"plugin\";s:30:\"contact-form-7-skins/index.php\";s:11:\"new_version\";s:5:\"2.1.3\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/contact-form-7-skins/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/contact-form-7-skins.2.1.3.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:73:\"https://ps.w.org/contact-form-7-skins/assets/icon-128x128.png?rev=1130890\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/contact-form-7-skins/assets/banner-772x250.png?rev=1895035\";}s:11:\"banners_rtl\";a:0:{}}s:26:\"easy-appointments/main.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:31:\"w.org/plugins/easy-appointments\";s:4:\"slug\";s:17:\"easy-appointments\";s:6:\"plugin\";s:26:\"easy-appointments/main.php\";s:11:\"new_version\";s:5:\"2.5.8\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/easy-appointments/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/easy-appointments.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/easy-appointments/assets/icon-256x256.png?rev=1472759\";s:2:\"1x\";s:70:\"https://ps.w.org/easy-appointments/assets/icon-128x128.png?rev=1472759\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/easy-appointments/assets/banner-772x250.jpg?rev=1266924\";}s:11:\"banners_rtl\";a:0:{}}s:35:\"cookie-law-info/cookie-law-info.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:29:\"w.org/plugins/cookie-law-info\";s:4:\"slug\";s:15:\"cookie-law-info\";s:6:\"plugin\";s:35:\"cookie-law-info/cookie-law-info.php\";s:11:\"new_version\";s:5:\"1.8.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/cookie-law-info/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/cookie-law-info.1.8.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/cookie-law-info/assets/icon-256x256.png?rev=1879809\";s:2:\"1x\";s:68:\"https://ps.w.org/cookie-law-info/assets/icon-256x256.png?rev=1879809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/cookie-law-info/assets/banner-1544x500.jpg?rev=2147520\";s:2:\"1x\";s:70:\"https://ps.w.org/cookie-law-info/assets/banner-772x250.jpg?rev=2147520\";}s:11:\"banners_rtl\";a:0:{}}s:41:\"flynsarmy-iframe-shortcode/flyniframe.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:40:\"w.org/plugins/flynsarmy-iframe-shortcode\";s:4:\"slug\";s:26:\"flynsarmy-iframe-shortcode\";s:6:\"plugin\";s:41:\"flynsarmy-iframe-shortcode/flyniframe.php\";s:11:\"new_version\";s:5:\"1.0.5\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/flynsarmy-iframe-shortcode/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/flynsarmy-iframe-shortcode.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:70:\"https://s.w.org/plugins/geopattern-icon/flynsarmy-iframe-shortcode.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:35:\"insert-headers-and-footers/ihaf.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:40:\"w.org/plugins/insert-headers-and-footers\";s:4:\"slug\";s:26:\"insert-headers-and-footers\";s:6:\"plugin\";s:35:\"insert-headers-and-footers/ihaf.php\";s:11:\"new_version\";s:5:\"1.4.4\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/insert-headers-and-footers/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.4.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/insert-headers-and-footers/assets/icon-256x256.png?rev=1610266\";s:2:\"1x\";s:79:\"https://ps.w.org/insert-headers-and-footers/assets/icon-128x128.png?rev=1610266\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:81:\"https://ps.w.org/insert-headers-and-footers/assets/banner-772x250.png?rev=1610266\";}s:11:\"banners_rtl\";a:0:{}}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:5:\"7.7.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.7.7.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:60:\"https://ps.w.org/jetpack/assets/icon-256x256.png?rev=1791404\";s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=1791404\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=1791404\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=1791404\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=1791404\";}s:11:\"banners_rtl\";a:0:{}}s:23:\"loginizer/loginizer.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:23:\"w.org/plugins/loginizer\";s:4:\"slug\";s:9:\"loginizer\";s:6:\"plugin\";s:23:\"loginizer/loginizer.php\";s:11:\"new_version\";s:5:\"1.4.2\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/loginizer/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/loginizer.1.4.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/loginizer/assets/icon-256x256.png?rev=1381093\";s:2:\"1x\";s:62:\"https://ps.w.org/loginizer/assets/icon-128x128.png?rev=1381093\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/loginizer/assets/banner-1544x500.jpg?rev=1517954\";s:2:\"1x\";s:64:\"https://ps.w.org/loginizer/assets/banner-772x250.jpg?rev=1517954\";}s:11:\"banners_rtl\";a:0:{}}s:51:\"mailchimp-for-woocommerce/mailchimp-woocommerce.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:39:\"w.org/plugins/mailchimp-for-woocommerce\";s:4:\"slug\";s:25:\"mailchimp-for-woocommerce\";s:6:\"plugin\";s:51:\"mailchimp-for-woocommerce/mailchimp-woocommerce.php\";s:11:\"new_version\";s:5:\"2.2.2\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/mailchimp-for-woocommerce/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/mailchimp-for-woocommerce.2.2.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/mailchimp-for-woocommerce/assets/icon-256x256.png?rev=1509501\";s:2:\"1x\";s:78:\"https://ps.w.org/mailchimp-for-woocommerce/assets/icon-256x256.png?rev=1509501\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/mailchimp-for-woocommerce/assets/banner-1544x500.png?rev=1950415\";s:2:\"1x\";s:80:\"https://ps.w.org/mailchimp-for-woocommerce/assets/banner-772x250.jpg?rev=1950415\";}s:11:\"banners_rtl\";a:0:{}}s:23:\"mailoptin/mailoptin.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:23:\"w.org/plugins/mailoptin\";s:4:\"slug\";s:9:\"mailoptin\";s:6:\"plugin\";s:23:\"mailoptin/mailoptin.php\";s:11:\"new_version\";s:8:\"1.2.19.1\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/mailoptin/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/mailoptin.1.2.19.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/mailoptin/assets/icon-256x256.png?rev=1699978\";s:2:\"1x\";s:62:\"https://ps.w.org/mailoptin/assets/icon-128x128.png?rev=1699978\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/mailoptin/assets/banner-1544x500.png?rev=1700145\";s:2:\"1x\";s:64:\"https://ps.w.org/mailoptin/assets/banner-772x250.png?rev=1700145\";}s:11:\"banners_rtl\";a:0:{}}s:27:\"optin-forms/optin-forms.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/optin-forms\";s:4:\"slug\";s:11:\"optin-forms\";s:6:\"plugin\";s:27:\"optin-forms/optin-forms.php\";s:11:\"new_version\";s:7:\"1.2.9.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/optin-forms/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/optin-forms.1.2.9.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/optin-forms/assets/icon-256x256.png?rev=998391\";s:2:\"1x\";s:64:\"https://ps.w.org/optin-forms/assets/icon-128x128.png?rev=1137053\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/optin-forms/assets/banner-772x250.png?rev=1427061\";}s:11:\"banners_rtl\";a:0:{}}s:49:\"sendgrid-email-delivery-simplified/wpsendgrid.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:48:\"w.org/plugins/sendgrid-email-delivery-simplified\";s:4:\"slug\";s:34:\"sendgrid-email-delivery-simplified\";s:6:\"plugin\";s:49:\"sendgrid-email-delivery-simplified/wpsendgrid.php\";s:11:\"new_version\";s:6:\"1.11.8\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/sendgrid-email-delivery-simplified/\";s:7:\"package\";s:84:\"https://downloads.wordpress.org/plugin/sendgrid-email-delivery-simplified.1.11.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:87:\"https://ps.w.org/sendgrid-email-delivery-simplified/assets/icon-256x256.png?rev=1445523\";s:2:\"1x\";s:87:\"https://ps.w.org/sendgrid-email-delivery-simplified/assets/icon-128x128.png?rev=1445523\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:89:\"https://ps.w.org/sendgrid-email-delivery-simplified/assets/banner-772x250.jpg?rev=1445523\";}s:11:\"banners_rtl\";a:0:{}}s:23:\"slidedeck/slidedeck.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:23:\"w.org/plugins/slidedeck\";s:4:\"slug\";s:9:\"slidedeck\";s:6:\"plugin\";s:23:\"slidedeck/slidedeck.php\";s:11:\"new_version\";s:5:\"5.3.4\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/slidedeck/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/slidedeck.5.3.4.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:62:\"https://ps.w.org/slidedeck/assets/icon-128x128.png?rev=1732182\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:64:\"https://ps.w.org/slidedeck/assets/banner-772x250.jpg?rev=1809252\";}s:11:\"banners_rtl\";a:0:{}}s:30:\"smart-youtube/smartyoutube.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/smart-youtube\";s:4:\"slug\";s:13:\"smart-youtube\";s:6:\"plugin\";s:30:\"smart-youtube/smartyoutube.php\";s:11:\"new_version\";s:3:\"4.3\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/smart-youtube/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/smart-youtube.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/smart-youtube/assets/icon-128x128.png?rev=1050780\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/smart-youtube/assets/banner-772x250.png?rev=1050780\";}s:11:\"banners_rtl\";a:0:{}}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"3.7.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2075035\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2075035\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2075035\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2075035\";}s:11:\"banners_rtl\";a:0:{}}s:39:\"woocommerce-admin/woocommerce-admin.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:31:\"w.org/plugins/woocommerce-admin\";s:4:\"slug\";s:17:\"woocommerce-admin\";s:6:\"plugin\";s:39:\"woocommerce-admin/woocommerce-admin.php\";s:11:\"new_version\";s:6:\"0.18.0\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/woocommerce-admin/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce-admin.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/woocommerce-admin/assets/icon-256x256.jpg?rev=2057866\";s:2:\"1x\";s:70:\"https://ps.w.org/woocommerce-admin/assets/icon-128x128.jpg?rev=2057866\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/woocommerce-admin/assets/banner-1544x500.jpg?rev=2057866\";s:2:\"1x\";s:72:\"https://ps.w.org/woocommerce-admin/assets/banner-772x250.jpg?rev=2057866\";}s:11:\"banners_rtl\";a:0:{}}s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:57:\"w.org/plugins/woocommerce-gateway-paypal-express-checkout\";s:4:\"slug\";s:43:\"woocommerce-gateway-paypal-express-checkout\";s:6:\"plugin\";s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";s:11:\"new_version\";s:6:\"1.6.17\";s:3:\"url\";s:74:\"https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/\";s:7:\"package\";s:93:\"https://downloads.wordpress.org/plugin/woocommerce-gateway-paypal-express-checkout.1.6.17.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:96:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/icon-256x256.png?rev=1900204\";s:2:\"1x\";s:96:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/icon-128x128.png?rev=1900204\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:99:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/banner-1544x500.png?rev=1948167\";s:2:\"1x\";s:98:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/banner-772x250.png?rev=1948167\";}s:11:\"banners_rtl\";a:0:{}}s:45:\"woocommerce-services/woocommerce-services.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:34:\"w.org/plugins/woocommerce-services\";s:4:\"slug\";s:20:\"woocommerce-services\";s:6:\"plugin\";s:45:\"woocommerce-services/woocommerce-services.php\";s:11:\"new_version\";s:6:\"1.21.1\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/woocommerce-services/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/woocommerce-services.1.21.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/woocommerce-services/assets/icon-256x256.png?rev=1910075\";s:2:\"1x\";s:73:\"https://ps.w.org/woocommerce-services/assets/icon-128x128.png?rev=1910075\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/woocommerce-services/assets/banner-1544x500.png?rev=1962920\";s:2:\"1x\";s:75:\"https://ps.w.org/woocommerce-services/assets/banner-772x250.png?rev=1962920\";}s:11:\"banners_rtl\";a:0:{}}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:26:\"w.org/plugins/wp-mail-smtp\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"new_version\";s:5:\"1.6.2\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-smtp/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-mail-smtp.1.6.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.png?rev=2120094\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-smtp/assets/banner-772x250.png?rev=2120094\";}s:11:\"banners_rtl\";a:0:{}}s:25:\"zopim-live-chat/zopim.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:29:\"w.org/plugins/zopim-live-chat\";s:4:\"slug\";s:15:\"zopim-live-chat\";s:6:\"plugin\";s:25:\"zopim-live-chat/zopim.php\";s:11:\"new_version\";s:6:\"1.4.15\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/zopim-live-chat/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/zopim-live-chat.1.4.15.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:68:\"https://ps.w.org/zopim-live-chat/assets/icon-256x256.png?rev=1522846\";s:2:\"1x\";s:60:\"https://ps.w.org/zopim-live-chat/assets/icon.svg?rev=1522846\";s:3:\"svg\";s:60:\"https://ps.w.org/zopim-live-chat/assets/icon.svg?rev=1522846\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/zopim-live-chat/assets/banner-1544x500.png?rev=1545638\";s:2:\"1x\";s:70:\"https://ps.w.org/zopim-live-chat/assets/banner-772x250.png?rev=1545638\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(293628,'_transient_timeout_jetpack_file_data_7.7.1','1570882964','no'),(293629,'_transient_jetpack_file_data_7.7.1','a:62:{s:32:\"212a162108f1dc20cc6c768d5b47d4f2\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d0c5aa8400d364117d5fc89859781eca\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d3576702faeb399eb47ad20f586c3804\";a:14:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:75:\"Display images and galleries in a gorgeous, full-screen browsing experience\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"55409a5f8388b8d33e2350ef80de3ea3\";a:14:{s:4:\"name\";s:13:\"Comment Likes\";s:11:\"description\";s:64:\"Increase visitor engagement by adding a Like button to comments.\";s:4:\"sort\";s:2:\"39\";s:20:\"recommendation_order\";s:2:\"17\";s:10:\"introduced\";s:3:\"5.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:37:\"like widget, like button, like, likes\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"e914e6d31cb61f5a9ef86e1b9573430e\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:81:\"Let visitors use a WordPress.com, Twitter, Facebook, or Google account to comment\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"f1b8c61705fb18eb8c8584c9f9cdffd9\";a:14:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:81:\"Add a customizable contact form to any post or page using the Jetpack Form Block.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:214:\"contact, form, grunion, feedback, submission, contact form, email, feedback, contact form plugin, custom form, custom form plugin, form builder, forms, form maker, survey, contact by jetpack, contact us, forms free\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4fca6eb23a793155d69fdb119a094926\";a:14:{s:4:\"name\";s:9:\"Copy Post\";s:11:\"description\";s:77:\"Enable the option to copy entire posts and pages, including tags and settings\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"7.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:15:\"copy, duplicate\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cfdac01e3c3c529f93a8f49edef1f5db\";a:14:{s:4:\"name\";s:20:\"Custom content types\";s:11:\"description\";s:74:\"Display different types of content on your site with custom content types.\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4b9137ecf507290743735fb1f94535df\";a:14:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:88:\"Adds options for CSS preprocessor use, disabling the theme\'s CSS, or custom image width.\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"b28c140d857cf838a23dd055eb44fa47\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"95d75b38d76d2ee1b5b537026eadb8ff\";a:14:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"f1bb571a95c5de1e6adaf9db8567c039\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"822f9ef1281dace3fb7cc420c77d24e0\";a:14:{s:4:\"name\";s:16:\"Google Analytics\";s:11:\"description\";s:56:\"Set up Google Analytics without touching a line of code.\";s:4:\"sort\";s:2:\"37\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"4.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:37:\"webmaster, google, analytics, console\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"84131cc3f213c209a84ea74ad5f80be0\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"c167275f926ef0eefaec9a679bd88d34\";a:14:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"318a54c3d6c0c90d5c5d70a8f1170698\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"58cbd4585a74829a1c88aa9c295f3993\";a:14:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:53:\"Automatically load new content when a visitor scrolls\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d4a35eabc948caefad71a0d3303b95c8\";a:14:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7b0c670bc3f8209dc83abb8610e23a89\";a:14:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:74:\"Use the LaTeX markup language to write mathematical equations and formulas\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"b00e4e6c109ce6f77b5c83fbaaaead4c\";a:14:{s:4:\"name\";s:11:\"Lazy Images\";s:11:\"description\";s:137:\"Speed up your site and create a smoother viewing experience by loading images as visitors scroll down the screen, instead of all at once.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:5:\"5.6.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:23:\"Appearance, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:150:\"mobile, theme, fast images, fast image, image, lazy, lazy load, lazyload, images, lazy images, thumbnail, image lazy load, lazy loading, load, loading\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"8e46c72906c928eca634ac2c8b1bc84f\";a:14:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"1b1d9883a5ebead0f8b12ceb1a3aff7f\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2df2264a07aff77e0556121e33349dce\";a:14:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:50:\"Write posts or pages in plain-text Markdown syntax\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0337eacae47d30c946cb9fc4e5ece649\";a:14:{s:4:\"name\";s:21:\"WordPress.com Toolbar\";s:11:\"description\";s:91:\"Replaces the admin bar with a useful toolbar to quickly manage your site via WordPress.com.\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"16\";s:10:\"introduced\";s:3:\"4.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"General\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:19:\"adminbar, masterbar\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cb5d81445061b89d19cb9c7754697a39\";a:14:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:31:\"Enable the Jetpack Mobile theme\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"ea0fbbd64080c81a90a784924603588c\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5c53fdb3633ba3232f60180116900273\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"40b97d9ce396339d3e8e46b833a045b5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0739df64747f2d02c140f23ce6c19cd8\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"c54bb0a65b39f1316da8632197a88a4e\";a:14:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:118:\"Jetpack’s downtime monitoring will continuously watch your site, and alert you the moment that downtime is detected.\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:123:\"monitor, uptime, downtime, monitoring, maintenance, maintenance mode, offline, site is down, site down, down, repair, error\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cc013f4c5480c7bdc1e7edb2f410bf3c\";a:14:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"9522c4148373f4903c321099a2891839\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"b3b34928b1e549bb52f866accc0450c5\";a:14:{s:4:\"name\";s:9:\"Asset CDN\";s:11:\"description\";s:154:\"Jetpack’s Site Accelerator loads your site faster by optimizing your images and serving your images and static files from our global network of servers.\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"6.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:23:\"Recommended, Appearance\";s:25:\"additional_search_queries\";s:160:\"site accelerator, accelerate, static, assets, javascript, css, files, performance, cdn, bandwidth, content delivery network, pagespeed, combine js, optimize css\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"714284944f56d6936a40f3309900bc8e\";a:14:{s:4:\"name\";s:9:\"Image CDN\";s:11:\"description\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:23:\"Recommended, Appearance\";s:25:\"additional_search_queries\";s:171:\"photon, photo cdn, image cdn, speed, compression, resize, responsive images, responsive, content distribution network, optimize, page speed, image optimize, photon jetpack\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"348754bc914ee02c72d9af445627784c\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"041704e207c4c59eea93e0499c908bff\";a:14:{s:4:\"name\";s:13:\"Post by email\";s:11:\"description\";s:33:\"Publish posts by sending an email\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"26e6cb3e08a6cfd0811c17e7c633c72c\";a:14:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:151:\"Enabling brute force protection will prevent bots and hackers from attempting to log in to your website with common username and password combinations.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:173:\"security, jetpack protect, secure, protection, botnet, brute force, protect, login, bot, password, passwords, strong passwords, strong password, wp-login.php,  protect admin\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"915a504082f797395713fd01e0e2e713\";a:14:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:128:\"Publicize makes it easy to share your site’s posts on several social media networks automatically when you publish a new post.\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:220:\"facebook, jetpack publicize, twitter, tumblr, linkedin, social, tweet, connections, sharing, social media, automated, automated sharing, auto publish, auto tweet and like, auto tweet, facebook auto post, facebook posting\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"a7b21cc562ee9ffa357bba19701fe45b\";a:14:{s:4:\"name\";s:20:\"Progressive Web Apps\";s:11:\"description\";s:85:\"Speed up and improve the reliability of your site using the latest in web technology.\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"18\";s:10:\"introduced\";s:5:\"5.6.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:26:\"manifest, pwa, progressive\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"607adfb844c0ca0f7c679ed6d9cfa278\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"9243c1a718566213f4eaf3b44cf14b07\";a:14:{s:4:\"name\";s:13:\"Related posts\";s:11:\"description\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:360:\"related, jetpack related posts, related posts for wordpress, related posts, popular posts, popular, related content, related post, contextual, context, contextual related posts, related articles, similar posts, easy related posts, related page, simple related posts, free related posts, related thumbnails, similar, engagement, yet another related posts plugin\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"583e4cda5596ee1b28a19cde33f438be\";a:14:{s:4:\"name\";s:6:\"Search\";s:11:\"description\";s:87:\"Enhanced search, powered by Elasticsearch, a powerful replacement for WordPress search.\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:6:\"Search\";s:25:\"additional_search_queries\";s:110:\"search, elastic, elastic search, elasticsearch, fast search, search results, search performance, google search\";s:12:\"plan_classes\";s:8:\"business\";}s:32:\"15346c1f7f2a5f29d34378774ecfa830\";a:14:{s:4:\"name\";s:9:\"SEO Tools\";s:11:\"description\";s:50:\"Better results on search engines and social media.\";s:4:\"sort\";s:2:\"35\";s:20:\"recommendation_order\";s:2:\"15\";s:10:\"introduced\";s:3:\"4.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:81:\"search engine optimization, social preview, meta description, custom title format\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"72a0ff4cfae86074a7cdd2dcd432ef11\";a:14:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:120:\"Add Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:229:\"share, sharing, sharedaddy, social buttons, buttons, share facebook, share twitter, social media sharing, social media share, social share, icons, email, facebook, twitter, linkedin, pinterest, pocket, social widget, social media\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"bb8c6c190aaec212a7ab6e940165af4d\";a:14:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:177:\"Shortcodes are WordPress-specific markup that let you add media from popular sites. This feature is no longer necessary as the editor now handles media embeds rather gracefully.\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:236:\"shortcodes, shortcode, embeds, media, bandcamp, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"1abd31fe07ae4fb0f8bb57dc24592219\";a:14:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:82:\"Generates shorter links so you can have more space to write on social media sites.\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"61981be774a79986799847ba38b0d463\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cae5f097f8d658e0b0ae50733d7c6476\";a:14:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:11:\"Recommended\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4cfce310c2d451bb714d19be6459a2fe\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"e9b8318133b2f95e7906cedb3557a87d\";a:14:{s:4:\"name\";s:14:\"Secure Sign On\";s:11:\"description\";s:63:\"Allow users to log in to this site using WordPress.com accounts\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"17e66a12031ccf11d8d45ceee0955f05\";a:14:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable traffic stats and insights.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"346cf9756e7c1252acecb9a8ca81a21c\";a:14:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:58:\"Let visitors subscribe to new posts and comments via email\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4f84d218792a6efa06ed6feae09c4dd5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"ca086af79d0d9dccacc934ccff5b4fd7\";a:14:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"e33f82a249aa61ec8b19bfb7117d6051\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"43c24feb7c541c376af93e0251c1a261\";a:14:{s:4:\"name\";s:20:\"Backups and Scanning\";s:11:\"description\";s:100:\"Protect your site with daily or real-time backups and automated virus scanning and threat detection.\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:16:\"Security, Health\";s:25:\"additional_search_queries\";s:386:\"backup, cloud backup, database backup, restore, wordpress backup, backup plugin, wordpress backup plugin, back up, backup wordpress, backwpup, vaultpress, backups, off-site backups, offsite backup, offsite, off-site, antivirus, malware scanner, security, virus, viruses, prevent viruses, scan, anti-virus, antimalware, protection, safe browsing, malware, wp security, wordpress security\";s:12:\"plan_classes\";s:27:\"personal, business, premium\";}s:32:\"b9396d8038fc29140b499098d2294d79\";a:14:{s:4:\"name\";s:17:\"Site verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"afe184082e106c1bdfe1ee844f98aef3\";a:14:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:101:\"Save on hosting storage and bandwidth costs by streaming fast, ad-free video from our global network.\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:118:\"video, videos, videopress, video gallery, video player, videoplayer, mobile video, vimeo, youtube, html5 video, stream\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"44637d43460370af9a1b31ce3ccec0cd\";a:14:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on your site.\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"694c105a5c3b659acfcddad220048d08\";a:14:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:49:\"Provides additional widgets for use on your site.\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"ae15da72c5802d72f320640bad669561\";a:14:{s:4:\"name\";s:3:\"Ads\";s:11:\"description\";s:60:\"Earn income by allowing Jetpack to display high quality ads.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"4.5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Traffic, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"advertising, ad codes, ads\";s:12:\"plan_classes\";s:17:\"premium, business\";}s:32:\"54c9dfaf31902718726127746701d2be\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(293591,'recovery_keys','a:0:{}','yes'),(303890,'jetpack_nonce_1569001980_iEeNmA2mkg','1569001980','no'),(307340,'_transient_timeout_jetpack_https_test','1569262754','no'),(307341,'_transient_jetpack_https_test','1','no'),(303885,'_transient_timeout_jetpack_https_test_message','1569262754','no'),(303886,'_transient_jetpack_https_test_message','','no'),(305589,'_transient_timeout_jetpack_is_single_user','1569207972','no'),(305590,'_transient_jetpack_is_single_user','2','no'),(308251,'_transient_timeout_wc_admin_unsnooze_admin_notes_checked','1569183571','no'),(308252,'_transient_wc_admin_unsnooze_admin_notes_checked','yes','no'),(307344,'_site_transient_timeout_browser_c83a53d6cd1d4a8f74a2a6d429db3db6','1569781154','no'),(307345,'_site_transient_browser_c83a53d6cd1d4a8f74a2a6d429db3db6','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"66.0\";s:8:\"platform\";s:5:\"Linux\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(305557,'_transient_timeout_wc_related_3026','1569249085','no'),(305558,'_transient_wc_related_3026','a:1:{s:52:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=3026\";a:9:{i:0;s:4:\"1917\";i:1;s:4:\"2287\";i:2;s:4:\"1548\";i:3;s:4:\"2454\";i:4;s:4:\"2564\";i:5;s:4:\"2628\";i:6;s:4:\"2732\";i:7;s:4:\"2972\";i:8;s:4:\"2701\";}}','no'),(305724,'_transient_wpforms_dash_widget_lite_entries_by_form','a:1:{i:35;a:3:{s:7:\"form_id\";i:35;s:5:\"count\";i:0;s:5:\"title\";s:10:\"Contact Us\";}}','no'),(305725,'_transient_timeout_wc_low_stock_count','1571760248','no'),(305726,'_transient_wc_low_stock_count','0','no'),(305727,'_transient_timeout_wc_outofstock_count','1571760248','no'),(305728,'_transient_wc_outofstock_count','0','no'),(305363,'_transient_timeout_wc_related_2836','1569263163','no'),(305364,'_transient_wc_related_2836','a:1:{s:52:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=2836\";a:0:{}}','no'),(305376,'_transient_timeout_wc_related_2454','1569232046','no'),(305377,'_transient_wc_related_2454','a:1:{s:52:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=2454\";a:9:{i:0;s:4:\"1917\";i:1;s:4:\"2287\";i:2;s:4:\"1548\";i:3;s:4:\"2564\";i:4;s:4:\"2628\";i:5;s:4:\"2732\";i:6;s:4:\"2972\";i:7;s:4:\"3026\";i:8;s:4:\"2701\";}}','no'),(305389,'_transient_timeout_wc_related_1917','1569232509','no'),(305390,'_transient_wc_related_1917','a:1:{s:52:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=1917\";a:9:{i:0;s:4:\"2287\";i:1;s:4:\"1548\";i:2;s:4:\"2454\";i:3;s:4:\"2564\";i:4;s:4:\"2628\";i:5;s:4:\"2732\";i:6;s:4:\"2972\";i:7;s:4:\"3026\";i:8;s:4:\"2701\";}}','no'),(308185,'_transient_timeout_jetpack_psh_status','1569180762','no'),(308186,'_transient_jetpack_psh_status','1','no'),(307018,'_transient_timeout_jpp_li_f2699eb26dcb88d52fd19ce66299d4a1','1569174312','no'),(307019,'_transient_jpp_li_f2699eb26dcb88d52fd19ce66299d4a1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (46.229.168.146)\";s:17:\"seconds_remaining\";i:1626;s:16:\"blocked_attempts\";s:5:\"19213\";s:6:\"expire\";i:1569174312;}','no'),(306931,'_transient_timeout_jpp_li_14039ca19cfd9b7f8bf96609c809ab6a','1569175939','no'),(306932,'_transient_jpp_li_14039ca19cfd9b7f8bf96609c809ab6a','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:51:\"No current blocks on this IP address (49.44.67.235)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"19213\";s:6:\"expire\";i:1569175939;}','no'),(305731,'_transient_timeout_wc_report_sales_by_date','1569266519','no'),(305732,'_transient_wc_report_sales_by_date','a:8:{s:32:\"382f2681f702fd15781cdd83559790f5\";a:5:{i:0;O:8:\"stdClass\":2:{s:5:\"count\";s:1:\"1\";s:9:\"post_date\";s:19:\"2019-09-08 10:02:00\";}i:1;O:8:\"stdClass\":2:{s:5:\"count\";s:1:\"1\";s:9:\"post_date\";s:19:\"2019-09-12 22:53:19\";}i:2;O:8:\"stdClass\":2:{s:5:\"count\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-09-13 14:09:13\";}i:3;O:8:\"stdClass\":2:{s:5:\"count\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-09-14 13:30:09\";}i:4;O:8:\"stdClass\":2:{s:5:\"count\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-09-18 07:50:56\";}}s:32:\"05d6e11d6c1b64fc028555c0b66d3e8a\";a:0:{}s:32:\"4f66935b190e7f5ac1ced401db82e9e4\";a:5:{i:0;O:8:\"stdClass\":2:{s:16:\"order_item_count\";s:1:\"1\";s:9:\"post_date\";s:19:\"2019-09-08 10:02:00\";}i:1;O:8:\"stdClass\":2:{s:16:\"order_item_count\";s:1:\"1\";s:9:\"post_date\";s:19:\"2019-09-12 22:53:19\";}i:2;O:8:\"stdClass\":2:{s:16:\"order_item_count\";s:1:\"3\";s:9:\"post_date\";s:19:\"2019-09-13 14:09:13\";}i:3;O:8:\"stdClass\":2:{s:16:\"order_item_count\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-09-14 13:30:09\";}i:4;O:8:\"stdClass\":2:{s:16:\"order_item_count\";s:1:\"2\";s:9:\"post_date\";s:19:\"2019-09-18 07:50:56\";}}s:32:\"8cb28b2fa4434b5ee015d361156688b8\";N;s:32:\"65e6b064dd8d645f39f2f62c89b5df3f\";a:5:{i:0;O:8:\"stdClass\":5:{s:11:\"total_sales\";s:2:\"15\";s:14:\"total_shipping\";s:1:\"0\";s:9:\"total_tax\";s:1:\"0\";s:18:\"total_shipping_tax\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-09-08 10:02:00\";}i:1;O:8:\"stdClass\":5:{s:11:\"total_sales\";s:2:\"15\";s:14:\"total_shipping\";s:1:\"0\";s:9:\"total_tax\";s:1:\"0\";s:18:\"total_shipping_tax\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-09-12 22:53:19\";}i:2;O:8:\"stdClass\":5:{s:11:\"total_sales\";s:2:\"45\";s:14:\"total_shipping\";s:1:\"0\";s:9:\"total_tax\";s:1:\"0\";s:18:\"total_shipping_tax\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-09-13 14:09:13\";}i:3;O:8:\"stdClass\":5:{s:11:\"total_sales\";s:2:\"30\";s:14:\"total_shipping\";s:1:\"0\";s:9:\"total_tax\";s:1:\"0\";s:18:\"total_shipping_tax\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-09-14 13:30:09\";}i:4;O:8:\"stdClass\":5:{s:11:\"total_sales\";s:2:\"30\";s:14:\"total_shipping\";s:1:\"0\";s:9:\"total_tax\";s:1:\"0\";s:18:\"total_shipping_tax\";s:1:\"0\";s:9:\"post_date\";s:19:\"2019-09-18 06:34:58\";}}s:32:\"103a09a2980186d07b57488ff635dbca\";a:0:{}s:32:\"f12d731e63498bf3d8eb44149a8a8d36\";a:0:{}s:32:\"0271dc40171578c5f64e8adf90ab28d1\";a:0:{}}','no'),(304380,'_transient_timeout_wc_related_1548','1569138348','no'),(304381,'_transient_wc_related_1548','a:1:{s:52:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=1548\";a:9:{i:0;s:4:\"1917\";i:1;s:4:\"2287\";i:2;s:4:\"2454\";i:3;s:4:\"2564\";i:4;s:4:\"2628\";i:5;s:4:\"2732\";i:6;s:4:\"2972\";i:7;s:4:\"3026\";i:8;s:4:\"2701\";}}','no'),(304824,'jetpack_nonce_1569088697_k8RLUgWsrW','1569088698','no'),(304217,'_transient_timeout_wc_related_2972','1569120268','no'),(304218,'_transient_wc_related_2972','a:1:{s:52:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=2972\";a:9:{i:0;s:4:\"1917\";i:1;s:4:\"2287\";i:2;s:4:\"1548\";i:3;s:4:\"2454\";i:4;s:4:\"2564\";i:5;s:4:\"2628\";i:6;s:4:\"2732\";i:7;s:4:\"3026\";i:8;s:4:\"2701\";}}','no'),(300810,'jetpack_nonce_1568742498_R7somTAAMg','1568742498','no'),(200941,'wpseo_gsc_last_fetch','1557948423','no'),(293660,'mailchimp-woocommerce_cart_table_add_index_update','1','yes'),(237780,'cf7_mch_3047','a:25:{s:3:\"api\";s:37:\"01c68d77fa6b047772b1bda2f7d64267-us17\";s:4:\"list\";s:10:\"341d3f5080\";s:5:\"email\";s:12:\"[cf7s-email]\";s:4:\"name\";s:11:\"[cf7s-name]\";s:6:\"accept\";s:0:\"\";s:12:\"CustomValue1\";s:0:\"\";s:10:\"CustomKey1\";s:0:\"\";s:12:\"CustomValue2\";s:0:\"\";s:10:\"CustomKey2\";s:0:\"\";s:12:\"CustomValue3\";s:0:\"\";s:10:\"CustomKey3\";s:0:\"\";s:12:\"CustomValue4\";s:0:\"\";s:10:\"CustomKey4\";s:0:\"\";s:12:\"CustomValue5\";s:0:\"\";s:10:\"CustomKey5\";s:0:\"\";s:12:\"CustomValue6\";s:0:\"\";s:10:\"CustomKey6\";s:0:\"\";s:12:\"CustomValue7\";s:0:\"\";s:10:\"CustomKey7\";s:0:\"\";s:12:\"CustomValue8\";s:0:\"\";s:10:\"CustomKey8\";s:0:\"\";s:12:\"CustomValue9\";s:0:\"\";s:10:\"CustomKey9\";s:0:\"\";s:13:\"CustomValue10\";s:0:\"\";s:11:\"CustomKey10\";s:0:\"\";}','yes'),(207177,'_transient_timeout_wpseo_link_table_inaccessible','1590039830','no'),(207178,'_transient_wpseo_link_table_inaccessible','0','no'),(207179,'_transient_timeout_wpseo_meta_table_inaccessible','1590039830','no'),(207180,'_transient_wpseo_meta_table_inaccessible','0','no'),(307731,'_site_transient_timeout_browser_43fbb95c9bbbf2dcd00331855caa9051','1569782602','no'),(307732,'_site_transient_browser_43fbb95c9bbbf2dcd00331855caa9051','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"68.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(308165,'_transient_timeout_jpp_li_53ece5ba945a98a65e8f2d25358c49aa','1569182868','no'),(308166,'_transient_jpp_li_53ece5ba945a98a65e8f2d25358c49aa','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:51:\"No current blocks on this IP address (14.98.32.126)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:5:\"19214\";s:6:\"expire\";i:1569182868;}','no'),(308170,'_transient_timeout_jpp_li_37545db90ab912cd7132593d896d346a','1569182698','no'),(308171,'_transient_jpp_li_37545db90ab912cd7132593d896d346a','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (167.99.74.119)\";s:17:\"seconds_remaining\";i:3422;s:16:\"blocked_attempts\";s:5:\"19214\";s:6:\"expire\";i:1569182698;}','no'),(308335,'woocommerce_db_version','3.7.0','yes'),(308269,'_transient_timeout_jetpack_sync_callables_await','1569180145','no'),(308270,'_transient_jetpack_sync_callables_await','1569180085.9189','no'),(307446,'_site_transient_timeout_php_check_a5907c2ea4d6fbd7e531b3aa7734f0e4','1569781868','no'),(305166,'_transient_timeout_jetpack_plugin_api_action_links_refresh','1569206258','no'),(305167,'_transient_jetpack_plugin_api_action_links_refresh','1569119858','no'),(302447,'_transient_timeout_external_ip_address_35.240.189.61','1569471333','no'),(302448,'_transient_external_ip_address_35.240.189.61','78.129.239.42','no'),(304945,'_transient_timeout_wc_related_2701','1569184700','no'),(304946,'_transient_wc_related_2701','a:1:{s:52:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=2701\";a:9:{i:0;s:4:\"1917\";i:1;s:4:\"2287\";i:2;s:4:\"1548\";i:3;s:4:\"2454\";i:4;s:4:\"2564\";i:5;s:4:\"2628\";i:6;s:4:\"2732\";i:7;s:4:\"2972\";i:8;s:4:\"3026\";}}','no'),(308017,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:0;s:3:\"all\";i:0;s:9:\"moderated\";i:0;s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(308018,'_transient_as_comment_count','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:0;s:3:\"all\";i:0;s:9:\"moderated\";i:0;s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(305723,'_transient_timeout_wpforms_dash_widget_lite_entries_by_form','1569196802','no'),(305714,'_transient_timeout_jpp_headers_updated_recently','1569254646','no'),(305715,'_transient_jpp_headers_updated_recently','1','no'),(305716,'_site_transient_timeout_browser_fb5aee71803d8bd8a4d749f5f6fdab81','1569773047','no'),(305717,'_site_transient_browser_fb5aee71803d8bd8a4d749f5f6fdab81','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"69.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(305718,'_site_transient_timeout_php_check_db560599daec4dc914fe3cee88686df3','1569773048','no'),(305719,'_site_transient_php_check_db560599daec4dc914fe3cee88686df3','a:5:{s:19:\"recommended_version\";s:3:\"7.3\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(305708,'_transient_timeout_jetpack_a8c_data','1569254646','no'),(305709,'_transient_jetpack_a8c_data','a:4:{s:4:\"a12s\";i:955;s:9:\"countries\";i:72;s:9:\"languages\";i:91;s:16:\"featured_plugins\";a:4:{i:0;s:11:\"woocommerce\";i:1;s:14:\"wp-super-cache\";i:2;s:14:\"wp-job-manager\";i:3;s:15:\"co-authors-plus\";}}','no'),(305550,'_site_transient_timeout_theme_roots','1569163837','no'),(305551,'_site_transient_theme_roots','a:5:{s:10:\"responsive\";s:7:\"/themes\";s:13:\"responsivepro\";s:7:\"/themes\";s:10:\"storefront\";s:7:\"/themes\";s:13:\"swiftraytheme\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";}','no'),(305156,'_transient_timeout__woocommerce_helper_updates','1569162586','no'),(305157,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1569119386;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(297425,'jetpack_nonce_1568483843_irotmXtZRm','1568483843','no'),(296180,'jetpack_nonce_1568397386_HCOhtFBpdb','1568397386','no'),(302060,'jetpack_nonce_1568829166_4VET2gcyQU','1568829166','no'),(299679,'jetpack_nonce_1568656387_DXcGbzu2ll','1568656387','no'),(295572,'_transient_timeout_wc_term_counts','1570975003','no'),(295573,'_transient_wc_term_counts','a:7:{i:42;s:1:\"1\";i:48;s:2:\"10\";i:43;s:1:\"0\";i:44;s:1:\"0\";i:45;s:1:\"0\";i:46;s:1:\"0\";i:49;s:1:\"0\";}','no'),(295801,'_transient_timeout_wc_shipping_method_count_legacy','1570975688','no'),(295802,'_transient_wc_shipping_method_count_legacy','a:2:{s:7:\"version\";s:10:\"1535910701\";s:5:\"value\";i:0;}','no');
/*!40000 ALTER TABLE `wpqj_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_postmeta`
--

DROP TABLE IF EXISTS `wpqj_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=11914 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_postmeta`
--

LOCK TABLES `wpqj_postmeta` WRITE;
/*!40000 ALTER TABLE `wpqj_postmeta` DISABLE KEYS */;
INSERT INTO `wpqj_postmeta` VALUES (328,103,'_wp_attached_file','2017/10/mmhead.jpg'),(492,366,'_yoast_wpseo_content_score','90'),(491,366,'_wp_page_template','template-fullwidth.php'),(490,366,'_edit_last','1'),(489,366,'_edit_lock','1535905736:1'),(497,373,'plugins','[]'),(498,373,'theme',''),(414,200,'_yoast_wpseo_linkdex','93'),(499,373,'version',''),(496,373,'location','[\"everywhere\"]'),(495,373,'dismissable','1'),(494,373,'type','success'),(493,373,'notification_id','710'),(481,347,'_yoast_wpseo_content_score','60'),(478,347,'_edit_lock','1549525967:1'),(479,347,'_edit_last','1'),(480,347,'_wp_page_template','content-sidebar-page.php'),(477,326,'_wp_attachment_image_alt','Secrets Of Self Hypnosis'),(476,326,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:25:\"2018/01/hypnosis-edit.jpg\";s:5:\"sizes\";a:8:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"hypnosis-edit-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"hypnosis-edit-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"hypnosis-edit-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"hypnosis-edit-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"hypnosis-edit-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"hypnosis-edit-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"hypnosis-edit-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:25:\"hypnosis-edit-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(475,326,'_wp_attached_file','2018/01/hypnosis-edit.jpg'),(474,322,'_yoast_wpseo_content_score','90'),(473,322,'_wp_page_template','content-sidebar-page.php'),(472,322,'_edit_last','1'),(471,322,'_edit_lock','1568386780:1'),(2592,1328,'_yoast_wpseo_linkdex','99'),(2593,1328,'_yoast_wpseo_content_score','60'),(2594,1338,'_wp_attached_file','2018/09/newcastle-hypnotherapy-group-talks.jpg'),(2595,1338,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:46:\"2018/09/newcastle-hypnotherapy-group-talks.jpg\";s:5:\"sizes\";a:8:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:46:\"newcastle-hypnotherapy-group-talks-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"newcastle-hypnotherapy-group-talks-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"newcastle-hypnotherapy-group-talks-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"newcastle-hypnotherapy-group-talks-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"newcastle-hypnotherapy-group-talks-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"newcastle-hypnotherapy-group-talks-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"newcastle-hypnotherapy-group-talks-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:46:\"newcastle-hypnotherapy-group-talks-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2607,1317,'_yoast_wpseo_content_score','90'),(2608,1371,'_edit_lock','1540911465:1'),(3277,1458,'_menu_item_target',''),(3275,1458,'_menu_item_object_id','1451'),(3276,1458,'_menu_item_object','page'),(3274,1458,'_menu_item_menu_item_parent','0'),(3273,1458,'_menu_item_type','post_type'),(6378,2168,'_edit_last','1'),(6379,2169,'_wp_attached_file','2018/12/01fear.jpg'),(5428,1917,'_yoast_wpseo_primary_product_cat',''),(2597,1328,'_thumbnail_id','1338'),(2596,1338,'_wp_attachment_image_alt','newcastle hypnotherapy group talks'),(280,16,'_wp_attached_file','2017/09/Medi-1-2.jpg'),(281,16,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:581;s:6:\"height\";i:326;s:4:\"file\";s:20:\"2017/09/Medi-1-2.jpg\";s:5:\"sizes\";a:10:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"Medi-1-2-400x224.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"Medi-1-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"Medi-1-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Medi-1-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Medi-1-2-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:19:\"Medi-1-2-100x56.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:56;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:19:\"Medi-1-2-150x84.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:20:\"Medi-1-2-200x112.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:20:\"Medi-1-2-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:20:\"Medi-1-2-450x252.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:7:\"unknown\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(282,34,'notification_id','495'),(283,34,'type','success'),(284,34,'dismissable','1'),(285,34,'location','[\"everywhere\"]'),(286,34,'plugins','[]'),(287,34,'theme',''),(288,34,'version',''),(289,34,'viewed','1'),(290,43,'_edit_last','1'),(291,43,'_edit_lock','1546789951:1'),(292,43,'_wp_page_template','content-sidebar-page.php'),(293,43,'_responsive_layout','default'),(339,43,'_yoast_wpseo_content_score','30'),(5331,1899,'_customer_ip_address','90.205.47.187'),(5332,1899,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(5330,1899,'_transaction_id',''),(5329,1899,'_payment_method_title','Direct bank transfer'),(5328,1899,'_payment_method','bacs'),(5327,1899,'_customer_user','0'),(5326,1899,'_order_key','wc_order_5be14883999b8'),(5325,1898,'PayPal Transaction Fee','0.49'),(5324,1898,'_order_stock_reduced','yes'),(5323,1898,'_recorded_coupon_usage_counts','yes'),(5322,1898,'_recorded_sales','yes'),(5321,1898,'_download_permissions_granted','yes'),(5320,1898,'_paypal_status','completed'),(5319,1898,'Payment type','instant'),(5318,1898,'_shipping_address_index','         07707690755'),(5317,1898,'_billing_address_index','Elena Kolodzejova  26 Beach Avenue Whitley Bay Tyne and Wear NE26 1EA GB elena.kolodzejova@gmail.com 07707690755'),(5316,1898,'_prices_include_tax','no'),(5315,1898,'_order_version','3.5.0'),(5314,1898,'_order_total','8.50'),(5313,1898,'_order_tax','0'),(5312,1898,'_order_shipping_tax','0'),(5311,1898,'_order_shipping','0.00'),(5310,1898,'_cart_discount_tax','0'),(5309,1898,'_cart_discount','0'),(5308,1898,'_order_currency','GBP'),(5307,1898,'_shipping_country',''),(5306,1898,'_shipping_postcode',''),(5305,1898,'_shipping_state',''),(5304,1898,'_shipping_city',''),(5303,1898,'_shipping_address_2',''),(5302,1898,'_shipping_address_1',''),(5301,1898,'_shipping_company',''),(5298,1898,'_billing_phone','07707690755'),(5299,1898,'_shipping_first_name',''),(5300,1898,'_shipping_last_name',''),(5297,1898,'_billing_email','elena.kolodzejova@gmail.com'),(5296,1898,'_billing_country','GB'),(298,68,'_edit_last','1'),(299,68,'_edit_lock','1561920337:1'),(5371,1899,'_recorded_coupon_usage_counts','yes'),(5370,1899,'_recorded_sales','yes'),(5369,1899,'_shipping_address_index','         1670222735'),(5368,1899,'_billing_address_index','christine headland 1953 22 pioneer terrace 22 pioneer terrace Bedlington Northumberland NE22 5PW GB headland.christine@yahoo.co.uk 1670222735'),(5367,1899,'_prices_include_tax','no'),(5366,1899,'_order_version','3.5.0'),(5365,1899,'_order_total','8.50'),(5364,1899,'_order_tax','0'),(5363,1899,'_order_shipping_tax','0'),(5362,1899,'_order_shipping','0.00'),(5361,1899,'_cart_discount_tax','0'),(5360,1899,'_cart_discount','0'),(5359,1899,'_order_currency','GBP'),(5358,1899,'_shipping_country',''),(5357,1899,'_shipping_postcode',''),(5356,1899,'_shipping_state',''),(5355,1899,'_shipping_city',''),(302,68,'_wp_page_template','content-sidebar-page.php'),(303,68,'_responsive_layout','default'),(304,76,'_wp_attached_file','2017/10/Medi-32.jpg'),(305,76,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:432;s:4:\"file\";s:19:\"2017/10/Medi-32.jpg\";s:5:\"sizes\";a:10:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"Medi-32-400x314.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:314;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"Medi-32-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"Medi-32-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Medi-32-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Medi-32-300x236.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:18:\"Medi-32-100x79.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:79;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:19:\"Medi-32-150x118.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:19:\"Medi-32-200x157.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:19:\"Medi-32-300x236.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:19:\"Medi-32-450x353.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:7:\"unknown\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(306,68,'_thumbnail_id','1957'),(308,68,'_yoast_wpseo_focuskw_text_input','anxiety relief hypnosis program'),(309,68,'_yoast_wpseo_focuskw','Anxiety Treatment & Counselling'),(310,68,'_yoast_wpseo_linkdex','96'),(311,68,'_yoast_wpseo_content_score','60'),(405,106,'_yoast_wpseo_focuskw_text_input','Stress Management'),(403,222,'viewed','1'),(402,222,'version',''),(401,222,'theme',''),(400,222,'plugins','[]'),(399,222,'location','[\"everywhere\"]'),(398,222,'dismissable','1'),(397,222,'type','success'),(396,222,'notification_id','532'),(329,103,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:712;s:6:\"height\";i:691;s:4:\"file\";s:18:\"2017/10/mmhead.jpg\";s:5:\"sizes\";a:6:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"mmhead-400x388.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:388;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"mmhead-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"mmhead-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"mmhead-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"mmhead-300x291.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:18:\"mmhead-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(330,104,'_wp_attached_file','2017/10/19059074_10154638475062322_1825527744185497542_n.jpg'),(331,104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:316;s:6:\"height\";i:316;s:4:\"file\";s:60:\"2017/10/19059074_10154638475062322_1825527744185497542_n.jpg\";s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:60:\"19059074_10154638475062322_1825527744185497542_n-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:60:\"19059074_10154638475062322_1825527744185497542_n-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"19059074_10154638475062322_1825527744185497542_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"19059074_10154638475062322_1825527744185497542_n-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:60:\"19059074_10154638475062322_1825527744185497542_n-316x224.jpg\";s:5:\"width\";i:316;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(332,104,'_edit_lock','1509398703:1'),(333,104,'_edit_last','1'),(334,104,'_yoast_wpseo_content_score','30'),(335,106,'_edit_last','1'),(336,106,'_edit_lock','1563971466:1'),(337,106,'_wp_page_template','content-sidebar-page.php'),(338,106,'_yoast_wpseo_content_score','60'),(413,200,'_yoast_wpseo_metadesc','Client Feedback & Reviews, what our clients say about Newcastle Hypnotherapy with Mark & Yvette, Hypnosis and Neuro-Linguistic Programming services.'),(411,200,'_yoast_wpseo_focuskw','Client Feedback'),(412,200,'_yoast_wpseo_title','Client Feedback, What our clients say about Newcastle Hypnotherapy'),(410,200,'_yoast_wpseo_focuskw_text_input','Client Feedback'),(347,122,'_edit_last','1'),(348,122,'_edit_lock','1546879421:1'),(349,122,'_wp_page_template','content-sidebar-page.php'),(350,122,'_yoast_wpseo_content_score','30'),(355,190,'_edit_lock','1509983767:1'),(356,190,'_edit_last','1'),(359,190,'_yoast_wpseo_content_score','30'),(360,190,'_yoast_wpseo_primary_category','2'),(363,192,'_edit_lock','1509981048:1'),(364,192,'_edit_last','1'),(367,192,'_yoast_wpseo_content_score','30'),(368,192,'_yoast_wpseo_primary_category','2'),(416,315,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:17:\"2018/01/ukghp.png\";s:5:\"sizes\";a:6:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:17:\"ukghp-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"ukghp-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"ukghp-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"ukghp-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"ukghp-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:17:\"ukghp-595x224.png\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(415,315,'_wp_attached_file','2018/01/ukghp.png'),(381,200,'_edit_lock','1559202779:1'),(382,200,'_edit_last','1'),(383,200,'_wp_page_template','content-sidebar-page.php'),(384,200,'_yoast_wpseo_content_score','30'),(385,43,'_yoast_wpseo_focuskw_text_input','about'),(386,43,'_yoast_wpseo_focuskw','about'),(387,43,'_yoast_wpseo_linkdex','89'),(388,43,'_yoast_wpseo_title','About Us. Mark Morley & Evette Spoor - Newcastle Hypnotherapy'),(389,43,'_yoast_wpseo_metadesc','About Us How do we work and what do we do? We help people, just like you, to make life-improving changes, using NLP, Hypnotherapy, EFT and other therapies.'),(2115,122,'_yoast_wpseo_is_cornerstone','1'),(391,122,'_yoast_wpseo_focuskw_text_input','Depression'),(392,122,'_yoast_wpseo_focuskw','Depression'),(393,122,'_yoast_wpseo_title','Depression and how we can help you take control of it'),(394,122,'_yoast_wpseo_metadesc','Depression can affect everyone and in some cases, it can make life unpleasant for you and those around you. It is very easy to get stuck in a rut'),(395,122,'_yoast_wpseo_linkdex','88'),(406,106,'_yoast_wpseo_focuskw','Stress Management'),(407,106,'_yoast_wpseo_linkdex','88'),(408,106,'_yoast_wpseo_title','Stress Management, help, techniques & therapies for a stress free life'),(409,106,'_yoast_wpseo_metadesc','Is stress causing you problems? Learn how Stress management techniques and therapies can bring stress relief and well-being back into your life.'),(500,373,'viewed','1'),(501,378,'_edit_lock','1558178828:1'),(502,378,'_edit_last','1'),(503,378,'_wp_page_template','full-width-page.php'),(504,378,'_yoast_wpseo_content_score','90'),(507,103,'_wp_attachment_image_alt','Hypnosis For Stress Management'),(505,385,'_edit_lock','1540834987:1'),(506,385,'_edit_last','1'),(508,347,'_yoast_wpseo_focuskw_text_input','Self Hypnosis Workshop'),(509,347,'_yoast_wpseo_focuskw','Self Hypnosis Workshop'),(510,347,'_yoast_wpseo_linkdex','70'),(511,347,'_oembed_748580578e11fae1496683eab5d087ac','{{unknown}}'),(512,347,'_oembed_5e5fafe1463400d1ab71e1e0d0f2bc69','{{unknown}}'),(513,347,'_oembed_8d130db9092cc5ce344aad19110c590d','<iframe width=\"1600\" height=\"900\" src=\"https://www.youtube.com/embed/QDixy8yh1Q0?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(514,347,'_oembed_time_8d130db9092cc5ce344aad19110c590d','1521493683'),(515,347,'_oembed_44560eaec4894d324438930feac46f5a','<iframe width=\"1600\" height=\"900\" src=\"https://www.youtube.com/embed/QDixy8yh1Q0?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(516,347,'_oembed_time_44560eaec4894d324438930feac46f5a','1521493951'),(517,347,'_oembed_3b401a95e03b9a908203231e1bc9bcd4','<iframe width=\"1168\" height=\"657\" src=\"https://www.youtube.com/embed/QDixy8yh1Q0?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(518,347,'_oembed_time_3b401a95e03b9a908203231e1bc9bcd4','1521493954'),(519,420,'notification_id','721'),(520,420,'type','success'),(521,420,'dismissable','1'),(522,420,'location','[\"everywhere\"]'),(523,420,'plugins','[]'),(524,420,'theme',''),(525,420,'version',''),(526,420,'viewed','1'),(527,422,'_edit_lock','1527605268:1'),(528,422,'_edit_last','1'),(529,422,'_wp_page_template','default'),(530,422,'_yoast_wpseo_content_score','30'),(531,447,'_form','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n\n\n\n\n[submit \"Join Newsletter\"]'),(537,422,'_yoast_wpseo_focuskw_text_input','self hypnosis stress anxiety'),(532,447,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:13:\"STRESS EVENTS\";s:6:\"sender\";s:45:\"[your-name] <mark@newcastle-hypnotherapy.com>\";s:9:\"recipient\";s:31:\"mark@newcastle-hypnotherapy.com\";s:4:\"body\";s:229:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Newcastle Hypnotherapy Tyneside &amp; Northumberland, (http://www.newcastle-hypnotherapy.com)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(533,447,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:66:\"Newcastle Hypnotherapy Tyneside & Northumberland, \"[your-subject]\"\";s:6:\"sender\";s:83:\"Newcastle Hypnotherapy Tyneside & Northumberland, <mark@newcastle-hypnotherapy.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:171:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Newcastle Hypnotherapy Tyneside &amp; Northumberland, (http://www.newcastle-hypnotherapy.com)\";s:18:\"additional_headers\";s:41:\"Reply-To: mark@newcastle-hypnotherapy.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(534,447,'_messages','a:23:{s:12:\"mail_sent_ok\";s:51:\"Thank you. You are now subscribed to the newsletter\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(535,447,'_additional_settings',''),(536,447,'_locale','en_GB'),(2201,447,'cf7s_template',''),(538,422,'_yoast_wpseo_focuskw','self hypnosis stress anxiety'),(539,422,'_yoast_wpseo_linkdex','59'),(540,385,'_oembed_038ef5c6580cbd89ab9ea411a751f39d','<iframe width=\"1600\" height=\"900\" src=\"https://www.youtube.com/embed/CXB3uPmBR6Q?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(541,385,'_oembed_time_038ef5c6580cbd89ab9ea411a751f39d','1522623936'),(542,385,'_oembed_350b33aeb7ed534118dbe97cdb42ae73','<iframe width=\"857\" height=\"482\" src=\"https://www.youtube.com/embed/CXB3uPmBR6Q?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(543,385,'_oembed_time_350b33aeb7ed534118dbe97cdb42ae73','1522623937'),(544,385,'_wp_page_template','default'),(545,385,'_yoast_wpseo_content_score','90'),(546,385,'_oembed_a5583bb51a20cc62376b753d309b1b2b','<iframe width=\"861\" height=\"484\" src=\"https://www.youtube.com/embed/CXB3uPmBR6Q?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(547,385,'_oembed_time_a5583bb51a20cc62376b753d309b1b2b','1522623952'),(548,471,'_edit_lock','1548857518:1'),(549,471,'_edit_last','1'),(550,471,'_wp_page_template','content-sidebar-page.php'),(551,471,'_yoast_wpseo_content_score','90'),(552,486,'_edit_lock','1546801315:1'),(553,486,'_edit_last','1'),(554,486,'_wp_page_template','content-sidebar-page.php'),(555,486,'_yoast_wpseo_content_score','60'),(556,486,'_yoast_wpseo_is_cornerstone','1'),(557,486,'_yoast_wpseo_focuskw_text_input','Learn Self-Hypnosis'),(558,486,'_yoast_wpseo_focuskw','Learn Self-Hypnosis'),(559,486,'_yoast_wpseo_linkdex','95'),(560,486,'_yoast_wpseo_title','Learn Self-Hypnosis - Workshops - Online - Newcastle Hypnotherapy'),(561,486,'_yoast_wpseo_metadesc','Imagine the ability to learn Self-Hypnosis and feel the way you want to feel. Many hypnotherapy clients are asking to learn Self-hypnosis these days and'),(4765,1709,'_wp_attached_file','2018/09/Anxiety-Program-Application-Form.doc'),(562,486,'_oembed_0a7329955b38a32db4cddd7f58fb8e2d','{{unknown}}'),(563,68,'_yoast_wpseo_title','Anxiety Treatment & Counselling in Newcastle upon Tyne, Northumberland'),(564,528,'_form','<fieldset>\n	<legend>Your Details</legend>\n	<ol>\n		<li> Name [text cf7s-name] </li>\n		<li> Email [email* cf7s-email] </li>\n		\n	</ol>\n	[submit \"Submit\"]\n	<p>* Required</p>\n</fieldset>'),(565,528,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:15:\"NH Anxiety Page\";s:6:\"sender\";s:45:\"[your-name] <mark@newcastle-hypnotherapy.com>\";s:9:\"recipient\";s:33:\"<mark@newcastle-hypnotherapy.com>\";s:4:\"body\";s:112:\"From: [your-name] <[your-email]>\nSubject: [your-subject] subject test\n\nMessage Body: HI Test text\n[your-message]\";s:18:\"additional_headers\";s:43:\"Reply-To: <mark@newcastle-hypnotherapy.com>\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(752,684,'_wp_attached_file','2018/04/fb-logo.jpg'),(753,684,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2018/04/fb-logo.jpg\";s:5:\"sizes\";a:7:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"fb-logo-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"fb-logo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"fb-logo-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"fb-logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"fb-logo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"fb-logo-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:19:\"fb-logo-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(566,528,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:66:\"Newcastle Hypnotherapy Tyneside & Northumberland, \"[your-subject]\"\";s:6:\"sender\";s:83:\"Newcastle Hypnotherapy Tyneside & Northumberland, <mark@newcastle-hypnotherapy.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:171:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Newcastle Hypnotherapy Tyneside &amp; Northumberland, (http://www.newcastle-hypnotherapy.com)\";s:18:\"additional_headers\";s:41:\"Reply-To: mark@newcastle-hypnotherapy.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(567,528,'_messages','a:23:{s:12:\"mail_sent_ok\";s:63:\"Thank you. You have been added to the Anxiety Relief newsletter\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(568,528,'_additional_settings',''),(569,528,'_locale','en_GB'),(570,530,'_wp_attached_file','2018/04/anxiety.jpg'),(571,530,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:626;s:6:\"height\";i:391;s:4:\"file\";s:19:\"2018/04/anxiety.jpg\";s:5:\"sizes\";a:6:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"anxiety-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"anxiety-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"anxiety-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"anxiety-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"anxiety-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:19:\"anxiety-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(572,530,'_wp_attachment_image_alt','Anxiety Relief'),(573,533,'_wp_attached_file','2018/04/Anxiety-Relief-2.jpg'),(574,533,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:626;s:6:\"height\";i:391;s:4:\"file\";s:28:\"2018/04/Anxiety-Relief-2.jpg\";s:5:\"sizes\";a:6:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"Anxiety-Relief-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"Anxiety-Relief-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"Anxiety-Relief-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Anxiety-Relief-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Anxiety-Relief-2-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:28:\"Anxiety-Relief-2-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(575,533,'_wp_attachment_image_alt','Anxiety Relief'),(576,68,'_yoast_wpseo_metadesc','Anxiety treatment & counselling to help reduce attacks, social anxiety and symptoms using hypnotherapy and modern techniques.'),(577,556,'_edit_lock','1546799595:1'),(578,556,'_edit_last','1'),(579,556,'_wp_page_template','content-sidebar-page.php'),(581,556,'_yoast_wpseo_focuskw_text_input','Lose Weight With Hypnosis'),(582,556,'_yoast_wpseo_focuskw','Lose Weight With Hypnosis'),(583,556,'_yoast_wpseo_title','Lose Weight With Hypnosis. Long-term health results naturally'),(584,556,'_yoast_wpseo_metadesc','Lose Weight With Hypnosis. Hypnotherapy is a powerful way to help you change your eating habits and reach a natural healthy weight.'),(585,556,'_yoast_wpseo_linkdex','97'),(586,556,'_yoast_wpseo_content_score','60'),(587,560,'_edit_lock','1563539856:1'),(588,560,'_edit_last','1'),(589,560,'_wp_page_template','content-sidebar-page.php'),(590,560,'_yoast_wpseo_content_score','90'),(591,315,'_wp_attachment_image_alt','Client Feedbacl'),(592,576,'_edit_lock','1542643543:1'),(593,576,'_edit_last','1'),(634,576,'_thumbnail_id','76'),(596,576,'_yoast_wpseo_content_score','90'),(597,576,'_yoast_wpseo_primary_category','3'),(638,589,'_edit_last','1'),(602,576,'_yoast_wpseo_focuskw_text_input','think yourself slim with hypnosis'),(603,576,'_yoast_wpseo_focuskw','think yourself slim with hypnosis'),(604,576,'_yoast_wpseo_linkdex','81'),(613,576,'_wp_old_slug','576-2'),(616,576,'_yoast_wpseo_title','think yourself slim with hypnosis, hypnotherapy for weight loss'),(627,576,'_yoast_wpseo_metadesc','Can you think yourself slim with hypnosis? Hypnotherapy can be very powerful for weight loss to help you control your eating and relationship with food'),(637,589,'_edit_lock','1542643885:1'),(641,589,'_yoast_wpseo_content_score','60'),(642,589,'_yoast_wpseo_primary_category','9'),(656,598,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:28:\"2018/04/sol-3070188_1280.jpg\";s:5:\"sizes\";a:8:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"sol-3070188_1280-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"sol-3070188_1280-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"sol-3070188_1280-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"sol-3070188_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"sol-3070188_1280-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"sol-3070188_1280-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"sol-3070188_1280-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:28:\"sol-3070188_1280-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(655,598,'_wp_attached_file','2018/04/sol-3070188_1280.jpg'),(657,598,'_wp_attachment_image_alt','hypnosis for sleep improvement'),(658,589,'_thumbnail_id','598'),(685,605,'_edit_lock','1542645458:1'),(686,605,'_edit_last','1'),(663,589,'_yoast_wpseo_focuskw_text_input','hypnosis for sleep improvement'),(664,589,'_yoast_wpseo_focuskw','hypnosis for sleep improvement'),(665,589,'_yoast_wpseo_title','hypnosis for sleep improvement - hypnotherapy can help sleep problems'),(666,589,'_yoast_wpseo_metadesc','hypnosis for sleep improvement can really help with those sleeping issues. Hypnotherapy can retrain your mind for a better nights sleep'),(667,589,'_yoast_wpseo_linkdex','62'),(678,589,'_wp_old_slug','hypnosis-sleep-improvement'),(689,605,'_yoast_wpseo_content_score','30'),(690,605,'_yoast_wpseo_primary_category','14'),(701,609,'_wp_attached_file','2018/04/person-1627693_960_720.jpg'),(695,605,'_yoast_wpseo_focuskw_text_input','Hypnosis for Anxiety Relief'),(696,605,'_yoast_wpseo_focuskw','Hypnosis for Anxiety Relief'),(697,605,'_yoast_wpseo_title','Hypnosis for Anxiety Relief - Hypnotherapy is very helpful for anxiety'),(698,605,'_yoast_wpseo_metadesc','Here is a neat article on the benefits of hypnosis for anxiety relief. Hypnotherapy and quickly help with the symptoms of anxiety and take charge of it'),(699,605,'_yoast_wpseo_linkdex','57'),(700,605,'_wp_old_slug','hypnosis-anxiety-relief'),(702,609,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:34:\"2018/04/person-1627693_960_720.jpg\";s:5:\"sizes\";a:6:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:34:\"person-1627693_960_720-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"person-1627693_960_720-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"person-1627693_960_720-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"person-1627693_960_720-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"person-1627693_960_720-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:34:\"person-1627693_960_720-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(703,609,'_wp_attachment_image_alt','hypnosis for anxiety relief'),(708,613,'_edit_lock','1523998239:1'),(709,613,'_edit_last','1'),(710,613,'_wp_page_template','default'),(711,613,'_yoast_wpseo_content_score','30'),(712,613,'_oembed_07854a425e43e0d68e3d054326c88f8e','<iframe width=\"1600\" height=\"900\" src=\"https://www.youtube.com/embed/n6p6yGpvc7M?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(713,613,'_oembed_time_07854a425e43e0d68e3d054326c88f8e','1523810510'),(714,613,'_oembed_8fb8a74b3cf99e471818b1ecbd0f1751','<iframe width=\"1158\" height=\"651\" src=\"https://www.youtube.com/embed/n6p6yGpvc7M?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(715,613,'_oembed_time_8fb8a74b3cf99e471818b1ecbd0f1751','1523810512'),(716,627,'_wp_attached_file','2018/04/woman-2827333_1280.jpg'),(717,627,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:855;s:4:\"file\";s:30:\"2018/04/woman-2827333_1280.jpg\";s:5:\"sizes\";a:8:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"woman-2827333_1280-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"woman-2827333_1280-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"woman-2827333_1280-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"woman-2827333_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"woman-2827333_1280-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"woman-2827333_1280-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"woman-2827333_1280-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:30:\"woman-2827333_1280-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(718,627,'_wp_attachment_image_alt','self-hypnosis for weight loss'),(719,644,'_form','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n\n[submit \"Join Today\"]'),(720,644,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:11:\"WEIGHT LOSS\";s:6:\"sender\";s:45:\"[your-name] <mark@newcastle-hypnotherapy.com>\";s:9:\"recipient\";s:31:\"mark@newcastle-hypnotherapy.com\";s:4:\"body\";s:229:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Newcastle Hypnotherapy Tyneside &amp; Northumberland, (http://www.newcastle-hypnotherapy.com)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2204,1035,'_edit_lock','1534103748:1'),(721,644,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:66:\"Newcastle Hypnotherapy Tyneside & Northumberland, \"[your-subject]\"\";s:6:\"sender\";s:83:\"Newcastle Hypnotherapy Tyneside & Northumberland, <mark@newcastle-hypnotherapy.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:171:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Newcastle Hypnotherapy Tyneside &amp; Northumberland, (http://www.newcastle-hypnotherapy.com)\";s:18:\"additional_headers\";s:41:\"Reply-To: mark@newcastle-hypnotherapy.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(722,644,'_messages','a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(723,644,'_additional_settings',''),(724,644,'_locale','en_GB'),(725,644,'cf7s_template','fieldset-basic'),(726,644,'cf7s_style','caspar'),(727,644,'cf7s_postbox','a:1:{s:8:\"cf7skins\";s:0:\"\";}'),(728,560,'_yoast_wpseo_focuskw_text_input','self-hypnosis for weight loss'),(729,560,'_yoast_wpseo_focuskw','self-hypnosis for weight loss'),(730,560,'_yoast_wpseo_title','Self-Hypnosis Practice Group - Newcastle upon Tyne'),(731,560,'_yoast_wpseo_metadesc','Join us for the Self-Hypnosis Practice Group in Newcastle to develop your skills, learning to relax and feel amazing on demand.'),(732,560,'_yoast_wpseo_linkdex','71'),(733,667,'_form','<fieldset>\n	<legend>Enter your details below to learn about the latest events</legend>\n	<ol>\n		<li> Name [text* cf7s-name] </li>\n		<li> Email [email* cf7s-email] </li>\n		\n	</ol>\n	[submit \"Submit\"]\n	<p>* Required</p>\n</fieldset>'),(749,528,'cf7s_template','fieldset-basic'),(734,667,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:26:\"NH - New Subscriber EVENTS\";s:6:\"sender\";s:43:\"EVENTS ML <mark@newcastle-hypnotherapy.com>\";s:9:\"recipient\";s:31:\"mark@newcastle-hypnotherapy.com\";s:4:\"body\";s:229:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Newcastle Hypnotherapy Tyneside &amp; Northumberland, (http://www.newcastle-hypnotherapy.com)\";s:18:\"additional_headers\";s:43:\"Reply-To: <mark@newcastle-hypnotherapy.com>\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(735,667,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:66:\"Newcastle Hypnotherapy Tyneside & Northumberland, \"[your-subject]\"\";s:6:\"sender\";s:83:\"Newcastle Hypnotherapy Tyneside & Northumberland, <mark@newcastle-hypnotherapy.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:171:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Newcastle Hypnotherapy Tyneside &amp; Northumberland, (http://www.newcastle-hypnotherapy.com)\";s:18:\"additional_headers\";s:41:\"Reply-To: mark@newcastle-hypnotherapy.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(736,667,'_messages','a:23:{s:12:\"mail_sent_ok\";s:55:\"Thank you. You have been added to the events newsletter\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(737,667,'_additional_settings',''),(738,667,'_locale','en_GB'),(739,667,'cf7s_template','fieldset-basic'),(740,667,'cf7s_style','caspar'),(741,667,'cf7s_postbox','a:1:{s:8:\"cf7skins\";s:0:\"\";}'),(750,528,'cf7s_style','caspar'),(751,528,'cf7s_postbox','a:1:{s:8:\"cf7skins\";s:0:\"\";}'),(4687,1664,'_wp_attached_file','2018/09/Hypnosis-15.jpg'),(754,687,'_edit_lock','1524751176:1'),(755,687,'_edit_last','1'),(756,687,'_wp_page_template','template-contact.php'),(757,687,'_yoast_wpseo_content_score','30'),(1908,903,'_form','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n\n\n[submit \"Please Send My Voucher Now\"]'),(1688,813,'_wp_attached_file','2018/05/Cleint-feedback.jpg'),(763,693,'_edit_lock','1529951709:1'),(764,693,'_edit_last','1'),(765,693,'_wp_page_template','template-with-no-menu.php'),(766,693,'_yoast_wpseo_content_score','30'),(767,695,'_edit_lock','1537894930:1'),(768,695,'_edit_last','1'),(769,695,'_wp_page_template','default'),(770,695,'_yoast_wpseo_content_score','60'),(771,697,'_edit_lock','1525158267:2'),(772,697,'_edit_last','2'),(773,697,'_wp_page_template','template-with-only-header.php'),(774,697,'_yoast_wpseo_content_score','30'),(775,699,'_elementor_template_type','page'),(776,699,'_elementor_edit_mode','builder'),(777,699,'_edit_lock','1525156321:2'),(778,699,'_wp_page_template','elementor_header_footer'),(779,699,'_elementor_data','[]'),(780,699,'_elementor_version','0.4'),(1692,822,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:719;s:4:\"file\";s:31:\"2018/05/smiley-2979107_1280.jpg\";s:5:\"sizes\";a:8:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"smiley-2979107_1280-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"smiley-2979107_1280-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"smiley-2979107_1280-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"smiley-2979107_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"smiley-2979107_1280-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"smiley-2979107_1280-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"smiley-2979107_1280-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:31:\"smiley-2979107_1280-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2591,1328,'_yoast_wpseo_metadesc','Newcastle Hypnotherapy Group Talks - would your group enjoy a talk or presentation about hypnosis, self-hypnosis, anxiety, stress managament or ..'),(2590,1328,'_yoast_wpseo_title','Newcastle Hypnotherapy Group Talks & Presentations'),(2589,1328,'_yoast_wpseo_focuskw','Newcastle Hypnotherapy Group Talks'),(2588,1328,'_wp_page_template','default'),(2586,1328,'_edit_lock','1540834365:1'),(2582,1325,'_yoast_wpseo_primary_category','14'),(2583,1325,'_thumbnail_id','1326'),(2587,1328,'_edit_last','1'),(2579,1326,'_wp_attachment_image_alt','mind body spirit fair'),(2578,1326,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:456;s:4:\"file\";s:59:\"2018/08/38501253_2267421529952455_6461134429694722048_n.jpg\";s:5:\"sizes\";a:6:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:59:\"38501253_2267421529952455_6461134429694722048_n-400x285.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"38501253_2267421529952455_6461134429694722048_n-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:59:\"38501253_2267421529952455_6461134429694722048_n-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"38501253_2267421529952455_6461134429694722048_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"38501253_2267421529952455_6461134429694722048_n-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:59:\"38501253_2267421529952455_6461134429694722048_n-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2577,1326,'_wp_attached_file','2018/08/38501253_2267421529952455_6461134429694722048_n.jpg'),(2576,1325,'_edit_last','1'),(2575,1325,'_edit_lock','1535896931:1'),(3284,1460,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:149;s:4:\"file\";s:49:\"2018/09/1115_NewcastleHypnotherapy_Logo_DA_01.png\";s:5:\"sizes\";a:14:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"1115_NewcastleHypnotherapy_Logo_DA_01-400x99.png\";s:5:\"width\";i:400;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"1115_NewcastleHypnotherapy_Logo_DA_01-150x149.png\";s:5:\"width\";i:150;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"1115_NewcastleHypnotherapy_Logo_DA_01-300x75.png\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:48:\"1115_NewcastleHypnotherapy_Logo_DA_01-100x25.png\";s:5:\"width\";i:100;s:6:\"height\";i:25;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:48:\"1115_NewcastleHypnotherapy_Logo_DA_01-150x37.png\";s:5:\"width\";i:150;s:6:\"height\";i:37;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:48:\"1115_NewcastleHypnotherapy_Logo_DA_01-200x50.png\";s:5:\"width\";i:200;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:48:\"1115_NewcastleHypnotherapy_Logo_DA_01-300x75.png\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:49:\"1115_NewcastleHypnotherapy_Logo_DA_01-450x112.png\";s:5:\"width\";i:450;s:6:\"height\";i:112;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:49:\"1115_NewcastleHypnotherapy_Logo_DA_01-600x149.png\";s:5:\"width\";i:600;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:49:\"1115_NewcastleHypnotherapy_Logo_DA_01-300x149.png\";s:5:\"width\";i:300;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:49:\"1115_NewcastleHypnotherapy_Logo_DA_01-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:49:\"1115_NewcastleHypnotherapy_Logo_DA_01-300x149.png\";s:5:\"width\";i:300;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"1115_NewcastleHypnotherapy_Logo_DA_01-400x99.png\";s:5:\"width\";i:400;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:49:\"1115_NewcastleHypnotherapy_Logo_DA_01-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3283,1460,'_wp_attached_file','2018/09/1115_NewcastleHypnotherapy_Logo_DA_01.png'),(3282,322,'_responsive_layout','default'),(3280,1458,'_menu_item_url',''),(3279,1458,'_menu_item_xfn',''),(3278,1458,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2565,1317,'_wp_page_template','default'),(2564,1317,'_thumbnail_id','1318'),(2563,1318,'_wp_attachment_image_alt','partnership'),(2562,1318,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:23:\"2018/08/partnership.jpg\";s:5:\"sizes\";a:8:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"partnership-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"partnership-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"partnership-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"partnership-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"partnership-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"partnership-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"partnership-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:23:\"partnership-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2561,1318,'_wp_attached_file','2018/08/partnership.jpg'),(2560,1317,'_edit_last','1'),(2559,1317,'_edit_lock','1540835400:1'),(2558,322,'_yoast_wpseo_linkdex','72'),(2557,322,'_yoast_wpseo_metadesc','Events & Workshops Newcastle Hypnotherapy in Newcastle upon Tyne, Northumberland and the North East. Join us to learn life enhancing skills'),(2556,322,'_yoast_wpseo_title','Events & Workshops Newcastle Hypnotherapy - Learn More'),(2555,322,'_yoast_wpseo_focuskw','Events & Workshops Newcastle Hypnotherapy'),(2554,322,'_yoast_wpseo_focuskw_text_input','Events & Workshops Newcastle Hypnotherapy'),(2553,1312,'_wp_attachment_image_alt','workshops & events newcastle hypnotherapy'),(2552,1312,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:60:\"2018/08/33020620_10155862105224398_5832396550940131328_n.jpg\";s:5:\"sizes\";a:8:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:60:\"33020620_10155862105224398_5832396550940131328_n-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:60:\"33020620_10155862105224398_5832396550940131328_n-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:60:\"33020620_10155862105224398_5832396550940131328_n-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"33020620_10155862105224398_5832396550940131328_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"33020620_10155862105224398_5832396550940131328_n-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:60:\"33020620_10155862105224398_5832396550940131328_n-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"33020620_10155862105224398_5832396550940131328_n-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:60:\"33020620_10155862105224398_5832396550940131328_n-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2551,1312,'_wp_attached_file','2018/08/33020620_10155862105224398_5832396550940131328_n.jpg'),(2550,1291,'_yoast_wpseo_linkdex','82'),(2549,1291,'_yoast_wpseo_focuskw','pain management workshop'),(2548,1291,'_yoast_wpseo_focuskw_text_input','pain management workshop'),(2547,1291,'_yoast_wpseo_metadesc','The Pain Management Workshop will teach you skills to control and reduce your pain naturally using Self-hypnosis and Emotional Freedom Technique'),(2546,1291,'_yoast_wpseo_title','Pain Management Workshop - Newcastle Hypnotherapy @ The Vault'),(2545,1291,'_yoast_wpseo_content_score','90'),(2544,1291,'_wp_page_template','full-width-page.php'),(2543,1292,'_wp_attachment_image_alt','pain management workshop'),(1038,733,'_wp_attached_file','2018/05/food-for-though.png'),(1039,733,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:150;s:4:\"file\";s:27:\"2018/05/food-for-though.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"food-for-though-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"food-for-though-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1040,733,'_wp_attachment_image_alt','food for thought'),(1041,734,'_wp_attached_file','2018/05/the-vault-wallsend.jpg'),(1042,734,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:284;s:6:\"height\";i:109;s:4:\"file\";s:30:\"2018/05/the-vault-wallsend.jpg\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"the-vault-wallsend-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"the-vault-wallsend-150x109.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:109;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1043,734,'_wp_attachment_image_alt','the vault wallsend'),(1691,822,'_wp_attached_file','2018/05/smiley-2979107_1280.jpg'),(2542,1292,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:726;s:4:\"file\";s:32:\"2018/08/freedom-1886402_1280.jpg\";s:5:\"sizes\";a:8:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"freedom-1886402_1280-400x227.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"freedom-1886402_1280-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"freedom-1886402_1280-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"freedom-1886402_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"freedom-1886402_1280-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"freedom-1886402_1280-768x436.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:436;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"freedom-1886402_1280-1024x581.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:581;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:32:\"freedom-1886402_1280-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2541,1292,'_wp_attached_file','2018/08/freedom-1886402_1280.jpg'),(2540,1291,'_edit_last','1'),(2539,1291,'_edit_lock','1568382131:1'),(2524,1252,'_thumbnail_id','1257'),(2470,1252,'_wp_page_template','content-sidebar-page.php'),(2461,1257,'_wp_attachment_image_alt','Hypnosis Pain Management Program'),(2460,1257,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:972;s:4:\"file\";s:32:\"2018/08/freedom-2053281_1280.jpg\";s:5:\"sizes\";a:8:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"freedom-2053281_1280-400x304.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:304;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"freedom-2053281_1280-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"freedom-2053281_1280-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"freedom-2053281_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"freedom-2053281_1280-300x228.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"freedom-2053281_1280-768x583.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"freedom-2053281_1280-1024x778.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:778;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:32:\"freedom-2053281_1280-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2455,1252,'_edit_lock','1546879671:1'),(2529,1252,'_yoast_wpseo_is_cornerstone','1'),(2459,1257,'_wp_attached_file','2018/08/freedom-2053281_1280.jpg'),(2453,1252,'_yoast_wpseo_content_score','90'),(2452,1252,'_yoast_wpseo_linkdex','100'),(2451,1252,'_yoast_wpseo_metadesc','Hypnosis Pain Management Program gives you some powerful tools to control your pain using self-hypnosis and other modern techniques'),(2450,1252,'_yoast_wpseo_title','Hypnosis Pain Management Program - Newcastle Hypnotherapy'),(2449,1252,'_yoast_wpseo_focuskw','hypnosis pain management program'),(2448,1252,'_yoast_wpseo_focuskw_text_input','hypnosis pain management program'),(2447,1252,'_edit_last','1'),(2446,378,'_thumbnail_id','1244'),(2445,1244,'_wp_attachment_image_alt','Free Consultation Newcastle Hypnotherapy'),(2444,1244,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:474;s:4:\"file\";s:31:\"2018/08/choice-2692575_1280.jpg\";s:5:\"sizes\";a:8:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"choice-2692575_1280-400x148.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"choice-2692575_1280-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"choice-2692575_1280-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"choice-2692575_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"choice-2692575_1280-300x111.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:111;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"choice-2692575_1280-768x284.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"choice-2692575_1280-1024x379.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:379;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:31:\"choice-2692575_1280-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2443,1244,'_wp_attached_file','2018/08/choice-2692575_1280.jpg'),(2441,1185,'_wp_page_template','default'),(2440,1185,'_yoast_wpseo_linkdex','82'),(1171,751,'_edit_lock','1540834929:1'),(1172,751,'_edit_last','1'),(1173,751,'_wp_page_template','template-with-only-header.php'),(1174,751,'_yoast_wpseo_content_score','30'),(2439,1185,'_yoast_wpseo_metadesc','Past Life Regression Workshop - Newcastle Hypnotherapy. Join us for a demonstration and learn how to use self-hypnosis to discover your past lives'),(2438,1185,'_yoast_wpseo_title','Past Life Regression Workshop - Newcastle Hypnotherapy'),(2437,1185,'_yoast_wpseo_focuskw','past life regression workshop'),(2436,1185,'_yoast_wpseo_focuskw_text_input','past life regression workshop'),(2435,1185,'_edit_lock','1568386119:1'),(2434,1185,'_yoast_wpseo_content_score','90'),(2433,1185,'_edit_last','1'),(2432,1185,'_thumbnail_id','1186'),(2431,1186,'_wp_attachment_image_alt','past life regression Hypnosis'),(2430,1186,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:1000;s:4:\"file\";s:41:\"2018/08/past-life-regression-workshop.jpg\";s:5:\"sizes\";a:8:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:41:\"past-life-regression-workshop-400x313.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:41:\"past-life-regression-workshop-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:41:\"past-life-regression-workshop-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"past-life-regression-workshop-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"past-life-regression-workshop-300x234.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"past-life-regression-workshop-768x600.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"past-life-regression-workshop-1024x800.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:41:\"past-life-regression-workshop-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2429,1186,'_wp_attached_file','2018/08/past-life-regression-workshop.jpg'),(2428,1182,'_edit_lock','1533625839:1'),(2427,1182,'_yoast_wpseo_content_score','30'),(2426,1182,'_edit_last','1'),(2425,1182,'_oembed_df958522bca92b596af9856c4d03ce65','{{unknown}}'),(2403,378,'_yoast_wpseo_linkdex','94'),(2402,378,'_yoast_wpseo_metadesc','Free Consultation Newcastle Hypnotherapy You can ask any questions you wish and it allows us to evaluate the best way forward for you.'),(2401,378,'_yoast_wpseo_title','Free Consultation Newcastle Hypnotherapy - call to arrange yours today'),(2400,378,'_yoast_wpseo_focuskw','Free Consultation Newcastle Hypnotherapy'),(2399,378,'_yoast_wpseo_focuskw_text_input','Free Consultation Newcastle Hypnotherapy'),(2340,556,'_thumbnail_id','1119'),(2337,1119,'_wp_attachment_image_alt','Lose Weight With Hypnosis'),(2336,1119,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:30:\"2018/08/cereal-898073_1280.jpg\";s:5:\"sizes\";a:8:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"cereal-898073_1280-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"cereal-898073_1280-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"cereal-898073_1280-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"cereal-898073_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"cereal-898073_1280-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"cereal-898073_1280-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"cereal-898073_1280-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:30:\"cereal-898073_1280-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2335,1119,'_wp_attached_file','2018/08/cereal-898073_1280.jpg'),(2358,556,'_yoast_wpseo_is_cornerstone','1'),(2311,1095,'_yoast_wpseo_linkdex','93'),(2310,1095,'_yoast_wpseo_metadesc','The Wednesday Workshop. Learn Hypnosis, Self-Hypnosis, NLP, Mindfulness, Meditation, Relaxation, Confidence, Happiness and other useful skills.'),(2309,1095,'_yoast_wpseo_title','Wednesday Workshop. Learn Self-Hypnosis, NLP, Mindfullnes, Meditation'),(2308,1095,'_yoast_wpseo_focuskw','Wednesday Workshop'),(2307,1095,'_yoast_wpseo_focuskw_text_input','Wednesday Workshop'),(2306,1095,'_yoast_wpseo_primary_category','18'),(2305,1095,'_yoast_wpseo_content_score','60'),(2304,1096,'_wp_attachment_image_alt','The Wednesday Workshop'),(2303,1096,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:60:\"2018/07/33059915_10155862105114398_7132780766903140352_n.jpg\";s:5:\"sizes\";a:8:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:60:\"33059915_10155862105114398_7132780766903140352_n-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:60:\"33059915_10155862105114398_7132780766903140352_n-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:60:\"33059915_10155862105114398_7132780766903140352_n-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"33059915_10155862105114398_7132780766903140352_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"33059915_10155862105114398_7132780766903140352_n-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:60:\"33059915_10155862105114398_7132780766903140352_n-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"33059915_10155862105114398_7132780766903140352_n-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:60:\"33059915_10155862105114398_7132780766903140352_n-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2302,1096,'_wp_attached_file','2018/07/33059915_10155862105114398_7132780766903140352_n.jpg'),(2301,1095,'_edit_last','1'),(2300,1095,'_edit_lock','1533191355:1'),(2299,1079,'_thumbnail_id','1088'),(2298,1088,'_wp_attachment_image_alt','Secrets Of Self Hypnosis'),(2297,1088,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1250;s:6:\"height\";i:938;s:4:\"file\";s:31:\"2018/07/IMG_20180519_154207.jpg\";s:5:\"sizes\";a:8:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154207-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG_20180519_154207-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154207-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154207-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154207-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154207-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20180519_154207-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154207-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2296,1088,'_wp_attached_file','2018/07/IMG_20180519_154207.jpg'),(2286,1079,'_yoast_wpseo_content_score','30'),(2285,1079,'_yoast_wpseo_linkdex','89'),(2284,1079,'_yoast_wpseo_metadesc','What is hypnosis? Hypnosis is a naturally occurring state of mind that we all experience on a regular basis. A good example is reading a book'),(2283,1079,'_yoast_wpseo_title','What is hypnosis and how can hypnotherapy help me? is a very common question'),(2282,1079,'_yoast_wpseo_focuskw','what is hypnosis'),(2281,1079,'_yoast_wpseo_focuskw_text_input','what is hypnosis'),(2280,1079,'_wp_page_template','default'),(2279,1079,'_edit_last','1'),(2278,1079,'_edit_lock','1540835045:1'),(2442,1054,'_yoast_wpseo_is_cornerstone','1'),(2231,1054,'_yoast_wpseo_content_score','90'),(2230,1054,'_yoast_wpseo_linkdex','58'),(2229,1054,'_yoast_wpseo_focuskw','Newcastle Hypnotherapy Test'),(2228,1054,'_yoast_wpseo_focuskw_text_input','Newcastle Hypnotherapy'),(2227,1054,'_wp_page_template','default'),(2226,1054,'_edit_last','1'),(2225,1054,'_edit_lock','1540834832:1'),(2215,1035,'_yoast_wpseo_linkdex','64'),(2214,1035,'_yoast_wpseo_metadesc','Meditate Deeper & Faster Using Self Hypnosis for relaxtion and stress relief. Find us at the Vault for this enjoyable workshop'),(2212,1035,'_yoast_wpseo_focuskw','Meditate Deep & Faster Using Self Hypnosis'),(2213,1035,'_yoast_wpseo_title','Meditate Deeper & Faster Using Self Hypnosis for better relaxation'),(2140,1010,'_wp_attachment_image_alt','Newcastle upon Tyne'),(2138,1010,'_wp_attached_file','2018/06/newcastle-upon-tyne.jpg'),(2134,1008,'_wp_attachment_image_alt','Newcastle upon Tyne'),(2133,1008,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:20:\"2018/06/ggl-logo.png\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"ggl-logo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"ggl-logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:20:\"ggl-logo-250x224.png\";s:5:\"width\";i:250;s:6:\"height\";i:224;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2132,1008,'_wp_attached_file','2018/06/ggl-logo.png'),(2139,1010,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:500;s:4:\"file\";s:31:\"2018/06/newcastle-upon-tyne.jpg\";s:5:\"sizes\";a:8:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"newcastle-upon-tyne-400x156.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"newcastle-upon-tyne-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"newcastle-upon-tyne-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"newcastle-upon-tyne-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"newcastle-upon-tyne-300x117.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"newcastle-upon-tyne-768x300.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"newcastle-upon-tyne-1024x400.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:31:\"newcastle-upon-tyne-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2128,1003,'_yoast_wpseo_metadesc','Newcastle upon Tyne is located in the North East of England and is a major centre of business, science and the arts. There are many wonderful things to see and do here'),(2127,1003,'_yoast_wpseo_title','Newcastle upon Tyne, North East England, Tyne and Wear'),(2124,1003,'_yoast_wpseo_linkdex','92'),(2123,1003,'_yoast_wpseo_focuskw','Newcastle upon tyne'),(2122,1003,'_yoast_wpseo_focuskw_text_input','Newcastle upon tyne'),(2121,1003,'_yoast_wpseo_content_score','30'),(2120,1003,'_wp_page_template','default'),(2118,1003,'_edit_lock','1535905791:1'),(2119,1003,'_edit_last','1'),(1562,796,'_menu_item_type','custom'),(1563,796,'_menu_item_menu_item_parent','0'),(1564,796,'_menu_item_object_id','796'),(1565,796,'_menu_item_object','custom'),(1566,796,'_menu_item_target',''),(1567,796,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1568,796,'_menu_item_xfn',''),(1569,796,'_menu_item_url','http://www.newcastle-hypnotherapy.com/'),(1571,797,'_menu_item_type','post_type'),(1572,797,'_menu_item_menu_item_parent','0'),(1573,797,'_menu_item_object_id','200'),(1574,797,'_menu_item_object','page'),(1575,797,'_menu_item_target',''),(1576,797,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1577,797,'_menu_item_xfn',''),(1578,797,'_menu_item_url',''),(1616,802,'_menu_item_type','post_type'),(1617,802,'_menu_item_menu_item_parent','0'),(1618,802,'_menu_item_object_id','378'),(1619,802,'_menu_item_object','page'),(1620,802,'_menu_item_target',''),(1621,802,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1622,802,'_menu_item_xfn',''),(1623,802,'_menu_item_url',''),(1690,813,'_wp_attachment_image_alt','Client Feedback'),(1634,804,'_menu_item_type','post_type'),(1635,804,'_menu_item_menu_item_parent','0'),(1636,804,'_menu_item_object_id','322'),(1637,804,'_menu_item_object','page'),(1638,804,'_menu_item_target',''),(1639,804,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1640,804,'_menu_item_xfn',''),(1641,804,'_menu_item_url',''),(1689,813,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:4:\"file\";s:27:\"2018/05/Cleint-feedback.jpg\";s:5:\"sizes\";a:8:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"Cleint-feedback-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"Cleint-feedback-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"Cleint-feedback-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Cleint-feedback-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Cleint-feedback-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Cleint-feedback-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Cleint-feedback-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:27:\"Cleint-feedback-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1670,808,'_menu_item_type','post_type'),(1671,808,'_menu_item_menu_item_parent','1497'),(1672,808,'_menu_item_object_id','366'),(1673,808,'_menu_item_object','page'),(1674,808,'_menu_item_target',''),(1675,808,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1676,808,'_menu_item_xfn',''),(1677,808,'_menu_item_url',''),(3288,1461,'_wp_attached_file','2018/09/Newcastle-Hypnotherapy-500.png'),(3289,1461,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:505;s:6:\"height\";i:126;s:4:\"file\";s:38:\"2018/09/Newcastle-Hypnotherapy-500.png\";s:5:\"sizes\";a:12:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:38:\"Newcastle-Hypnotherapy-500-400x100.png\";s:5:\"width\";i:400;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Newcastle-Hypnotherapy-500-150x126.png\";s:5:\"width\";i:150;s:6:\"height\";i:126;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Newcastle-Hypnotherapy-500-300x75.png\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:37:\"Newcastle-Hypnotherapy-500-100x25.png\";s:5:\"width\";i:100;s:6:\"height\";i:25;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:37:\"Newcastle-Hypnotherapy-500-150x37.png\";s:5:\"width\";i:150;s:6:\"height\";i:37;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:37:\"Newcastle-Hypnotherapy-500-200x50.png\";s:5:\"width\";i:200;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:37:\"Newcastle-Hypnotherapy-500-300x75.png\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:38:\"Newcastle-Hypnotherapy-500-450x112.png\";s:5:\"width\";i:450;s:6:\"height\";i:112;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:38:\"Newcastle-Hypnotherapy-500-300x126.png\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:38:\"Newcastle-Hypnotherapy-500-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:38:\"Newcastle-Hypnotherapy-500-300x126.png\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:38:\"Newcastle-Hypnotherapy-500-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1693,422,'_thumbnail_id','822'),(1694,824,'_edit_lock','1546799716:1'),(1695,824,'_edit_last','1'),(1696,824,'_wp_page_template','content-sidebar-page.php'),(1698,824,'_yoast_wpseo_focuskw_text_input','Hypnosis for Candida Relief'),(1699,824,'_yoast_wpseo_focuskw','Hypnosis for Candida Relief'),(1700,824,'_yoast_wpseo_title','Hypnosis for Candida Relief. Hypnotherapy & Nutritional Help'),(1701,824,'_yoast_wpseo_metadesc','Hypnosis for Candida Relief speeds up recovery, reducing symptoms, removing stress, anxiety worry and puts you in control. Call for your free consultation'),(1702,824,'_yoast_wpseo_linkdex','93'),(1703,824,'_yoast_wpseo_content_score','30'),(2277,106,'_yoast_wpseo_is_cornerstone','1'),(1876,824,'_yoast_wpseo_is_cornerstone','1'),(1834,875,'_form','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n\n\n[submit \"Send\"]'),(2210,1040,'_wp_attachment_image_alt','The Wednesday Workshop'),(2211,1035,'_yoast_wpseo_focuskw_text_input','Meditate Deep & Faster Using Self Hypnosis'),(3285,1460,'_wp_attachment_image_alt','Newcastle Hypnotherapy'),(1829,874,'_wp_attached_file','2018/05/belly-3186730_1280.jpg'),(1830,874,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:855;s:4:\"file\";s:30:\"2018/05/belly-3186730_1280.jpg\";s:5:\"sizes\";a:8:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"belly-3186730_1280-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"belly-3186730_1280-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"belly-3186730_1280-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"belly-3186730_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"belly-3186730_1280-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"belly-3186730_1280-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"belly-3186730_1280-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:30:\"belly-3186730_1280-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1831,874,'_wp_attachment_image_alt','Hypnosis for Candida Relief'),(1832,824,'_thumbnail_id','874'),(1835,875,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:17:\"NH Candida Signup\";s:6:\"sender\";s:45:\"[your-name] <mark@newcastle-hypnotherapy.com>\";s:9:\"recipient\";s:31:\"mark@newcastle-hypnotherapy.com\";s:4:\"body\";s:258:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Newcastle Hypnotherapy - Hypnosis Tyneside, Northumberland, Newcastle &amp; Online (http://www.newcastle-hypnotherapy.com)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1836,875,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:95:\"Newcastle Hypnotherapy - Hypnosis Tyneside, Northumberland, Newcastle & Online \"[your-subject]\"\";s:6:\"sender\";s:112:\"Newcastle Hypnotherapy - Hypnosis Tyneside, Northumberland, Newcastle & Online <mark@newcastle-hypnotherapy.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:200:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Newcastle Hypnotherapy - Hypnosis Tyneside, Northumberland, Newcastle &amp; Online (http://www.newcastle-hypnotherapy.com)\";s:18:\"additional_headers\";s:41:\"Reply-To: mark@newcastle-hypnotherapy.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1837,875,'_messages','a:23:{s:12:\"mail_sent_ok\";s:86:\"Thank you. You have been added to the Candida Tips Newsletter. Please check your email\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(1838,875,'_additional_settings',''),(1839,875,'_locale','en_GB'),(1840,875,'cf7s_template','fieldset-basic'),(1841,875,'cf7s_style','caspar'),(1842,875,'cf7s_postbox','a:1:{s:8:\"cf7skins\";s:0:\"\";}'),(1844,877,'_wp_attached_file','2018/05/candid-hypnosis-relief.jpg'),(1845,877,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:340;s:6:\"height\";i:260;s:4:\"file\";s:34:\"2018/05/candid-hypnosis-relief.jpg\";s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"candid-hypnosis-relief-300x260.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"candid-hypnosis-relief-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"candid-hypnosis-relief-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"candid-hypnosis-relief-300x229.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:229;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:34:\"candid-hypnosis-relief-340x224.jpg\";s:5:\"width\";i:340;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1846,877,'_wp_attachment_image_alt','candida hypnosis relief'),(1996,958,'_wp_attached_file','2018/06/Newcastle-Hypnotherapy.jpg'),(1997,958,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:279;s:6:\"height\";i:74;s:4:\"file\";s:34:\"2018/06/Newcastle-Hypnotherapy.jpg\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"Newcastle-Hypnotherapy-100x74.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:74;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Newcastle-Hypnotherapy-150x74.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:74;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1880,892,'_edit_lock','1535905773:1'),(1881,892,'_edit_last','1'),(1882,892,'_wp_page_template','default'),(1883,892,'_yoast_wpseo_focuskw_text_input','Privacy Policy - Privacy & Cookies -Newcastle Hypnotherapy'),(1884,892,'_yoast_wpseo_focuskw','Privacy Policy - Privacy & Cookies -Newcastle Hypnotherapy'),(1885,892,'_yoast_wpseo_linkdex','56'),(1886,892,'_yoast_wpseo_content_score','30'),(1898,896,'_wp_attached_file','2018/05/relax-newcastle-hypnotherapy.jpg'),(1899,896,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:40:\"2018/05/relax-newcastle-hypnotherapy.jpg\";s:5:\"sizes\";a:8:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:40:\"relax-newcastle-hypnotherapy-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:40:\"relax-newcastle-hypnotherapy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"relax-newcastle-hypnotherapy-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"relax-newcastle-hypnotherapy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"relax-newcastle-hypnotherapy-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"relax-newcastle-hypnotherapy-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"relax-newcastle-hypnotherapy-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:40:\"relax-newcastle-hypnotherapy-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1900,896,'_wp_attachment_image_alt','relax newcastle hypnotherapy'),(2209,1040,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:60:\"2018/07/33020620_10155862105224398_5832396550940131328_n.jpg\";s:5:\"sizes\";a:8:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:60:\"33020620_10155862105224398_5832396550940131328_n-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:60:\"33020620_10155862105224398_5832396550940131328_n-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:60:\"33020620_10155862105224398_5832396550940131328_n-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"33020620_10155862105224398_5832396550940131328_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"33020620_10155862105224398_5832396550940131328_n-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:60:\"33020620_10155862105224398_5832396550940131328_n-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"33020620_10155862105224398_5832396550940131328_n-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:60:\"33020620_10155862105224398_5832396550940131328_n-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2207,1035,'_yoast_wpseo_content_score','30'),(2208,1040,'_wp_attached_file','2018/07/33020620_10155862105224398_5832396550940131328_n.jpg'),(1918,905,'_wp_attached_file','2018/05/self-hypnosis-for-weight-loss.jpg'),(1909,903,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:24:\"NH 10 Tickets Subscriber\";s:6:\"sender\";s:45:\"[your-name] <mark@newcastle-hypnotherapy.com>\";s:9:\"recipient\";s:31:\"mark@newcastle-hypnotherapy.com\";s:4:\"body\";s:258:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Newcastle Hypnotherapy - Hypnosis Tyneside, Northumberland, Newcastle &amp; Online (http://www.newcastle-hypnotherapy.com)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1910,903,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:95:\"Newcastle Hypnotherapy - Hypnosis Tyneside, Northumberland, Newcastle & Online \"[your-subject]\"\";s:6:\"sender\";s:112:\"Newcastle Hypnotherapy - Hypnosis Tyneside, Northumberland, Newcastle & Online <mark@newcastle-hypnotherapy.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:200:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Newcastle Hypnotherapy - Hypnosis Tyneside, Northumberland, Newcastle &amp; Online (http://www.newcastle-hypnotherapy.com)\";s:18:\"additional_headers\";s:41:\"Reply-To: mark@newcastle-hypnotherapy.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1911,903,'_messages','a:23:{s:12:\"mail_sent_ok\";s:56:\"Thank you. Please check your email for your Voucher Code\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(1912,903,'_additional_settings',''),(1913,903,'_locale','en_GB'),(1914,903,'cf7s_template','fieldset-basic'),(1915,903,'cf7s_style','caspar'),(1916,903,'cf7s_postbox','a:1:{s:8:\"cf7skins\";s:0:\"\";}'),(1919,905,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:691;s:4:\"file\";s:41:\"2018/05/self-hypnosis-for-weight-loss.jpg\";s:5:\"sizes\";a:8:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:41:\"self-hypnosis-for-weight-loss-400x216.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:41:\"self-hypnosis-for-weight-loss-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:41:\"self-hypnosis-for-weight-loss-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"self-hypnosis-for-weight-loss-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"self-hypnosis-for-weight-loss-300x162.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"self-hypnosis-for-weight-loss-768x415.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"self-hypnosis-for-weight-loss-1024x553.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:41:\"self-hypnosis-for-weight-loss-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1920,905,'_wp_attachment_image_alt','self hypnosis for weight loss'),(1940,925,'_edit_lock','1536000623:1'),(1941,925,'_edit_last','1'),(1942,925,'_wp_page_template','template-fullwidth.php'),(1943,925,'_yoast_wpseo_content_score','60'),(2205,1035,'_edit_last','1'),(2206,1035,'_wp_page_template','default'),(1955,939,'_wp_attached_file','2018/06/13892001_548866268633789_4421031440901787475_n-1.jpg'),(1956,939,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:552;s:6:\"height\";i:369;s:4:\"file\";s:60:\"2018/06/13892001_548866268633789_4421031440901787475_n-1.jpg\";s:5:\"sizes\";a:6:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:60:\"13892001_548866268633789_4421031440901787475_n-1-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:60:\"13892001_548866268633789_4421031440901787475_n-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:60:\"13892001_548866268633789_4421031440901787475_n-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"13892001_548866268633789_4421031440901787475_n-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:60:\"13892001_548866268633789_4421031440901787475_n-1-552x224.jpg\";s:5:\"width\";i:552;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1965,948,'_edit_lock','1546800551:1'),(1966,948,'_edit_last','1'),(1967,948,'_wp_page_template','content-sidebar-page.php'),(1968,948,'_yoast_wpseo_focuskw_text_input','Stop Smoking Hypnosis Guaranteed'),(1969,948,'_yoast_wpseo_focuskw','Stop Smoking Hypnosis Guaranteed'),(1970,948,'_yoast_wpseo_title','Stop Smoking Hypnosis Guaranteed For Life - Call Today'),(1971,948,'_yoast_wpseo_metadesc','Stop smoking hypnosis Guaranteed For Life. Quit for good with advanced Hypnotherapy & NLP techniques for lasting results. Have you decided to quit smoking? Treble your success rate with the expert help you need.'),(1972,948,'_yoast_wpseo_linkdex','87'),(1973,948,'_yoast_wpseo_content_score','60'),(2112,948,'_yoast_wpseo_is_cornerstone','1'),(1995,560,'_thumbnail_id','939'),(1998,958,'_wp_attachment_image_alt','Newcastle Hypnotherapy'),(2001,960,'_form','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n\n[submit \"Get Instant Access\"]'),(2202,447,'cf7s_style',''),(2002,960,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:14:\"\"Stop Smoking\"\";s:6:\"sender\";s:33:\"<mark@newcastle-hypnotherapy.com>\";s:9:\"recipient\";s:31:\"mark@newcastle-hypnotherapy.com\";s:4:\"body\";s:176:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on  (http://www.newcastle-hypnotherapy.com)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2003,960,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:16:\"\"[your-subject]\"\";s:6:\"sender\";s:33:\"<mark@newcastle-hypnotherapy.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:118:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on  (http://www.newcastle-hypnotherapy.com)\";s:18:\"additional_headers\";s:41:\"Reply-To: mark@newcastle-hypnotherapy.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(2004,960,'_messages','a:23:{s:12:\"mail_sent_ok\";s:56:\"Thank you. Please check your email for your information.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(2005,960,'_additional_settings',''),(2006,960,'_locale','en_GB'),(2007,960,'cf7s_template','fieldset-basic'),(2008,960,'cf7s_style','caspar'),(2009,960,'cf7s_postbox','a:1:{s:8:\"cf7skins\";s:0:\"\";}'),(2041,971,'_wp_attached_file','2018/06/stop-smoking-hypnosis.jpg'),(2042,971,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:33:\"2018/06/stop-smoking-hypnosis.jpg\";s:5:\"sizes\";a:8:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"stop-smoking-hypnosis-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"stop-smoking-hypnosis-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"stop-smoking-hypnosis-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"stop-smoking-hypnosis-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"stop-smoking-hypnosis-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"stop-smoking-hypnosis-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"stop-smoking-hypnosis-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:33:\"stop-smoking-hypnosis-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2043,971,'_wp_attachment_image_alt','Stop Smoking Hypnosis Guaranteed'),(2203,447,'cf7s_postbox','a:1:{s:8:\"cf7skins\";s:0:\"\";}'),(2609,1371,'_edit_last','1'),(2610,1371,'_wp_page_template','default'),(2611,1371,'_yoast_wpseo_content_score','90'),(5354,1899,'_shipping_address_2',''),(5353,1899,'_shipping_address_1',''),(5352,1899,'_shipping_company',''),(5351,1899,'_shipping_last_name',''),(5295,1898,'_billing_postcode','NE26 1EA'),(5294,1898,'_billing_state','Tyne and Wear'),(5293,1898,'_billing_city','Whitley Bay'),(5292,1898,'_billing_address_2','Beach Avenue'),(5291,1898,'_billing_address_1','26'),(5290,1898,'_billing_company',''),(5289,1898,'_billing_last_name','Kolodzejova'),(5288,1898,'_billing_first_name','Elena'),(5287,1898,'_cart_hash','610ad97bde8c84e2785e706216b7b18b'),(3234,1,'BannerImage','1'),(3233,1,'BannerImage','1'),(3232,1,'BannerImage','1'),(2616,1382,'_wp_attached_file','2018/09/beanie.jpg'),(2617,1382,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:801;s:6:\"height\";i:801;s:4:\"file\";s:18:\"2018/09/beanie.jpg\";s:5:\"sizes\";a:7:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"beanie-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"beanie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"beanie-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"beanie-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"beanie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"beanie-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:18:\"beanie-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2618,1382,'_starter_content_theme','storefront'),(2620,1383,'_wp_attached_file','2018/09/belt.jpg'),(2621,1383,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:801;s:6:\"height\";i:801;s:4:\"file\";s:16:\"2018/09/belt.jpg\";s:5:\"sizes\";a:7:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"belt-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"belt-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"belt-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"belt-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"belt-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"belt-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:16:\"belt-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2622,1383,'_starter_content_theme','storefront'),(2624,1384,'_wp_attached_file','2018/09/cap.jpg'),(2625,1384,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:801;s:6:\"height\";i:801;s:4:\"file\";s:15:\"2018/09/cap.jpg\";s:5:\"sizes\";a:7:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:15:\"cap-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"cap-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"cap-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"cap-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"cap-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"cap-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:15:\"cap-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2626,1384,'_starter_content_theme','storefront'),(2628,1385,'_wp_attached_file','2018/09/hoodie-with-logo.jpg'),(2629,1385,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:801;s:6:\"height\";i:801;s:4:\"file\";s:28:\"2018/09/hoodie-with-logo.jpg\";s:5:\"sizes\";a:6:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"hoodie-with-logo-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"hoodie-with-logo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"hoodie-with-logo-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"hoodie-with-logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"hoodie-with-logo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"hoodie-with-logo-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2630,1385,'_starter_content_theme','storefront'),(2632,1386,'_wp_attached_file','2018/09/hoodie-with-pocket.jpg'),(2633,1386,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:801;s:6:\"height\";i:801;s:4:\"file\";s:30:\"2018/09/hoodie-with-pocket.jpg\";s:5:\"sizes\";a:7:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"hoodie-with-pocket-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"hoodie-with-pocket-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"hoodie-with-pocket-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"hoodie-with-pocket-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"hoodie-with-pocket-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"hoodie-with-pocket-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:30:\"hoodie-with-pocket-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2634,1386,'_starter_content_theme','storefront'),(2636,1387,'_wp_attached_file','2018/09/hoodie-with-zipper.jpg'),(2637,1387,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:30:\"2018/09/hoodie-with-zipper.jpg\";s:5:\"sizes\";a:7:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"hoodie-with-zipper-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"hoodie-with-zipper-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"hoodie-with-zipper-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"hoodie-with-zipper-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"hoodie-with-zipper-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"hoodie-with-zipper-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:30:\"hoodie-with-zipper-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2638,1387,'_starter_content_theme','storefront'),(2640,1388,'_wp_attached_file','2018/09/hoodie.jpg'),(2641,1388,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:801;s:6:\"height\";i:801;s:4:\"file\";s:18:\"2018/09/hoodie.jpg\";s:5:\"sizes\";a:7:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"hoodie-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"hoodie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"hoodie-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"hoodie-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"hoodie-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"hoodie-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:18:\"hoodie-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2642,1388,'_starter_content_theme','storefront'),(2644,1389,'_wp_attached_file','2018/09/long-sleeve-tee.jpg'),(2645,1389,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:801;s:6:\"height\";i:801;s:4:\"file\";s:27:\"2018/09/long-sleeve-tee.jpg\";s:5:\"sizes\";a:7:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"long-sleeve-tee-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"long-sleeve-tee-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"long-sleeve-tee-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"long-sleeve-tee-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"long-sleeve-tee-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"long-sleeve-tee-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:27:\"long-sleeve-tee-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2646,1389,'_starter_content_theme','storefront'),(2648,1390,'_wp_attached_file','2018/09/polo.jpg'),(2649,1390,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:801;s:6:\"height\";i:800;s:4:\"file\";s:16:\"2018/09/polo.jpg\";s:5:\"sizes\";a:7:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"polo-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"polo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"polo-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"polo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"polo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"polo-768x767.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:767;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:16:\"polo-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2650,1390,'_starter_content_theme','storefront'),(2652,1391,'_wp_attached_file','2018/09/sunglasses.jpg'),(2653,1391,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:801;s:6:\"height\";i:801;s:4:\"file\";s:22:\"2018/09/sunglasses.jpg\";s:5:\"sizes\";a:7:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"sunglasses-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"sunglasses-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"sunglasses-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"sunglasses-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"sunglasses-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"sunglasses-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:22:\"sunglasses-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2654,1391,'_starter_content_theme','storefront'),(2656,1392,'_wp_attached_file','2018/09/tshirt.jpg'),(2657,1392,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:801;s:6:\"height\";i:801;s:4:\"file\";s:18:\"2018/09/tshirt.jpg\";s:5:\"sizes\";a:7:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"tshirt-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"tshirt-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"tshirt-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"tshirt-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"tshirt-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"tshirt-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:18:\"tshirt-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2658,1392,'_starter_content_theme','storefront'),(2660,1393,'_wp_attached_file','2018/09/vneck-tee.jpg'),(2661,1393,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:801;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2018/09/vneck-tee.jpg\";s:5:\"sizes\";a:7:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"vneck-tee-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"vneck-tee-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"vneck-tee-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"vneck-tee-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"vneck-tee-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"vneck-tee-768x767.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:767;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:21:\"vneck-tee-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2662,1393,'_starter_content_theme','storefront'),(2664,1394,'_wp_attached_file','2018/09/hero.jpg'),(2665,1394,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3795;s:6:\"height\";i:2355;s:4:\"file\";s:16:\"2018/09/hero.jpg\";s:5:\"sizes\";a:7:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"hero-400x248.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"hero-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"hero-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"hero-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"hero-300x186.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"hero-768x477.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:477;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"hero-1024x635.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:635;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2666,1394,'_starter_content_theme','storefront'),(2668,1395,'_wp_attached_file','2018/09/accessories.jpg'),(2669,1395,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:801;s:6:\"height\";i:801;s:4:\"file\";s:23:\"2018/09/accessories.jpg\";s:5:\"sizes\";a:7:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"accessories-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"accessories-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"accessories-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"accessories-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"accessories-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"accessories-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:23:\"accessories-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2670,1395,'_starter_content_theme','storefront'),(2672,1396,'_wp_attached_file','2018/09/tshirts.jpg'),(2673,1396,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:801;s:6:\"height\";i:801;s:4:\"file\";s:19:\"2018/09/tshirts.jpg\";s:5:\"sizes\";a:7:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"tshirts-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"tshirts-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"tshirts-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"tshirts-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"tshirts-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"tshirts-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:19:\"tshirts-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2674,1396,'_starter_content_theme','storefront'),(2676,1397,'_wp_attached_file','2018/09/hoodies.jpg'),(2677,1397,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:19:\"2018/09/hoodies.jpg\";s:5:\"sizes\";a:7:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"hoodies-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"hoodies-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"hoodies-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"hoodies-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"hoodies-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"hoodies-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:19:\"hoodies-324x324.jpg\";s:5:\"width\";i:324;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2678,1397,'_starter_content_theme','storefront'),(2680,1398,'_thumbnail_id','1394'),(2681,1398,'_wp_page_template','default'),(5019,1792,'_date_completed',''),(2683,1398,'_customize_changeset_uuid','4f5846ab-9e03-4476-904b-f352cbf4324a'),(2685,1399,'_customize_changeset_uuid','4f5846ab-9e03-4476-904b-f352cbf4324a'),(4907,1770,'_wp_page_template','default'),(4908,1770,'_responsive_layout','default'),(4909,1770,'_yoast_wpseo_content_score','60'),(6377,2168,'_edit_lock','1544618858:1'),(6375,2163,'_menu_item_url',''),(6374,2163,'_menu_item_xfn',''),(6373,2163,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6372,2163,'_menu_item_target',''),(6371,2163,'_menu_item_object','page'),(6370,2163,'_menu_item_object_id','2151'),(4902,1758,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:4:\"file\";s:27:\"2018/10/ANXIETY-FINGERS.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"ANXIETY-FINGERS-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"ANXIETY-FINGERS-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"ANXIETY-FINGERS-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"ANXIETY-FINGERS-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:27:\"ANXIETY-FINGERS-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:27:\"ANXIETY-FINGERS-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:27:\"ANXIETY-FINGERS-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:27:\"ANXIETY-FINGERS-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:27:\"ANXIETY-FINGERS-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:27:\"ANXIETY-FINGERS-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:27:\"ANXIETY-FINGERS-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"ANXIETY-FINGERS-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"ANXIETY-FINGERS-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"ANXIETY-FINGERS-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"ANXIETY-FINGERS-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"ANXIETY-FINGERS-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"ANXIETY-FINGERS-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4901,1758,'_wp_attached_file','2018/10/ANXIETY-FINGERS.jpg'),(4899,1756,'_menu_item_url',''),(4898,1756,'_menu_item_xfn',''),(4897,1756,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4896,1756,'_menu_item_target',''),(4895,1756,'_menu_item_object','page'),(4894,1756,'_menu_item_object_id','1749'),(4893,1756,'_menu_item_menu_item_parent','804'),(4892,1756,'_menu_item_type','post_type'),(4891,1548,'_thumbnail_id','1750'),(4889,1749,'_yoast_wpseo_content_score','90'),(4888,1749,'_responsive_layout','default'),(4887,1749,'_wp_page_template','default'),(6369,2163,'_menu_item_menu_item_parent','1497'),(6368,2163,'_menu_item_type','post_type'),(6367,2151,'_yoast_wpseo_is_cornerstone','1'),(6366,2151,'_thumbnail_id','1876'),(6365,2151,'_yoast_wpseo_linkdex','96'),(6364,2151,'_yoast_wpseo_metadesc','Newcastle Hypnotherapy in Wallsend offer a range of services to help with stress, anxiety, pain, weight loss, stop smoking, confidence, habits & behaviour'),(6363,2151,'_yoast_wpseo_title','Newcastle Hypnotherapy In Wallsend - Clincal Hypnosis Services'),(6362,2151,'_yoast_wpseo_focuskw','newcastle hypnotherapy in wallsend'),(6361,2151,'_yoast_wpseo_content_score','90'),(6360,2151,'_responsive_layout','default'),(6359,2151,'_wp_page_template','default'),(6358,2151,'_edit_last','1'),(4956,1780,'_menu_item_target',''),(4955,1780,'_menu_item_object','page'),(4954,1780,'_menu_item_object_id','1770'),(4953,1780,'_menu_item_menu_item_parent','804'),(4952,1780,'_menu_item_type','post_type'),(4951,1770,'_yoast_wpseo_linkdex','79'),(4950,1770,'_yoast_wpseo_metadesc','Edgar Cayce Talk by Sandra Michelson. Learn about this amazing American clairvoyant & psychic on healing, reincarnation, wars, health.'),(4949,1770,'_yoast_wpseo_title','Edgar Cayce Talk by Sandra Michelson - Wednesday Workshop'),(4948,1770,'_yoast_wpseo_focuskw','Edgar Cayce Talk by Sandra Michelson'),(6357,2151,'_edit_lock','1552580549:1'),(6355,2147,'_menu_item_url',''),(6354,2147,'_menu_item_xfn',''),(4973,1791,'_completed_date',''),(4972,1791,'_date_completed',''),(4971,1791,'_created_via','checkout'),(4970,1791,'_customer_user_agent','mozilla/5.0 (ipad; cpu os 12_0 like mac os x) applewebkit/605.1.15 (khtml, like gecko) version/12.0 mobile/15e148 safari/604.1'),(4969,1791,'_customer_ip_address','81.111.225.121'),(4968,1791,'_transaction_id',''),(4967,1791,'_payment_method_title','Direct bank transfer'),(4966,1791,'_payment_method','bacs'),(4965,1791,'_customer_user','0'),(4963,1749,'_yoast_wpseo_title','Improving Your Memory 21st October'),(4964,1791,'_order_key','wc_order_5bbfa868cde59'),(4961,1749,'_yoast_wpseo_metadesc','Improving the memory using amazing nlp skills. People with good memorys have good skills and techniques. Learing these skill can also help you to improve'),(4959,1780,'_menu_item_url',''),(4993,1791,'_shipping_city',''),(4992,1791,'_shipping_address_2',''),(4991,1791,'_shipping_address_1',''),(4990,1791,'_shipping_company',''),(4989,1791,'_shipping_last_name',''),(4988,1791,'_shipping_first_name',''),(4987,1791,'_billing_phone','07505148272'),(4986,1791,'_billing_email','carms.e.d@gmail.com'),(4985,1791,'_billing_country','GB'),(4984,1791,'_billing_postcode','NE3 1BA'),(4983,1791,'_billing_state','Tyne and Wear'),(4982,1791,'_billing_city','Newcastle'),(4981,1791,'_billing_address_2','Gosforth'),(4980,1791,'_billing_address_1','3 Oswald Walk'),(4979,1791,'_billing_company',''),(4978,1791,'_billing_last_name','Brown'),(4977,1791,'_billing_first_name','Carmen'),(5010,1791,'_order_stock_reduced','yes'),(5009,1791,'_recorded_coupon_usage_counts','yes'),(5008,1791,'_recorded_sales','yes'),(5007,1791,'_shipping_address_index','         07505148272'),(5006,1791,'_billing_address_index','Carmen Brown  3 Oswald Walk Gosforth Newcastle Tyne and Wear NE3 1BA GB carms.e.d@gmail.com 07505148272'),(5005,1791,'_prices_include_tax','no'),(5004,1791,'_order_version','3.4.5'),(5003,1791,'_order_total','8.50'),(5002,1791,'_order_tax','0'),(5001,1791,'_order_shipping_tax','0'),(5000,1791,'_order_shipping','0.00'),(4999,1791,'_cart_discount_tax','0'),(4998,1791,'_cart_discount','0'),(4997,1791,'_order_currency','GBP'),(4886,1750,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:18:\"2018/10/memory.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"memory-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"memory-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"memory-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"memory-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:17:\"memory-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:18:\"memory-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:18:\"memory-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:18:\"memory-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:18:\"memory-450x338.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:18:\"memory-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:18:\"memory-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"memory-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"memory-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"memory-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"memory-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"memory-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"memory-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4885,1750,'_wp_attached_file','2018/10/memory.jpg'),(4884,1749,'_edit_last','1'),(5018,1792,'_created_via','checkout'),(5016,1792,'_customer_ip_address','217.43.120.240'),(5017,1792,'_customer_user_agent','mozilla/5.0 (ipad; cpu os 9_3_5 like mac os x) applewebkit/601.1.46 (khtml, like gecko) version/9.0 mobile/13g36 safari/601.1'),(5014,1792,'_payment_method_title','Direct bank transfer'),(5015,1792,'_transaction_id',''),(5013,1792,'_payment_method','bacs'),(5012,1792,'_customer_user','0'),(3132,1376,'_edit_lock','1537471498:1'),(3134,1421,'_wp_attached_file','2018/09/anxiety-freedom.jpg'),(3135,1421,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:27:\"2018/09/anxiety-freedom.jpg\";s:5:\"sizes\";a:11:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"anxiety-freedom-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"anxiety-freedom-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"anxiety-freedom-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"anxiety-freedom-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"anxiety-freedom-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:27:\"anxiety-freedom-595x224.jpg\";s:5:\"width\";i:595;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"anxiety-freedom-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"anxiety-freedom-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"anxiety-freedom-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"anxiety-freedom-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"anxiety-freedom-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3136,1421,'_wp_attachment_image_alt','anxiety freedom'),(5011,1792,'_order_key','wc_order_5bc05c8333903'),(4996,1791,'_shipping_country',''),(4995,1791,'_shipping_postcode',''),(4994,1791,'_shipping_state',''),(4976,1791,'_cart_hash','610ad97bde8c84e2785e706216b7b18b'),(4975,1791,'_paid_date',''),(4974,1791,'_date_paid',''),(4958,1780,'_menu_item_xfn',''),(4957,1780,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6353,2147,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6352,2147,'_menu_item_target',''),(6351,2147,'_menu_item_object','page'),(6350,2147,'_menu_item_object_id','1813'),(6349,2147,'_menu_item_menu_item_parent','1497'),(6348,2147,'_menu_item_type','post_type'),(4883,1749,'_edit_lock','1568382129:1'),(3170,1430,'_wc_review_count','0'),(3171,1430,'_wc_rating_count','a:0:{}'),(3172,1430,'_wc_average_rating','0'),(3173,1430,'_edit_lock','1537896317:1'),(3174,1430,'_edit_last','1'),(3175,1430,'_sku','ARP 01'),(3176,1430,'_regular_price','235'),(3177,1430,'_sale_price',''),(3178,1430,'_sale_price_dates_from',''),(3179,1430,'_sale_price_dates_to',''),(3180,1430,'total_sales','7'),(3181,1430,'_tax_status','none'),(3182,1430,'_tax_class','zero-rate'),(3183,1430,'_manage_stock','no'),(3184,1430,'_backorders','no'),(3185,1430,'_sold_individually','no'),(3186,1430,'_weight',''),(3187,1430,'_length',''),(3188,1430,'_width',''),(3189,1430,'_height',''),(3190,1430,'_upsell_ids','a:0:{}'),(3191,1430,'_crosssell_ids','a:0:{}'),(3192,1430,'_purchase_note',''),(3193,1430,'_default_attributes','a:0:{}'),(3194,1430,'_virtual','no'),(3195,1430,'_downloadable','yes'),(3196,1430,'_product_image_gallery',''),(3197,1430,'_download_limit','5'),(3198,1430,'_download_expiry','-1'),(3199,1430,'_stock',NULL),(3200,1430,'_stock_status','instock'),(3201,1430,'_product_version','3.4.5'),(3202,1430,'_price','235'),(3203,1430,'_yoast_wpseo_primary_product_cat','46'),(3204,1430,'_yoast_wpseo_content_score','90'),(4246,1589,'_wp_attached_file','2018/09/New-Client-Form-NH.doc'),(3206,1430,'_downloadable_files','a:1:{s:36:\"d48ed34d-467f-49e9-9a65-72e4ff1dad5a\";a:3:{s:2:\"id\";s:36:\"d48ed34d-467f-49e9-9a65-72e4ff1dad5a\";s:4:\"name\";s:15:\"Client-Form.doc\";s:4:\"file\";s:101:\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/woocommerce_uploads/2018/09/Client-Form.doc\";}}'),(3208,1430,'_wpas_done_all','1'),(3209,1430,'_thumbnail_id','1421'),(3211,822,'_wp_attachment_image_alt','Newcastle Hypnotherapy'),(3212,1436,'_wp_attached_file','2018/05/cropped-smiley-2979107_1280.jpg'),(3213,1436,'_wp_attachment_context','site-icon'),(3214,1436,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:39:\"2018/05/cropped-smiley-2979107_1280.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-smiley-2979107_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"cropped-smiley-2979107_1280-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post_thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-smiley-2979107_1280-512x224.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:39:\"cropped-smiley-2979107_1280-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-smiley-2979107_1280-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:39:\"cropped-smiley-2979107_1280-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-smiley-2979107_1280-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:39:\"cropped-smiley-2979107_1280-270x270.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:39:\"cropped-smiley-2979107_1280-192x192.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:39:\"cropped-smiley-2979107_1280-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:37:\"cropped-smiley-2979107_1280-32x32.jpg\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3217,1437,'_edit_lock','1559203411:1'),(3218,1437,'_edit_last','1'),(3219,1437,'_wp_page_template','content-sidebar-page.php'),(3220,1437,'_yoast_wpseo_focuskw','newcastle hypnotherapy'),(3221,1437,'_yoast_wpseo_title','Hypnotherapy In Newcastle upon Tyne, Northumberland & Online'),(3222,1437,'_yoast_wpseo_metadesc','Newcastle Hypnotherapy - expert help for anxiety, stress, despression, pain, confidence and many other issues. Arrange your free consultation today.'),(3223,1437,'_yoast_wpseo_linkdex','92'),(3224,1437,'_yoast_wpseo_content_score','60'),(4906,1771,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:268;s:4:\"file\";s:22:\"2018/10/Cayce_1910.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Cayce_1910-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:22:\"Cayce_1910-100x134.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:22:\"Cayce_1910-150x201.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:22:\"Cayce_1910-200x268.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"Cayce_1910-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"Cayce_1910-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3227,1398,'_edit_lock','1540835255:1'),(4905,1771,'_wp_attached_file','2018/10/Cayce_1910.jpg'),(4904,1770,'_edit_last','1'),(4903,1770,'_edit_lock','1541717831:1'),(3236,1446,'_wp_attached_file','2018/06/cropped-ggl-logo.png'),(3237,1446,'_wp_attachment_context','custom-header'),(3238,1446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:83;s:4:\"file\";s:28:\"2018/06/cropped-ggl-logo.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-ggl-logo-150x83.png\";s:5:\"width\";i:150;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:27:\"cropped-ggl-logo-100x33.png\";s:5:\"width\";i:100;s:6:\"height\";i:33;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:27:\"cropped-ggl-logo-150x50.png\";s:5:\"width\";i:150;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:27:\"cropped-ggl-logo-200x66.png\";s:5:\"width\";i:200;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-ggl-logo-100x83.png\";s:5:\"width\";i:100;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-ggl-logo-100x83.png\";s:5:\"width\";i:100;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3239,1446,'_wp_attachment_custom_header_last_used_responsive','1537291697'),(3240,1446,'_wp_attachment_is_custom_header','responsive'),(6335,2121,'_menu_item_type','post_type'),(3256,1451,'_edit_lock','1540834433:1'),(3257,1451,'_edit_last','1'),(3258,1451,'_wp_page_template','default'),(3259,1451,'_yoast_wpseo_content_score','30'),(3264,1377,'_edit_lock','1537470340:1'),(4572,1639,'_yoast_wpseo_content_score','90'),(4571,1639,'_responsive_layout','default'),(5427,1917,'_price','15.00'),(5426,1917,'_product_version','3.7.0'),(4570,1639,'_wp_page_template','default'),(3290,1461,'_wp_attachment_image_alt','Newcastle Hypnotherapy'),(3295,1463,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:352;s:6:\"height\";i:89;s:4:\"file\";s:38:\"2018/09/Newcastle-Hypnotherapy-400.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Newcastle-Hypnotherapy-400-150x89.png\";s:5:\"width\";i:150;s:6:\"height\";i:89;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Newcastle-Hypnotherapy-400-300x76.png\";s:5:\"width\";i:300;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:37:\"Newcastle-Hypnotherapy-400-100x25.png\";s:5:\"width\";i:100;s:6:\"height\";i:25;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:37:\"Newcastle-Hypnotherapy-400-150x38.png\";s:5:\"width\";i:150;s:6:\"height\";i:38;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:37:\"Newcastle-Hypnotherapy-400-200x51.png\";s:5:\"width\";i:200;s:6:\"height\";i:51;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:37:\"Newcastle-Hypnotherapy-400-300x76.png\";s:5:\"width\";i:300;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"Newcastle-Hypnotherapy-400-300x89.png\";s:5:\"width\";i:300;s:6:\"height\";i:89;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"Newcastle-Hypnotherapy-400-100x89.png\";s:5:\"width\";i:100;s:6:\"height\";i:89;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"Newcastle-Hypnotherapy-400-300x89.png\";s:5:\"width\";i:300;s:6:\"height\";i:89;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"Newcastle-Hypnotherapy-400-100x89.png\";s:5:\"width\";i:100;s:6:\"height\";i:89;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3294,1463,'_wp_attached_file','2018/09/Newcastle-Hypnotherapy-400.png'),(5423,1917,'_download_expiry','-1'),(3296,1463,'_wp_attachment_image_alt','Newcastle Hypnotherapy'),(3300,1464,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:302;s:6:\"height\";i:77;s:4:\"file\";s:41:\"2018/09/1115_NewcastleHypnotherapy300.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"1115_NewcastleHypnotherapy300-150x77.png\";s:5:\"width\";i:150;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"1115_NewcastleHypnotherapy300-300x76.png\";s:5:\"width\";i:300;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:40:\"1115_NewcastleHypnotherapy300-100x25.png\";s:5:\"width\";i:100;s:6:\"height\";i:25;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:40:\"1115_NewcastleHypnotherapy300-150x38.png\";s:5:\"width\";i:150;s:6:\"height\";i:38;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:40:\"1115_NewcastleHypnotherapy300-200x51.png\";s:5:\"width\";i:200;s:6:\"height\";i:51;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:40:\"1115_NewcastleHypnotherapy300-300x76.png\";s:5:\"width\";i:300;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:40:\"1115_NewcastleHypnotherapy300-300x77.png\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"1115_NewcastleHypnotherapy300-100x77.png\";s:5:\"width\";i:100;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:40:\"1115_NewcastleHypnotherapy300-300x77.png\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"1115_NewcastleHypnotherapy300-100x77.png\";s:5:\"width\";i:100;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3299,1464,'_wp_attached_file','2018/09/1115_NewcastleHypnotherapy300.png'),(3301,1464,'_wp_attachment_image_alt','Newcastle Hypnotherapy'),(3571,1519,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:67;s:4:\"file\";s:38:\"2018/09/Newcastle-Hypnotherapy-270.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Newcastle-Hypnotherapy-270-150x67.png\";s:5:\"width\";i:150;s:6:\"height\";i:67;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:37:\"Newcastle-Hypnotherapy-270-100x25.png\";s:5:\"width\";i:100;s:6:\"height\";i:25;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:37:\"Newcastle-Hypnotherapy-270-150x37.png\";s:5:\"width\";i:150;s:6:\"height\";i:37;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:37:\"Newcastle-Hypnotherapy-270-200x50.png\";s:5:\"width\";i:200;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"Newcastle-Hypnotherapy-270-100x67.png\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"Newcastle-Hypnotherapy-270-100x67.png\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3570,1519,'_wp_attached_file','2018/09/Newcastle-Hypnotherapy-270.png'),(5425,1917,'_stock_status','instock'),(5424,1917,'_stock','11'),(5420,1917,'_downloadable','no'),(5421,1917,'_product_image_gallery',''),(5422,1917,'_download_limit','-1'),(5418,1917,'_default_attributes','a:0:{}'),(5419,1917,'_virtual','no'),(3326,1470,'_menu_item_object','page'),(3325,1470,'_menu_item_object_id','1252'),(3324,1470,'_menu_item_menu_item_parent','1458'),(3323,1470,'_menu_item_type','post_type'),(5416,1917,'_crosssell_ids','a:0:{}'),(5417,1917,'_purchase_note','Thank you for booking. An email will be sent to you a few days before this event with direction.'),(3327,1470,'_menu_item_target',''),(3328,1470,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3329,1470,'_menu_item_xfn',''),(3330,1470,'_menu_item_url',''),(5415,1917,'_upsell_ids','a:0:{}'),(5414,1917,'_height',''),(3334,1472,'_menu_item_type','post_type'),(3335,1472,'_menu_item_menu_item_parent','1458'),(3336,1472,'_menu_item_object_id','68'),(3337,1472,'_menu_item_object','page'),(3338,1472,'_menu_item_target',''),(3339,1472,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3340,1472,'_menu_item_xfn',''),(3341,1472,'_menu_item_url',''),(3343,1473,'_menu_item_type','post_type'),(3344,1473,'_menu_item_menu_item_parent','1458'),(3345,1473,'_menu_item_object_id','106'),(3346,1473,'_menu_item_object','page'),(3347,1473,'_menu_item_target',''),(3348,1473,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3349,1473,'_menu_item_xfn',''),(3350,1473,'_menu_item_url',''),(3352,1474,'_menu_item_type','post_type'),(3353,1474,'_menu_item_menu_item_parent','1458'),(3354,1474,'_menu_item_object_id','556'),(3355,1474,'_menu_item_object','page'),(3356,1474,'_menu_item_target',''),(3357,1474,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3358,1474,'_menu_item_xfn',''),(3359,1474,'_menu_item_url',''),(3361,1475,'_menu_item_type','post_type'),(3362,1475,'_menu_item_menu_item_parent','1458'),(3363,1475,'_menu_item_object_id','824'),(3364,1475,'_menu_item_object','page'),(3365,1475,'_menu_item_target',''),(3366,1475,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3367,1475,'_menu_item_xfn',''),(3368,1475,'_menu_item_url',''),(3370,1476,'_menu_item_type','post_type'),(3371,1476,'_menu_item_menu_item_parent','1458'),(3372,1476,'_menu_item_object_id','122'),(3373,1476,'_menu_item_object','page'),(3374,1476,'_menu_item_target',''),(3375,1476,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3376,1476,'_menu_item_xfn',''),(3377,1476,'_menu_item_url',''),(3379,1477,'_menu_item_type','post_type'),(3380,1477,'_menu_item_menu_item_parent','1458'),(3381,1477,'_menu_item_object_id','948'),(3382,1477,'_menu_item_object','page'),(3383,1477,'_menu_item_target',''),(3384,1477,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3385,1477,'_menu_item_xfn',''),(3386,1477,'_menu_item_url',''),(3397,1479,'_menu_item_type','post_type'),(3388,1478,'_menu_item_type','post_type'),(3389,1478,'_menu_item_menu_item_parent','1458'),(3390,1478,'_menu_item_object_id','486'),(3391,1478,'_menu_item_object','page'),(3392,1478,'_menu_item_target',''),(3393,1478,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3394,1478,'_menu_item_xfn',''),(3395,1478,'_menu_item_url',''),(3398,1479,'_menu_item_menu_item_parent','804'),(3399,1479,'_menu_item_object_id','1291'),(3400,1479,'_menu_item_object','page'),(3401,1479,'_menu_item_target',''),(3402,1479,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3403,1479,'_menu_item_xfn',''),(3404,1479,'_menu_item_url',''),(5412,1917,'_length',''),(3406,1480,'_menu_item_type','post_type'),(3407,1480,'_menu_item_menu_item_parent','804'),(3408,1480,'_menu_item_object_id','1185'),(3409,1480,'_menu_item_object','page'),(3410,1480,'_menu_item_target',''),(3411,1480,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3412,1480,'_menu_item_xfn',''),(3413,1480,'_menu_item_url',''),(5409,1917,'_low_stock_amount','5'),(3415,1481,'_menu_item_type','post_type'),(3416,1481,'_menu_item_menu_item_parent','2311'),(3417,1481,'_menu_item_object_id','347'),(3418,1481,'_menu_item_object','page'),(3419,1481,'_menu_item_target',''),(3420,1481,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3421,1481,'_menu_item_xfn',''),(3422,1481,'_menu_item_url',''),(5406,1917,'_tax_class','zero-rate'),(3424,1482,'_menu_item_type','post_type'),(3425,1482,'_menu_item_menu_item_parent','804'),(3426,1482,'_menu_item_object_id','1035'),(3427,1482,'_menu_item_object','page'),(3428,1482,'_menu_item_target',''),(3429,1482,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3430,1482,'_menu_item_xfn',''),(3431,1482,'_menu_item_url',''),(5411,1917,'_weight',''),(3433,1483,'_menu_item_type','post_type'),(3434,1483,'_menu_item_menu_item_parent','804'),(3435,1483,'_menu_item_object_id','422'),(3436,1483,'_menu_item_object','page'),(3437,1483,'_menu_item_target',''),(3438,1483,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3439,1483,'_menu_item_xfn',''),(3440,1483,'_menu_item_url',''),(5413,1917,'_width',''),(3442,1484,'_menu_item_type','post_type'),(3443,1484,'_menu_item_menu_item_parent','804'),(3444,1484,'_menu_item_object_id','560'),(3445,1484,'_menu_item_object','page'),(3446,1484,'_menu_item_target',''),(3447,1484,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3448,1484,'_menu_item_xfn',''),(3449,1484,'_menu_item_url',''),(5410,1917,'_sold_individually','no'),(3457,1488,'_wp_attached_file','2018/09/sq.png'),(3458,1488,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:521;s:6:\"height\";i:512;s:4:\"file\";s:14:\"2018/09/sq.png\";s:5:\"sizes\";a:12:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:14:\"sq-400x393.png\";s:5:\"width\";i:400;s:6:\"height\";i:393;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"sq-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"sq-300x295.png\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:13:\"sq-100x98.png\";s:5:\"width\";i:100;s:6:\"height\";i:98;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:14:\"sq-150x147.png\";s:5:\"width\";i:150;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:14:\"sq-200x197.png\";s:5:\"width\";i:200;s:6:\"height\";i:197;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:14:\"sq-300x295.png\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:14:\"sq-450x442.png\";s:5:\"width\";i:450;s:6:\"height\";i:442;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:14:\"sq-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:14:\"sq-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:14:\"sq-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:14:\"sq-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3459,1488,'_wp_attachment_image_alt','Newcastle Hypnotherapy'),(3460,1489,'_wp_attached_file','2018/09/cropped-sq.png'),(3461,1489,'_wp_attachment_context','site-icon'),(3462,1489,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:22:\"2018/09/cropped-sq.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cropped-sq-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"cropped-sq-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:22:\"cropped-sq-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:22:\"cropped-sq-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:22:\"cropped-sq-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:22:\"cropped-sq-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:22:\"cropped-sq-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"cropped-sq-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"cropped-sq-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"cropped-sq-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"cropped-sq-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:22:\"cropped-sq-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:22:\"cropped-sq-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:22:\"cropped-sq-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:20:\"cropped-sq-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5408,1917,'_backorders','no'),(5407,1917,'_manage_stock','yes'),(5403,1917,'_sale_price_dates_to',''),(3466,1437,'_responsive_layout','default'),(5405,1917,'_tax_status','none'),(5404,1917,'total_sales','25'),(5400,1917,'_regular_price','15.00'),(11443,3160,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568378448;}'),(5402,1917,'_sale_price_dates_from',''),(5399,1917,'_sku',''),(5429,1917,'_wpas_done_all','1'),(6346,1568,'_yoast_wpseo_metadesc','Past Life Regression Hypnosis Sessions are fascinating and a nice way to explore past lives for therapy purposes or just for curiosity.'),(6804,2476,'_wp_attached_file','2019/01/NHHS.png'),(3483,1495,'_edit_lock','1540834701:1'),(3484,1495,'_edit_last','1'),(4348,1612,'_thumbnail_id','1488'),(3485,1495,'_thumbnail_id','1488'),(3486,1495,'_wp_page_template','default'),(3487,1495,'_responsive_layout','default'),(3488,1495,'_yoast_wpseo_content_score','60'),(3489,1497,'_menu_item_type','post_type'),(3490,1497,'_menu_item_menu_item_parent','0'),(3491,1497,'_menu_item_object_id','1495'),(3492,1497,'_menu_item_object','page'),(3493,1497,'_menu_item_target',''),(3494,1497,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3495,1497,'_menu_item_xfn',''),(3496,1497,'_menu_item_url',''),(3498,1498,'_menu_item_type','post_type'),(3499,1498,'_menu_item_menu_item_parent','1497'),(3500,1498,'_menu_item_object_id','1399'),(3501,1498,'_menu_item_object','page'),(3502,1498,'_menu_item_target',''),(3503,1498,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3504,1498,'_menu_item_xfn',''),(3505,1498,'_menu_item_url',''),(5397,1917,'_thumbnail_id','1186'),(5396,1917,'_edit_last','1'),(3509,1500,'_menu_item_type','post_type'),(3510,1500,'_menu_item_menu_item_parent','1497'),(3511,1500,'_menu_item_object_id','1328'),(3512,1500,'_menu_item_object','page'),(3513,1500,'_menu_item_target',''),(3514,1500,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3515,1500,'_menu_item_xfn',''),(3516,1500,'_menu_item_url',''),(3518,1501,'_menu_item_type','post_type'),(3519,1501,'_menu_item_menu_item_parent','1497'),(3520,1501,'_menu_item_object_id','1317'),(3521,1501,'_menu_item_object','page'),(3522,1501,'_menu_item_target',''),(3523,1501,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3524,1501,'_menu_item_xfn',''),(3525,1501,'_menu_item_url',''),(3545,1504,'_menu_item_type','post_type'),(3546,1504,'_menu_item_menu_item_parent','1497'),(3547,1504,'_menu_item_object_id','892'),(3548,1504,'_menu_item_object','page'),(3549,1504,'_menu_item_target',''),(3550,1504,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3551,1504,'_menu_item_xfn',''),(3552,1504,'_menu_item_url',''),(5395,1917,'_edit_lock','1568378303:1'),(5392,1917,'_wc_review_count','0'),(5393,1917,'_wc_rating_count','a:0:{}'),(5394,1917,'_wc_average_rating','0'),(4569,1639,'_edit_last','1'),(4568,1639,'_edit_lock','1540834317:1'),(3572,1519,'_wp_attachment_image_alt','Newcastle Hypnotherapy'),(3577,1521,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:405;s:6:\"height\";i:102;s:4:\"file\";s:43:\"2018/09/1115_NewcastleHypnotherapy-3001.png\";s:5:\"sizes\";a:11:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:43:\"1115_NewcastleHypnotherapy-3001-400x101.png\";s:5:\"width\";i:400;s:6:\"height\";i:101;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"1115_NewcastleHypnotherapy-3001-150x102.png\";s:5:\"width\";i:150;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"1115_NewcastleHypnotherapy-3001-300x76.png\";s:5:\"width\";i:300;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:42:\"1115_NewcastleHypnotherapy-3001-100x25.png\";s:5:\"width\";i:100;s:6:\"height\";i:25;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:42:\"1115_NewcastleHypnotherapy-3001-150x38.png\";s:5:\"width\";i:150;s:6:\"height\";i:38;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:42:\"1115_NewcastleHypnotherapy-3001-200x50.png\";s:5:\"width\";i:200;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:42:\"1115_NewcastleHypnotherapy-3001-300x76.png\";s:5:\"width\";i:300;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:43:\"1115_NewcastleHypnotherapy-3001-300x102.png\";s:5:\"width\";i:300;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:43:\"1115_NewcastleHypnotherapy-3001-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:43:\"1115_NewcastleHypnotherapy-3001-300x102.png\";s:5:\"width\";i:300;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"1115_NewcastleHypnotherapy-3001-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3576,1521,'_wp_attached_file','2018/09/1115_NewcastleHypnotherapy-3001.png'),(3578,1521,'_wp_attachment_image_alt','Newcastle Hypnotherapy 3001'),(3579,1522,'_wp_attached_file','2018/09/cropped-1115_NewcastleHypnotherapy-3001.png'),(3580,1522,'_wp_attachment_context','custom-header'),(3581,1522,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:405;s:6:\"height\";i:102;s:4:\"file\";s:51:\"2018/09/cropped-1115_NewcastleHypnotherapy-3001.png\";s:5:\"sizes\";a:11:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:51:\"cropped-1115_NewcastleHypnotherapy-3001-400x101.png\";s:5:\"width\";i:400;s:6:\"height\";i:101;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"cropped-1115_NewcastleHypnotherapy-3001-150x102.png\";s:5:\"width\";i:150;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"cropped-1115_NewcastleHypnotherapy-3001-300x76.png\";s:5:\"width\";i:300;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:50:\"cropped-1115_NewcastleHypnotherapy-3001-100x25.png\";s:5:\"width\";i:100;s:6:\"height\";i:25;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:50:\"cropped-1115_NewcastleHypnotherapy-3001-150x38.png\";s:5:\"width\";i:150;s:6:\"height\";i:38;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:50:\"cropped-1115_NewcastleHypnotherapy-3001-200x50.png\";s:5:\"width\";i:200;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:50:\"cropped-1115_NewcastleHypnotherapy-3001-300x76.png\";s:5:\"width\";i:300;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:51:\"cropped-1115_NewcastleHypnotherapy-3001-300x102.png\";s:5:\"width\";i:300;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:51:\"cropped-1115_NewcastleHypnotherapy-3001-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:51:\"cropped-1115_NewcastleHypnotherapy-3001-300x102.png\";s:5:\"width\";i:300;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:51:\"cropped-1115_NewcastleHypnotherapy-3001-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3590,1524,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:361;s:6:\"height\";i:100;s:4:\"file\";s:17:\"2018/09/NHw01.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"NHw01-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"NHw01-300x83.png\";s:5:\"width\";i:300;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:16:\"NHw01-100x28.png\";s:5:\"width\";i:100;s:6:\"height\";i:28;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:16:\"NHw01-150x42.png\";s:5:\"width\";i:150;s:6:\"height\";i:42;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:16:\"NHw01-200x55.png\";s:5:\"width\";i:200;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:16:\"NHw01-300x83.png\";s:5:\"width\";i:300;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"NHw01-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"NHw01-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:17:\"NHw01-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"NHw01-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3589,1524,'_wp_attached_file','2018/09/NHw01.png'),(5388,1185,'_responsive_layout','default'),(3591,1524,'_wp_attachment_image_alt','Newcastle Hypnotherapy'),(3592,1524,'_wp_attachment_custom_header_last_used_responsivepro','1537376516'),(3593,1524,'_wp_attachment_is_custom_header','responsivepro'),(3600,1529,'_edit_lock','1540834946:1'),(3601,1529,'_edit_last','1'),(3602,1529,'_wp_page_template','full-width-page.php'),(3603,1529,'_responsive_layout','default'),(3604,1529,'_yoast_wpseo_content_score','60'),(4695,1668,'_form','<fieldset>\n	<legend>Contact Form</legend>\n	<ol>\n		<li> Your Name (required) [text* cf7s-name] </li>\n		<li> Email Address (required) [email* cf7s-email-address] </li>\n		\n	</ol>\n	[submit \"Submit\"]\n	<p>* Required</p>\n</fieldset>\n<p>We are GDPR Compliant. Your details will only be used to send your information as stated above. </p>'),(5378,1900,'_responsive_layout','default'),(5377,1900,'_wp_page_template','default'),(5374,1900,'_edit_lock','1541715972:1'),(5375,1900,'_edit_last','1'),(5376,1771,'_wp_attachment_image_alt','Edgar Cayce American Psychic & Clairvoyant Talk'),(6805,2476,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:886;s:6:\"height\";i:886;s:4:\"file\";s:16:\"2019/01/NHHS.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"NHHS-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"NHHS-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"NHHS-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:16:\"NHHS-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:16:\"NHHS-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:16:\"NHHS-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:16:\"NHHS-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:16:\"NHHS-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:16:\"NHHS-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"NHHS-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"NHHS-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"NHHS-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"NHHS-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"NHHS-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"NHHS-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6342,2121,'_menu_item_url',''),(5173,1813,'_yoast_wpseo_title','Newcastle Hypnotherapy in Seaton Delaval - Clinical Hypnosis Services'),(5172,1813,'_yoast_wpseo_linkdex','78'),(5171,1813,'_yoast_wpseo_focuskw','newcastle hypnotherapy in seaton delaval'),(5170,1818,'_wp_attachment_image_alt','Choosing Your Hypnotherapist'),(5160,1796,'_yoast_wpseo_content_score','90'),(5159,1796,'_responsive_layout','default'),(5158,1796,'_wp_page_template','default'),(3664,1377,'_edit_last','1'),(3665,1377,'_wp_page_template','full-width-page.php'),(3666,1377,'_responsive_layout','default'),(3667,1377,'_yoast_wpseo_content_score','30'),(3668,1376,'_edit_last','1'),(3669,1376,'_wp_page_template','full-width-page.php'),(3670,1376,'_responsive_layout','default'),(3671,1376,'_yoast_wpseo_content_score','90'),(5192,1813,'_thumbnail_id','1876'),(5193,1876,'_wp_attached_file','2018/10/fb-header01NH.jpg'),(5194,1876,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:719;s:4:\"file\";s:25:\"2018/10/fb-header01NH.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"fb-header01NH-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"fb-header01NH-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"fb-header01NH-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"fb-header01NH-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:24:\"fb-header01NH-100x56.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:56;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:24:\"fb-header01NH-150x84.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:25:\"fb-header01NH-200x112.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:25:\"fb-header01NH-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:25:\"fb-header01NH-450x253.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:253;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:25:\"fb-header01NH-600x337.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:25:\"fb-header01NH-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"fb-header01NH-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"fb-header01NH-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"fb-header01NH-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"fb-header01NH-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"fb-header01NH-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"fb-header01NH-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5209,1878,'_billing_first_name','Lesley-Ann'),(5210,1878,'_billing_last_name','Iveson'),(5208,1878,'_cart_hash','610ad97bde8c84e2785e706216b7b18b'),(5207,1878,'_paid_date','2018-10-28 22:12:18'),(5206,1878,'_date_paid','1540764738'),(5205,1878,'_completed_date',''),(5204,1878,'_date_completed',''),(5203,1878,'_created_via','checkout'),(5202,1878,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/69.0.3497.100 safari/537.36'),(5201,1878,'_customer_ip_address','86.177.115.209'),(5200,1878,'_transaction_id','11U7329755844230G'),(5199,1878,'_payment_method_title','PayPal'),(5198,1878,'_payment_method','paypal'),(5197,1878,'_customer_user','0'),(5196,1878,'_order_key','wc_order_5bd6339055e16'),(5195,1876,'_wp_attachment_image_alt','Free Hypnosis Resources'),(5245,1878,'_order_stock_reduced','yes'),(5244,1878,'_recorded_coupon_usage_counts','yes'),(5243,1878,'_recorded_sales','yes'),(5242,1878,'_download_permissions_granted','yes'),(5241,1878,'_paypal_status','completed'),(5240,1878,'Payment type','instant'),(5239,1878,'_shipping_address_index','         7710390777'),(5238,1878,'_billing_address_index','Lesley-Ann Iveson Ms 21 Bramshaw Close  Winchester Hampshire SO22 6LT GB lesleyann114@gmail.com 7710390777'),(5237,1878,'_prices_include_tax','no'),(5236,1878,'_order_version','3.4.5'),(5235,1878,'_order_total','8.50'),(5234,1878,'_order_tax','0'),(5233,1878,'_order_shipping_tax','0'),(5232,1878,'_order_shipping','0.00'),(5231,1878,'_cart_discount_tax','0'),(5230,1878,'_cart_discount','0'),(5229,1878,'_order_currency','GBP'),(5228,1878,'_shipping_country',''),(5227,1878,'_shipping_postcode',''),(5226,1878,'_shipping_state',''),(5225,1878,'_shipping_city',''),(5224,1878,'_shipping_address_2',''),(5223,1878,'_shipping_address_1',''),(5222,1878,'_shipping_company',''),(5219,1878,'_billing_phone','7710390777'),(5220,1878,'_shipping_first_name',''),(5221,1878,'_shipping_last_name',''),(5218,1878,'_billing_email','lesleyann114@gmail.com'),(5217,1878,'_billing_country','GB'),(5215,1878,'_billing_state','Hampshire'),(5216,1878,'_billing_postcode','SO22 6LT'),(5281,1898,'_customer_user_agent','Mozilla/5.0 (Linux; Android 7.0; LG-M400 Build/NRD90U; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/70.0.3538.80 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/196.0.0.41.95;]'),(5280,1898,'_customer_ip_address','188.29.164.135'),(5279,1898,'_transaction_id','11R89723PH908215D'),(5278,1898,'_payment_method_title','PayPal'),(5277,1898,'_payment_method','paypal'),(5276,1898,'_customer_user','0'),(5275,1898,'_order_key','wc_order_5be09064b764e'),(5274,1791,'_edit_lock','1542652495:1'),(5273,1792,'_edit_lock','1542806435:1'),(5272,1794,'_edit_lock','1542806388:1'),(5271,1878,'_edit_lock','1542652432:1'),(5270,1398,'_yoast_wpseo_content_score','90'),(5269,1398,'_yoast_wpseo_linkdex','36'),(5268,1398,'_yoast_wpseo_focuskw','Welcome'),(5267,1398,'_responsive_layout','default'),(5266,1398,'_edit_last','1'),(5265,385,'_yoast_wpseo_linkdex','34'),(5264,385,'_yoast_wpseo_focuskw','Thank You'),(5263,385,'_responsive_layout','default'),(5262,1317,'_yoast_wpseo_linkdex','66'),(5261,1317,'_yoast_wpseo_focuskw','Terms & Conditions'),(5260,1317,'_responsive_layout','default'),(5259,1378,'_edit_lock','1540834725:1'),(5257,1568,'_yoast_wpseo_focuskw','Past Life Regression Hypnosis Sessions'),(5258,1568,'_yoast_wpseo_linkdex','83'),(5256,1451,'_yoast_wpseo_linkdex','31'),(5255,1451,'_yoast_wpseo_focuskw','Hypnosis Services'),(5253,1639,'_yoast_wpseo_linkdex','37'),(5254,1451,'_responsive_layout','default'),(5350,1899,'_shipping_first_name',''),(5349,1899,'_billing_phone','1670222735'),(5348,1899,'_billing_email','headland.christine@yahoo.co.uk'),(5347,1899,'_billing_country','GB'),(5346,1899,'_billing_postcode','NE22 5PW'),(5345,1899,'_billing_state','Northumberland'),(5344,1899,'_billing_city','Bedlington'),(5343,1899,'_billing_address_2','22 pioneer terrace'),(5341,1899,'_billing_company','1953'),(5342,1899,'_billing_address_1','22 pioneer terrace'),(5340,1899,'_billing_last_name','headland'),(5339,1899,'_billing_first_name','christine'),(5338,1899,'_cart_hash','610ad97bde8c84e2785e706216b7b18b'),(5337,1899,'_paid_date',''),(3964,1548,'_wc_review_count','0'),(3965,1548,'_wc_rating_count','a:0:{}'),(3966,1548,'_wc_average_rating','0'),(3967,1548,'_edit_lock','1568381947:1'),(3968,1548,'_edit_last','1'),(4000,1548,'_wpas_done_all','1'),(3970,1548,'_sku',''),(3971,1548,'_regular_price','8.50'),(3972,1548,'_sale_price',''),(3973,1548,'_sale_price_dates_from',''),(3974,1548,'_sale_price_dates_to',''),(3975,1548,'total_sales','10'),(3976,1548,'_tax_status','none'),(3977,1548,'_tax_class',''),(3978,1548,'_manage_stock','no'),(3979,1548,'_backorders','no'),(3980,1548,'_sold_individually','no'),(3981,1548,'_weight',''),(3982,1548,'_length',''),(3983,1548,'_width',''),(3984,1548,'_height',''),(3985,1548,'_upsell_ids','a:0:{}'),(3986,1548,'_crosssell_ids','a:0:{}'),(3987,1548,'_purchase_note',''),(3988,1548,'_default_attributes','a:0:{}'),(3989,1548,'_virtual','no'),(3990,1548,'_downloadable','no'),(3991,1548,'_product_image_gallery','1750'),(3992,1548,'_download_limit','-1'),(3993,1548,'_download_expiry','-1'),(3994,1548,'_stock',NULL),(3995,1548,'_stock_status','outofstock'),(3996,1548,'_product_version','3.7.0'),(3997,1548,'_price','8.50'),(3998,1548,'_yoast_wpseo_primary_product_cat','48'),(3999,1548,'_yoast_wpseo_content_score','60'),(4890,1548,'_wp_old_slug','pain-management-workshop-3rd-oct'),(4002,1551,'_wp_attached_file','2018/09/book-workshop-now.png'),(4003,1551,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:460;s:6:\"height\";i:164;s:4:\"file\";s:29:\"2018/09/book-workshop-now.png\";s:5:\"sizes\";a:12:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"book-workshop-now-400x143.png\";s:5:\"width\";i:400;s:6:\"height\";i:143;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"book-workshop-now-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"book-workshop-now-300x107.png\";s:5:\"width\";i:300;s:6:\"height\";i:107;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:28:\"book-workshop-now-100x36.png\";s:5:\"width\";i:100;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:28:\"book-workshop-now-150x53.png\";s:5:\"width\";i:150;s:6:\"height\";i:53;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:28:\"book-workshop-now-200x71.png\";s:5:\"width\";i:200;s:6:\"height\";i:71;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:29:\"book-workshop-now-300x107.png\";s:5:\"width\";i:300;s:6:\"height\";i:107;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:29:\"book-workshop-now-450x160.png\";s:5:\"width\";i:450;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"book-workshop-now-300x164.png\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"book-workshop-now-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:29:\"book-workshop-now-300x164.png\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"book-workshop-now-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4004,1551,'_wp_attachment_image_alt','book workshop now'),(4005,1291,'_responsive_layout','default'),(4006,1559,'_order_key','wc_order_5ba412d807e5e'),(4007,1559,'_customer_user','0'),(4008,1559,'_payment_method','paypal'),(4009,1559,'_payment_method_title','PayPal'),(4010,1559,'_transaction_id','3UJ74124AL436900M'),(4011,1559,'_customer_ip_address','79.77.97.54'),(4012,1559,'_customer_user_agent','mozilla/5.0 (linux; android 7.0; lg-m400 build/nrd90u; wv) applewebkit/537.36 (khtml, like gecko) version/4.0 chrome/69.0.3497.100 mobile safari/537.36 [fb_iab/fb4a;fbav/190.0.0.34.94;]'),(4013,1559,'_created_via','checkout'),(4014,1559,'_date_completed',''),(4015,1559,'_completed_date',''),(4016,1559,'_date_paid','1537479477'),(4017,1559,'_paid_date','2018-09-20 21:37:57'),(4018,1559,'_cart_hash','52bb0518b87ac13017cf28c126ff66aa'),(4019,1559,'_billing_first_name','Elena'),(4020,1559,'_billing_last_name','Kolodzejova'),(4021,1559,'_billing_company',''),(4022,1559,'_billing_address_1','26 Beach Avenue'),(4023,1559,'_billing_address_2',''),(4024,1559,'_billing_city','Whitley Bay'),(4025,1559,'_billing_state',''),(4026,1559,'_billing_postcode','NE26 1EA'),(4027,1559,'_billing_country','GB'),(4028,1559,'_billing_email','elena.kolodzejova@gmail.com'),(4029,1559,'_billing_phone','07707690755'),(4030,1559,'_shipping_first_name',''),(4031,1559,'_shipping_last_name',''),(4032,1559,'_shipping_company',''),(4033,1559,'_shipping_address_1',''),(4034,1559,'_shipping_address_2',''),(4035,1559,'_shipping_city',''),(4036,1559,'_shipping_state',''),(4037,1559,'_shipping_postcode',''),(4038,1559,'_shipping_country',''),(4039,1559,'_order_currency','GBP'),(4040,1559,'_cart_discount','0'),(4041,1559,'_cart_discount_tax','0'),(4042,1559,'_order_shipping','0.00'),(4043,1559,'_order_shipping_tax','0'),(4044,1559,'_order_tax','0'),(4045,1559,'_order_total','8.50'),(4046,1559,'_order_version','3.4.5'),(4047,1559,'_prices_include_tax','no'),(4048,1559,'_billing_address_index','Elena Kolodzejova  26 Beach Avenue  Whitley Bay  NE26 1EA GB elena.kolodzejova@gmail.com 07707690755'),(4049,1559,'_shipping_address_index','         07707690755'),(4050,1559,'Payment type','instant'),(4051,1559,'_paypal_status','completed'),(4052,1559,'_download_permissions_granted','yes'),(4053,1559,'_recorded_sales','yes'),(4054,1559,'_recorded_coupon_usage_counts','yes'),(4055,1559,'_order_stock_reduced','yes'),(4056,1559,'PayPal Transaction Fee','0.49'),(5373,1899,'_edit_lock','1542806371:1'),(5372,1899,'_order_stock_reduced','yes'),(5336,1899,'_date_paid',''),(5335,1899,'_completed_date',''),(5334,1899,'_date_completed',''),(5333,1899,'_created_via','checkout'),(5286,1898,'_paid_date','2018-11-05 18:48:55'),(5284,1898,'_completed_date',''),(5285,1898,'_date_paid','1541443735'),(5283,1898,'_date_completed',''),(5282,1898,'_created_via','checkout'),(5252,1639,'_yoast_wpseo_focuskw','Booking Your Time Slot'),(5251,1595,'_yoast_wpseo_linkdex','52'),(5246,1878,'PayPal Transaction Fee','0.49'),(5214,1878,'_billing_city','Winchester'),(5213,1878,'_billing_address_2',''),(5212,1878,'_billing_address_1','21 Bramshaw Close'),(5211,1878,'_billing_company','Ms'),(5157,1796,'_edit_last','1'),(5156,1796,'_edit_lock','1540558656:1'),(4085,1559,'_edit_lock','1538505406:1'),(4086,378,'_responsive_layout','default'),(4087,695,'PayPal Transaction Fee','20'),(4088,695,'_responsive_layout','default'),(4089,1567,'_order_key','wc_order_5ba74d80b7446'),(4090,1567,'_customer_user','0'),(4091,1567,'_payment_method','bacs'),(4092,1567,'_payment_method_title','Direct bank transfer'),(4093,1567,'_transaction_id',''),(4094,1567,'_customer_ip_address','217.42.205.73'),(4095,1567,'_customer_user_agent','mozilla/5.0 (windows nt 6.3; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/69.0.3497.100 safari/537.36'),(4096,1567,'_created_via','checkout'),(4097,1567,'_date_completed',''),(4098,1567,'_completed_date',''),(4099,1567,'_date_paid',''),(4100,1567,'_paid_date',''),(4101,1567,'_cart_hash','52bb0518b87ac13017cf28c126ff66aa'),(4102,1567,'_billing_first_name','Laura'),(4103,1567,'_billing_last_name','JAKES'),(4104,1567,'_billing_company',''),(4105,1567,'_billing_address_1','17 Muirfield'),(4106,1567,'_billing_address_2','west monkseaton'),(4107,1567,'_billing_city','Whitley Bay'),(4108,1567,'_billing_state','Tyne and Wear'),(4109,1567,'_billing_postcode','NE25 9HY'),(4110,1567,'_billing_country','GB'),(4111,1567,'_billing_email','laurajakes@hotmail.com'),(4112,1567,'_billing_phone','07837774009'),(4113,1567,'_shipping_first_name',''),(4114,1567,'_shipping_last_name',''),(4115,1567,'_shipping_company',''),(4116,1567,'_shipping_address_1',''),(4117,1567,'_shipping_address_2',''),(4118,1567,'_shipping_city',''),(4119,1567,'_shipping_state',''),(4120,1567,'_shipping_postcode',''),(4121,1567,'_shipping_country',''),(4122,1567,'_order_currency','GBP'),(4123,1567,'_cart_discount','0'),(4124,1567,'_cart_discount_tax','0'),(4125,1567,'_order_shipping','0.00'),(4126,1567,'_order_shipping_tax','0'),(4127,1567,'_order_tax','0'),(4128,1567,'_order_total','8.50'),(4129,1567,'_order_version','3.4.5'),(4130,1567,'_prices_include_tax','no'),(4131,1567,'_billing_address_index','Laura JAKES  17 Muirfield west monkseaton Whitley Bay Tyne and Wear NE25 9HY GB laurajakes@hotmail.com 07837774009'),(4132,1567,'_shipping_address_index','         07837774009'),(4133,1567,'_recorded_sales','yes'),(4134,1567,'_recorded_coupon_usage_counts','yes'),(4135,1567,'_order_stock_reduced','yes'),(4136,1568,'_edit_lock','1546804468:1'),(4137,1568,'_edit_last','1'),(4138,1186,'_wp_old_slug','past-life-regression-workshop'),(4139,1568,'_thumbnail_id','1186'),(4140,1568,'_wp_page_template','content-sidebar-page.php'),(4141,1568,'_responsive_layout','default'),(4142,1568,'_yoast_wpseo_content_score','90'),(4143,1575,'_order_key','wc_order_5ba7d27fd3881'),(4144,1575,'_customer_user','0'),(4145,1575,'_payment_method','bacs'),(4146,1575,'_payment_method_title','Direct bank transfer'),(4147,1575,'_transaction_id',''),(4148,1575,'_customer_ip_address','5.66.68.218'),(4149,1575,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_1_2 like mac os x) applewebkit/604.3.5 (khtml, like gecko) version/11.0 mobile/15b202 safari/604.1'),(4150,1575,'_created_via','checkout'),(4151,1575,'_date_completed',''),(4152,1575,'_completed_date',''),(4153,1575,'_date_paid',''),(4154,1575,'_paid_date',''),(4155,1575,'_cart_hash','8222f300b815b09ec95e0e3c22092a92'),(4156,1575,'_billing_first_name','Sharon'),(4157,1575,'_billing_last_name','Currell'),(4158,1575,'_billing_company',''),(4159,1575,'_billing_address_1','145 Broomfield Avenue'),(4160,1575,'_billing_address_2','Wallsend'),(4161,1575,'_billing_city','Newcastle upon Tyne'),(4162,1575,'_billing_state','Northumberland'),(4163,1575,'_billing_postcode','NE28 9AF'),(4164,1575,'_billing_country','GB'),(4165,1575,'_billing_email','sharoncurrell1960@gmail.com'),(4166,1575,'_billing_phone','07946776457'),(4167,1575,'_shipping_first_name',''),(4168,1575,'_shipping_last_name',''),(4169,1575,'_shipping_company',''),(4170,1575,'_shipping_address_1',''),(4171,1575,'_shipping_address_2',''),(4172,1575,'_shipping_city',''),(4173,1575,'_shipping_state',''),(4174,1575,'_shipping_postcode',''),(4175,1575,'_shipping_country',''),(4176,1575,'_order_currency','GBP'),(4177,1575,'_cart_discount','0'),(4178,1575,'_cart_discount_tax','0'),(4179,1575,'_order_shipping','0.00'),(4180,1575,'_order_shipping_tax','0'),(4181,1575,'_order_tax','0'),(4182,1575,'_order_total','17.00'),(4183,1575,'_order_version','3.4.5'),(4184,1575,'_prices_include_tax','no'),(4185,1575,'_billing_address_index','Sharon Currell  145 Broomfield Avenue Wallsend Newcastle upon Tyne Northumberland NE28 9AF GB sharoncurrell1960@gmail.com 07946776457'),(4186,1575,'_shipping_address_index','         07946776457'),(4187,1575,'_recorded_sales','yes'),(4188,1575,'_recorded_coupon_usage_counts','yes'),(4189,1575,'_order_stock_reduced','yes'),(4190,1577,'_order_key','wc_order_5ba7f65270d03'),(4191,1577,'_customer_user','0'),(4192,1577,'_payment_method','paypal'),(4193,1577,'_payment_method_title','PayPal'),(4194,1577,'_transaction_id','755871669E839274V'),(4195,1577,'_customer_ip_address','94.197.120.92'),(4196,1577,'_customer_user_agent','mozilla/5.0 (linux; android 7.0; sm-j330fn build/nrd90m) applewebkit/537.36 (khtml, like gecko) chrome/69.0.3497.100 mobile safari/537.36'),(4197,1577,'_created_via','checkout'),(4198,1577,'_date_completed',''),(4199,1577,'_completed_date',''),(4200,1577,'_date_paid','1537734323'),(4201,1577,'_paid_date','2018-09-23 20:25:23'),(4202,1577,'_cart_hash','52bb0518b87ac13017cf28c126ff66aa'),(4203,1577,'_billing_first_name','Faith'),(4204,1577,'_billing_last_name','Baptist'),(4205,1577,'_billing_company',''),(4206,1577,'_billing_address_1','106 devon crescent'),(4207,1577,'_billing_address_2',''),(4208,1577,'_billing_city','Birtley'),(4209,1577,'_billing_state','Durham'),(4210,1577,'_billing_postcode','DH3 1HP'),(4211,1577,'_billing_country','GB'),(4212,1577,'_billing_email','faithbaptist@live.co.uk'),(4213,1577,'_billing_phone','07985473521'),(4214,1577,'_shipping_first_name',''),(4215,1577,'_shipping_last_name',''),(4216,1577,'_shipping_company',''),(4217,1577,'_shipping_address_1',''),(4218,1577,'_shipping_address_2',''),(4219,1577,'_shipping_city',''),(4220,1577,'_shipping_state',''),(4221,1577,'_shipping_postcode',''),(4222,1577,'_shipping_country',''),(4223,1577,'_order_currency','GBP'),(4224,1577,'_cart_discount','0'),(4225,1577,'_cart_discount_tax','0'),(4226,1577,'_order_shipping','0.00'),(4227,1577,'_order_shipping_tax','0'),(4228,1577,'_order_tax','0'),(4229,1577,'_order_total','8.50'),(4230,1577,'_order_version','3.4.5'),(4231,1577,'_prices_include_tax','no'),(4232,1577,'_billing_address_index','Faith Baptist  106 devon crescent  Birtley Durham DH3 1HP GB faithbaptist@live.co.uk 07985473521'),(4233,1577,'_shipping_address_index','         07985473521'),(4234,1577,'Payment type','instant'),(4235,1577,'_paypal_status','completed'),(4236,1577,'_download_permissions_granted','yes'),(4237,1577,'_recorded_sales','yes'),(4238,1577,'_recorded_coupon_usage_counts','yes'),(4239,1577,'_order_stock_reduced','yes'),(4240,1577,'PayPal Transaction Fee','0.49'),(4241,1581,'_edit_lock','1537886368:1'),(4242,1581,'_edit_last','1'),(4243,1581,'_wp_page_template','default'),(4244,1581,'_responsive_layout','default'),(4245,1581,'_yoast_wpseo_content_score','60'),(4247,1590,'_wp_attached_file','2018/09/NH-Questionnaire.doc'),(4248,1579,'_edit_lock','1540835401:1'),(4249,1591,'_wc_review_count','0'),(4250,1591,'_wc_rating_count','a:0:{}'),(4251,1591,'_wc_average_rating','0'),(4252,1591,'_edit_lock','1537986539:1'),(4253,1591,'_edit_last','1'),(4254,1591,'_thumbnail_id','1488'),(4286,1591,'_wpas_done_all','1'),(4256,1591,'_sku','HSTV01'),(4257,1591,'_regular_price','79.00'),(4258,1591,'_sale_price',''),(4259,1591,'_sale_price_dates_from',''),(4260,1591,'_sale_price_dates_to',''),(4261,1591,'total_sales','3'),(4262,1591,'_tax_status','none'),(4263,1591,'_tax_class','zero-rate'),(4264,1591,'_manage_stock','no'),(4265,1591,'_backorders','no'),(4266,1591,'_sold_individually','no'),(4267,1591,'_weight',''),(4268,1591,'_length',''),(4269,1591,'_width',''),(4270,1591,'_height',''),(4271,1591,'_upsell_ids','a:0:{}'),(4272,1591,'_crosssell_ids','a:0:{}'),(4273,1591,'_purchase_note','Thank you for making your payment.\r\nYour next steps are to book your session and complete your Client Form by visiting\r\nhttps://www.newcastle-hypnotherapy.com/book-your-time-slot/\r\n'),(4274,1591,'_default_attributes','a:0:{}'),(4275,1591,'_virtual','yes'),(4276,1591,'_downloadable','no'),(4277,1591,'_product_image_gallery',''),(4278,1591,'_download_limit','-1'),(4279,1591,'_download_expiry','-1'),(4280,1591,'_stock',NULL),(4281,1591,'_stock_status','instock'),(4282,1591,'_product_version','3.5.3'),(4283,1591,'_price','79.00'),(4284,1591,'_yoast_wpseo_primary_product_cat','49'),(4285,1591,'_yoast_wpseo_content_score','90'),(4287,1591,'sharing_disabled','1'),(4288,1593,'_wc_review_count','0'),(4289,1593,'_wc_rating_count','a:0:{}'),(4290,1593,'_wc_average_rating','0'),(4291,1593,'_edit_lock','1537986666:1'),(4292,1593,'_edit_last','1'),(4293,1593,'_thumbnail_id','1488'),(4326,1593,'_wpas_done_all','1'),(4295,1593,'_sku','HSTVX2'),(4296,1593,'_regular_price','140.00'),(4297,1593,'_sale_price',''),(4298,1593,'_sale_price_dates_from',''),(4299,1593,'_sale_price_dates_to',''),(4300,1593,'total_sales','0'),(4301,1593,'_tax_status','none'),(4302,1593,'_tax_class','zero-rate'),(4303,1593,'_manage_stock','no'),(4304,1593,'_backorders','no'),(4305,1593,'_sold_individually','no'),(4306,1593,'_weight',''),(4307,1593,'_length',''),(4308,1593,'_width',''),(4309,1593,'_height',''),(4310,1593,'_upsell_ids','a:0:{}'),(4311,1593,'_crosssell_ids','a:0:{}'),(4312,1593,'_purchase_note','Thank you for making your payment.\r\nYour next steps are to book your session and complete your Client Form by visiting\r\nhttps://www.newcastle-hypnotherapy.com/book-your-time-slot/\r\n'),(4313,1593,'_default_attributes','a:0:{}'),(4314,1593,'_virtual','yes'),(4315,1593,'_downloadable','no'),(4316,1593,'_product_image_gallery',''),(4317,1593,'_download_limit','-1'),(4318,1593,'_download_expiry','-1'),(4319,1593,'_stock',NULL),(4320,1593,'_stock_status','instock'),(4321,1593,'_product_version','3.5.3'),(4322,1593,'_price','140.00'),(4323,1593,'_yoast_wpseo_primary_product_cat','49'),(4324,1593,'sharing_disabled','1'),(4325,1593,'_yoast_wpseo_content_score','90'),(4327,1591,'_wp_old_slug','hypnotherapy-nlp-session-x1-79'),(4328,1593,'_wp_old_slug','1593'),(4329,1595,'_edit_lock','1540834269:1'),(4330,1595,'_edit_last','1'),(4331,1596,'_wp_attached_file','2018/09/button-100.jpg'),(4332,1596,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:98;s:4:\"file\";s:22:\"2018/09/button-100.jpg\";s:5:\"sizes\";a:3:{s:14:\"responsive-100\";a:4:{s:4:\"file\";s:21:\"button-100-100x98.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"button-100-100x98.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"button-100-100x98.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4333,1596,'_wp_attachment_image_alt','Newcastle Hypnotherapy'),(4334,1595,'_wp_page_template','full-width-page.php'),(4335,1595,'_responsive_layout','default'),(4336,1595,'_yoast_wpseo_content_score','90'),(4337,1599,'_wp_attached_file','2018/09/NH-Button-3.png'),(4338,1599,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:120;s:4:\"file\";s:23:\"2018/09/NH-Button-3.png\";s:5:\"sizes\";a:12:{s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"NH-Button-3-400x96.png\";s:5:\"width\";i:400;s:6:\"height\";i:96;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"NH-Button-3-150x120.png\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"NH-Button-3-300x72.png\";s:5:\"width\";i:300;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:22:\"NH-Button-3-100x24.png\";s:5:\"width\";i:100;s:6:\"height\";i:24;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:22:\"NH-Button-3-150x36.png\";s:5:\"width\";i:150;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:22:\"NH-Button-3-200x48.png\";s:5:\"width\";i:200;s:6:\"height\";i:48;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:22:\"NH-Button-3-300x72.png\";s:5:\"width\";i:300;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:23:\"NH-Button-3-450x108.png\";s:5:\"width\";i:450;s:6:\"height\";i:108;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"NH-Button-3-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"NH-Button-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:23:\"NH-Button-3-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"NH-Button-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4339,1599,'_wp_attachment_image_alt','Newcastle Hypnptherapy Hypnosis Session'),(4343,1612,'_wc_review_count','0'),(4344,1612,'_wc_rating_count','a:0:{}'),(4345,1612,'_wc_average_rating','0'),(4346,1612,'_edit_lock','1537986820:1'),(4347,1612,'_edit_last','1'),(4381,1612,'_wpas_done_all','1'),(4350,1612,'_sku','HSFFTX2'),(4351,1612,'_regular_price','140.00'),(4352,1612,'_sale_price',''),(4353,1612,'_sale_price_dates_from',''),(4354,1612,'_sale_price_dates_to',''),(4355,1612,'total_sales','0'),(4356,1612,'_tax_status','none'),(4357,1612,'_tax_class','zero-rate'),(4358,1612,'_manage_stock','no'),(4359,1612,'_backorders','no'),(4360,1612,'_sold_individually','no'),(4361,1612,'_weight',''),(4362,1612,'_length',''),(4363,1612,'_width',''),(4364,1612,'_height',''),(4365,1612,'_upsell_ids','a:0:{}'),(4366,1612,'_crosssell_ids','a:0:{}'),(4367,1612,'_purchase_note','Thank you for making your payment.\r\nYour next steps are to book your session and complete your Client Form by visiting\r\nhttps://www.newcastle-hypnotherapy.com/book-your-time-slot/\r\n'),(4368,1612,'_default_attributes','a:0:{}'),(4369,1612,'_virtual','yes'),(4370,1612,'_downloadable','no'),(4371,1612,'_product_image_gallery',''),(4372,1612,'_download_limit','-1'),(4373,1612,'_download_expiry','-1'),(4374,1612,'_stock',NULL),(4375,1612,'_stock_status','instock'),(4376,1612,'_product_version','3.5.3'),(4377,1612,'_price','140.00'),(4378,1612,'_yoast_wpseo_primary_product_cat','49'),(4379,1612,'sharing_disabled','1'),(4380,1612,'_yoast_wpseo_content_score','90'),(4382,1614,'_sku','HSFFTX1'),(4383,1614,'_regular_price','79.00'),(4384,1614,'_sale_price',''),(4385,1614,'_sale_price_dates_from',''),(4386,1614,'_sale_price_dates_to',''),(4387,1614,'total_sales','0'),(4388,1614,'_tax_status','none'),(4389,1614,'_tax_class','zero-rate'),(4390,1614,'_manage_stock','no'),(4391,1614,'_backorders','no'),(4392,1614,'_sold_individually','no'),(4393,1614,'_weight',''),(4394,1614,'_length',''),(4395,1614,'_width',''),(4396,1614,'_height',''),(4397,1614,'_upsell_ids','a:0:{}'),(4398,1614,'_crosssell_ids','a:0:{}'),(4399,1614,'_purchase_note','Thank you for making your payment.\r\nYour next steps are to book your session and complete your Client Form by visiting\r\nhttps://www.newcastle-hypnotherapy.com/book-your-time-slot/\r\n'),(4400,1614,'_default_attributes','a:0:{}'),(4401,1614,'_virtual','yes'),(4402,1614,'_downloadable','no'),(4403,1614,'_product_image_gallery',''),(4404,1614,'_download_limit','-1'),(4405,1614,'_download_expiry','-1'),(4406,1614,'_thumbnail_id','1488'),(4407,1614,'_stock',NULL),(4408,1614,'_stock_status','instock'),(4409,1614,'_wc_average_rating','0'),(4410,1614,'_wc_rating_count','a:0:{}'),(4411,1614,'_wc_review_count','0'),(4412,1614,'_downloadable_files','a:0:{}'),(4413,1614,'_product_attributes','a:0:{}'),(4414,1614,'_product_version','3.5.3'),(4415,1614,'_price','79.00'),(4416,1614,'_yoast_wpseo_primary_product_cat','49'),(4417,1614,'sharing_disabled','1'),(4418,1614,'_yoast_wpseo_content_score','90'),(4419,1614,'_wpas_done_all','1'),(4420,1614,'_edit_lock','1557156326:1'),(4421,1614,'_edit_last','1'),(4424,1612,'_wp_old_slug','2-sessions-food-for-thought'),(4423,1614,'_wp_old_slug','hs'),(4425,1616,'_sku','OSX2'),(4426,1616,'_regular_price','140.00'),(4427,1616,'_sale_price',''),(4428,1616,'_sale_price_dates_from',''),(4429,1616,'_sale_price_dates_to',''),(4430,1616,'total_sales','0'),(4431,1616,'_tax_status','none'),(4432,1616,'_tax_class','zero-rate'),(4433,1616,'_manage_stock','no'),(4434,1616,'_backorders','no'),(4435,1616,'_sold_individually','no'),(4436,1616,'_weight',''),(4437,1616,'_length',''),(4438,1616,'_width',''),(4439,1616,'_height',''),(4440,1616,'_upsell_ids','a:0:{}'),(4441,1616,'_crosssell_ids','a:0:{}'),(4442,1616,'_purchase_note','Thank you for making your payment.\r\nYour next steps are to book your session and complete your Client Form by visiting\r\nhttps://www.newcastle-hypnotherapy.com/book-your-time-slot/\r\n'),(4443,1616,'_default_attributes','a:0:{}'),(4444,1616,'_virtual','yes'),(4445,1616,'_downloadable','no'),(4446,1616,'_product_image_gallery',''),(4447,1616,'_download_limit','-1'),(4448,1616,'_download_expiry','-1'),(4449,1616,'_thumbnail_id','1488'),(4450,1616,'_stock',NULL),(4451,1616,'_stock_status','instock'),(4452,1616,'_wc_average_rating','0'),(4453,1616,'_wc_rating_count','a:0:{}'),(4454,1616,'_wc_review_count','0'),(4455,1616,'_downloadable_files','a:0:{}'),(4456,1616,'_product_attributes','a:0:{}'),(4457,1616,'_product_version','3.5.3'),(4458,1616,'_price','140.00'),(4459,1616,'_yoast_wpseo_primary_product_cat','49'),(4460,1616,'sharing_disabled','1'),(4461,1616,'_yoast_wpseo_content_score','90'),(4462,1616,'_wpas_done_all','1'),(4463,1616,'_edit_lock','1557156455:1'),(4464,1616,'_edit_last','1'),(4466,1618,'_sku','OSX1'),(4467,1618,'_regular_price','79.00'),(4468,1618,'_sale_price',''),(4469,1618,'_sale_price_dates_from',''),(4470,1618,'_sale_price_dates_to',''),(4471,1618,'total_sales','0'),(4472,1618,'_tax_status','none'),(4473,1618,'_tax_class','zero-rate'),(4474,1618,'_manage_stock','no'),(4475,1618,'_backorders','no'),(4476,1618,'_sold_individually','no'),(4477,1618,'_weight',''),(4478,1618,'_length',''),(4479,1618,'_width',''),(4480,1618,'_height',''),(4481,1618,'_upsell_ids','a:0:{}'),(4482,1618,'_crosssell_ids','a:0:{}'),(4483,1618,'_purchase_note','Thank you for making your payment.\r\nYour next steps are to book your session and complete your Client Form by visiting\r\nhttps://www.newcastle-hypnotherapy.com/book-your-time-slot/\r\n'),(4484,1618,'_default_attributes','a:0:{}'),(4485,1618,'_virtual','yes'),(4486,1618,'_downloadable','no'),(4487,1618,'_product_image_gallery',''),(4488,1618,'_download_limit','-1'),(4489,1618,'_download_expiry','-1'),(4490,1618,'_thumbnail_id','1488'),(4491,1618,'_stock',NULL),(4492,1618,'_stock_status','instock'),(4493,1618,'_wc_average_rating','0'),(4494,1618,'_wc_rating_count','a:0:{}'),(4495,1618,'_wc_review_count','0'),(4496,1618,'_downloadable_files','a:0:{}'),(4497,1618,'_product_attributes','a:0:{}'),(4498,1618,'_product_version','3.5.3'),(4499,1618,'_price','79.00'),(4500,1618,'_yoast_wpseo_primary_product_cat','49'),(4501,1618,'sharing_disabled','1'),(4502,1618,'_yoast_wpseo_content_score','90'),(4503,1618,'_wpas_done_all','1'),(4504,1618,'_edit_lock','1557156704:1'),(4505,1618,'_edit_last','1'),(6746,2456,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1250;s:6:\"height\";i:938;s:4:\"file\";s:31:\"2019/01/IMG_20180519_154126.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154126-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154126-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154126-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20180519_154126-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:30:\"IMG_20180519_154126-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154126-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154126-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154126-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154126-450x338.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154126-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154126-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG_20180519_154126-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154126-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154126-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154126-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154126-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154126-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6745,2456,'_wp_attached_file','2019/01/IMG_20180519_154126.jpg'),(6743,2454,'_yoast_wpseo_title','%%title%% %%page%% %%sep%% Newcastle Hypnotherapy'),(6741,2454,'_edit_last','1'),(6740,2454,'_edit_lock','1561898401:1'),(6739,2454,'_wpas_done_all','1'),(6738,2454,'_yoast_wpseo_content_score','90'),(6737,2454,'_yoast_wpseo_primary_product_cat','48'),(6736,2454,'_price','12.50'),(6735,2454,'_product_version','3.5.3'),(6734,2454,'_product_attributes','a:0:{}'),(6733,2454,'_downloadable_files','a:0:{}'),(6732,2454,'_wc_review_count','0'),(6731,2454,'_wc_rating_count','a:0:{}'),(6730,2454,'_wc_average_rating','0'),(6729,2454,'_stock_status','instock'),(6728,2454,'_stock',NULL),(6744,2454,'_thumbnail_id','939'),(6726,2454,'_download_expiry','-1'),(6725,2454,'_download_limit','-1'),(6724,2454,'_product_image_gallery',''),(6723,2454,'_downloadable','no'),(6722,2454,'_virtual','no'),(6721,2454,'_default_attributes','a:0:{}'),(6720,2454,'_purchase_note',''),(6719,2454,'_crosssell_ids','a:0:{}'),(6718,2454,'_upsell_ids','a:0:{}'),(6717,2454,'_height',''),(6716,2454,'_width',''),(6713,2454,'_sold_individually','no'),(6714,2454,'_weight',''),(6715,2454,'_length',''),(6712,2454,'_low_stock_amount',''),(6711,2454,'_backorders','no'),(6710,2454,'_manage_stock','no'),(6709,2454,'_tax_class','zero-rate'),(6708,2454,'_tax_status','none'),(6707,2454,'total_sales','19'),(6706,2454,'_sale_price_dates_to',''),(6705,2454,'_sale_price_dates_from',''),(4558,1635,'_wc_review_count','0'),(4559,1635,'_wc_rating_count','a:0:{}'),(4560,1635,'_wc_average_rating','0'),(4561,1635,'_edit_lock','1537908344:1'),(4562,1635,'_edit_last','1'),(6748,2457,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1250;s:6:\"height\";i:938;s:4:\"file\";s:31:\"2019/01/IMG_20180519_154134.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154134-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154134-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154134-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20180519_154134-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:30:\"IMG_20180519_154134-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154134-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154134-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154134-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154134-450x338.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154134-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154134-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG_20180519_154134-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154134-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154134-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154134-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154134-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154134-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6747,2457,'_wp_attached_file','2019/01/IMG_20180519_154134.jpg'),(4671,1375,'_edit_lock','1537987402:1'),(5169,1818,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1399;s:6:\"height\";i:922;s:4:\"file\";s:17:\"2018/10/head2.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"head2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"head2-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"head2-768x506.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"head2-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:16:\"head2-100x66.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:16:\"head2-150x99.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:17:\"head2-200x132.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:17:\"head2-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:17:\"head2-450x297.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:17:\"head2-600x395.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:17:\"head2-900x593.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:593;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"head2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:17:\"head2-400x264.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"head2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"head2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:17:\"head2-400x264.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"head2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5168,1818,'_wp_attached_file','2018/10/head2.jpg'),(5167,1813,'_yoast_wpseo_content_score','30'),(5165,1813,'_wp_page_template','default'),(5166,1813,'_responsive_layout','default'),(5164,1813,'_edit_last','1'),(5163,1813,'_edit_lock','1545938038:1'),(5162,1812,'_edit_last','1'),(5161,1812,'_edit_lock','1540727714:1'),(4683,1659,'_wp_attached_file','2018/09/book-workshop-now-1.png'),(4684,1659,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:460;s:6:\"height\";i:164;s:4:\"file\";s:31:\"2018/09/book-workshop-now-1.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"book-workshop-now-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"book-workshop-now-1-300x107.png\";s:5:\"width\";i:300;s:6:\"height\";i:107;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:30:\"book-workshop-now-1-100x36.png\";s:5:\"width\";i:100;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:30:\"book-workshop-now-1-150x53.png\";s:5:\"width\";i:150;s:6:\"height\";i:53;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:30:\"book-workshop-now-1-200x71.png\";s:5:\"width\";i:200;s:6:\"height\";i:71;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:31:\"book-workshop-now-1-300x107.png\";s:5:\"width\";i:300;s:6:\"height\";i:107;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:31:\"book-workshop-now-1-450x160.png\";s:5:\"width\";i:450;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"book-workshop-now-1-300x164.png\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"book-workshop-now-1-400x143.png\";s:5:\"width\";i:400;s:6:\"height\";i:143;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"book-workshop-now-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"book-workshop-now-1-300x164.png\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"book-workshop-now-1-400x143.png\";s:5:\"width\";i:400;s:6:\"height\";i:143;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"book-workshop-now-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4685,1660,'_wp_attached_file','2018/09/Click-now.jpg'),(4686,1660,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:768;s:4:\"file\";s:21:\"2018/09/Click-now.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Click-now-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Click-now-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"Click-now-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:21:\"Click-now-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:21:\"Click-now-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:21:\"Click-now-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:21:\"Click-now-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:21:\"Click-now-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:21:\"Click-now-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"Click-now-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"Click-now-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"Click-now-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"Click-now-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"Click-now-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"Click-now-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4688,1664,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:329;s:6:\"height\";i:302;s:4:\"file\";s:23:\"2018/09/Hypnosis-15.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Hypnosis-15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Hypnosis-15-300x275.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:22:\"Hypnosis-15-100x92.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:92;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:23:\"Hypnosis-15-150x138.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:23:\"Hypnosis-15-200x184.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:23:\"Hypnosis-15-300x275.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"Hypnosis-15-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Hypnosis-15-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"Hypnosis-15-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Hypnosis-15-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4689,1665,'_edit_lock','1540835403:1'),(4690,1665,'_edit_last','1'),(4691,1665,'_wp_page_template','default'),(4692,1665,'_responsive_layout','default'),(4693,1665,'_yoast_wpseo_content_score','30'),(4694,1667,'_wp_attached_file','2018/09/New-Anxiety-Program-Application-Form.doc'),(4696,1668,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:4:\"NARP\";s:6:\"sender\";s:45:\"[your-name] <mark@newcastle-hypnotherapy.com>\";s:9:\"recipient\";s:31:\"mark@newcastle-hypnotherapy.com\";s:4:\"body\";s:200:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Newcastle Hypnotherapy  (https://www.newcastle-hypnotherapy.com)\";s:18:\"additional_headers\";s:43:\"Reply-To: <mark@newcastle-hypnotherapy.com>\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(4697,1668,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:40:\"Newcastle Hypnotherapy  \"[your-subject]\"\";s:6:\"sender\";s:57:\"Newcastle Hypnotherapy  <mark@newcastle-hypnotherapy.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:142:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Newcastle Hypnotherapy  (https://www.newcastle-hypnotherapy.com)\";s:18:\"additional_headers\";s:41:\"Reply-To: mark@newcastle-hypnotherapy.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(4698,1668,'_messages','a:23:{s:12:\"mail_sent_ok\";s:56:\"Thank you. Please check your email for your information.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(4699,1668,'_additional_settings',''),(4700,1668,'_locale','en_GB'),(4701,1668,'cf7s_template','contact'),(4702,1668,'cf7s_style','caspar'),(4703,1668,'cf7s_postbox','a:1:{s:8:\"cf7skins\";s:0:\"\";}'),(4707,1672,'_wp_attached_file','2018/09/anxiety-w-logo.jpg'),(4708,1672,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:713;s:6:\"height\";i:473;s:4:\"file\";s:26:\"2018/09/anxiety-w-logo.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"anxiety-w-logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"anxiety-w-logo-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:25:\"anxiety-w-logo-100x66.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:26:\"anxiety-w-logo-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:26:\"anxiety-w-logo-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:26:\"anxiety-w-logo-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:26:\"anxiety-w-logo-450x299.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:299;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:26:\"anxiety-w-logo-600x398.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"anxiety-w-logo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"anxiety-w-logo-400x265.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"anxiety-w-logo-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"anxiety-w-logo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"anxiety-w-logo-400x265.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"anxiety-w-logo-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4709,1677,'_order_key','wc_order_5bad1b3fb01c6'),(4710,1677,'_customer_user','0'),(4711,1677,'_payment_method','bacs'),(4712,1677,'_payment_method_title','Direct bank transfer'),(4713,1677,'_transaction_id',''),(4714,1677,'_customer_ip_address','213.205.241.93'),(4715,1677,'_customer_user_agent','mozilla/5.0 (linux; android 8.0.0; h3113 build/50.1.a.10.51; wv) applewebkit/537.36 (khtml, like gecko) version/4.0 chrome/69.0.3497.91 mobile safari/537.36 [fb_iab/fb4a;fbav/189.0.0.35.91;]'),(4716,1677,'_created_via','checkout'),(4717,1677,'_date_completed',''),(4718,1677,'_completed_date',''),(4719,1677,'_date_paid',''),(4720,1677,'_paid_date',''),(4721,1677,'_cart_hash','52bb0518b87ac13017cf28c126ff66aa'),(4722,1677,'_billing_first_name','Tracy'),(4723,1677,'_billing_last_name','Pino'),(4724,1677,'_billing_company',''),(4725,1677,'_billing_address_1','126 Boldon Ln'),(4726,1677,'_billing_address_2',''),(4727,1677,'_billing_city','South Shields'),(4728,1677,'_billing_state',''),(4729,1677,'_billing_postcode','NE34 0BY'),(4730,1677,'_billing_country','GB'),(4731,1677,'_billing_email','tracypino@gmail.com'),(4732,1677,'_billing_phone','01914540078'),(4733,1677,'_shipping_first_name',''),(4734,1677,'_shipping_last_name',''),(4735,1677,'_shipping_company',''),(4736,1677,'_shipping_address_1',''),(4737,1677,'_shipping_address_2',''),(4738,1677,'_shipping_city',''),(4739,1677,'_shipping_state',''),(4740,1677,'_shipping_postcode',''),(4741,1677,'_shipping_country',''),(4742,1677,'_order_currency','GBP'),(4743,1677,'_cart_discount','0'),(4744,1677,'_cart_discount_tax','0'),(4745,1677,'_order_shipping','0.00'),(4746,1677,'_order_shipping_tax','0'),(4747,1677,'_order_tax','0'),(4748,1677,'_order_total','8.50'),(4749,1677,'_order_version','3.4.5'),(4750,1677,'_prices_include_tax','no'),(4751,1677,'_billing_address_index','Tracy Pino  126 Boldon Ln  South Shields  NE34 0BY GB tracypino@gmail.com 01914540078'),(4752,1677,'_shipping_address_index','         01914540078'),(4753,1677,'_recorded_sales','yes'),(4754,1677,'_recorded_coupon_usage_counts','yes'),(4755,1677,'_order_stock_reduced','yes'),(5250,1595,'_yoast_wpseo_focuskw','Booking Your Session'),(6209,2058,'_form','<fieldset>\n	<legend>Enter your details below to join the newsletter</legend>\n	<ol>\n<li> Name [text* cf7s-name] </li>\n		<li> Email [email* cf7s-email] </li>\n\n\n\n[submit \"Submit\"]\n\n</fieldset>'),(5249,1437,'_thumbnail_id','1876'),(4762,1682,'_wp_attached_file','2018/09/anxiety-tips.jpg'),(4763,1682,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:24:\"2018/09/anxiety-tips.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"anxiety-tips-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"anxiety-tips-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:24:\"anxiety-tips-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:24:\"anxiety-tips-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:24:\"anxiety-tips-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:24:\"anxiety-tips-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"anxiety-tips-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"anxiety-tips-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"anxiety-tips-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"anxiety-tips-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"anxiety-tips-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"anxiety-tips-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4764,1682,'_wp_attachment_image_alt','anxiety tips newcastle hypnotherapy'),(4766,1723,'_wp_attached_file','2018/09/anxiety-button.jpg'),(4767,1723,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:26:\"2018/09/anxiety-button.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"anxiety-button-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"anxiety-button-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:26:\"anxiety-button-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:26:\"anxiety-button-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:26:\"anxiety-button-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:26:\"anxiety-button-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"anxiety-button-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"anxiety-button-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"anxiety-button-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"anxiety-button-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"anxiety-button-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"anxiety-button-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4768,1723,'_wp_attachment_image_alt','Anxiety Relief Hypnosis Program'),(4769,1729,'_edit_lock','1538638741:1'),(4770,1729,'_edit_last','1'),(4771,1729,'discount_type','fixed_cart'),(4772,1729,'coupon_amount','10'),(4773,1729,'individual_use','no'),(4774,1729,'product_ids',''),(4775,1729,'exclude_product_ids','1548'),(4776,1729,'usage_limit','0'),(4777,1729,'usage_limit_per_user','0'),(4778,1729,'limit_usage_to_x_items','0'),(4779,1729,'usage_count','0'),(4780,1729,'date_expires','1538870400'),(4781,1729,'expiry_date','2018-10-07'),(4782,1729,'free_shipping','no'),(4783,1729,'product_categories','a:0:{}'),(4784,1729,'exclude_product_categories','a:0:{}'),(4785,1729,'exclude_sale_items','no'),(4786,1729,'minimum_amount',''),(4787,1729,'maximum_amount',''),(4788,1729,'customer_email','a:0:{}'),(4789,1730,'_wp_attached_file','2018/09/PHONE-SESSION.png'),(4790,1730,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:2000;s:4:\"file\";s:25:\"2018/09/PHONE-SESSION.png\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"PHONE-SESSION-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"PHONE-SESSION-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"PHONE-SESSION-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"PHONE-SESSION-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:25:\"PHONE-SESSION-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:25:\"PHONE-SESSION-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:25:\"PHONE-SESSION-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:25:\"PHONE-SESSION-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:25:\"PHONE-SESSION-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:25:\"PHONE-SESSION-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:25:\"PHONE-SESSION-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"PHONE-SESSION-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"PHONE-SESSION-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"PHONE-SESSION-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"PHONE-SESSION-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"PHONE-SESSION-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"PHONE-SESSION-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6750,2458,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1250;s:6:\"height\";i:938;s:4:\"file\";s:31:\"2019/01/IMG_20180519_154141.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154141-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154141-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154141-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20180519_154141-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:30:\"IMG_20180519_154141-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154141-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154141-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154141-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154141-450x338.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154141-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154141-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG_20180519_154141-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154141-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154141-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154141-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154141-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154141-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6749,2458,'_wp_attached_file','2019/01/IMG_20180519_154141.jpg'),(4879,1677,'_edit_lock','1541534281:1'),(4880,1577,'_edit_lock','1542806454:1'),(4881,1575,'_edit_lock','1542806473:1'),(4882,1567,'_edit_lock','1542653253:1'),(5020,1792,'_completed_date',''),(5021,1792,'_date_paid',''),(5022,1792,'_paid_date',''),(5023,1792,'_cart_hash','2f16f4cd64ca989c008d513000dff1bf'),(5024,1792,'_billing_first_name','Laura'),(5025,1792,'_billing_last_name','Jakes'),(5026,1792,'_billing_company',''),(5027,1792,'_billing_address_1','17 Muirfield'),(5028,1792,'_billing_address_2','West Monkseaton'),(5029,1792,'_billing_city','Whitley Bay'),(5030,1792,'_billing_state','Tyne &Wear'),(5031,1792,'_billing_postcode','NE25 9HY'),(5032,1792,'_billing_country','GB'),(5033,1792,'_billing_email','laurajakes@hotmail.com'),(5034,1792,'_billing_phone','07837774009'),(5035,1792,'_shipping_first_name',''),(5036,1792,'_shipping_last_name',''),(5037,1792,'_shipping_company',''),(5038,1792,'_shipping_address_1',''),(5039,1792,'_shipping_address_2',''),(5040,1792,'_shipping_city',''),(5041,1792,'_shipping_state',''),(5042,1792,'_shipping_postcode',''),(5043,1792,'_shipping_country',''),(5044,1792,'_order_currency','GBP'),(5045,1792,'_cart_discount','0'),(5046,1792,'_cart_discount_tax','0'),(5047,1792,'_order_shipping','0.00'),(5048,1792,'_order_shipping_tax','0'),(5049,1792,'_order_tax','0'),(5050,1792,'_order_total','17.00'),(5051,1792,'_order_version','3.4.5'),(5052,1792,'_prices_include_tax','no'),(5053,1792,'_billing_address_index','Laura Jakes  17 Muirfield West Monkseaton Whitley Bay Tyne &Wear NE25 9HY GB laurajakes@hotmail.com 07837774009'),(5054,1792,'_shipping_address_index','         07837774009'),(5055,1792,'_recorded_sales','yes'),(5056,1792,'_recorded_coupon_usage_counts','yes'),(5057,1792,'_order_stock_reduced','yes'),(5058,1793,'_order_key','wc_order_5bc63f6260bfe'),(5059,1793,'_customer_user','0'),(5060,1793,'_payment_method','bacs'),(5061,1793,'_payment_method_title','Direct bank transfer'),(5062,1793,'_transaction_id',''),(5063,1793,'_customer_ip_address','188.31.22.182'),(5064,1793,'_customer_user_agent','mozilla/5.0 (linux; android 8.0.0; sm-j330fn build/r16nw; wv) applewebkit/537.36 (khtml, like gecko) version/4.0 chrome/69.0.3497.100 mobile safari/537.36 [fb_iab/fb4a;fbav/193.0.0.45.101;]'),(5065,1793,'_created_via','checkout'),(5066,1793,'_date_completed',''),(5067,1793,'_completed_date',''),(5068,1793,'_date_paid',''),(5069,1793,'_paid_date',''),(5070,1793,'_cart_hash','610ad97bde8c84e2785e706216b7b18b'),(5071,1793,'_billing_first_name','Faith'),(5072,1793,'_billing_last_name','Baptist'),(5073,1793,'_billing_company',''),(5074,1793,'_billing_address_1','106 Devon crescent'),(5075,1793,'_billing_address_2',''),(5076,1793,'_billing_city','Birtley'),(5077,1793,'_billing_state','Durham'),(5078,1793,'_billing_postcode','DH3 1HP'),(5079,1793,'_billing_country','GB'),(5080,1793,'_billing_email','faithbaptist@live.co.uk'),(5081,1793,'_billing_phone','07985473521'),(5082,1793,'_shipping_first_name',''),(5083,1793,'_shipping_last_name',''),(5084,1793,'_shipping_company',''),(5085,1793,'_shipping_address_1',''),(5086,1793,'_shipping_address_2',''),(5087,1793,'_shipping_city',''),(5088,1793,'_shipping_state',''),(5089,1793,'_shipping_postcode',''),(5090,1793,'_shipping_country',''),(5091,1793,'_order_currency','GBP'),(5092,1793,'_cart_discount','0'),(5093,1793,'_cart_discount_tax','0'),(5094,1793,'_order_shipping','0.00'),(5095,1793,'_order_shipping_tax','0'),(5096,1793,'_order_tax','0'),(5097,1793,'_order_total','8.50'),(5098,1793,'_order_version','3.4.5'),(5099,1793,'_prices_include_tax','no'),(5100,1793,'_billing_address_index','Faith Baptist  106 Devon crescent  Birtley Durham DH3 1HP GB faithbaptist@live.co.uk 07985473521'),(5101,1793,'_shipping_address_index','         07985473521'),(5102,1793,'_recorded_sales','yes'),(5103,1793,'_recorded_coupon_usage_counts','yes'),(5104,1793,'_order_stock_reduced','yes'),(5105,1794,'_order_key','wc_order_5bc644b8aa704'),(5106,1794,'_customer_user','0'),(5107,1794,'_payment_method','paypal'),(5108,1794,'_payment_method_title','PayPal'),(5109,1794,'_transaction_id','2L357351MR223753R'),(5110,1794,'_customer_ip_address','188.31.22.182'),(5111,1794,'_customer_user_agent','mozilla/5.0 (linux; android 8.0.0; sm-j330fn build/r16nw; wv) applewebkit/537.36 (khtml, like gecko) version/4.0 chrome/69.0.3497.100 mobile safari/537.36 [fb_iab/fb4a;fbav/193.0.0.45.101;]'),(5112,1794,'_created_via','checkout'),(5113,1794,'_date_completed',''),(5114,1794,'_completed_date',''),(5115,1794,'_date_paid','1539720444'),(5116,1794,'_paid_date','2018-10-16 20:07:24'),(5117,1794,'_cart_hash','610ad97bde8c84e2785e706216b7b18b'),(5118,1794,'_billing_first_name','Faith'),(5119,1794,'_billing_last_name','Baptist0'),(5120,1794,'_billing_company',''),(5121,1794,'_billing_address_1','106 Devon crescent'),(5122,1794,'_billing_address_2',''),(5123,1794,'_billing_city','Birtley'),(5124,1794,'_billing_state','Durham'),(5125,1794,'_billing_postcode','DH3 1HP'),(5126,1794,'_billing_country','GB'),(5127,1794,'_billing_email','faithbaptist@live.co.uk'),(5128,1794,'_billing_phone','+447985473521'),(5129,1794,'_shipping_first_name',''),(5130,1794,'_shipping_last_name',''),(5131,1794,'_shipping_company',''),(5132,1794,'_shipping_address_1',''),(5133,1794,'_shipping_address_2',''),(5134,1794,'_shipping_city',''),(5135,1794,'_shipping_state',''),(5136,1794,'_shipping_postcode',''),(5137,1794,'_shipping_country',''),(5138,1794,'_order_currency','GBP'),(5139,1794,'_cart_discount','0'),(5140,1794,'_cart_discount_tax','0'),(5141,1794,'_order_shipping','0.00'),(5142,1794,'_order_shipping_tax','0'),(5143,1794,'_order_tax','0'),(5144,1794,'_order_total','8.50'),(5145,1794,'_order_version','3.4.5'),(5146,1794,'_prices_include_tax','no'),(5147,1794,'_billing_address_index','Faith Baptist0  106 Devon crescent  Birtley Durham DH3 1HP GB faithbaptist@live.co.uk +447985473521'),(5148,1794,'_shipping_address_index','         +447985473521'),(5149,1794,'Payment type','instant'),(5150,1794,'_paypal_status','completed'),(5151,1794,'_download_permissions_granted','yes'),(5152,1794,'_recorded_sales','yes'),(5153,1794,'_recorded_coupon_usage_counts','yes'),(5154,1794,'_order_stock_reduced','yes'),(5155,1794,'PayPal Transaction Fee','0.49'),(6380,2169,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:847;s:4:\"file\";s:18:\"2018/12/01fear.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"01fear-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"01fear-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"01fear-768x508.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"01fear-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:17:\"01fear-100x66.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:17:\"01fear-150x99.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:18:\"01fear-200x132.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:18:\"01fear-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:18:\"01fear-450x298.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:18:\"01fear-600x397.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:18:\"01fear-900x596.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:596;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"01fear-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"01fear-400x265.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"01fear-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"01fear-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"01fear-400x265.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"01fear-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6347,200,'_responsive_layout','default'),(5434,1917,'_wp_old_slug','past-life-regression-5th-december'),(6399,2200,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:29:\"2018/12/hcmp73767_285476.jpeg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"hcmp73767_285476-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"hcmp73767_285476-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"hcmp73767_285476-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"hcmp73767_285476-1024x768.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:28:\"hcmp73767_285476-100x75.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:29:\"hcmp73767_285476-150x113.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:29:\"hcmp73767_285476-200x150.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:29:\"hcmp73767_285476-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:29:\"hcmp73767_285476-450x338.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:29:\"hcmp73767_285476-600x450.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:29:\"hcmp73767_285476-900x675.jpeg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"hcmp73767_285476-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"hcmp73767_285476-400x300.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"hcmp73767_285476-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"hcmp73767_285476-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"hcmp73767_285476-400x300.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"hcmp73767_285476-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6398,2200,'_wp_attached_file','2018/12/hcmp73767_285476.jpeg'),(6397,2192,'_yoast_wpseo_content_score','60'),(6396,2192,'_responsive_layout','default'),(6395,2192,'_wp_page_template','default'),(6394,2192,'_edit_last','1'),(5972,2006,'_edit_lock','1542652351:1'),(5973,2006,'_edit_last','1'),(6404,2192,'_yoast_wpseo_linkdex','99'),(6403,2192,'_yoast_wpseo_metadesc','Newcastle Hypnotherapy Bedlington can help with a wide range of issues including anxiety, stress, stop smoking, self confidence and more'),(6402,2192,'_yoast_wpseo_title','Newcastle Hypnotherapy Bedlington Northumberland'),(6401,2192,'_yoast_wpseo_focuskw','Newcastle Hypnotherapy Bedlington'),(6400,2200,'_wp_attachment_image_alt','newcastle hypnotherapy bedlington'),(6453,2284,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:16:\"2018/12/2019.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"2019-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"2019-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"2019-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"2019-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:15:\"2019-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:16:\"2019-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:16:\"2019-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:16:\"2019-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:16:\"2019-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:16:\"2019-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:16:\"2019-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"2019-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"2019-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"2019-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"2019-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"2019-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"2019-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6452,2284,'_wp_attached_file','2018/12/2019.jpg'),(6451,2283,'_edit_last','1'),(6450,2283,'_edit_lock','1547713402:1'),(6448,2280,'_menu_item_url',''),(6447,2280,'_menu_item_xfn',''),(6446,2280,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6445,2280,'_menu_item_target',''),(6443,2280,'_menu_item_object_id','2216'),(6444,2280,'_menu_item_object','page'),(6442,2280,'_menu_item_menu_item_parent','1497'),(6441,2280,'_menu_item_type','post_type'),(7786,2586,'_order_key','wc_order_5c55ff7c539bc'),(7784,2571,'_menu_item_url',''),(7783,2571,'_menu_item_xfn',''),(7782,2571,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7781,2571,'_menu_item_target',''),(7780,2571,'_menu_item_object','page'),(7779,2571,'_menu_item_object_id','2558'),(5617,1950,'_order_key','wc_order_5beb523191638'),(5618,1950,'_customer_user','0'),(5619,1950,'_payment_method','bacs'),(5620,1950,'_payment_method_title','Direct bank transfer'),(5621,1950,'_transaction_id',''),(5622,1950,'_customer_ip_address','109.149.182.24'),(5623,1950,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Safari/605.1.15'),(5624,1950,'_created_via','checkout'),(5625,1950,'_date_completed',''),(5626,1950,'_completed_date',''),(5627,1950,'_date_paid',''),(5628,1950,'_paid_date',''),(5629,1950,'_cart_hash','65bd0991eab5b439b447e06e52b2e69d'),(5630,1950,'_billing_first_name','Eileen'),(5631,1950,'_billing_last_name','Baron'),(5632,1950,'_billing_company','Eclipse Training Associates'),(5633,1950,'_billing_address_1','Baronoaks'),(5634,1950,'_billing_address_2','Dunces Houses, Hepscott'),(5635,1950,'_billing_city','Morpeth'),(5636,1950,'_billing_state','Northumberland'),(5637,1950,'_billing_postcode','NE61 6NU'),(5638,1950,'_billing_country','GB'),(5639,1950,'_billing_email','eileen@eclipsetrainingcourses.co.uk'),(5640,1950,'_billing_phone','07711668555'),(5641,1950,'_shipping_first_name',''),(5642,1950,'_shipping_last_name',''),(5643,1950,'_shipping_company',''),(5644,1950,'_shipping_address_1',''),(5645,1950,'_shipping_address_2',''),(5646,1950,'_shipping_city',''),(5647,1950,'_shipping_state',''),(5648,1950,'_shipping_postcode',''),(5649,1950,'_shipping_country',''),(5650,1950,'_order_currency','GBP'),(5651,1950,'_cart_discount','0'),(5652,1950,'_cart_discount_tax','0'),(5653,1950,'_order_shipping','0.00'),(5654,1950,'_order_shipping_tax','0'),(5655,1950,'_order_tax','0'),(5656,1950,'_order_total','20.00'),(5657,1950,'_order_version','3.5.0'),(5658,1950,'_prices_include_tax','no'),(5659,1950,'_billing_address_index','Eileen Baron Eclipse Training Associates Baronoaks Dunces Houses, Hepscott Morpeth Northumberland NE61 6NU GB eileen@eclipsetrainingcourses.co.uk 07711668555'),(5660,1950,'_shipping_address_index','         07711668555'),(5661,1950,'_recorded_sales','yes'),(5662,1950,'_recorded_coupon_usage_counts','yes'),(5663,1950,'_order_stock_reduced','yes'),(7778,2571,'_menu_item_menu_item_parent','804'),(7777,2571,'_menu_item_type','post_type'),(6393,2192,'_edit_lock','1545933624:1'),(6392,347,'_responsive_layout','default'),(5676,1950,'_edit_lock','1542816074:1'),(5677,1957,'_wp_attached_file','2018/11/anxietystress.jpg'),(5678,1957,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:713;s:6:\"height\";i:473;s:4:\"file\";s:25:\"2018/11/anxietystress.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"anxietystress-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"anxietystress-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:24:\"anxietystress-100x66.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:25:\"anxietystress-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:25:\"anxietystress-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:25:\"anxietystress-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:25:\"anxietystress-450x299.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:299;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:25:\"anxietystress-600x398.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"anxietystress-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"anxietystress-400x265.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"anxietystress-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"anxietystress-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"anxietystress-400x265.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"anxietystress-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5679,1957,'_wp_attachment_image_alt','anxiety relief hypnosis program'),(5680,1959,'_edit_lock','1542283901:1'),(5681,1959,'_edit_last','1'),(5682,1960,'_edit_lock','1561919939:1'),(5683,1960,'_edit_last','1'),(5695,1960,'_wpas_done_all','1'),(5709,1966,'_customer_user','0'),(5687,1960,'_responsive_layout','default'),(5688,1960,'responsive_meta_box_designation',''),(5689,1960,'responsive_meta_box_facebook',''),(5690,1960,'responsive_meta_box_twitter',''),(5691,1960,'responsive_meta_box_googleplus',''),(5692,1960,'responsive_meta_box_text_linkedin',''),(5693,1960,'_yoast_wpseo_content_score','90'),(5694,1960,'_yoast_wpseo_primary_category','14'),(5708,1966,'_order_key','wc_order_5bed932b16cf6'),(5710,1966,'_payment_method','paypal'),(5711,1966,'_payment_method_title','PayPal'),(5712,1966,'_transaction_id','1RU53005LV409161Y'),(5713,1966,'_customer_ip_address','82.71.194.253'),(5714,1966,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36'),(5715,1966,'_created_via','checkout'),(5716,1966,'_date_completed',''),(5717,1966,'_completed_date',''),(5718,1966,'_date_paid','1542296406'),(5719,1966,'_paid_date','2018-11-15 15:40:06'),(5720,1966,'_cart_hash','52bb0518b87ac13017cf28c126ff66aa'),(5721,1966,'_billing_first_name','Michael'),(5722,1966,'_billing_last_name','Keenan'),(5723,1966,'_billing_company',''),(5724,1966,'_billing_address_1','100 Broadway'),(5725,1966,'_billing_address_2',''),(5726,1966,'_billing_city','Gateshead'),(5727,1966,'_billing_state',''),(5728,1966,'_billing_postcode','NE9 5QB'),(5729,1966,'_billing_country','GB'),(5730,1966,'_billing_email','Keenan3@hotmail.co.uk'),(5731,1966,'_billing_phone','1914213391'),(5732,1966,'_shipping_first_name',''),(5733,1966,'_shipping_last_name',''),(5734,1966,'_shipping_company',''),(5735,1966,'_shipping_address_1',''),(5736,1966,'_shipping_address_2',''),(5737,1966,'_shipping_city',''),(5738,1966,'_shipping_state',''),(5739,1966,'_shipping_postcode',''),(5740,1966,'_shipping_country',''),(5741,1966,'_order_currency','GBP'),(5742,1966,'_cart_discount','0'),(5743,1966,'_cart_discount_tax','0'),(5744,1966,'_order_shipping','0.00'),(5745,1966,'_order_shipping_tax','0'),(5746,1966,'_order_tax','0'),(5747,1966,'_order_total','8.50'),(5748,1966,'_order_version','3.5.0'),(5749,1966,'_prices_include_tax','no'),(5750,1966,'_billing_address_index','Michael Keenan  100 Broadway  Gateshead  NE9 5QB GB Keenan3@hotmail.co.uk 1914213391'),(5751,1966,'_shipping_address_index','         1914213391'),(5752,1966,'Payment type','instant'),(5753,1966,'_paypal_status','completed'),(5754,1966,'_download_permissions_granted','yes'),(5755,1966,'_recorded_sales','yes'),(5756,1966,'_recorded_coupon_usage_counts','yes'),(5757,1966,'_order_stock_reduced','yes'),(5758,1966,'PayPal Transaction Fee','0.49'),(5761,1960,'_yoast_wpseo_focuskw','anxiety breathing excercises'),(5762,1960,'_yoast_wpseo_metadesc','anxiety breathing excercises - a fast way to bring down and control anxiety/stress levels. Used alongside hypnotherapy they can remove anxiety for good'),(5763,1960,'_yoast_wpseo_linkdex','81'),(5781,1399,'_edit_lock','1542644231:1'),(5774,1960,'_wp_old_slug','anxiety-breathing-excercise'),(5808,1984,'_wp_attached_file','2018/11/AX4.png'),(5809,1984,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1260;s:6:\"height\";i:900;s:4:\"file\";s:15:\"2018/11/AX4.png\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"AX4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"AX4-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"AX4-768x549.png\";s:5:\"width\";i:768;s:6:\"height\";i:549;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"AX4-1024x731.png\";s:5:\"width\";i:1024;s:6:\"height\";i:731;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:14:\"AX4-100x71.png\";s:5:\"width\";i:100;s:6:\"height\";i:71;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:15:\"AX4-150x107.png\";s:5:\"width\";i:150;s:6:\"height\";i:107;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:15:\"AX4-200x143.png\";s:5:\"width\";i:200;s:6:\"height\";i:143;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:15:\"AX4-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:15:\"AX4-450x321.png\";s:5:\"width\";i:450;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:15:\"AX4-600x429.png\";s:5:\"width\";i:600;s:6:\"height\";i:429;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:15:\"AX4-900x643.png\";s:5:\"width\";i:900;s:6:\"height\";i:643;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"AX4-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:15:\"AX4-400x286.png\";s:5:\"width\";i:400;s:6:\"height\";i:286;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"AX4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"AX4-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:15:\"AX4-400x286.png\";s:5:\"width\";i:400;s:6:\"height\";i:286;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"AX4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5810,1984,'_wp_attachment_image_alt','anxiety freedom workshop'),(6422,2218,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:853;s:4:\"file\";s:39:\"2018/12/south-shields-hypnotherapy.jpeg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"south-shields-hypnotherapy-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"south-shields-hypnotherapy-225x300.jpeg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:39:\"south-shields-hypnotherapy-100x133.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:39:\"south-shields-hypnotherapy-150x200.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:39:\"south-shields-hypnotherapy-200x267.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:39:\"south-shields-hypnotherapy-300x400.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:39:\"south-shields-hypnotherapy-450x600.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:39:\"south-shields-hypnotherapy-600x800.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:39:\"south-shields-hypnotherapy-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:39:\"south-shields-hypnotherapy-400x533.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:39:\"south-shields-hypnotherapy-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:39:\"south-shields-hypnotherapy-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:39:\"south-shields-hypnotherapy-400x533.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:39:\"south-shields-hypnotherapy-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6421,2218,'_wp_attached_file','2018/12/south-shields-hypnotherapy.jpeg'),(6420,2216,'_yoast_wpseo_content_score','90'),(6419,2216,'_yoast_wpseo_linkdex','83'),(6418,2216,'_yoast_wpseo_focuskw','South Shields Hypnotherapy Practice'),(6417,2216,'_responsive_layout','default'),(6416,2216,'_wp_page_template','default'),(6415,2216,'_edit_last','1'),(6414,2216,'_edit_lock','1545350825:1'),(6412,2215,'_menu_item_url',''),(6411,2215,'_menu_item_xfn',''),(6409,2215,'_menu_item_target',''),(6410,2215,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6406,2215,'_menu_item_menu_item_parent','1497'),(6407,2215,'_menu_item_object_id','2192'),(6408,2215,'_menu_item_object','page'),(6405,2215,'_menu_item_type','post_type'),(5863,1987,'_order_key','wc_order_5bf13e26e9704'),(5864,1987,'_customer_user','1'),(5865,1987,'_payment_method','paypal'),(5866,1987,'_payment_method_title','PayPal'),(5867,1987,'_transaction_id',''),(5868,1987,'_customer_ip_address','195.12.48.124'),(5869,1987,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0'),(5870,1987,'_created_via','checkout'),(5871,1987,'_date_completed',''),(5872,1987,'_completed_date',''),(5873,1987,'_date_paid',''),(5874,1987,'_paid_date',''),(5875,1987,'_cart_hash','8222f300b815b09ec95e0e3c22092a92'),(5876,1987,'_billing_first_name','Test'),(5877,1987,'_billing_last_name','Tes'),(5878,1987,'_billing_company','test order 4'),(5879,1987,'_billing_address_1','27 Greystoke Place'),(5880,1987,'_billing_address_2','Test street'),(5881,1987,'_billing_city','Newcastle'),(5882,1987,'_billing_state',''),(5883,1987,'_billing_postcode','NE23 6NL'),(5884,1987,'_billing_country','GB'),(5885,1987,'_billing_email','myfreepack@gmail.com'),(5886,1987,'_billing_phone','0980980989'),(5887,1987,'_shipping_first_name',''),(5888,1987,'_shipping_last_name',''),(5889,1987,'_shipping_company',''),(5890,1987,'_shipping_address_1',''),(5891,1987,'_shipping_address_2',''),(5892,1987,'_shipping_city',''),(5893,1987,'_shipping_state',''),(5894,1987,'_shipping_postcode',''),(5895,1987,'_shipping_country',''),(5896,1987,'_order_currency','GBP'),(5897,1987,'_cart_discount','0'),(5898,1987,'_cart_discount_tax','0'),(5899,1987,'_order_shipping','0.00'),(5900,1987,'_order_shipping_tax','0'),(5901,1987,'_order_tax','0'),(5902,1987,'_order_total','17.00'),(5903,1987,'_order_version','3.5.1'),(5904,1987,'_prices_include_tax','no'),(5905,1987,'_billing_address_index','Test Tes test order 4 27 Greystoke Place Test street Newcastle  NE23 6NL GB myfreepack@gmail.com 0980980989'),(5906,1987,'_shipping_address_index','         0980980989'),(5907,2002,'_order_key','wc_order_5bf2cb5ec81cc'),(5908,2002,'_customer_user','0'),(5909,2002,'_payment_method','bacs'),(5910,2002,'_payment_method_title','Direct bank transfer'),(5911,2002,'_transaction_id',''),(5912,2002,'_customer_ip_address','81.151.107.126'),(5913,2002,'_customer_user_agent','Mozilla/5.0 (Linux; Android 5.1.1; SAMSUNG SM-J320FN Build/LMY47V) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/7.4 Chrome/59.0.3071.125 Mobile Safari/537.36'),(5914,2002,'_created_via','checkout'),(5915,2002,'_date_completed',''),(5916,2002,'_completed_date',''),(5917,2002,'_date_paid',''),(5918,2002,'_paid_date',''),(5919,2002,'_cart_hash','65bd0991eab5b439b447e06e52b2e69d'),(5920,2002,'_billing_first_name','Elizabeth'),(5921,2002,'_billing_last_name','Barrass'),(5922,2002,'_billing_company',''),(5923,2002,'_billing_address_1','2 Holyfields'),(5924,2002,'_billing_address_2','West Allotment'),(5925,2002,'_billing_city','Newcastle upon Tyne'),(5926,2002,'_billing_state','Tyne and Wear'),(5927,2002,'_billing_postcode','NE27 0EX'),(5928,2002,'_billing_country','GB'),(5929,2002,'_billing_email','lizbarrass26@hotmail.com'),(5930,2002,'_billing_phone','01912701699'),(5931,2002,'_shipping_first_name',''),(5932,2002,'_shipping_last_name',''),(5933,2002,'_shipping_company',''),(5934,2002,'_shipping_address_1',''),(5935,2002,'_shipping_address_2',''),(5936,2002,'_shipping_city',''),(5937,2002,'_shipping_state',''),(5938,2002,'_shipping_postcode',''),(5939,2002,'_shipping_country',''),(5940,2002,'_order_currency','GBP'),(5941,2002,'_cart_discount','0'),(5942,2002,'_cart_discount_tax','0'),(5943,2002,'_order_shipping','0.00'),(5944,2002,'_order_shipping_tax','0'),(5945,2002,'_order_tax','0'),(5946,2002,'_order_total','20.00'),(5947,2002,'_order_version','3.5.1'),(5948,2002,'_prices_include_tax','no'),(5949,2002,'_billing_address_index','Elizabeth Barrass  2 Holyfields West Allotment Newcastle upon Tyne Tyne and Wear NE27 0EX GB lizbarrass26@hotmail.com 01912701699'),(5950,2002,'_shipping_address_index','         01912701699'),(5951,2002,'_recorded_sales','yes'),(5952,2002,'_recorded_coupon_usage_counts','yes'),(5953,2002,'_order_stock_reduced','yes'),(5956,589,'_responsive_layout','default'),(5957,589,'responsive_meta_box_designation',''),(5958,589,'responsive_meta_box_facebook',''),(5959,589,'responsive_meta_box_twitter',''),(5960,589,'responsive_meta_box_googleplus',''),(5961,589,'responsive_meta_box_text_linkedin',''),(5966,576,'_responsive_layout','default'),(5967,576,'responsive_meta_box_designation',''),(5968,576,'responsive_meta_box_facebook',''),(5969,576,'responsive_meta_box_twitter',''),(5970,576,'responsive_meta_box_googleplus',''),(5971,576,'responsive_meta_box_text_linkedin',''),(5985,2006,'_wpas_done_all','1'),(5977,2006,'_responsive_layout','default'),(5978,2006,'responsive_meta_box_designation',''),(5979,2006,'responsive_meta_box_facebook',''),(5980,2006,'responsive_meta_box_twitter',''),(5981,2006,'responsive_meta_box_googleplus',''),(5982,2006,'responsive_meta_box_text_linkedin',''),(5983,2006,'_yoast_wpseo_content_score','90'),(5984,2006,'_yoast_wpseo_primary_category','59'),(5989,2010,'_wp_attached_file','2018/11/stress-391654_1280.jpg'),(5988,2006,'_yoast_wpseo_metadesc','How effective is Hypnosis For Stress In The Workplace? Workplace stress is becoming very common and it\'s more about your reaction to situations.'),(5990,2010,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:753;s:4:\"file\";s:30:\"2018/11/stress-391654_1280.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"stress-391654_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"stress-391654_1280-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"stress-391654_1280-768x452.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:452;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"stress-391654_1280-1024x602.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:602;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:29:\"stress-391654_1280-100x59.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:59;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:29:\"stress-391654_1280-150x88.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:88;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:30:\"stress-391654_1280-200x118.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:30:\"stress-391654_1280-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:30:\"stress-391654_1280-450x265.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:30:\"stress-391654_1280-600x353.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:30:\"stress-391654_1280-900x529.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:529;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"stress-391654_1280-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"stress-391654_1280-400x235.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"stress-391654_1280-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"stress-391654_1280-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"stress-391654_1280-400x235.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"stress-391654_1280-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5991,2010,'_wp_attachment_image_alt','hypnosis for stress in the workplace'),(6006,2017,'_form','<fieldset>\n	<legend>Enter your details below to join the newsletter</legend>\n	<ol>\n<li> Name [text* cf7s-name] </li>\n		<li> Email [email* cf7s-email] </li>\n\n\n\n[submit \"Submit\"]\n\n</fieldset>'),(6007,2017,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:16:\"Stress Subsciber\";s:6:\"sender\";s:33:\"<mark@newcastle-hypnotherapy.com>\";s:9:\"recipient\";s:31:\"mark@newcastle-hypnotherapy.com\";s:4:\"body\";s:200:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Newcastle Hypnotherapy  (https://www.newcastle-hypnotherapy.com)\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(6039,2026,'_customer_user','0'),(6008,2017,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:40:\"Newcastle Hypnotherapy  \"[your-subject]\"\";s:6:\"sender\";s:57:\"Newcastle Hypnotherapy  <mark@newcastle-hypnotherapy.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:142:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Newcastle Hypnotherapy  (https://www.newcastle-hypnotherapy.com)\";s:18:\"additional_headers\";s:41:\"Reply-To: mark@newcastle-hypnotherapy.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(6009,2017,'_messages','a:23:{s:12:\"mail_sent_ok\";s:52:\"Thank you. You have now subscibed to the newsletter.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(6010,2017,'_additional_settings',''),(6011,2017,'_locale','en_GB'),(6012,2017,'cf7s_template',''),(6013,2017,'cf7s_style','caspar'),(6014,2017,'cf7s_postbox','a:1:{s:8:\"cf7skins\";s:0:\"\";}'),(6038,2026,'_order_key','wc_order_5bf303eb6ebd3'),(6037,1793,'_edit_lock','1542806400:1'),(6036,1966,'_edit_lock','1542806333:1'),(6035,2002,'_edit_lock','1543610117:1'),(6029,2006,'_yoast_wpseo_focuskw','hypnosis for stress in the workplace'),(6030,2006,'_yoast_wpseo_linkdex','85'),(6040,2026,'_payment_method','paypal'),(6041,2026,'_payment_method_title','PayPal'),(6042,2026,'_transaction_id','4YM94550C7658231J'),(6043,2026,'_customer_ip_address','88.104.212.9'),(6044,2026,'_customer_user_agent','Mozilla/5.0 (Linux; Android 7.0; LG-M400 Build/NRD90U; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/70.0.3538.80 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/198.0.0.53.101;]'),(6045,2026,'_created_via','checkout'),(6046,2026,'_date_completed',''),(6047,2026,'_completed_date',''),(6048,2026,'_date_paid','1542652972'),(6049,2026,'_paid_date','2018-11-19 18:42:52'),(6050,2026,'_cart_hash','52bb0518b87ac13017cf28c126ff66aa'),(6051,2026,'_billing_first_name','Elena'),(6052,2026,'_billing_last_name','Kolodzejova'),(6053,2026,'_billing_company',''),(6054,2026,'_billing_address_1','26'),(6055,2026,'_billing_address_2','Beach Avenue'),(6056,2026,'_billing_city','Whitley Bay'),(6057,2026,'_billing_state',''),(6058,2026,'_billing_postcode','NE26 1EA'),(6059,2026,'_billing_country','GB'),(6060,2026,'_billing_email','elena.kolodzejova@gmail.com'),(6061,2026,'_billing_phone','07707690755'),(6062,2026,'_shipping_first_name',''),(6063,2026,'_shipping_last_name',''),(6064,2026,'_shipping_company',''),(6065,2026,'_shipping_address_1',''),(6066,2026,'_shipping_address_2',''),(6067,2026,'_shipping_city',''),(6068,2026,'_shipping_state',''),(6069,2026,'_shipping_postcode',''),(6070,2026,'_shipping_country',''),(6071,2026,'_order_currency','GBP'),(6072,2026,'_cart_discount','0'),(6073,2026,'_cart_discount_tax','0'),(6074,2026,'_order_shipping','0.00'),(6075,2026,'_order_shipping_tax','0'),(6076,2026,'_order_tax','0'),(6077,2026,'_order_total','8.50'),(6078,2026,'_order_version','3.5.1'),(6079,2026,'_prices_include_tax','no'),(6080,2026,'_billing_address_index','Elena Kolodzejova  26 Beach Avenue Whitley Bay  NE26 1EA GB elena.kolodzejova@gmail.com 07707690755'),(6081,2026,'_shipping_address_index','         07707690755'),(6082,2026,'Payment type','instant'),(6083,2026,'_paypal_status','completed'),(6084,2026,'_download_permissions_granted','yes'),(6085,2026,'_recorded_sales','yes'),(6086,2026,'_recorded_coupon_usage_counts','yes'),(6087,2026,'_order_stock_reduced','yes'),(6088,2026,'PayPal Transaction Fee','0.49'),(6089,2027,'_edit_lock','1542805950:1'),(6090,2027,'_edit_last','1'),(6091,2028,'_wp_attached_file','2018/11/010101010101010.jpg'),(6092,2028,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:854;s:4:\"file\";s:27:\"2018/11/010101010101010.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"010101010101010-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"010101010101010-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"010101010101010-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"010101010101010-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:26:\"010101010101010-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:27:\"010101010101010-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:27:\"010101010101010-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:27:\"010101010101010-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:27:\"010101010101010-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:27:\"010101010101010-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:27:\"010101010101010-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"010101010101010-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"010101010101010-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"010101010101010-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"010101010101010-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"010101010101010-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"010101010101010-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6093,2028,'_wp_attachment_image_alt','Hypnosis benefits'),(6108,2027,'_wpas_done_all','1'),(6097,2027,'_responsive_layout','default'),(6098,2027,'responsive_meta_box_designation',''),(6099,2027,'responsive_meta_box_facebook',''),(6100,2027,'responsive_meta_box_twitter',''),(6101,2027,'responsive_meta_box_googleplus',''),(6102,2027,'responsive_meta_box_text_linkedin',''),(6103,2027,'_yoast_wpseo_focuskw','hypnosis benefits'),(6104,2027,'_yoast_wpseo_metadesc','Hypnosis benefits can be many. Hypnotherapy can help in many areas where mainstream medicine fails. Finding a good hypnotherapist can be beneficial'),(6105,2027,'_yoast_wpseo_linkdex','62'),(6106,2027,'_yoast_wpseo_content_score','60'),(6107,2027,'_yoast_wpseo_primary_category','60'),(6114,2031,'_customer_user','0'),(6113,2031,'_order_key','wc_order_5bf4680c682df'),(6115,2031,'_payment_method','paypal'),(6116,2031,'_payment_method_title','PayPal'),(6117,2031,'_transaction_id','8V953248EJ473152X'),(6118,2031,'_customer_ip_address','2.31.63.110'),(6119,2031,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(6120,2031,'_created_via','checkout'),(6121,2031,'_date_completed',''),(6122,2031,'_completed_date',''),(6123,2031,'_date_paid','1542744132'),(6124,2031,'_paid_date','2018-11-20 20:02:12'),(6125,2031,'_cart_hash','52bb0518b87ac13017cf28c126ff66aa'),(6126,2031,'_billing_first_name','Oliver'),(6127,2031,'_billing_last_name','Bennett'),(6128,2031,'_billing_company',''),(6129,2031,'_billing_address_1','63 Kingston Drive'),(6130,2031,'_billing_address_2',''),(6131,2031,'_billing_city','Whitley Bay'),(6132,2031,'_billing_state',''),(6133,2031,'_billing_postcode','NE26 1JJ'),(6134,2031,'_billing_country','GB'),(6135,2031,'_billing_email','info@bar4hire.com'),(6136,2031,'_billing_phone','+447816302013'),(6137,2031,'_shipping_first_name',''),(6138,2031,'_shipping_last_name',''),(6139,2031,'_shipping_company',''),(6140,2031,'_shipping_address_1',''),(6141,2031,'_shipping_address_2',''),(6142,2031,'_shipping_city',''),(6143,2031,'_shipping_state',''),(6144,2031,'_shipping_postcode',''),(6145,2031,'_shipping_country',''),(6146,2031,'_order_currency','GBP'),(6147,2031,'_cart_discount','0'),(6148,2031,'_cart_discount_tax','0'),(6149,2031,'_order_shipping','0.00'),(6150,2031,'_order_shipping_tax','0'),(6151,2031,'_order_tax','0'),(6152,2031,'_order_total','8.50'),(6153,2031,'_order_version','3.5.1'),(6154,2031,'_prices_include_tax','no'),(6155,2031,'_billing_address_index','Oliver Bennett  63 Kingston Drive  Whitley Bay  NE26 1JJ GB info@bar4hire.com +447816302013'),(6156,2031,'_shipping_address_index','         +447816302013'),(6157,2031,'Payment type','instant'),(6158,2031,'_paypal_status','completed'),(6159,2031,'_download_permissions_granted','yes'),(6160,2031,'_recorded_sales','yes'),(6161,2031,'_recorded_coupon_usage_counts','yes'),(6162,2031,'_order_stock_reduced','yes'),(6163,2031,'PayPal Transaction Fee','0.49'),(6164,2032,'notification_id','784'),(6165,2032,'type','success'),(6166,2032,'dismissable','1'),(6167,2032,'location','[\"everywhere\"]'),(6168,2032,'version',''),(6169,2032,'viewed','1'),(6170,2032,'expiration','1543276740'),(6171,2032,'plans','[]'),(6172,2026,'_edit_lock','1542806113:1'),(6173,1898,'_edit_lock','1542806360:1'),(6174,2031,'_edit_lock','1543610792:1'),(6175,2034,'_edit_lock','1543447272:1'),(6176,2034,'_edit_last','1'),(6177,2035,'_wp_attached_file','2018/11/massage-1790063_1280.jpg'),(6178,2035,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:32:\"2018/11/massage-1790063_1280.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"massage-1790063_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"massage-1790063_1280-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"massage-1790063_1280-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"massage-1790063_1280-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:31:\"massage-1790063_1280-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:32:\"massage-1790063_1280-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:32:\"massage-1790063_1280-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:32:\"massage-1790063_1280-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:32:\"massage-1790063_1280-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:32:\"massage-1790063_1280-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:32:\"massage-1790063_1280-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"massage-1790063_1280-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"massage-1790063_1280-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"massage-1790063_1280-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"massage-1790063_1280-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"massage-1790063_1280-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"massage-1790063_1280-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6179,2035,'_wp_attachment_image_alt','Ethical Business Links'),(6180,2034,'_wp_page_template','default'),(6181,2034,'_responsive_layout','default'),(6182,2034,'_yoast_wpseo_content_score','90'),(6679,2408,'_yoast_wpseo_focuskw','Choosing Your Hypnotherapist'),(6196,2046,'_wp_attached_file','2018/11/belly-3186730_1280.jpg'),(6197,2046,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:855;s:4:\"file\";s:30:\"2018/11/belly-3186730_1280.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"belly-3186730_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"belly-3186730_1280-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"belly-3186730_1280-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"belly-3186730_1280-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:29:\"belly-3186730_1280-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:30:\"belly-3186730_1280-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:30:\"belly-3186730_1280-200x134.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:30:\"belly-3186730_1280-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:30:\"belly-3186730_1280-450x301.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:301;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:30:\"belly-3186730_1280-600x401.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:30:\"belly-3186730_1280-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"belly-3186730_1280-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"belly-3186730_1280-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"belly-3186730_1280-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"belly-3186730_1280-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"belly-3186730_1280-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"belly-3186730_1280-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6198,2046,'_wp_attachment_image_alt','hypnotherapy for ibs'),(6752,2459,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1250;s:6:\"height\";i:938;s:4:\"file\";s:31:\"2019/01/IMG_20180519_154200.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154200-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154200-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154200-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20180519_154200-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:30:\"IMG_20180519_154200-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154200-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154200-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154200-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154200-450x338.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154200-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154200-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG_20180519_154200-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154200-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154200-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154200-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154200-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20180519_154200-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6751,2459,'_wp_attached_file','2019/01/IMG_20180519_154200.jpg'),(6210,2058,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:13:\"IBS Subsciber\";s:6:\"sender\";s:33:\"<mark@newcastle-hypnotherapy.com>\";s:9:\"recipient\";s:31:\"mark@newcastle-hypnotherapy.com\";s:4:\"body\";s:200:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Newcastle Hypnotherapy  (https://www.newcastle-hypnotherapy.com)\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(6211,2058,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:40:\"Newcastle Hypnotherapy  \"[your-subject]\"\";s:6:\"sender\";s:57:\"Newcastle Hypnotherapy  <mark@newcastle-hypnotherapy.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:142:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Newcastle Hypnotherapy  (https://www.newcastle-hypnotherapy.com)\";s:18:\"additional_headers\";s:41:\"Reply-To: mark@newcastle-hypnotherapy.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(6212,2058,'_messages','a:23:{s:12:\"mail_sent_ok\";s:52:\"Thank you. You have now subscibed to the newsletter.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(6213,2058,'_additional_settings',''),(6214,2058,'_locale','en_GB'),(6215,2058,'cf7s_template',''),(6216,2058,'cf7s_style','caspar'),(6217,2058,'cf7s_postbox','a:1:{s:8:\"cf7skins\";s:0:\"\";}'),(6218,2058,'cf7s_visual',''),(6220,2062,'_edit_lock','1546801431:1'),(6221,2062,'_edit_last','1'),(6222,2062,'_wp_page_template','content-sidebar-page.php'),(6223,2062,'_responsive_layout','default'),(6224,2062,'_yoast_wpseo_content_score','90'),(6225,2062,'_yoast_wpseo_focuskw','hypnotherapy for ibs symptoms'),(6226,2062,'_yoast_wpseo_metadesc','Hypnotherapy for IBS Symptoms can be an effective way to control Irritable Bowel Syndrome and other digestive problems and issues'),(6227,2062,'_yoast_wpseo_linkdex','93'),(6228,2064,'_menu_item_type','post_type'),(6229,2064,'_menu_item_menu_item_parent','1458'),(6230,2064,'_menu_item_object_id','2062'),(6231,2064,'_menu_item_object','page'),(6232,2064,'_menu_item_target',''),(6233,2064,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6234,2064,'_menu_item_xfn',''),(6235,2064,'_menu_item_url',''),(6240,2071,'_wp_attached_file','2018/11/IBS2.jpg'),(6241,2071,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:16:\"2018/11/IBS2.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"IBS2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"IBS2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:16:\"IBS2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:16:\"IBS2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:16:\"IBS2-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:16:\"IBS2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:16:\"IBS2-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"IBS2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"IBS2-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"IBS2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"IBS2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"IBS2-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"IBS2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6242,2071,'_wp_attachment_image_alt','ibs hypnotherapy'),(6243,2062,'_thumbnail_id','2046'),(6244,104,'_wp_attachment_image_alt','About Us Yvette Spoor'),(6245,2103,'_menu_item_type','post_type'),(6246,2103,'_menu_item_menu_item_parent','1497'),(6247,2103,'_menu_item_object_id','43'),(6248,2103,'_menu_item_object','page'),(6249,2103,'_menu_item_target',''),(6250,2103,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6251,2103,'_menu_item_xfn',''),(6252,2103,'_menu_item_url',''),(6254,1917,'_yoast_wpseo_content_score','60'),(6704,2454,'_sale_price','12.50'),(6702,2454,'_sku',''),(6703,2454,'_regular_price','20'),(6275,2108,'_order_key','wc_order_5c03e844e96c5'),(6276,2108,'_customer_user','0'),(6277,2108,'_payment_method','bacs'),(6278,2108,'_payment_method_title','Direct bank transfer'),(6279,2108,'_transaction_id',''),(6280,2108,'_customer_ip_address','82.0.95.232'),(6281,2108,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.1.0; SM-J530F Build/M1AJQ; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/70.0.3538.110 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/199.0.0.56.98;]'),(6282,2108,'_created_via','checkout'),(6283,2108,'_date_completed',''),(6284,2108,'_completed_date',''),(6285,2108,'_date_paid',''),(6286,2108,'_paid_date',''),(6287,2108,'_cart_hash','828d3740feb5d1aba24c7fb91a759010'),(6288,2108,'_billing_first_name','Mark'),(6289,2108,'_billing_last_name','Coulson'),(6290,2108,'_billing_company',''),(6291,2108,'_billing_address_1','6'),(6292,2108,'_billing_address_2','Oromde Avenue'),(6293,2108,'_billing_city','NEWCASTLE UPON TYNE'),(6294,2108,'_billing_state',''),(6295,2108,'_billing_postcode','NE15 7AE'),(6296,2108,'_billing_country','GB'),(6297,2108,'_billing_email','coulson253@gmail.com'),(6298,2108,'_billing_phone','07791283455'),(6299,2108,'_shipping_first_name',''),(6300,2108,'_shipping_last_name',''),(6301,2108,'_shipping_company',''),(6302,2108,'_shipping_address_1',''),(6303,2108,'_shipping_address_2',''),(6304,2108,'_shipping_city',''),(6305,2108,'_shipping_state',''),(6306,2108,'_shipping_postcode',''),(6307,2108,'_shipping_country',''),(6308,2108,'_order_currency','GBP'),(6309,2108,'_cart_discount','0'),(6310,2108,'_cart_discount_tax','0'),(6311,2108,'_order_shipping','0.00'),(6312,2108,'_order_shipping_tax','0'),(6313,2108,'_order_tax','0'),(6314,2108,'_order_total','10.00'),(6315,2108,'_order_version','3.5.1'),(6316,2108,'_prices_include_tax','no'),(6317,2108,'_billing_address_index','Mark Coulson  6 Oromde Avenue NEWCASTLE UPON TYNE  NE15 7AE GB coulson253@gmail.com 07791283455'),(6318,2108,'_shipping_address_index','         07791283455'),(6319,2108,'_recorded_sales','yes'),(6320,2108,'_recorded_coupon_usage_counts','yes'),(6321,2108,'_order_stock_reduced','yes'),(6341,2121,'_menu_item_xfn',''),(6339,2121,'_menu_item_target',''),(6338,2121,'_menu_item_object','page'),(6337,2121,'_menu_item_object_id','1568'),(6336,2121,'_menu_item_menu_item_parent','1458'),(6340,2121,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6381,2169,'_wp_attachment_image_alt','Anxiety Freedom Workshop'),(6382,2168,'_responsive_layout','default'),(6383,2168,'responsive_meta_box_designation',''),(6384,2168,'responsive_meta_box_facebook',''),(6385,2168,'responsive_meta_box_twitter',''),(6386,2168,'responsive_meta_box_googleplus',''),(6387,2168,'responsive_meta_box_text_linkedin',''),(6388,2168,'_yoast_wpseo_focuskw','Why are people scared of hypnosis or hypnotists'),(6389,2168,'_yoast_wpseo_linkdex','58'),(6390,2168,'_yoast_wpseo_content_score','30'),(6391,2168,'_yoast_wpseo_primary_category',''),(6454,2284,'_wp_attachment_image_alt','Getting The Best Out Of 2018'),(6455,2283,'_wp_page_template','content-sidebar-page.php'),(6456,2283,'_responsive_layout','default'),(6457,2283,'_yoast_wpseo_content_score','90'),(6458,2287,'_wc_review_count','0'),(6459,2287,'_wc_rating_count','a:0:{}'),(6460,2287,'_wc_average_rating','0'),(6461,2287,'_edit_lock','1546799187:1'),(6462,2287,'_edit_last','1'),(6463,2287,'_thumbnail_id','2284'),(6496,2287,'_wpas_done_all','1'),(6465,2287,'_sku',''),(6466,2287,'_regular_price','10'),(6467,2287,'_sale_price',''),(6468,2287,'_sale_price_dates_from',''),(6469,2287,'_sale_price_dates_to',''),(6470,2287,'total_sales','5'),(6471,2287,'_tax_status','none'),(6472,2287,'_tax_class','zero-rate'),(6473,2287,'_manage_stock','yes'),(6474,2287,'_backorders','no'),(6475,2287,'_low_stock_amount','0'),(6476,2287,'_sold_individually','no'),(6477,2287,'_weight',''),(6478,2287,'_length',''),(6479,2287,'_width',''),(6480,2287,'_height',''),(6481,2287,'_upsell_ids','a:0:{}'),(6482,2287,'_crosssell_ids','a:0:{}'),(6483,2287,'_purchase_note',''),(6484,2287,'_default_attributes','a:0:{}'),(6485,2287,'_virtual','no'),(6486,2287,'_downloadable','no'),(6487,2287,'_product_image_gallery',''),(6488,2287,'_download_limit','-1'),(6489,2287,'_download_expiry','-1'),(6490,2287,'_stock','7'),(6491,2287,'_stock_status','instock'),(6492,2287,'_product_version','3.5.3'),(6493,2287,'_price','10'),(6494,2287,'_yoast_wpseo_primary_product_cat','48'),(6495,2287,'_yoast_wpseo_content_score','90'),(6497,2283,'_thumbnail_id','2284'),(6498,2283,'_yoast_wpseo_focuskw','getting the best out of 2019'),(6499,2283,'_yoast_wpseo_title','The Wednesday Workshop - Getting The Best Out Of 2019'),(6500,2283,'_yoast_wpseo_metadesc','Getting the best out of 2019 - Learn these 2 amazing skills to help you achieve your goals and resolutions to make this year a great one.'),(6501,2283,'_yoast_wpseo_linkdex','93'),(6502,2311,'_menu_item_type','post_type'),(6503,2311,'_menu_item_menu_item_parent','804'),(6504,2311,'_menu_item_object_id','2283'),(6505,2311,'_menu_item_object','page'),(6506,2311,'_menu_item_target',''),(6507,2311,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6508,2311,'_menu_item_xfn',''),(6509,2311,'_menu_item_url',''),(6511,2370,'_edit_lock','1545937268:1'),(6512,2370,'_edit_last','1'),(6513,2370,'_wp_page_template','default'),(6514,2370,'_responsive_layout','default'),(6515,2370,'_yoast_wpseo_content_score','60'),(6516,2370,'_yoast_wpseo_focuskw','Newcastle Hypnotherapy Cramlington Practice'),(6517,2370,'_yoast_wpseo_title','%%title%% %%page%% %%sep%% Northumberland Hypnosis'),(6518,2370,'_yoast_wpseo_metadesc','Newcastle Hypnotherapy Cramlington Practice provides professional hypnos and NLP services to help with Anxiety, Stress, Depression and other issues'),(6519,2370,'_yoast_wpseo_linkdex','90'),(6520,2395,'_menu_item_type','post_type'),(6521,2395,'_menu_item_menu_item_parent','1497'),(6522,2395,'_menu_item_object_id','2370'),(6523,2395,'_menu_item_object','page'),(6524,2395,'_menu_item_target',''),(6525,2395,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6526,2395,'_menu_item_xfn',''),(6527,2395,'_menu_item_url',''),(6529,2397,'_order_key','wc_order_5c25ea74d7795'),(6530,2397,'_customer_user','0'),(6531,2397,'_payment_method','paypal'),(6532,2397,'_payment_method_title','PayPal'),(6533,2397,'_transaction_id','9JE15762L83707513'),(6534,2397,'_customer_ip_address','82.42.76.17'),(6535,2397,'_customer_user_agent','Mozilla/5.0 (Android 8.0.0; Mobile; rv:64.0) Gecko/64.0 Firefox/64.0'),(6536,2397,'_created_via','checkout'),(6537,2397,'_date_completed',''),(6538,2397,'_completed_date',''),(6539,2397,'_date_paid','1545988804'),(6540,2397,'_paid_date','2018-12-28 09:20:04'),(6541,2397,'_cart_hash','4b128145e2ad86411195ea6ccc42b9e3'),(6542,2397,'_billing_first_name','Siggi'),(6543,2397,'_billing_last_name','Fritsch'),(6544,2397,'_billing_company',''),(6545,2397,'_billing_address_1','42 Ewen Court'),(6546,2397,'_billing_address_2',''),(6547,2397,'_billing_city','North Shields'),(6548,2397,'_billing_state',''),(6549,2397,'_billing_postcode','NE29 8HA'),(6550,2397,'_billing_country','GB'),(6551,2397,'_billing_email','siggi.fritsch@yahoo.co.uk'),(6552,2397,'_billing_phone','07881478818'),(6553,2397,'_shipping_first_name',''),(6554,2397,'_shipping_last_name',''),(6555,2397,'_shipping_company',''),(6556,2397,'_shipping_address_1',''),(6557,2397,'_shipping_address_2',''),(6558,2397,'_shipping_city',''),(6559,2397,'_shipping_state',''),(6560,2397,'_shipping_postcode',''),(6561,2397,'_shipping_country',''),(6562,2397,'_order_currency','GBP'),(6563,2397,'_cart_discount','0'),(6564,2397,'_cart_discount_tax','0'),(6565,2397,'_order_shipping','0.00'),(6566,2397,'_order_shipping_tax','0'),(6567,2397,'_order_tax','0'),(6568,2397,'_order_total','10.00'),(6569,2397,'_order_version','3.5.1'),(6570,2397,'_prices_include_tax','no'),(6571,2397,'_billing_address_index','Siggi Fritsch  42 Ewen Court  North Shields  NE29 8HA GB siggi.fritsch@yahoo.co.uk 07881478818'),(6572,2397,'_shipping_address_index','         07881478818'),(6573,2397,'Payment type','instant'),(6574,2397,'_paypal_status','completed'),(6575,2397,'_download_permissions_granted','yes'),(6576,2397,'_recorded_sales','yes'),(6577,2397,'_recorded_coupon_usage_counts','yes'),(6578,2397,'_order_stock_reduced','yes'),(6579,2397,'PayPal Transaction Fee','0.54'),(6580,2398,'_order_key','wc_order_5c2622c2ed76d'),(6581,2398,'_customer_user','0'),(6582,2398,'_payment_method','bacs'),(6583,2398,'_payment_method_title','Direct bank transfer'),(6584,2398,'_transaction_id',''),(6585,2398,'_customer_ip_address','87.74.218.35'),(6586,2398,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(6587,2398,'_created_via','checkout'),(6588,2398,'_date_completed',''),(6589,2398,'_completed_date',''),(6590,2398,'_date_paid',''),(6591,2398,'_paid_date',''),(6592,2398,'_cart_hash','4b128145e2ad86411195ea6ccc42b9e3'),(6593,2398,'_billing_first_name','Scott'),(6594,2398,'_billing_last_name','Carter-Dowding'),(6595,2398,'_billing_company',''),(6596,2398,'_billing_address_1','1 Park View'),(6597,2398,'_billing_address_2','Wideopen'),(6598,2398,'_billing_city','Newcastle upon Tyne'),(6599,2398,'_billing_state',''),(6600,2398,'_billing_postcode','NE13 6LH'),(6601,2398,'_billing_country','GB'),(6602,2398,'_billing_email','scottcarterdowding@yahoo.co.uk'),(6603,2398,'_billing_phone','07753747910'),(6604,2398,'_shipping_first_name',''),(6605,2398,'_shipping_last_name',''),(6606,2398,'_shipping_company',''),(6607,2398,'_shipping_address_1',''),(6608,2398,'_shipping_address_2',''),(6609,2398,'_shipping_city',''),(6610,2398,'_shipping_state',''),(6611,2398,'_shipping_postcode',''),(6612,2398,'_shipping_country',''),(6613,2398,'_order_currency','GBP'),(6614,2398,'_cart_discount','0'),(6615,2398,'_cart_discount_tax','0'),(6616,2398,'_order_shipping','0.00'),(6617,2398,'_order_shipping_tax','0'),(6618,2398,'_order_tax','0'),(6619,2398,'_order_total','10.00'),(6620,2398,'_order_version','3.5.1'),(6621,2398,'_prices_include_tax','no'),(6622,2398,'_billing_address_index','Scott Carter-Dowding  1 Park View Wideopen Newcastle upon Tyne  NE13 6LH GB scottcarterdowding@yahoo.co.uk 07753747910'),(6623,2398,'_shipping_address_index','         07753747910'),(6624,2398,'_recorded_sales','yes'),(6625,2398,'_recorded_coupon_usage_counts','yes'),(6626,2398,'_order_stock_reduced','yes'),(6627,2407,'_order_key','wc_order_5c26aa43e76fc'),(6628,2407,'_customer_user','0'),(6629,2407,'_payment_method','bacs'),(6630,2407,'_payment_method_title','Direct bank transfer'),(6631,2407,'_transaction_id',''),(6632,2407,'_customer_ip_address','81.98.84.231'),(6633,2407,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1'),(6634,2407,'_created_via','checkout'),(6635,2407,'_date_completed',''),(6636,2407,'_completed_date',''),(6637,2407,'_date_paid',''),(6638,2407,'_paid_date',''),(6639,2407,'_cart_hash','4b128145e2ad86411195ea6ccc42b9e3'),(6640,2407,'_billing_first_name','Debbie'),(6641,2407,'_billing_last_name','Walker'),(6642,2407,'_billing_company',''),(6643,2407,'_billing_address_1','65 Ashburn Road'),(6644,2407,'_billing_address_2',''),(6645,2407,'_billing_city','Wallsend'),(6646,2407,'_billing_state',''),(6647,2407,'_billing_postcode','NE28 9UW'),(6648,2407,'_billing_country','GB'),(6649,2407,'_billing_email','margaretkeith0907@gmail.com'),(6650,2407,'_billing_phone','07789798586'),(6651,2407,'_shipping_first_name',''),(6652,2407,'_shipping_last_name',''),(6653,2407,'_shipping_company',''),(6654,2407,'_shipping_address_1',''),(6655,2407,'_shipping_address_2',''),(6656,2407,'_shipping_city',''),(6657,2407,'_shipping_state',''),(6658,2407,'_shipping_postcode',''),(6659,2407,'_shipping_country',''),(6660,2407,'_order_currency','GBP'),(6661,2407,'_cart_discount','0'),(6662,2407,'_cart_discount_tax','0'),(6663,2407,'_order_shipping','0.00'),(6664,2407,'_order_shipping_tax','0'),(6665,2407,'_order_tax','0'),(6666,2407,'_order_total','10.00'),(6667,2407,'_order_version','3.5.1'),(6668,2407,'_prices_include_tax','no'),(6669,2407,'_billing_address_index','Debbie Walker  65 Ashburn Road  Wallsend  NE28 9UW GB margaretkeith0907@gmail.com 07789798586'),(6670,2407,'_shipping_address_index','         07789798586'),(6671,2407,'_recorded_sales','yes'),(6672,2407,'_recorded_coupon_usage_counts','yes'),(6673,2407,'_order_stock_reduced','yes'),(6674,2408,'_edit_lock','1546186281:1'),(6675,2408,'_edit_last','1'),(6676,2408,'_wp_page_template','default'),(6677,2408,'_responsive_layout','default'),(6678,2408,'_yoast_wpseo_content_score','30'),(6680,2408,'_yoast_wpseo_linkdex','93'),(6681,2408,'_yoast_wpseo_title','%%title%% %%page%% %%sep%% Newcastle Hypnotherapy'),(6682,2408,'_yoast_wpseo_metadesc','Choosing your Hypnotherapist. Simple tips for making the right choices when looking for a hypnosis professional to help you with your changes'),(6683,2432,'_menu_item_type','post_type'),(6684,2432,'_menu_item_menu_item_parent','1497'),(6685,2432,'_menu_item_object_id','2408'),(6686,2432,'_menu_item_object','page'),(6687,2432,'_menu_item_target',''),(6688,2432,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6689,2432,'_menu_item_xfn',''),(6690,2432,'_menu_item_url',''),(6692,2433,'_menu_item_type','post_type'),(6693,2433,'_menu_item_menu_item_parent','1458'),(6694,2433,'_menu_item_object_id','471'),(6695,2433,'_menu_item_object','page'),(6696,2433,'_menu_item_target',''),(6697,2433,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6698,2433,'_menu_item_xfn',''),(6699,2433,'_menu_item_url',''),(6701,471,'_responsive_layout','default'),(6753,2461,'_order_key','wc_order_5c2d179435c96'),(6754,2461,'_customer_user','0'),(6755,2461,'_payment_method','paypal'),(6756,2461,'_payment_method_title','PayPal'),(6757,2461,'_transaction_id','09P789870G771454R'),(6758,2461,'_customer_ip_address','109.147.187.142'),(6759,2461,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A520F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36'),(6760,2461,'_created_via','checkout'),(6761,2461,'_date_completed',''),(6762,2461,'_completed_date',''),(6763,2461,'_date_paid','1546459128'),(6764,2461,'_paid_date','2019-01-02 19:58:48'),(6765,2461,'_cart_hash','828d3740feb5d1aba24c7fb91a759010'),(6766,2461,'_billing_first_name','Helen'),(6767,2461,'_billing_last_name','Stevenso'),(6768,2461,'_billing_company',''),(6769,2461,'_billing_address_1','3 Pembroke avenue'),(6770,2461,'_billing_address_2','Birtley'),(6771,2461,'_billing_city','Chester le street'),(6772,2461,'_billing_state',''),(6773,2461,'_billing_postcode','DH3 2DH'),(6774,2461,'_billing_country','GB'),(6775,2461,'_billing_email','helstevas@gmail.com'),(6776,2461,'_billing_phone','07572382966'),(6777,2461,'_shipping_first_name',''),(6778,2461,'_shipping_last_name',''),(6779,2461,'_shipping_company',''),(6780,2461,'_shipping_address_1',''),(6781,2461,'_shipping_address_2',''),(6782,2461,'_shipping_city',''),(6783,2461,'_shipping_state',''),(6784,2461,'_shipping_postcode',''),(6785,2461,'_shipping_country',''),(6786,2461,'_order_currency','GBP'),(6787,2461,'_cart_discount','0'),(6788,2461,'_cart_discount_tax','0'),(6789,2461,'_order_shipping','0.00'),(6790,2461,'_order_shipping_tax','0'),(6791,2461,'_order_tax','0'),(6792,2461,'_order_total','10.00'),(6793,2461,'_order_version','3.5.3'),(6794,2461,'_prices_include_tax','no'),(6795,2461,'_billing_address_index','Helen Stevenso  3 Pembroke avenue Birtley Chester le street  DH3 2DH GB helstevas@gmail.com 07572382966'),(6796,2461,'_shipping_address_index','         07572382966'),(6797,2461,'Payment type','instant'),(6798,2461,'_paypal_status','completed'),(6799,2461,'_download_permissions_granted','yes'),(6800,2461,'_recorded_sales','yes'),(6801,2461,'_recorded_coupon_usage_counts','yes'),(6802,2461,'_order_stock_reduced','yes'),(6803,2461,'PayPal Transaction Fee','0.54'),(7942,2592,'responsive_meta_box_designation',''),(6807,2487,'_wp_attached_file','2019/01/26219346_10215918480661430_8877811450273727224_n.jpg'),(6808,2487,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:60:\"2019/01/26219346_10215918480661430_8877811450273727224_n.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"26219346_10215918480661430_8877811450273727224_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"26219346_10215918480661430_8877811450273727224_n-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:60:\"26219346_10215918480661430_8877811450273727224_n-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:60:\"26219346_10215918480661430_8877811450273727224_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:60:\"26219346_10215918480661430_8877811450273727224_n-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:60:\"26219346_10215918480661430_8877811450273727224_n-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:60:\"26219346_10215918480661430_8877811450273727224_n-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:60:\"26219346_10215918480661430_8877811450273727224_n-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:60:\"26219346_10215918480661430_8877811450273727224_n-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:60:\"26219346_10215918480661430_8877811450273727224_n-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:60:\"26219346_10215918480661430_8877811450273727224_n-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:60:\"26219346_10215918480661430_8877811450273727224_n-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7943,2592,'responsive_meta_box_facebook',''),(7941,2592,'_responsive_layout','content-sidebar-page'),(7962,2600,'_wp_attached_file','2019/02/anxiety.jpg'),(6813,2489,'_wp_attached_file','2019/01/18301132_10213555215381275_3679351157902333621_n.jpg'),(6814,2489,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:681;s:6:\"height\";i:478;s:4:\"file\";s:60:\"2019/01/18301132_10213555215381275_3679351157902333621_n.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"18301132_10213555215381275_3679351157902333621_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"18301132_10213555215381275_3679351157902333621_n-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:59:\"18301132_10213555215381275_3679351157902333621_n-100x70.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:60:\"18301132_10213555215381275_3679351157902333621_n-150x105.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:105;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:60:\"18301132_10213555215381275_3679351157902333621_n-200x140.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:60:\"18301132_10213555215381275_3679351157902333621_n-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:60:\"18301132_10213555215381275_3679351157902333621_n-450x316.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:60:\"18301132_10213555215381275_3679351157902333621_n-600x421.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:421;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:60:\"18301132_10213555215381275_3679351157902333621_n-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:60:\"18301132_10213555215381275_3679351157902333621_n-400x281.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:60:\"18301132_10213555215381275_3679351157902333621_n-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:60:\"18301132_10213555215381275_3679351157902333621_n-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:60:\"18301132_10213555215381275_3679351157902333621_n-400x281.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:60:\"18301132_10213555215381275_3679351157902333621_n-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6815,2489,'_wp_attachment_image_alt','Happy Customer Reviews'),(7963,2600,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:713;s:6:\"height\";i:473;s:4:\"file\";s:19:\"2019/02/anxiety.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"anxiety-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"anxiety-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:18:\"anxiety-100x66.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:19:\"anxiety-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:19:\"anxiety-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:19:\"anxiety-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:19:\"anxiety-450x299.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:299;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:19:\"anxiety-600x398.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"anxiety-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"anxiety-400x265.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"anxiety-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"anxiety-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"anxiety-400x265.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"anxiety-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7949,2592,'_wpas_done_all','1'),(6818,1252,'_responsive_layout','default'),(6819,556,'_responsive_layout','default'),(6820,824,'_responsive_layout','default'),(6821,122,'_responsive_layout','default'),(6822,948,'_responsive_layout','default'),(6823,486,'_responsive_layout','default'),(7936,2592,'_edit_lock','1561981340:1'),(7937,2592,'_edit_last','1'),(6827,2514,'_order_key','wc_order_5c3336d34d1cd'),(6828,2514,'_customer_user','0'),(6829,2514,'_payment_method','paypal'),(6830,2514,'_payment_method_title','PayPal'),(6831,2514,'_transaction_id','0H5259630H2056641'),(6832,2514,'_customer_ip_address','94.9.160.98'),(6833,2514,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.1.0; SM-J530F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36'),(6834,2514,'_created_via','checkout'),(6835,2514,'_date_completed',''),(6836,2514,'_completed_date',''),(6837,2514,'_date_paid','1546860295'),(6838,2514,'_paid_date','2019-01-07 11:24:55'),(6839,2514,'_cart_hash','4b128145e2ad86411195ea6ccc42b9e3'),(6840,2514,'_billing_first_name','Amanda'),(6841,2514,'_billing_last_name','Wilson'),(6842,2514,'_billing_company',''),(6843,2514,'_billing_address_1','8 Windsor Place'),(6844,2514,'_billing_address_2','Holystone'),(6845,2514,'_billing_city','Holystone, Newcastle upon Tyne'),(6846,2514,'_billing_state','Tyne and Wear'),(6847,2514,'_billing_postcode','NE27 0DQ'),(6848,2514,'_billing_country','GB'),(6849,2514,'_billing_email','millymollymandy28@hotmail.com'),(6850,2514,'_billing_phone','07736050511'),(6851,2514,'_shipping_first_name',''),(6852,2514,'_shipping_last_name',''),(6853,2514,'_shipping_company',''),(6854,2514,'_shipping_address_1',''),(6855,2514,'_shipping_address_2',''),(6856,2514,'_shipping_city',''),(6857,2514,'_shipping_state',''),(6858,2514,'_shipping_postcode',''),(6859,2514,'_shipping_country',''),(6860,2514,'_order_currency','GBP'),(6861,2514,'_cart_discount','0'),(6862,2514,'_cart_discount_tax','0'),(6863,2514,'_order_shipping','0.00'),(6864,2514,'_order_shipping_tax','0'),(6865,2514,'_order_tax','0'),(6866,2514,'_order_total','10.00'),(6867,2514,'_order_version','3.5.3'),(6868,2514,'_prices_include_tax','no'),(6869,2514,'_billing_address_index','Amanda Wilson  8 Windsor Place Holystone Holystone, Newcastle upon Tyne Tyne and Wear NE27 0DQ GB millymollymandy28@hotmail.com 07736050511'),(6870,2514,'_shipping_address_index','         07736050511'),(6871,2514,'Payment type','instant'),(6872,2514,'_paypal_status','completed'),(6873,2514,'_download_permissions_granted','yes'),(6874,2514,'_recorded_sales','yes'),(6875,2514,'_recorded_coupon_usage_counts','yes'),(6876,2514,'_order_stock_reduced','yes'),(6877,2514,'PayPal Transaction Fee','0.54'),(6878,2521,'_order_key','wc_order_5c35aa6b96633'),(6879,2521,'_customer_user','0'),(6880,2521,'_payment_method','paypal'),(6881,2521,'_payment_method_title','PayPal'),(6882,2521,'_transaction_id','6PV12595DJ446343S'),(6883,2521,'_customer_ip_address','82.32.55.9'),(6884,2521,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; SM-G935F Build/R16NW; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/71.0.3578.99 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/202.0.0.40.99;]'),(6885,2521,'_created_via','checkout'),(6886,2521,'_date_completed',''),(6887,2521,'_completed_date',''),(6888,2521,'_date_paid','1547020955'),(6889,2521,'_paid_date','2019-01-09 08:02:35'),(6890,2521,'_cart_hash','828d3740feb5d1aba24c7fb91a759010'),(6891,2521,'_billing_first_name','Tracey'),(6892,2521,'_billing_last_name','Mews'),(6893,2521,'_billing_company',''),(6894,2521,'_billing_address_1','11 Birdhill Place'),(6895,2521,'_billing_address_2',''),(6896,2521,'_billing_city','South Shields'),(6897,2521,'_billing_state',''),(6898,2521,'_billing_postcode','NE34 0YA'),(6899,2521,'_billing_country','GB'),(6900,2521,'_billing_email','teejaym@hotmail.co.uk'),(6901,2521,'_billing_phone','+447913519897'),(6902,2521,'_shipping_first_name',''),(6903,2521,'_shipping_last_name',''),(6904,2521,'_shipping_company',''),(6905,2521,'_shipping_address_1',''),(6906,2521,'_shipping_address_2',''),(6907,2521,'_shipping_city',''),(6908,2521,'_shipping_state',''),(6909,2521,'_shipping_postcode',''),(6910,2521,'_shipping_country',''),(6911,2521,'_order_currency','GBP'),(6912,2521,'_cart_discount','0'),(6913,2521,'_cart_discount_tax','0'),(6914,2521,'_order_shipping','0.00'),(6915,2521,'_order_shipping_tax','0'),(6916,2521,'_order_tax','0'),(6917,2521,'_order_total','10.00'),(6918,2521,'_order_version','3.5.3'),(6919,2521,'_prices_include_tax','no'),(6920,2521,'_billing_address_index','Tracey Mews  11 Birdhill Place  South Shields  NE34 0YA GB teejaym@hotmail.co.uk +447913519897'),(6921,2521,'_shipping_address_index','         +447913519897'),(6922,2521,'Payment type','instant'),(6923,2521,'_paypal_status','completed'),(6924,2521,'_download_permissions_granted','yes'),(6925,2521,'_recorded_sales','yes'),(6926,2521,'_recorded_coupon_usage_counts','yes'),(6927,2521,'_order_stock_reduced','yes'),(6928,2521,'PayPal Transaction Fee','0.54'),(6929,2461,'_edit_lock','1547121608:1'),(6930,2407,'_edit_lock','1547121795:1'),(6931,2398,'_edit_lock','1547121731:1'),(6932,2397,'_edit_lock','1547123605:1'),(6933,2523,'_order_key','wc_order_5c3d7dafdf98c'),(6934,2523,'_customer_user','0'),(6935,2523,'_payment_method','paypal'),(6936,2523,'_payment_method_title','PayPal'),(6937,2523,'_transaction_id','7G0242127D5256833'),(6938,2523,'_customer_ip_address','2.122.183.101'),(6939,2523,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; G3221 Build/48.1.A.2.73; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/71.0.3578.99 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/203.0.0.16.293;]'),(6940,2523,'_created_via','checkout'),(6941,2523,'_date_completed',''),(6942,2523,'_completed_date',''),(6943,2523,'_date_paid','1547533858'),(6944,2523,'_paid_date','2019-01-15 06:30:58'),(6945,2523,'_cart_hash','4b128145e2ad86411195ea6ccc42b9e3'),(6946,2523,'_billing_first_name','Hayley'),(6947,2523,'_billing_last_name','Hall'),(6948,2523,'_billing_company',''),(6949,2523,'_billing_address_1','372 Dean Rd'),(6950,2523,'_billing_address_2',''),(6951,2523,'_billing_city','South Shields'),(6952,2523,'_billing_state',''),(6953,2523,'_billing_postcode','NE33 5LL'),(6954,2523,'_billing_country','GB'),(6955,2523,'_billing_email','hay372@outlook.com'),(6956,2523,'_billing_phone','07516837963'),(6957,2523,'_shipping_first_name',''),(6958,2523,'_shipping_last_name',''),(6959,2523,'_shipping_company',''),(6960,2523,'_shipping_address_1',''),(6961,2523,'_shipping_address_2',''),(6962,2523,'_shipping_city',''),(6963,2523,'_shipping_state',''),(6964,2523,'_shipping_postcode',''),(6965,2523,'_shipping_country',''),(6966,2523,'_order_currency','GBP'),(6967,2523,'_cart_discount','0'),(6968,2523,'_cart_discount_tax','0'),(6969,2523,'_order_shipping','0.00'),(6970,2523,'_order_shipping_tax','0'),(6971,2523,'_order_tax','0'),(6972,2523,'_order_total','10.00'),(6973,2523,'_order_version','3.5.3'),(6974,2523,'_prices_include_tax','no'),(6975,2523,'_billing_address_index','Hayley Hall  372 Dean Rd  South Shields  NE33 5LL GB hay372@outlook.com 07516837963'),(6976,2523,'_shipping_address_index','         07516837963'),(6977,2523,'Payment type','instant'),(6978,2523,'_paypal_status','completed'),(6979,2523,'_download_permissions_granted','yes'),(6980,2523,'_recorded_sales','yes'),(6981,2523,'_recorded_coupon_usage_counts','yes'),(6982,2523,'_order_stock_reduced','yes'),(6983,2523,'PayPal Transaction Fee','0.54'),(6984,2524,'_order_key','wc_order_5c3d848e3d1bd'),(6985,2524,'_customer_user','0'),(6986,2524,'_payment_method','bacs'),(6987,2524,'_payment_method_title','Direct bank transfer'),(6988,2524,'_transaction_id',''),(6989,2524,'_customer_ip_address','86.176.129.197'),(6990,2524,'_customer_user_agent','Mozilla/5.0 (Linux; Android 4.4.4; SM-T560) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Safari/537.36'),(6991,2524,'_created_via','checkout'),(6992,2524,'_date_completed',''),(6993,2524,'_completed_date',''),(6994,2524,'_date_paid',''),(6995,2524,'_paid_date',''),(6996,2524,'_cart_hash','249a3f4d4832e893bbc6a645ecc2b86b'),(6997,2524,'_billing_first_name','ANN'),(6998,2524,'_billing_last_name','HALL'),(6999,2524,'_billing_company','Mrs'),(7000,2524,'_billing_address_1','7 BEECHAM CLOSE'),(7001,2524,'_billing_address_2','P ENDOWER'),(7002,2524,'_billing_city','NEWCASTLE UPON TYNE'),(7003,2524,'_billing_state','TYNE WEAR'),(7004,2524,'_billing_postcode','NE15 6LG'),(7005,2524,'_billing_country','GB'),(7006,2524,'_billing_email','annhall260@gmail.com'),(7007,2524,'_billing_phone','07508185698'),(7008,2524,'_shipping_first_name',''),(7009,2524,'_shipping_last_name',''),(7010,2524,'_shipping_company',''),(7011,2524,'_shipping_address_1',''),(7012,2524,'_shipping_address_2',''),(7013,2524,'_shipping_city',''),(7014,2524,'_shipping_state',''),(7015,2524,'_shipping_postcode',''),(7016,2524,'_shipping_country',''),(7017,2524,'_order_currency','GBP'),(7018,2524,'_cart_discount','0'),(7019,2524,'_cart_discount_tax','0'),(7020,2524,'_order_shipping','0.00'),(7021,2524,'_order_shipping_tax','0'),(7022,2524,'_order_tax','0'),(7023,2524,'_order_total','10.00'),(7024,2524,'_order_version','3.5.3'),(7025,2524,'_prices_include_tax','no'),(7026,2524,'_billing_address_index','ANN HALL Mrs 7 BEECHAM CLOSE P ENDOWER NEWCASTLE UPON TYNE TYNE WEAR NE15 6LG GB annhall260@gmail.com 07508185698'),(7027,2524,'_shipping_address_index','         07508185698'),(7028,2524,'_recorded_sales','yes'),(7029,2524,'_recorded_coupon_usage_counts','yes'),(7030,2524,'_order_stock_reduced','yes'),(7031,2525,'_order_key','wc_order_5c3d87dec712c'),(7032,2525,'_customer_user','0'),(7033,2525,'_payment_method','paypal'),(7034,2525,'_payment_method_title','PayPal'),(7035,2525,'_transaction_id','5SK51870NH631024N'),(7036,2525,'_customer_ip_address','82.39.58.130'),(7037,2525,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/16C101 [FBAN/FBIOS;FBAV/203.0.0.25.292;FBBV/137603707;FBDV/iPhone7,2;FBMD/iPhone;FBSN/iOS;FBSV/12.1.2;FBSS/2;FBCR/EE;FBID/phone;FBLC/en_GB;FBOP/5;FBRV/138084968]'),(7038,2525,'_created_via','checkout'),(7039,2525,'_date_completed',''),(7040,2525,'_completed_date',''),(7041,2525,'_date_paid','1547536556'),(7042,2525,'_paid_date','2019-01-15 07:15:56'),(7043,2525,'_cart_hash','828d3740feb5d1aba24c7fb91a759010'),(7044,2525,'_billing_first_name','Lindsey'),(7045,2525,'_billing_last_name','Brown'),(7046,2525,'_billing_company',''),(7047,2525,'_billing_address_1','39 Calf Close Walk'),(7048,2525,'_billing_address_2',''),(7049,2525,'_billing_city','Jarrow'),(7050,2525,'_billing_state','Tyne & Wear'),(7051,2525,'_billing_postcode','NE32 4HA'),(7052,2525,'_billing_country','GB'),(7053,2525,'_billing_email','lc7brown@outlook.com'),(7054,2525,'_billing_phone','074953073'),(7055,2525,'_shipping_first_name',''),(7056,2525,'_shipping_last_name',''),(7057,2525,'_shipping_company',''),(7058,2525,'_shipping_address_1',''),(7059,2525,'_shipping_address_2',''),(7060,2525,'_shipping_city',''),(7061,2525,'_shipping_state',''),(7062,2525,'_shipping_postcode',''),(7063,2525,'_shipping_country',''),(7064,2525,'_order_currency','GBP'),(7065,2525,'_cart_discount','0'),(7066,2525,'_cart_discount_tax','0'),(7067,2525,'_order_shipping','0.00'),(7068,2525,'_order_shipping_tax','0'),(7069,2525,'_order_tax','0'),(7070,2525,'_order_total','10.00'),(7071,2525,'_order_version','3.5.3'),(7072,2525,'_prices_include_tax','no'),(7073,2525,'_billing_address_index','Lindsey Brown  39 Calf Close Walk  Jarrow Tyne & Wear NE32 4HA GB lc7brown@outlook.com 074953073'),(7074,2525,'_shipping_address_index','         074953073'),(7075,2525,'Payment type','instant'),(7076,2525,'_paypal_status','completed'),(7077,2525,'_download_permissions_granted','yes'),(7078,2525,'_recorded_sales','yes'),(7079,2525,'_recorded_coupon_usage_counts','yes'),(7080,2525,'_order_stock_reduced','yes'),(7385,2525,'_paypal_transaction_fee','0.54'),(7082,2527,'_order_key','wc_order_5c407164cb2a3'),(7083,2527,'_customer_user','0'),(7084,2527,'_payment_method','paypal'),(7085,2527,'_payment_method_title','PayPal'),(7086,2527,'_transaction_id','0MT5381306840815J'),(7087,2527,'_customer_ip_address','128.240.225.111'),(7088,2527,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36'),(7089,2527,'_created_via','checkout'),(7090,2527,'_date_completed',''),(7091,2527,'_completed_date',''),(7092,2527,'_date_paid','1547727261'),(7093,2527,'_paid_date','2019-01-17 12:14:21'),(7094,2527,'_cart_hash','249a3f4d4832e893bbc6a645ecc2b86b'),(7095,2527,'_billing_first_name','Amanda'),(7096,2527,'_billing_last_name','Wilson'),(7097,2527,'_billing_company','Ms'),(7098,2527,'_billing_address_1','8 Windsor Place'),(7099,2527,'_billing_address_2','Holystone'),(7100,2527,'_billing_city','Newcastle upon Tyne'),(7101,2527,'_billing_state','Tyne and Wear'),(7102,2527,'_billing_postcode','NE27 0DQ'),(7103,2527,'_billing_country','GB'),(7104,2527,'_billing_email','millymollymandy28@hotmail.com'),(7105,2527,'_billing_phone','07736050511'),(7106,2527,'_shipping_first_name',''),(7107,2527,'_shipping_last_name',''),(7108,2527,'_shipping_company',''),(7109,2527,'_shipping_address_1',''),(7110,2527,'_shipping_address_2',''),(7111,2527,'_shipping_city',''),(7112,2527,'_shipping_state',''),(7113,2527,'_shipping_postcode',''),(7114,2527,'_shipping_country',''),(7115,2527,'_order_currency','GBP'),(7116,2527,'_cart_discount','0'),(7117,2527,'_cart_discount_tax','0'),(7118,2527,'_order_shipping','0.00'),(7119,2527,'_order_shipping_tax','0'),(7120,2527,'_order_tax','0'),(7121,2527,'_order_total','10.00'),(7122,2527,'_order_version','3.5.3'),(7123,2527,'_prices_include_tax','no'),(7124,2527,'_billing_address_index','Amanda Wilson Ms 8 Windsor Place Holystone Newcastle upon Tyne Tyne and Wear NE27 0DQ GB millymollymandy28@hotmail.com 07736050511'),(7125,2527,'_shipping_address_index','         07736050511'),(7126,2527,'Payment type','instant'),(7127,2527,'_paypal_status','completed'),(7128,2527,'_download_permissions_granted','yes'),(7129,2527,'_recorded_sales','yes'),(7130,2527,'_recorded_coupon_usage_counts','yes'),(7131,2527,'_order_stock_reduced','yes'),(7383,2527,'_paypal_transaction_fee','0.54'),(7133,2528,'_order_key','wc_order_5c40e0fd05607'),(7134,2528,'_customer_user','0'),(7135,2528,'_payment_method','bacs'),(7136,2528,'_payment_method_title','Direct bank transfer'),(7137,2528,'_transaction_id',''),(7138,2528,'_customer_ip_address','82.0.93.27'),(7139,2528,'_customer_user_agent','Mozilla/5.0 (Linux; Android 5.1.1; SM-J500FN) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36'),(7140,2528,'_created_via','checkout'),(7141,2528,'_date_completed',''),(7142,2528,'_completed_date',''),(7143,2528,'_date_paid',''),(7144,2528,'_paid_date',''),(7145,2528,'_cart_hash','249a3f4d4832e893bbc6a645ecc2b86b'),(7146,2528,'_billing_first_name','Denise'),(7147,2528,'_billing_last_name','Baxter'),(7148,2528,'_billing_company',''),(7149,2528,'_billing_address_1','3 Westward Court'),(7150,2528,'_billing_address_2',''),(7151,2528,'_billing_city','Newcastle'),(7152,2528,'_billing_state',''),(7153,2528,'_billing_postcode','NE5 5LP'),(7154,2528,'_billing_country','GB'),(7155,2528,'_billing_email','denisebaxter25@yahoo.co.uk'),(7156,2528,'_billing_phone','07981557102'),(7157,2528,'_shipping_first_name',''),(7158,2528,'_shipping_last_name',''),(7159,2528,'_shipping_company',''),(7160,2528,'_shipping_address_1',''),(7161,2528,'_shipping_address_2',''),(7162,2528,'_shipping_city',''),(7163,2528,'_shipping_state',''),(7164,2528,'_shipping_postcode',''),(7165,2528,'_shipping_country',''),(7166,2528,'_order_currency','GBP'),(7167,2528,'_cart_discount','0'),(7168,2528,'_cart_discount_tax','0'),(7169,2528,'_order_shipping','0.00'),(7170,2528,'_order_shipping_tax','0'),(7171,2528,'_order_tax','0'),(7172,2528,'_order_total','10.00'),(7173,2528,'_order_version','3.5.3'),(7174,2528,'_prices_include_tax','no'),(7175,2528,'_billing_address_index','Denise Baxter  3 Westward Court  Newcastle  NE5 5LP GB denisebaxter25@yahoo.co.uk 07981557102'),(7176,2528,'_shipping_address_index','         07981557102'),(7177,2528,'_recorded_sales','yes'),(7178,2528,'_recorded_coupon_usage_counts','yes'),(7179,2528,'_order_stock_reduced','yes'),(7180,2529,'_order_key','wc_order_5c4230470b71e'),(7181,2529,'_customer_user','0'),(7182,2529,'_payment_method','bacs'),(7183,2529,'_payment_method_title','Direct bank transfer'),(7184,2529,'_transaction_id',''),(7185,2529,'_customer_ip_address','94.195.236.59'),(7186,2529,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(7187,2529,'_created_via','checkout'),(7188,2529,'_date_completed',''),(7189,2529,'_completed_date',''),(7190,2529,'_date_paid',''),(7191,2529,'_paid_date',''),(7192,2529,'_cart_hash','1e2bb0f66f61d7271c66edd566ec0211'),(7193,2529,'_billing_first_name','Beth'),(7194,2529,'_billing_last_name','Gregan'),(7195,2529,'_billing_company',''),(7196,2529,'_billing_address_1','28 Strathmore road'),(7197,2529,'_billing_address_2',''),(7198,2529,'_billing_city','Newcastle upon Tyne'),(7199,2529,'_billing_state','Tyne and wear'),(7200,2529,'_billing_postcode','NE3 5JR'),(7201,2529,'_billing_country','GB'),(7202,2529,'_billing_email','bethgregan1@hotmail.co.uk'),(7203,2529,'_billing_phone','07470481263'),(7204,2529,'_shipping_first_name',''),(7205,2529,'_shipping_last_name',''),(7206,2529,'_shipping_company',''),(7207,2529,'_shipping_address_1',''),(7208,2529,'_shipping_address_2',''),(7209,2529,'_shipping_city',''),(7210,2529,'_shipping_state',''),(7211,2529,'_shipping_postcode',''),(7212,2529,'_shipping_country',''),(7213,2529,'_order_currency','GBP'),(7214,2529,'_cart_discount','0'),(7215,2529,'_cart_discount_tax','0'),(7216,2529,'_order_shipping','0.00'),(7217,2529,'_order_shipping_tax','0'),(7218,2529,'_order_tax','0'),(7219,2529,'_order_total','20.00'),(7220,2529,'_order_version','3.5.3'),(7221,2529,'_prices_include_tax','no'),(7222,2529,'_billing_address_index','Beth Gregan  28 Strathmore road  Newcastle upon Tyne Tyne and wear NE3 5JR GB bethgregan1@hotmail.co.uk 07470481263'),(7223,2529,'_shipping_address_index','         07470481263'),(7224,2529,'_recorded_sales','yes'),(7225,2529,'_recorded_coupon_usage_counts','yes'),(7226,2529,'_order_stock_reduced','yes'),(7227,2530,'_order_key','wc_order_5c432d791b853'),(7228,2530,'_customer_user','0'),(7229,2530,'_payment_method','paypal'),(7230,2530,'_payment_method_title','PayPal'),(7231,2530,'_transaction_id','0KP11082B45847247'),(7232,2530,'_customer_ip_address','86.8.200.35'),(7233,2530,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A600FN Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36'),(7234,2530,'_created_via','checkout'),(7235,2530,'_date_completed',''),(7236,2530,'_completed_date',''),(7237,2530,'_date_paid','1547906463'),(7238,2530,'_paid_date','2019-01-19 14:01:03'),(7239,2530,'_cart_hash','249a3f4d4832e893bbc6a645ecc2b86b'),(7240,2530,'_billing_first_name','Helen'),(7241,2530,'_billing_last_name','Reah'),(7242,2530,'_billing_company',''),(7243,2530,'_billing_address_1','21 Rae Avenue'),(7244,2530,'_billing_address_2',''),(7245,2530,'_billing_city','Wallsend'),(7246,2530,'_billing_state','Tyne And Wear'),(7247,2530,'_billing_postcode','NE28 9JP'),(7248,2530,'_billing_country','GB'),(7249,2530,'_billing_email','helen.reah@hotmail.co.uk'),(7250,2530,'_billing_phone','+447812107980'),(7251,2530,'_shipping_first_name',''),(7252,2530,'_shipping_last_name',''),(7253,2530,'_shipping_company',''),(7254,2530,'_shipping_address_1',''),(7255,2530,'_shipping_address_2',''),(7256,2530,'_shipping_city',''),(7257,2530,'_shipping_state',''),(7258,2530,'_shipping_postcode',''),(7259,2530,'_shipping_country',''),(7260,2530,'_order_currency','GBP'),(7261,2530,'_cart_discount','0'),(7262,2530,'_cart_discount_tax','0'),(7263,2530,'_order_shipping','0.00'),(7264,2530,'_order_shipping_tax','0'),(7265,2530,'_order_tax','0'),(7266,2530,'_order_total','10.00'),(7267,2530,'_order_version','3.5.3'),(7268,2530,'_prices_include_tax','no'),(7269,2530,'_billing_address_index','Helen Reah  21 Rae Avenue  Wallsend Tyne And Wear NE28 9JP GB helen.reah@hotmail.co.uk +447812107980'),(7270,2530,'_shipping_address_index','         +447812107980'),(7271,2530,'Payment type','instant'),(7272,2530,'_paypal_status','completed'),(7273,2530,'_download_permissions_granted','yes'),(7274,2530,'_recorded_sales','yes'),(7275,2530,'_recorded_coupon_usage_counts','yes'),(7276,2530,'_order_stock_reduced','yes'),(7380,2530,'_paypal_transaction_fee','0.54'),(7278,2531,'_order_key','wc_order_5c4472a9cdbf0'),(7279,2531,'_customer_user','0'),(7280,2531,'_payment_method','bacs'),(7281,2531,'_payment_method_title','Direct bank transfer'),(7282,2531,'_transaction_id',''),(7283,2531,'_customer_ip_address','185.69.145.13'),(7284,2531,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(7285,2531,'_created_via','checkout'),(7286,2531,'_date_completed',''),(7287,2531,'_completed_date',''),(7288,2531,'_date_paid',''),(7289,2531,'_paid_date',''),(7290,2531,'_cart_hash','1e2bb0f66f61d7271c66edd566ec0211'),(7291,2531,'_billing_first_name','Beth'),(7292,2531,'_billing_last_name','Gregan'),(7293,2531,'_billing_company',''),(7294,2531,'_billing_address_1','28 Strathmore road'),(7295,2531,'_billing_address_2',''),(7296,2531,'_billing_city','Newcastle upon Tyne'),(7297,2531,'_billing_state','Tyne and wear'),(7298,2531,'_billing_postcode','NE3 5JR'),(7299,2531,'_billing_country','GB'),(7300,2531,'_billing_email','bethgregan1@hotmail.co.uk'),(7301,2531,'_billing_phone','07470481263'),(7302,2531,'_shipping_first_name',''),(7303,2531,'_shipping_last_name',''),(7304,2531,'_shipping_company',''),(7305,2531,'_shipping_address_1',''),(7306,2531,'_shipping_address_2',''),(7307,2531,'_shipping_city',''),(7308,2531,'_shipping_state',''),(7309,2531,'_shipping_postcode',''),(7310,2531,'_shipping_country',''),(7311,2531,'_order_currency','GBP'),(7312,2531,'_cart_discount','0'),(7313,2531,'_cart_discount_tax','0'),(7314,2531,'_order_shipping','0.00'),(7315,2531,'_order_shipping_tax','0'),(7316,2531,'_order_tax','0'),(7317,2531,'_order_total','20.00'),(7318,2531,'_order_version','3.5.3'),(7319,2531,'_prices_include_tax','no'),(7320,2531,'_billing_address_index','Beth Gregan  28 Strathmore road  Newcastle upon Tyne Tyne and wear NE3 5JR GB bethgregan1@hotmail.co.uk 07470481263'),(7321,2531,'_shipping_address_index','         07470481263'),(7322,2531,'_recorded_sales','yes'),(7323,2531,'_recorded_coupon_usage_counts','yes'),(7324,2531,'_order_stock_reduced','yes'),(7325,2532,'_order_key','wc_order_5c44e64471195'),(7326,2532,'_customer_user','0'),(7327,2532,'_payment_method','paypal'),(7328,2532,'_payment_method_title','PayPal'),(7329,2532,'_transaction_id','76408360SL773415N'),(7330,2532,'_customer_ip_address','77.100.42.3'),(7331,2532,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/16C101 [FBAN/FBIOS;FBAV/201.0.0.62.99;FBBV/134918704;FBDV/iPhone10,6;FBMD/iPhone;FBSN/iOS;FBSV/12.1.2;FBSS/3;FBCR/O2;FBID/phone;FBLC/en_GB;FBOP/5;FBRV/135678173]'),(7332,2532,'_created_via','checkout'),(7333,2532,'_date_completed',''),(7334,2532,'_completed_date',''),(7335,2532,'_date_paid','1548019324'),(7336,2532,'_paid_date','2019-01-20 21:22:04'),(7337,2532,'_cart_hash','828d3740feb5d1aba24c7fb91a759010'),(7338,2532,'_billing_first_name','Shannon'),(7339,2532,'_billing_last_name','Handyside'),(7340,2532,'_billing_company','Handyside’s Holistics'),(7341,2532,'_billing_address_1','37 Morris Avenue'),(7342,2532,'_billing_address_2',''),(7343,2532,'_billing_city','South Shields'),(7344,2532,'_billing_state',''),(7345,2532,'_billing_postcode','NE34 9SZ'),(7346,2532,'_billing_country','GB'),(7347,2532,'_billing_email','shannonlieghhandyside@gmail.com'),(7348,2532,'_billing_phone','+447736569441'),(7349,2532,'_shipping_first_name',''),(7350,2532,'_shipping_last_name',''),(7351,2532,'_shipping_company',''),(7352,2532,'_shipping_address_1',''),(7353,2532,'_shipping_address_2',''),(7354,2532,'_shipping_city',''),(7355,2532,'_shipping_state',''),(7356,2532,'_shipping_postcode',''),(7357,2532,'_shipping_country',''),(7358,2532,'_order_currency','GBP'),(7359,2532,'_cart_discount','0'),(7360,2532,'_cart_discount_tax','0'),(7361,2532,'_order_shipping','0.00'),(7362,2532,'_order_shipping_tax','0'),(7363,2532,'_order_tax','0'),(7364,2532,'_order_total','10.00'),(7365,2532,'_order_version','3.5.3'),(7366,2532,'_prices_include_tax','no'),(7367,2532,'_billing_address_index','Shannon Handyside Handyside’s Holistics 37 Morris Avenue  South Shields  NE34 9SZ GB shannonlieghhandyside@gmail.com +447736569441'),(7368,2532,'_shipping_address_index','         +447736569441'),(7369,2532,'Payment type','instant'),(7370,2532,'_paypal_status','completed'),(7371,2532,'_download_permissions_granted','yes'),(7372,2532,'_recorded_sales','yes'),(7373,2532,'_recorded_coupon_usage_counts','yes'),(7374,2532,'_order_stock_reduced','yes'),(7377,2532,'_paypal_transaction_fee','0.54'),(7376,2532,'_edit_lock','1548088705:1'),(7378,2531,'_edit_lock','1548088643:1'),(7379,2530,'_edit_lock','1548088701:1'),(7381,2528,'_edit_lock','1553710275:1'),(7382,2527,'_edit_lock','1548088835:1'),(7384,2525,'_edit_lock','1548088911:1'),(7386,2524,'_edit_lock','1548092096:1'),(7387,2534,'_order_key','wc_order_5c4616b75244c'),(7388,2534,'_customer_user','0'),(7389,2534,'_payment_method','bacs'),(7390,2534,'_payment_method_title','Direct bank transfer'),(7391,2534,'_transaction_id',''),(7392,2534,'_customer_ip_address','77.100.2.140'),(7393,2534,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; SM-A520F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36'),(7394,2534,'_created_via','checkout'),(7395,2534,'_date_completed',''),(7396,2534,'_completed_date',''),(7397,2534,'_date_paid',''),(7398,2534,'_paid_date',''),(7399,2534,'_cart_hash','828d3740feb5d1aba24c7fb91a759010'),(7400,2534,'_billing_first_name','Barbara'),(7401,2534,'_billing_last_name','Hawes'),(7402,2534,'_billing_company','1963'),(7403,2534,'_billing_address_1','4'),(7404,2534,'_billing_address_2','Windmill Hill'),(7405,2534,'_billing_city','South Shields'),(7406,2534,'_billing_state','Tyne and Wear'),(7407,2534,'_billing_postcode','NE33 1SF'),(7408,2534,'_billing_country','GB'),(7409,2534,'_billing_email','barbaracasey456@gmail.com'),(7410,2534,'_billing_phone','01914216307'),(7411,2534,'_shipping_first_name',''),(7412,2534,'_shipping_last_name',''),(7413,2534,'_shipping_company',''),(7414,2534,'_shipping_address_1',''),(7415,2534,'_shipping_address_2',''),(7416,2534,'_shipping_city',''),(7417,2534,'_shipping_state',''),(7418,2534,'_shipping_postcode',''),(7419,2534,'_shipping_country',''),(7420,2534,'_order_currency','GBP'),(7421,2534,'_cart_discount','0'),(7422,2534,'_cart_discount_tax','0'),(7423,2534,'_order_shipping','0.00'),(7424,2534,'_order_shipping_tax','0'),(7425,2534,'_order_tax','0'),(7426,2534,'_order_total','10.00'),(7427,2534,'_order_version','3.5.3'),(7428,2534,'_prices_include_tax','no'),(7429,2534,'_billing_address_index','Barbara Hawes 1963 4 Windmill Hill South Shields Tyne and Wear NE33 1SF GB barbaracasey456@gmail.com 01914216307'),(7430,2534,'_shipping_address_index','         01914216307'),(7431,2534,'_recorded_sales','yes'),(7432,2534,'_recorded_coupon_usage_counts','yes'),(7433,2534,'_order_stock_reduced','yes'),(7434,2535,'_order_key','wc_order_5c4617f89fb2f'),(7435,2535,'_customer_user','0'),(7436,2535,'_payment_method','bacs'),(7437,2535,'_payment_method_title','Direct bank transfer'),(7438,2535,'_transaction_id',''),(7439,2535,'_customer_ip_address','77.100.2.140'),(7440,2535,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; SM-A520F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36'),(7441,2535,'_created_via','checkout'),(7442,2535,'_date_completed',''),(7443,2535,'_completed_date',''),(7444,2535,'_date_paid',''),(7445,2535,'_paid_date',''),(7446,2535,'_cart_hash','828d3740feb5d1aba24c7fb91a759010'),(7447,2535,'_billing_first_name','Barbara'),(7448,2535,'_billing_last_name','Hawes'),(7449,2535,'_billing_company','1963'),(7450,2535,'_billing_address_1','4'),(7451,2535,'_billing_address_2','Windmill Hill'),(7452,2535,'_billing_city','South Shields'),(7453,2535,'_billing_state','Tyne and Wear'),(7454,2535,'_billing_postcode','NE33 1SF'),(7455,2535,'_billing_country','GB'),(7456,2535,'_billing_email','barbaracasey456@gmail.com'),(7457,2535,'_billing_phone','01914216307'),(7458,2535,'_shipping_first_name',''),(7459,2535,'_shipping_last_name',''),(7460,2535,'_shipping_company',''),(7461,2535,'_shipping_address_1',''),(7462,2535,'_shipping_address_2',''),(7463,2535,'_shipping_city',''),(7464,2535,'_shipping_state',''),(7465,2535,'_shipping_postcode',''),(7466,2535,'_shipping_country',''),(7467,2535,'_order_currency','GBP'),(7468,2535,'_cart_discount','0'),(7469,2535,'_cart_discount_tax','0'),(7470,2535,'_order_shipping','0.00'),(7471,2535,'_order_shipping_tax','0'),(7472,2535,'_order_tax','0'),(7473,2535,'_order_total','10.00'),(7474,2535,'_order_version','3.5.3'),(7475,2535,'_prices_include_tax','no'),(7476,2535,'_billing_address_index','Barbara Hawes 1963 4 Windmill Hill South Shields Tyne and Wear NE33 1SF GB barbaracasey456@gmail.com 01914216307'),(7477,2535,'_shipping_address_index','         01914216307'),(7478,2535,'_recorded_sales','yes'),(7479,2535,'_recorded_coupon_usage_counts','yes'),(7480,2535,'_order_stock_reduced','yes'),(7481,2536,'_order_key','wc_order_5c461a9828d2c'),(7482,2536,'_customer_user','0'),(7483,2536,'_payment_method','bacs'),(7484,2536,'_payment_method_title','Direct bank transfer'),(7485,2536,'_transaction_id',''),(7486,2536,'_customer_ip_address','77.100.2.140'),(7487,2536,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; SM-A520F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36'),(7488,2536,'_created_via','checkout'),(7489,2536,'_date_completed',''),(7490,2536,'_completed_date',''),(7491,2536,'_date_paid',''),(7492,2536,'_paid_date',''),(7493,2536,'_cart_hash','828d3740feb5d1aba24c7fb91a759010'),(7494,2536,'_billing_first_name','Barbara'),(7495,2536,'_billing_last_name','Hawes'),(7496,2536,'_billing_company','1963'),(7497,2536,'_billing_address_1','4'),(7498,2536,'_billing_address_2','Windmill Hill'),(7499,2536,'_billing_city','South Shields'),(7500,2536,'_billing_state','Tyne and Wear'),(7501,2536,'_billing_postcode','NE33 1SF'),(7502,2536,'_billing_country','GB'),(7503,2536,'_billing_email','barbarahawes@gmail.com'),(7504,2536,'_billing_phone','01914216307'),(7505,2536,'_shipping_first_name',''),(7506,2536,'_shipping_last_name',''),(7507,2536,'_shipping_company',''),(7508,2536,'_shipping_address_1',''),(7509,2536,'_shipping_address_2',''),(7510,2536,'_shipping_city',''),(7511,2536,'_shipping_state',''),(7512,2536,'_shipping_postcode',''),(7513,2536,'_shipping_country',''),(7514,2536,'_order_currency','GBP'),(7515,2536,'_cart_discount','0'),(7516,2536,'_cart_discount_tax','0'),(7517,2536,'_order_shipping','0.00'),(7518,2536,'_order_shipping_tax','0'),(7519,2536,'_order_tax','0'),(7520,2536,'_order_total','10.00'),(7521,2536,'_order_version','3.5.3'),(7522,2536,'_prices_include_tax','no'),(7523,2536,'_billing_address_index','Barbara Hawes 1963 4 Windmill Hill South Shields Tyne and Wear NE33 1SF GB barbarahawes@gmail.com 01914216307'),(7524,2536,'_shipping_address_index','         01914216307'),(7525,2536,'_recorded_sales','yes'),(7526,2536,'_recorded_coupon_usage_counts','yes'),(7527,2536,'_order_stock_reduced','yes'),(7528,2537,'_order_key','wc_order_5c461ca3879a6'),(7529,2537,'_customer_user','0'),(7530,2537,'_payment_method','bacs'),(7531,2537,'_payment_method_title','Direct bank transfer'),(7532,2537,'_transaction_id',''),(7533,2537,'_customer_ip_address','77.100.2.140'),(7534,2537,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; SM-A520F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36'),(7535,2537,'_created_via','checkout'),(7536,2537,'_date_completed',''),(7537,2537,'_completed_date',''),(7538,2537,'_date_paid',''),(7539,2537,'_paid_date',''),(7540,2537,'_cart_hash','828d3740feb5d1aba24c7fb91a759010'),(7541,2537,'_billing_first_name','Barbara'),(7542,2537,'_billing_last_name','Hawes'),(7543,2537,'_billing_company','1963'),(7544,2537,'_billing_address_1','4'),(7545,2537,'_billing_address_2','Windmill Hill'),(7546,2537,'_billing_city','South Shields'),(7547,2537,'_billing_state','Tyne and Wear'),(7548,2537,'_billing_postcode','NE33 1SF'),(7549,2537,'_billing_country','GB'),(7550,2537,'_billing_email','barbarahawes@gmail.com'),(7551,2537,'_billing_phone','01914216307'),(7552,2537,'_shipping_first_name',''),(7553,2537,'_shipping_last_name',''),(7554,2537,'_shipping_company',''),(7555,2537,'_shipping_address_1',''),(7556,2537,'_shipping_address_2',''),(7557,2537,'_shipping_city',''),(7558,2537,'_shipping_state',''),(7559,2537,'_shipping_postcode',''),(7560,2537,'_shipping_country',''),(7561,2537,'_order_currency','GBP'),(7562,2537,'_cart_discount','0'),(7563,2537,'_cart_discount_tax','0'),(7564,2537,'_order_shipping','0.00'),(7565,2537,'_order_shipping_tax','0'),(7566,2537,'_order_tax','0'),(7567,2537,'_order_total','10.00'),(7568,2537,'_order_version','3.5.3'),(7569,2537,'_prices_include_tax','no'),(7570,2537,'_billing_address_index','Barbara Hawes 1963 4 Windmill Hill South Shields Tyne and Wear NE33 1SF GB barbarahawes@gmail.com 01914216307'),(7571,2537,'_shipping_address_index','         01914216307'),(7572,2537,'_recorded_sales','yes'),(7573,2537,'_recorded_coupon_usage_counts','yes'),(7574,2537,'_order_stock_reduced','yes'),(7575,2538,'_order_key','wc_order_5c46202727953'),(7576,2538,'_customer_user','0'),(7577,2538,'_payment_method','bacs'),(7578,2538,'_payment_method_title','Direct bank transfer'),(7579,2538,'_transaction_id',''),(7580,2538,'_customer_ip_address','77.100.2.140'),(7581,2538,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; SM-A520F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36'),(7582,2538,'_created_via','checkout'),(7583,2538,'_date_completed',''),(7584,2538,'_completed_date',''),(7585,2538,'_date_paid',''),(7586,2538,'_paid_date',''),(7587,2538,'_cart_hash','828d3740feb5d1aba24c7fb91a759010'),(7588,2538,'_billing_first_name','Barbara'),(7589,2538,'_billing_last_name','Hawes'),(7590,2538,'_billing_company','1963'),(7591,2538,'_billing_address_1','4'),(7592,2538,'_billing_address_2','Windmill Hill'),(7593,2538,'_billing_city','South Shields'),(7594,2538,'_billing_state','Tyne and Wear'),(7595,2538,'_billing_postcode','NE33 1SF'),(7596,2538,'_billing_country','GB'),(7597,2538,'_billing_email','barbarahawes245@gmail.com'),(7598,2538,'_billing_phone','01914216307'),(7599,2538,'_shipping_first_name',''),(7600,2538,'_shipping_last_name',''),(7601,2538,'_shipping_company',''),(7602,2538,'_shipping_address_1',''),(7603,2538,'_shipping_address_2',''),(7604,2538,'_shipping_city',''),(7605,2538,'_shipping_state',''),(7606,2538,'_shipping_postcode',''),(7607,2538,'_shipping_country',''),(7608,2538,'_order_currency','GBP'),(7609,2538,'_cart_discount','0'),(7610,2538,'_cart_discount_tax','0'),(7611,2538,'_order_shipping','0.00'),(7612,2538,'_order_shipping_tax','0'),(7613,2538,'_order_tax','0'),(7614,2538,'_order_total','10.00'),(7615,2538,'_order_version','3.5.3'),(7616,2538,'_prices_include_tax','no'),(7617,2538,'_billing_address_index','Barbara Hawes 1963 4 Windmill Hill South Shields Tyne and Wear NE33 1SF GB barbarahawes245@gmail.com 01914216307'),(7618,2538,'_shipping_address_index','         01914216307'),(7619,2538,'_recorded_sales','yes'),(7620,2538,'_recorded_coupon_usage_counts','yes'),(7621,2538,'_order_stock_reduced','yes'),(7622,2538,'_edit_lock','1548257002:1'),(7623,2539,'_order_key','wc_order_5c485c885f13a'),(7624,2539,'_customer_user','0'),(7625,2539,'_payment_method','paypal'),(7626,2539,'_payment_method_title','PayPal'),(7627,2539,'_transaction_id','1U158674DF0350642'),(7628,2539,'_customer_ip_address','85.255.232.110'),(7629,2539,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; SM-G950F Build/R16NW; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/71.0.3578.99 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/204.0.0.24.101;]'),(7630,2539,'_created_via','checkout'),(7631,2539,'_date_completed',''),(7632,2539,'_completed_date',''),(7633,2539,'_date_paid','1548246247'),(7634,2539,'_paid_date','2019-01-23 12:24:07'),(7635,2539,'_cart_hash','828d3740feb5d1aba24c7fb91a759010'),(7636,2539,'_billing_first_name','sarah'),(7637,2539,'_billing_last_name','stidolph'),(7638,2539,'_billing_company',''),(7639,2539,'_billing_address_1','51 Hawthorne avenue'),(7640,2539,'_billing_address_2',''),(7641,2539,'_billing_city','south shields'),(7642,2539,'_billing_state',''),(7643,2539,'_billing_postcode','NE34 8BD'),(7644,2539,'_billing_country','GB'),(7645,2539,'_billing_email','sarah.stidolph@yahoo.com'),(7646,2539,'_billing_phone','07921869274'),(7647,2539,'_shipping_first_name',''),(7648,2539,'_shipping_last_name',''),(7649,2539,'_shipping_company',''),(7650,2539,'_shipping_address_1',''),(7651,2539,'_shipping_address_2',''),(7652,2539,'_shipping_city',''),(7653,2539,'_shipping_state',''),(7654,2539,'_shipping_postcode',''),(7655,2539,'_shipping_country',''),(7656,2539,'_order_currency','GBP'),(7657,2539,'_cart_discount','0'),(7658,2539,'_cart_discount_tax','0'),(7659,2539,'_order_shipping','0.00'),(7660,2539,'_order_shipping_tax','0'),(7661,2539,'_order_tax','0'),(7662,2539,'_order_total','10.00'),(7663,2539,'_order_version','3.5.3'),(7664,2539,'_prices_include_tax','no'),(7665,2539,'_billing_address_index','sarah stidolph  51 Hawthorne avenue  south shields  NE34 8BD GB sarah.stidolph@yahoo.com 07921869274'),(7666,2539,'_shipping_address_index','         07921869274'),(7667,2539,'Payment type','instant'),(7668,2539,'_paypal_status','completed'),(7669,2539,'_download_permissions_granted','yes'),(7670,2539,'_recorded_sales','yes'),(7671,2539,'_recorded_coupon_usage_counts','yes'),(7672,2539,'_order_stock_reduced','yes'),(7675,2539,'_paypal_transaction_fee','0.54'),(7674,2539,'_edit_lock','1548258058:1'),(7676,471,'_thumbnail_id','1876'),(7677,2555,'_order_key','wc_order_5c50aa9022ee8'),(7678,2555,'_customer_user','0'),(7679,2555,'_payment_method','paypal'),(7680,2555,'_payment_method_title','PayPal'),(7681,2555,'_transaction_id','1PL02607WN687800M'),(7682,2555,'_customer_ip_address','79.70.190.173'),(7683,2555,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.1.0; SAMSUNG SM-T580 Build/M1AJQ) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Safari/537.36'),(7684,2555,'_created_via','checkout'),(7685,2555,'_date_completed',''),(7686,2555,'_completed_date',''),(7687,2555,'_date_paid','1548790774'),(7688,2555,'_paid_date','2019-01-29 19:39:34'),(7689,2555,'_cart_hash','249a3f4d4832e893bbc6a645ecc2b86b'),(7690,2555,'_billing_first_name','Lesley'),(7691,2555,'_billing_last_name','Hollyman'),(7692,2555,'_billing_company',''),(7693,2555,'_billing_address_1','30 Ivy Road'),(7694,2555,'_billing_address_2',''),(7695,2555,'_billing_city','Forest Hall'),(7696,2555,'_billing_state','Newcastle upon Tyne'),(7697,2555,'_billing_postcode','NE12 9AP'),(7698,2555,'_billing_country','GB'),(7699,2555,'_billing_email','lahollyman@yahoo.com'),(7700,2555,'_billing_phone','07787893584'),(7701,2555,'_shipping_first_name',''),(7702,2555,'_shipping_last_name',''),(7703,2555,'_shipping_company',''),(7704,2555,'_shipping_address_1',''),(7705,2555,'_shipping_address_2',''),(7706,2555,'_shipping_city',''),(7707,2555,'_shipping_state',''),(7708,2555,'_shipping_postcode',''),(7709,2555,'_shipping_country',''),(7710,2555,'_order_currency','GBP'),(7711,2555,'_cart_discount','0'),(7712,2555,'_cart_discount_tax','0'),(7713,2555,'_order_shipping','0.00'),(7714,2555,'_order_shipping_tax','0'),(7715,2555,'_order_tax','0'),(7716,2555,'_order_total','10.00'),(7717,2555,'_order_version','3.5.3'),(7718,2555,'_prices_include_tax','no'),(7719,2555,'_billing_address_index','Lesley Hollyman  30 Ivy Road  Forest Hall Newcastle upon Tyne NE12 9AP GB lahollyman@yahoo.com 07787893584'),(7720,2555,'_shipping_address_index','         07787893584'),(7721,2555,'Payment type','instant'),(7722,2555,'_paypal_status','completed'),(7723,2555,'_download_permissions_granted','yes'),(7724,2555,'_recorded_sales','yes'),(7725,2555,'_recorded_coupon_usage_counts','yes'),(7726,2555,'_order_stock_reduced','yes'),(7727,2555,'PayPal Transaction Fee','0.54'),(7728,2558,'_edit_lock','1568386091:1'),(7729,2558,'_edit_last','1'),(7730,2559,'_wp_attached_file','2019/01/anxiety-freedom-workshop.jpg'),(7731,2559,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:853;s:6:\"height\";i:480;s:4:\"file\";s:36:\"2019/01/anxiety-freedom-workshop.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"anxiety-freedom-workshop-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"anxiety-freedom-workshop-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"anxiety-freedom-workshop-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:35:\"anxiety-freedom-workshop-100x56.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:56;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:35:\"anxiety-freedom-workshop-150x84.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:36:\"anxiety-freedom-workshop-200x113.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:36:\"anxiety-freedom-workshop-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:36:\"anxiety-freedom-workshop-450x253.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:253;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:36:\"anxiety-freedom-workshop-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"anxiety-freedom-workshop-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:36:\"anxiety-freedom-workshop-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"anxiety-freedom-workshop-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:36:\"anxiety-freedom-workshop-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:36:\"anxiety-freedom-workshop-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"anxiety-freedom-workshop-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7732,2558,'_wp_page_template','content-sidebar-page.php'),(7733,2558,'_responsive_layout','default'),(7734,2558,'_yoast_wpseo_content_score','90'),(7735,2564,'_wc_review_count','0'),(7736,2564,'_wc_rating_count','a:0:{}'),(7737,2564,'_wc_average_rating','0'),(7738,2564,'_edit_lock','1568386255:1'),(7739,2564,'_edit_last','1'),(9985,2564,'_thumbnail_id','2600'),(7741,2564,'_sku',''),(7742,2564,'_regular_price','15'),(7744,2564,'_sale_price_dates_from',''),(7745,2564,'_sale_price_dates_to',''),(7746,2564,'total_sales','12'),(7747,2564,'_tax_status','none'),(7748,2564,'_tax_class','zero-rate'),(7749,2564,'_manage_stock','yes'),(7750,2564,'_backorders','no'),(7751,2564,'_low_stock_amount','6'),(7752,2564,'_sold_individually','no'),(7753,2564,'_weight',''),(7754,2564,'_length',''),(7755,2564,'_width',''),(7756,2564,'_height',''),(7757,2564,'_upsell_ids','a:0:{}'),(7758,2564,'_crosssell_ids','a:0:{}'),(7759,2564,'_purchase_note',''),(7760,2564,'_default_attributes','a:0:{}'),(7761,2564,'_virtual','no'),(7762,2564,'_downloadable','no'),(7763,2564,'_product_image_gallery',''),(7764,2564,'_download_limit','-1'),(7765,2564,'_download_expiry','-1'),(7766,2564,'_stock','13.000000'),(7767,2564,'_stock_status','instock'),(7768,2564,'_product_version','3.7.0'),(7769,2564,'_price','15'),(7770,2564,'_yoast_wpseo_primary_product_cat','48'),(7771,2564,'_yoast_wpseo_content_score','90'),(7773,2564,'_wpas_done_all','1'),(7774,2558,'_yoast_wpseo_focuskw','Anxiety Freedom Workshop'),(7775,2558,'_yoast_wpseo_metadesc','The Freedom From Anxiety & Stress Workshop will teach you powerful techniques that we use to take control and conquer anxiety & stress. Join us and book today'),(7776,2558,'_yoast_wpseo_linkdex','75'),(7964,2604,'_order_key','wc_order_5c64623acb8ae'),(7787,2586,'_customer_user','0'),(7788,2586,'_payment_method','paypal'),(7789,2586,'_payment_method_title','PayPal'),(7790,2586,'_transaction_id','87Y98755J32410727'),(7791,2586,'_customer_ip_address','5.80.182.57'),(7792,2586,'_customer_user_agent','Mozilla/5.0 (Linux; Android 5.1.1; KFSUWI) AppleWebKit/537.36 (KHTML, like Gecko) Silk/71.2.4 like Chrome/71.0.3578.98 Safari/537.36'),(7793,2586,'_created_via','checkout'),(7794,2586,'_date_completed',''),(7795,2586,'_completed_date',''),(7796,2586,'_date_paid','1549139963'),(7797,2586,'_paid_date','2019-02-02 20:39:23'),(7798,2586,'_cart_hash','26c1bd61f4297858aafe5918bb2ef655'),(7799,2586,'_billing_first_name','Anne'),(7800,2586,'_billing_last_name','Brown'),(7801,2586,'_billing_company',''),(7802,2586,'_billing_address_1','Barrow burn place'),(7803,2586,'_billing_address_2',''),(7804,2586,'_billing_city','Seghill'),(7805,2586,'_billing_state',''),(7806,2586,'_billing_postcode','NE23 7HB'),(7807,2586,'_billing_country','GB'),(7808,2586,'_billing_email','anneandpaul123@hotmail.co.uk'),(7809,2586,'_billing_phone','01912980018'),(7810,2586,'_shipping_first_name',''),(7811,2586,'_shipping_last_name',''),(7812,2586,'_shipping_company',''),(7813,2586,'_shipping_address_1',''),(7814,2586,'_shipping_address_2',''),(7815,2586,'_shipping_city',''),(7816,2586,'_shipping_state',''),(7817,2586,'_shipping_postcode',''),(7818,2586,'_shipping_country',''),(7819,2586,'_order_currency','GBP'),(7820,2586,'_cart_discount','0'),(7821,2586,'_cart_discount_tax','0'),(7822,2586,'_order_shipping','0.00'),(7823,2586,'_order_shipping_tax','0'),(7824,2586,'_order_tax','2'),(7825,2586,'_order_total','12.00'),(7826,2586,'_order_version','3.5.3'),(7827,2586,'_prices_include_tax','no'),(7828,2586,'_billing_address_index','Anne Brown  Barrow burn place  Seghill  NE23 7HB GB anneandpaul123@hotmail.co.uk 01912980018'),(7829,2586,'_shipping_address_index','         01912980018'),(7830,2586,'Payment type','instant'),(7831,2586,'_paypal_status','completed'),(7832,2586,'_download_permissions_granted','yes'),(7833,2586,'_recorded_sales','yes'),(7834,2586,'_recorded_coupon_usage_counts','yes'),(7835,2586,'_order_stock_reduced','yes'),(7836,2586,'PayPal Transaction Fee','0.61'),(7837,2589,'_order_key','wc_order_5c581cda9fd3f'),(7838,2589,'_customer_user','0'),(7839,2589,'_payment_method','bacs'),(7840,2589,'_payment_method_title','Direct bank transfer'),(7841,2589,'_transaction_id',''),(7842,2589,'_customer_ip_address','77.96.213.44'),(7843,2589,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36'),(7844,2589,'_created_via','checkout'),(7845,2589,'_date_completed',''),(7846,2589,'_completed_date',''),(7847,2589,'_date_paid','1549384741'),(7848,2589,'_paid_date','2019-02-05 16:39:01'),(7849,2589,'_cart_hash','249a3f4d4832e893bbc6a645ecc2b86b'),(7850,2589,'_billing_first_name','Heather'),(7851,2589,'_billing_last_name','Vaulkhard'),(7852,2589,'_billing_company','Nertherton Park Stables'),(7853,2589,'_billing_address_1','St, George\'s Lodge'),(7854,2589,'_billing_address_2','1 Adderstone Crescent , Jesmond'),(7855,2589,'_billing_city','Newcastle upon Tyne'),(7856,2589,'_billing_state','Tyne and Wear'),(7857,2589,'_billing_postcode','NE2 2HH'),(7858,2589,'_billing_country','GB'),(7859,2589,'_billing_email','heathervaulkhard@me.com'),(7860,2589,'_billing_phone','07714299942'),(7861,2589,'_shipping_first_name',''),(7862,2589,'_shipping_last_name',''),(7863,2589,'_shipping_company',''),(7864,2589,'_shipping_address_1',''),(7865,2589,'_shipping_address_2',''),(7866,2589,'_shipping_city',''),(7867,2589,'_shipping_state',''),(7868,2589,'_shipping_postcode',''),(7869,2589,'_shipping_country',''),(7870,2589,'_order_currency','GBP'),(7871,2589,'_cart_discount','0'),(7872,2589,'_cart_discount_tax','0'),(7873,2589,'_order_shipping','0'),(7874,2589,'_order_shipping_tax','0'),(7875,2589,'_order_tax','0'),(7876,2589,'_order_total','10.00'),(7877,2589,'_order_version','3.5.3'),(7878,2589,'_prices_include_tax','no'),(7879,2589,'_billing_address_index','Heather Vaulkhard Nertherton Park Stables St, George\'s Lodge 1 Adderstone Crescent , Jesmond Newcastle upon Tyne Tyne and Wear NE2 2HH GB heathervaulkhard@me.com 07714299942'),(7880,2589,'_shipping_address_index','         07714299942'),(7881,2589,'_recorded_sales','yes'),(7882,2589,'_recorded_coupon_usage_counts','yes'),(7883,2589,'_order_stock_reduced','yes'),(7884,2590,'_order_key','wc_order_5c58861130ae7'),(7885,2590,'_customer_user','0'),(7886,2590,'_payment_method','bacs'),(7887,2590,'_payment_method_title','Direct bank transfer'),(7888,2590,'_transaction_id',''),(7889,2590,'_customer_ip_address','81.140.233.132'),(7890,2590,'_customer_user_agent','Mozilla/5.0 (Linux; Android 6.0.1; HTC Desire 820 Build/MMB29M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/72.0.3626.76 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/206.0.0.36.105;]'),(7891,2590,'_created_via','checkout'),(7892,2590,'_date_completed',''),(7893,2590,'_completed_date',''),(7894,2590,'_date_paid',''),(7895,2590,'_paid_date',''),(7896,2590,'_cart_hash','249a3f4d4832e893bbc6a645ecc2b86b'),(7897,2590,'_billing_first_name','Geraldine'),(7898,2590,'_billing_last_name','Forrest'),(7899,2590,'_billing_company',''),(7900,2590,'_billing_address_1','82 Malcolm St Heato'),(7901,2590,'_billing_address_2',''),(7902,2590,'_billing_city','Newcastle upon Tyne'),(7903,2590,'_billing_state','Tyne & Wear'),(7904,2590,'_billing_postcode','NE6 5PL'),(7905,2590,'_billing_country','GB'),(7906,2590,'_billing_email','forest82@live.com'),(7907,2590,'_billing_phone','07963384671'),(7908,2590,'_shipping_first_name',''),(7909,2590,'_shipping_last_name',''),(7910,2590,'_shipping_company',''),(7911,2590,'_shipping_address_1',''),(7912,2590,'_shipping_address_2',''),(7913,2590,'_shipping_city',''),(7914,2590,'_shipping_state',''),(7915,2590,'_shipping_postcode',''),(7916,2590,'_shipping_country',''),(7917,2590,'_order_currency','GBP'),(7918,2590,'_cart_discount','0'),(7919,2590,'_cart_discount_tax','0'),(7920,2590,'_order_shipping','0.00'),(7921,2590,'_order_shipping_tax','0'),(7922,2590,'_order_tax','0'),(7923,2590,'_order_total','10.00'),(7924,2590,'_order_version','3.5.3'),(7925,2590,'_prices_include_tax','no'),(7926,2590,'_billing_address_index','Geraldine Forrest  82 Malcolm St Heato  Newcastle upon Tyne Tyne & Wear NE6 5PL GB forest82@live.com 07963384671'),(7927,2590,'_shipping_address_index','         07963384671'),(7928,2590,'_recorded_sales','yes'),(7929,2590,'_recorded_coupon_usage_counts','yes'),(7930,2590,'_order_stock_reduced','yes'),(7931,2589,'_edit_lock','1550430838:1'),(7932,2589,'_edit_last','1'),(7933,2589,'_shipping_phone',''),(7934,2589,'_download_permissions_granted','yes'),(7935,2590,'_edit_lock','1549471459:1'),(7944,2592,'responsive_meta_box_twitter',''),(7945,2592,'responsive_meta_box_googleplus',''),(7946,2592,'responsive_meta_box_text_linkedin',''),(7947,2592,'_yoast_wpseo_content_score','90'),(7948,2592,'_yoast_wpseo_primary_category','64'),(7965,2604,'_customer_user','0'),(7966,2604,'_payment_method','paypal'),(7967,2604,'_payment_method_title','PayPal'),(7968,2604,'_transaction_id','3SK68650UK2166454'),(7969,2604,'_customer_ip_address','77.98.51.143'),(7970,2604,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(7971,2604,'_created_via','checkout'),(7972,2604,'_date_completed',''),(7973,2604,'_completed_date',''),(7974,2604,'_date_paid','1550082645'),(7975,2604,'_paid_date','2019-02-13 18:30:45'),(7976,2604,'_cart_hash','12eab9911cc17231559537b28a6ce9eb'),(7977,2604,'_billing_first_name','Christine'),(7978,2604,'_billing_last_name','McManus'),(7979,2604,'_billing_company',''),(7980,2604,'_billing_address_1','24 Haig Avenue'),(7981,2604,'_billing_address_2',''),(7982,2604,'_billing_city','Whitley Bay'),(7983,2604,'_billing_state','Tyne and Wear'),(7984,2604,'_billing_postcode','NE25 8JG'),(7985,2604,'_billing_country','GB'),(7986,2604,'_billing_email','christinemc24@btinternet.com'),(7987,2604,'_billing_phone','07737202297'),(7988,2604,'_shipping_first_name',''),(7989,2604,'_shipping_last_name',''),(7990,2604,'_shipping_company',''),(7991,2604,'_shipping_address_1',''),(7992,2604,'_shipping_address_2',''),(7993,2604,'_shipping_city',''),(7994,2604,'_shipping_state',''),(7995,2604,'_shipping_postcode',''),(7996,2604,'_shipping_country',''),(7997,2604,'_order_currency','GBP'),(7998,2604,'_cart_discount','0'),(7999,2604,'_cart_discount_tax','0'),(8000,2604,'_order_shipping','0.00'),(8001,2604,'_order_shipping_tax','0'),(8002,2604,'_order_tax','0'),(8003,2604,'_order_total','10.00'),(8004,2604,'_order_version','3.5.3'),(8005,2604,'_prices_include_tax','no'),(8006,2604,'_billing_address_index','Christine McManus  24 Haig Avenue  Whitley Bay Tyne and Wear NE25 8JG GB christinemc24@btinternet.com 07737202297'),(8007,2604,'_shipping_address_index','         07737202297'),(8008,2604,'Payment type','instant'),(8009,2604,'_paypal_status','completed'),(8010,2604,'_download_permissions_granted','yes'),(8011,2604,'_recorded_sales','yes'),(8012,2604,'_recorded_coupon_usage_counts','yes'),(8013,2604,'_order_stock_reduced','yes'),(8014,2604,'PayPal Transaction Fee','0.54'),(8015,2605,'_order_key','wc_order_5c659304b1830'),(8016,2605,'_customer_user','0'),(8017,2605,'_payment_method','paypal'),(8018,2605,'_payment_method_title','PayPal'),(8019,2605,'_transaction_id','2KN125831J459213Y'),(8020,2605,'_customer_ip_address','94.1.91.150'),(8021,2605,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.1.0; SM-J530F Build/M1AJQ; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/72.0.3626.105 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/207.0.0.33.100;]'),(8022,2605,'_created_via','checkout'),(8023,2605,'_date_completed',''),(8024,2605,'_completed_date',''),(8025,2605,'_date_paid','1550160698'),(8026,2605,'_paid_date','2019-02-14 16:11:38'),(8027,2605,'_cart_hash','12eab9911cc17231559537b28a6ce9eb'),(8028,2605,'_billing_first_name','Amanda'),(8029,2605,'_billing_last_name','Wilson'),(8030,2605,'_billing_company',''),(8031,2605,'_billing_address_1','8 Windsor place'),(8032,2605,'_billing_address_2',''),(8033,2605,'_billing_city','Newcastle'),(8034,2605,'_billing_state',''),(8035,2605,'_billing_postcode','NE27 0DQ'),(8036,2605,'_billing_country','GB'),(8037,2605,'_billing_email','millymollymandy28@hotmail.com'),(8038,2605,'_billing_phone','07736050511'),(8039,2605,'_shipping_first_name',''),(8040,2605,'_shipping_last_name',''),(8041,2605,'_shipping_company',''),(8042,2605,'_shipping_address_1',''),(8043,2605,'_shipping_address_2',''),(8044,2605,'_shipping_city',''),(8045,2605,'_shipping_state',''),(8046,2605,'_shipping_postcode',''),(8047,2605,'_shipping_country',''),(8048,2605,'_order_currency','GBP'),(8049,2605,'_cart_discount','0'),(8050,2605,'_cart_discount_tax','0'),(8051,2605,'_order_shipping','0.00'),(8052,2605,'_order_shipping_tax','0'),(8053,2605,'_order_tax','0'),(8054,2605,'_order_total','10.00'),(8055,2605,'_order_version','3.5.3'),(8056,2605,'_prices_include_tax','no'),(8057,2605,'_billing_address_index','Amanda Wilson  8 Windsor place  Newcastle  NE27 0DQ GB millymollymandy28@hotmail.com 07736050511'),(8058,2605,'_shipping_address_index','         07736050511'),(8059,2605,'Payment type','instant'),(8060,2605,'_paypal_status','completed'),(8061,2605,'_download_permissions_granted','yes'),(8062,2605,'_recorded_sales','yes'),(8063,2605,'_recorded_coupon_usage_counts','yes'),(8064,2605,'_order_stock_reduced','yes'),(8065,2605,'PayPal Transaction Fee','0.54'),(8066,2606,'_order_key','wc_order_5c65d33335493'),(8067,2606,'_customer_user','0'),(8068,2606,'_payment_method','paypal'),(8069,2606,'_payment_method_title','PayPal'),(8070,2606,'_transaction_id','5P550946U43582217'),(8071,2606,'_customer_ip_address','176.253.21.36'),(8072,2606,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1'),(8073,2606,'_created_via','checkout'),(8074,2606,'_date_completed',''),(8075,2606,'_completed_date',''),(8076,2606,'_date_paid','1550177163'),(8077,2606,'_paid_date','2019-02-14 20:46:03'),(8078,2606,'_cart_hash','12eab9911cc17231559537b28a6ce9eb'),(8079,2606,'_billing_first_name','Gillian'),(8080,2606,'_billing_last_name','Smith'),(8081,2606,'_billing_company',''),(8082,2606,'_billing_address_1','2 St Johns Estate'),(8083,2606,'_billing_address_2','South Broomhill'),(8084,2606,'_billing_city','Morpeth'),(8085,2606,'_billing_state',''),(8086,2606,'_billing_postcode','NE65 9RU'),(8087,2606,'_billing_country','GB'),(8088,2606,'_billing_email','gillian@smith.as'),(8089,2606,'_billing_phone','447977799913'),(8090,2606,'_shipping_first_name',''),(8091,2606,'_shipping_last_name',''),(8092,2606,'_shipping_company',''),(8093,2606,'_shipping_address_1',''),(8094,2606,'_shipping_address_2',''),(8095,2606,'_shipping_city',''),(8096,2606,'_shipping_state',''),(8097,2606,'_shipping_postcode',''),(8098,2606,'_shipping_country',''),(8099,2606,'_order_currency','GBP'),(8100,2606,'_cart_discount','0'),(8101,2606,'_cart_discount_tax','0'),(8102,2606,'_order_shipping','0.00'),(8103,2606,'_order_shipping_tax','0'),(8104,2606,'_order_tax','0'),(8105,2606,'_order_total','10.00'),(8106,2606,'_order_version','3.5.3'),(8107,2606,'_prices_include_tax','no'),(8108,2606,'_billing_address_index','Gillian Smith  2 St Johns Estate South Broomhill Morpeth  NE65 9RU GB gillian@smith.as 447977799913'),(8109,2606,'_shipping_address_index','         447977799913'),(8110,2606,'Payment type','instant'),(8111,2606,'_paypal_status','completed'),(8112,2606,'_download_permissions_granted','yes'),(8113,2606,'_recorded_sales','yes'),(8114,2606,'_recorded_coupon_usage_counts','yes'),(8115,2606,'_order_stock_reduced','yes'),(8116,2606,'PayPal Transaction Fee','0.54'),(8117,2607,'_order_key','wc_order_5c69e1d7305ea'),(8118,2607,'_customer_user','0'),(8119,2607,'_payment_method','paypal'),(8120,2607,'_payment_method_title','PayPal'),(8121,2607,'_transaction_id','55762567PV095454X'),(8122,2607,'_customer_ip_address','82.42.144.66'),(8123,2607,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; SM-G930F Build/R16NW; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/72.0.3626.105 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/208.0.0.38.104;]'),(8124,2607,'_created_via','checkout'),(8125,2607,'_date_completed',''),(8126,2607,'_completed_date',''),(8127,2607,'_date_paid','1550443067'),(8128,2607,'_paid_date','2019-02-17 22:37:47'),(8129,2607,'_cart_hash','12eab9911cc17231559537b28a6ce9eb'),(8130,2607,'_billing_first_name','Katrina'),(8131,2607,'_billing_last_name','Heywood'),(8132,2607,'_billing_company',''),(8133,2607,'_billing_address_1','8 Acton Place'),(8134,2607,'_billing_address_2',''),(8135,2607,'_billing_city','Newcastle'),(8136,2607,'_billing_state',''),(8137,2607,'_billing_postcode','NE7 7RL'),(8138,2607,'_billing_country','GB'),(8139,2607,'_billing_email','katrina.heywood@outlook.com'),(8140,2607,'_billing_phone','07834689223'),(8141,2607,'_shipping_first_name',''),(8142,2607,'_shipping_last_name',''),(8143,2607,'_shipping_company',''),(8144,2607,'_shipping_address_1',''),(8145,2607,'_shipping_address_2',''),(8146,2607,'_shipping_city',''),(8147,2607,'_shipping_state',''),(8148,2607,'_shipping_postcode',''),(8149,2607,'_shipping_country',''),(8150,2607,'_order_currency','GBP'),(8151,2607,'_cart_discount','0'),(8152,2607,'_cart_discount_tax','0'),(8153,2607,'_order_shipping','0.00'),(8154,2607,'_order_shipping_tax','0'),(8155,2607,'_order_tax','0'),(8156,2607,'_order_total','10.00'),(8157,2607,'_order_version','3.5.3'),(8158,2607,'_prices_include_tax','no'),(8159,2607,'_billing_address_index','Katrina Heywood  8 Acton Place  Newcastle  NE7 7RL GB katrina.heywood@outlook.com 07834689223'),(8160,2607,'_shipping_address_index','         07834689223'),(8161,2607,'Payment type','instant'),(8162,2607,'_paypal_status','completed'),(8163,2607,'_download_permissions_granted','yes'),(8164,2607,'_recorded_sales','yes'),(8165,2607,'_recorded_coupon_usage_counts','yes'),(8166,2607,'_order_stock_reduced','yes'),(8167,2607,'PayPal Transaction Fee','0.54'),(8168,2608,'_order_key','wc_order_5c6a7d68a2a85'),(8169,2608,'_customer_user','0'),(8170,2608,'_payment_method','paypal'),(8171,2608,'_payment_method_title','PayPal'),(8172,2608,'_transaction_id','18Y834212J3956743'),(8173,2608,'_customer_ip_address','188.29.164.225'),(8174,2608,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(8175,2608,'_created_via','checkout'),(8176,2608,'_date_completed',''),(8177,2608,'_completed_date',''),(8178,2608,'_date_paid','1550482838'),(8179,2608,'_paid_date','2019-02-18 09:40:38'),(8180,2608,'_cart_hash','12eab9911cc17231559537b28a6ce9eb'),(8181,2608,'_billing_first_name','David'),(8182,2608,'_billing_last_name','King'),(8183,2608,'_billing_company',''),(8184,2608,'_billing_address_1','7'),(8185,2608,'_billing_address_2','Morgy Hill East'),(8186,2608,'_billing_city','Ryton'),(8187,2608,'_billing_state',''),(8188,2608,'_billing_postcode','NE40 4UF'),(8189,2608,'_billing_country','GB'),(8190,2608,'_billing_email','d.kingx@btinternet.com'),(8191,2608,'_billing_phone','01914139033'),(8192,2608,'_shipping_first_name',''),(8193,2608,'_shipping_last_name',''),(8194,2608,'_shipping_company',''),(8195,2608,'_shipping_address_1',''),(8196,2608,'_shipping_address_2',''),(8197,2608,'_shipping_city',''),(8198,2608,'_shipping_state',''),(8199,2608,'_shipping_postcode',''),(8200,2608,'_shipping_country',''),(8201,2608,'_order_currency','GBP'),(8202,2608,'_cart_discount','0'),(8203,2608,'_cart_discount_tax','0'),(8204,2608,'_order_shipping','0.00'),(8205,2608,'_order_shipping_tax','0'),(8206,2608,'_order_tax','0'),(8207,2608,'_order_total','10.00'),(8208,2608,'_order_version','3.5.3'),(8209,2608,'_prices_include_tax','no'),(8210,2608,'_billing_address_index','David King  7 Morgy Hill East Ryton  NE40 4UF GB d.kingx@btinternet.com 01914139033'),(8211,2608,'_shipping_address_index','         01914139033'),(8212,2608,'Payment type','instant'),(8213,2608,'_paypal_status','completed'),(8214,2608,'_download_permissions_granted','yes'),(8215,2608,'_recorded_sales','yes'),(8216,2608,'_recorded_coupon_usage_counts','yes'),(8217,2608,'_order_stock_reduced','yes'),(8218,2608,'PayPal Transaction Fee','0.54'),(8219,2610,'_order_key','wc_order_5c6bf185cfc46'),(8220,2610,'_customer_user','0'),(8221,2610,'_payment_method','paypal'),(8222,2610,'_payment_method_title','PayPal'),(8223,2610,'_transaction_id','0G158488PL9276254'),(8224,2610,'_customer_ip_address','5.65.196.87'),(8225,2610,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36'),(8226,2610,'_created_via','checkout'),(8227,2610,'_date_completed',''),(8228,2610,'_completed_date',''),(8229,2610,'_date_paid','1550578162'),(8230,2610,'_paid_date','2019-02-19 12:09:22'),(8231,2610,'_cart_hash','12eab9911cc17231559537b28a6ce9eb'),(8232,2610,'_billing_first_name','Dennis'),(8233,2610,'_billing_last_name','Alan'),(8234,2610,'_billing_company',''),(8235,2610,'_billing_address_1','44 Blanchland Ave, Woodlands Park'),(8236,2610,'_billing_address_2','Woodlands Park Newcastle upon Tyne'),(8237,2610,'_billing_city','Newcastle upon Tyne'),(8238,2610,'_billing_state','North Tyneside'),(8239,2610,'_billing_postcode','NE13 6JR'),(8240,2610,'_billing_country','GB'),(8241,2610,'_billing_email','denn15@aol.com'),(8242,2610,'_billing_phone','07463182106'),(8243,2610,'_shipping_first_name',''),(8244,2610,'_shipping_last_name',''),(8245,2610,'_shipping_company',''),(8246,2610,'_shipping_address_1',''),(8247,2610,'_shipping_address_2',''),(8248,2610,'_shipping_city',''),(8249,2610,'_shipping_state',''),(8250,2610,'_shipping_postcode',''),(8251,2610,'_shipping_country',''),(8252,2610,'_order_currency','GBP'),(8253,2610,'_cart_discount','0'),(8254,2610,'_cart_discount_tax','0'),(8255,2610,'_order_shipping','0.00'),(8256,2610,'_order_shipping_tax','0'),(8257,2610,'_order_tax','0'),(8258,2610,'_order_total','10.00'),(8259,2610,'_order_version','3.5.3'),(8260,2610,'_prices_include_tax','no'),(8261,2610,'_billing_address_index','Dennis Alan  44 Blanchland Ave, Woodlands Park Woodlands Park Newcastle upon Tyne Newcastle upon Tyne North Tyneside NE13 6JR GB denn15@aol.com 07463182106'),(8262,2610,'_shipping_address_index','         07463182106'),(8263,2610,'Payment type','instant'),(8264,2610,'_paypal_status','completed'),(8265,2610,'_download_permissions_granted','yes'),(8266,2610,'_recorded_sales','yes'),(8267,2610,'_recorded_coupon_usage_counts','yes'),(8268,2610,'_order_stock_reduced','yes'),(8269,2610,'PayPal Transaction Fee','0.54'),(8270,2612,'_edit_lock','1568382280:1'),(8271,2612,'_edit_last','1'),(8272,2613,'_wp_attached_file','2019/02/self-confidence-2121159_1280.jpg'),(8273,2613,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:729;s:4:\"file\";s:40:\"2019/02/self-confidence-2121159_1280.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"self-confidence-2121159_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"self-confidence-2121159_1280-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"self-confidence-2121159_1280-768x437.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:437;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"self-confidence-2121159_1280-1024x583.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:39:\"self-confidence-2121159_1280-100x57.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:57;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:39:\"self-confidence-2121159_1280-150x85.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:40:\"self-confidence-2121159_1280-200x114.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:40:\"self-confidence-2121159_1280-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:40:\"self-confidence-2121159_1280-450x256.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:40:\"self-confidence-2121159_1280-600x342.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:40:\"self-confidence-2121159_1280-900x513.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:40:\"self-confidence-2121159_1280-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:40:\"self-confidence-2121159_1280-400x228.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"self-confidence-2121159_1280-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:40:\"self-confidence-2121159_1280-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:40:\"self-confidence-2121159_1280-400x228.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"self-confidence-2121159_1280-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8274,2613,'_wp_attachment_image_alt','self-confidence-workshop'),(8275,2612,'_wp_page_template','content-sidebar-page.php'),(8276,2612,'_responsive_layout','default'),(8277,2612,'_yoast_wpseo_content_score','90'),(8278,2628,'_wc_review_count','0'),(8279,2628,'_wc_rating_count','a:0:{}'),(8280,2628,'_wc_average_rating','0'),(8281,2628,'_edit_lock','1568382276:1'),(8282,2628,'_edit_last','1'),(8283,2628,'_thumbnail_id','2613'),(8316,2628,'_wpas_done_all','1'),(8285,2628,'_sku',''),(8286,2628,'_regular_price','15.00'),(8288,2628,'_sale_price_dates_from',''),(8289,2628,'_sale_price_dates_to',''),(8290,2628,'total_sales','7'),(8291,2628,'_tax_status','none'),(8292,2628,'_tax_class','zero-rate'),(8293,2628,'_manage_stock','yes'),(8294,2628,'_backorders','no'),(8295,2628,'_low_stock_amount','5'),(8296,2628,'_sold_individually','no'),(8297,2628,'_weight',''),(8298,2628,'_length',''),(8299,2628,'_width',''),(8300,2628,'_height',''),(8301,2628,'_upsell_ids','a:0:{}'),(8302,2628,'_crosssell_ids','a:0:{}'),(8303,2628,'_purchase_note','Thank you.\r\nDirections and useful notes will be emailed out a few days before this event. Please share this event with your friends'),(8304,2628,'_default_attributes','a:0:{}'),(8305,2628,'_virtual','yes'),(8306,2628,'_downloadable','no'),(8307,2628,'_product_image_gallery',''),(8308,2628,'_download_limit','-1'),(8309,2628,'_download_expiry','-1'),(8310,2628,'_stock','16.000000'),(8311,2628,'_stock_status','instock'),(8312,2628,'_product_version','3.7.0'),(8313,2628,'_price','15.00'),(8314,2628,'_yoast_wpseo_primary_product_cat','48'),(8315,2628,'_yoast_wpseo_content_score','30'),(8317,2628,'_wp_old_slug','self-confidence-workshop'),(8318,2612,'_thumbnail_id','2613'),(8319,2635,'_menu_item_type','post_type'),(8320,2635,'_menu_item_menu_item_parent','804'),(8321,2635,'_menu_item_object_id','2612'),(8322,2635,'_menu_item_object','page'),(8323,2635,'_menu_item_target',''),(8324,2635,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(8325,2635,'_menu_item_xfn',''),(8326,2635,'_menu_item_url',''),(8328,2636,'_order_key','wc_order_5c6d2a9581ca0'),(8329,2636,'_customer_user','0'),(8330,2636,'_payment_method','paypal'),(8331,2636,'_payment_method_title','PayPal'),(8332,2636,'_transaction_id','18G44370P7387303D'),(8333,2636,'_customer_ip_address','217.138.72.20'),(8334,2636,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; FIG-LX1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36'),(8335,2636,'_created_via','checkout'),(8336,2636,'_date_completed',''),(8337,2636,'_completed_date',''),(8338,2636,'_date_paid','1550658368'),(8339,2636,'_paid_date','2019-02-20 10:26:08'),(8340,2636,'_cart_hash','12eab9911cc17231559537b28a6ce9eb'),(8341,2636,'_billing_first_name','John'),(8342,2636,'_billing_last_name','Childs'),(8343,2636,'_billing_company',''),(8344,2636,'_billing_address_1','37'),(8345,2636,'_billing_address_2','Caterhouse road'),(8346,2636,'_billing_city','Durham'),(8347,2636,'_billing_state','County Durham'),(8348,2636,'_billing_postcode','DH1 5HP'),(8349,2636,'_billing_country','GB'),(8350,2636,'_billing_email','jrchilds1975@gmail.com'),(8351,2636,'_billing_phone','+447969698120'),(8352,2636,'_shipping_first_name',''),(8353,2636,'_shipping_last_name',''),(8354,2636,'_shipping_company',''),(8355,2636,'_shipping_address_1',''),(8356,2636,'_shipping_address_2',''),(8357,2636,'_shipping_city',''),(8358,2636,'_shipping_state',''),(8359,2636,'_shipping_postcode',''),(8360,2636,'_shipping_country',''),(8361,2636,'_order_currency','GBP'),(8362,2636,'_cart_discount','0'),(8363,2636,'_cart_discount_tax','0'),(8364,2636,'_order_shipping','0.00'),(8365,2636,'_order_shipping_tax','0'),(8366,2636,'_order_tax','0'),(8367,2636,'_order_total','10.00'),(8368,2636,'_order_version','3.5.3'),(8369,2636,'_prices_include_tax','no'),(8370,2636,'_billing_address_index','John Childs  37 Caterhouse road Durham County Durham DH1 5HP GB jrchilds1975@gmail.com +447969698120'),(8371,2636,'_shipping_address_index','         +447969698120'),(8372,2636,'Payment type','instant'),(8373,2636,'_paypal_status','completed'),(8374,2636,'_download_permissions_granted','yes'),(8375,2636,'_recorded_sales','yes'),(8376,2636,'_recorded_coupon_usage_counts','yes'),(8377,2636,'_order_stock_reduced','yes'),(8378,2636,'PayPal Transaction Fee','0.54'),(8379,2637,'_order_key','wc_order_5c6fd36693d28'),(8380,2637,'_customer_user','0'),(8381,2637,'_payment_method','paypal'),(8382,2637,'_payment_method_title','PayPal'),(8383,2637,'_transaction_id','5XP39534MD371690Y'),(8384,2637,'_customer_ip_address','94.1.91.150'),(8385,2637,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.1.0; SM-J530F Build/M1AJQ; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/72.0.3626.105 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/209.0.0.39.91;]'),(8386,2637,'_created_via','checkout'),(8387,2637,'_date_completed',''),(8388,2637,'_completed_date',''),(8389,2637,'_date_paid','1550832534'),(8390,2637,'_paid_date','2019-02-22 10:48:54'),(8391,2637,'_cart_hash','d88e62e9ab8f0438a3439965bd03ffff'),(8392,2637,'_billing_first_name','Amanda'),(8393,2637,'_billing_last_name','Wilson'),(8394,2637,'_billing_company',''),(8395,2637,'_billing_address_1','8 Windsor Place'),(8396,2637,'_billing_address_2',''),(8397,2637,'_billing_city','Newcastle upon Tyne'),(8398,2637,'_billing_state',''),(8399,2637,'_billing_postcode','NE27 0DQ'),(8400,2637,'_billing_country','GB'),(8401,2637,'_billing_email','millymollymandy28@hotmail.com'),(8402,2637,'_billing_phone','07736050511'),(8403,2637,'_shipping_first_name',''),(8404,2637,'_shipping_last_name',''),(8405,2637,'_shipping_company',''),(8406,2637,'_shipping_address_1',''),(8407,2637,'_shipping_address_2',''),(8408,2637,'_shipping_city',''),(8409,2637,'_shipping_state',''),(8410,2637,'_shipping_postcode',''),(8411,2637,'_shipping_country',''),(8412,2637,'_order_currency','GBP'),(8413,2637,'_cart_discount','0'),(8414,2637,'_cart_discount_tax','0'),(8415,2637,'_order_shipping','0.00'),(8416,2637,'_order_shipping_tax','0'),(8417,2637,'_order_tax','0'),(8418,2637,'_order_total','10.00'),(8419,2637,'_order_version','3.5.3'),(8420,2637,'_prices_include_tax','no'),(8421,2637,'_billing_address_index','Amanda Wilson  8 Windsor Place  Newcastle upon Tyne  NE27 0DQ GB millymollymandy28@hotmail.com 07736050511'),(8422,2637,'_shipping_address_index','         07736050511'),(8423,2637,'Payment type','instant'),(8424,2637,'_paypal_status','completed'),(8425,2637,'_download_permissions_granted','yes'),(8426,2637,'_recorded_sales','yes'),(8427,2637,'_recorded_coupon_usage_counts','yes'),(8428,2637,'_order_stock_reduced','yes'),(8535,2637,'_paypal_transaction_fee','0.54'),(8430,560,'_responsive_layout','default'),(8431,2454,'_wp_old_slug','secrets-of-self-hypnosis'),(8432,2454,'_wp_old_slug','self-hypnosis-practce-group-booking'),(8433,2663,'_order_key','wc_order_5c73b69b72309'),(8434,2663,'_customer_user','0'),(8435,2663,'_payment_method','bacs'),(8436,2663,'_payment_method_title','Direct bank transfer'),(8437,2663,'_transaction_id',''),(8438,2663,'_customer_ip_address','77.96.213.44'),(8439,2663,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36'),(8440,2663,'_created_via','checkout'),(8441,2663,'_date_completed',''),(8442,2663,'_completed_date',''),(8443,2663,'_date_paid',''),(8444,2663,'_paid_date',''),(8445,2663,'_cart_hash','5ded382b7fa8eb810e653129ed971762'),(8446,2663,'_billing_first_name','Heather'),(8447,2663,'_billing_last_name','Vaulkhard'),(8448,2663,'_billing_company','Nertherton Park Stables'),(8449,2663,'_billing_address_1','1 Adderstone Crescent'),(8450,2663,'_billing_address_2','Jesmond'),(8451,2663,'_billing_city','Newcastle upon Tyne'),(8452,2663,'_billing_state','Tyne and Wear'),(8453,2663,'_billing_postcode','NE2 2HH'),(8454,2663,'_billing_country','GB'),(8455,2663,'_billing_email','heathervaulkhard@me.com'),(8456,2663,'_billing_phone','07714299942'),(8457,2663,'_shipping_first_name',''),(8458,2663,'_shipping_last_name',''),(8459,2663,'_shipping_company',''),(8460,2663,'_shipping_address_1',''),(8461,2663,'_shipping_address_2',''),(8462,2663,'_shipping_city',''),(8463,2663,'_shipping_state',''),(8464,2663,'_shipping_postcode',''),(8465,2663,'_shipping_country',''),(8466,2663,'_order_currency','GBP'),(8467,2663,'_cart_discount','0'),(8468,2663,'_cart_discount_tax','0'),(8469,2663,'_order_shipping','0.00'),(8470,2663,'_order_shipping_tax','0'),(8471,2663,'_order_tax','0'),(8472,2663,'_order_total','20.00'),(8473,2663,'_order_version','3.5.3'),(8474,2663,'_prices_include_tax','no'),(8475,2663,'_billing_address_index','Heather Vaulkhard Nertherton Park Stables 1 Adderstone Crescent Jesmond Newcastle upon Tyne Tyne and Wear NE2 2HH GB heathervaulkhard@me.com 07714299942'),(8476,2663,'_shipping_address_index','         07714299942'),(8477,2663,'_recorded_sales','yes'),(8478,2663,'_recorded_coupon_usage_counts','yes'),(8479,2663,'_order_stock_reduced','yes'),(8480,2666,'_order_key','wc_order_5c792e70356f6'),(8481,2666,'_customer_user','0'),(8482,2666,'_payment_method','paypal'),(8483,2666,'_payment_method_title','PayPal'),(8484,2666,'_transaction_id','6U577463PA036831R'),(8485,2666,'_customer_ip_address','80.2.22.20'),(8486,2666,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-G930F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36'),(8487,2666,'_created_via','checkout'),(8488,2666,'_date_completed',''),(8489,2666,'_completed_date',''),(8490,2666,'_date_paid','1551445719'),(8491,2666,'_paid_date','2019-03-01 13:08:39'),(8492,2666,'_cart_hash','65bd0991eab5b439b447e06e52b2e69d'),(8493,2666,'_billing_first_name','Emma'),(8494,2666,'_billing_last_name','mawson-johnson'),(8495,2666,'_billing_company',''),(8496,2666,'_billing_address_1','3 Warwick road'),(8497,2666,'_billing_address_2','East denton'),(8498,2666,'_billing_city','newcastle upon tyne'),(8499,2666,'_billing_state',''),(8500,2666,'_billing_postcode','NE5 2BS'),(8501,2666,'_billing_country','GB'),(8502,2666,'_billing_email','EMMAMAWSONJOHNSON@OUTlook.com'),(8503,2666,'_billing_phone','07872425058'),(8504,2666,'_shipping_first_name',''),(8505,2666,'_shipping_last_name',''),(8506,2666,'_shipping_company',''),(8507,2666,'_shipping_address_1',''),(8508,2666,'_shipping_address_2',''),(8509,2666,'_shipping_city',''),(8510,2666,'_shipping_state',''),(8511,2666,'_shipping_postcode',''),(8512,2666,'_shipping_country',''),(8513,2666,'_order_currency','GBP'),(8514,2666,'_cart_discount','0'),(8515,2666,'_cart_discount_tax','0'),(8516,2666,'_order_shipping','0.00'),(8517,2666,'_order_shipping_tax','0'),(8518,2666,'_order_tax','0'),(8519,2666,'_order_total','20.00'),(8520,2666,'_order_version','3.5.3'),(8521,2666,'_prices_include_tax','no'),(8522,2666,'_billing_address_index','Emma mawson-johnson  3 Warwick road East denton newcastle upon tyne  NE5 2BS GB EMMAMAWSONJOHNSON@OUTlook.com 07872425058'),(8523,2666,'_shipping_address_index','         07872425058'),(8524,2666,'Payment type','instant'),(8525,2666,'_paypal_status','completed'),(8526,2666,'_download_permissions_granted','yes'),(8527,2666,'_recorded_sales','yes'),(8528,2666,'_recorded_coupon_usage_counts','yes'),(8529,2666,'_order_stock_reduced','yes'),(8532,2666,'_paypal_transaction_fee','0.88'),(8531,2666,'_edit_lock','1551726332:1'),(8533,2663,'_edit_lock','1551726373:1'),(8534,2637,'_edit_lock','1551889021:1'),(8536,2667,'_order_key','wc_order_5c7d7fed8e21e'),(8537,2667,'_customer_user','0'),(8538,2667,'_payment_method','paypal'),(8539,2667,'_payment_method_title','PayPal'),(8540,2667,'_transaction_id','3XU668218P9136358'),(8541,2667,'_customer_ip_address','90.249.188.236'),(8542,2667,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; FIG-LX1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.105 Mobile Safari/537.36'),(8543,2667,'_created_via','checkout'),(8544,2667,'_date_completed',''),(8545,2667,'_completed_date',''),(8546,2667,'_date_paid','1551728763'),(8547,2667,'_paid_date','2019-03-04 19:46:03'),(8548,2667,'_cart_hash','d88e62e9ab8f0438a3439965bd03ffff'),(8549,2667,'_billing_first_name','John'),(8550,2667,'_billing_last_name','Childs'),(8551,2667,'_billing_company',''),(8552,2667,'_billing_address_1','37 caterhouse road'),(8553,2667,'_billing_address_2','Caterhouse road'),(8554,2667,'_billing_city','Durham'),(8555,2667,'_billing_state','County Durham'),(8556,2667,'_billing_postcode','DH1 5HP'),(8557,2667,'_billing_country','GB'),(8558,2667,'_billing_email','jrchilds1975@gmail.com'),(8559,2667,'_billing_phone','+447969698120'),(8560,2667,'_shipping_first_name',''),(8561,2667,'_shipping_last_name',''),(8562,2667,'_shipping_company',''),(8563,2667,'_shipping_address_1',''),(8564,2667,'_shipping_address_2',''),(8565,2667,'_shipping_city',''),(8566,2667,'_shipping_state',''),(8567,2667,'_shipping_postcode',''),(8568,2667,'_shipping_country',''),(8569,2667,'_order_currency','GBP'),(8570,2667,'_cart_discount','0'),(8571,2667,'_cart_discount_tax','0'),(8572,2667,'_order_shipping','0.00'),(8573,2667,'_order_shipping_tax','0'),(8574,2667,'_order_tax','0'),(8575,2667,'_order_total','10.00'),(8576,2667,'_order_version','3.5.3'),(8577,2667,'_prices_include_tax','no'),(8578,2667,'_billing_address_index','John Childs  37 caterhouse road Caterhouse road Durham County Durham DH1 5HP GB jrchilds1975@gmail.com +447969698120'),(8579,2667,'_shipping_address_index','         +447969698120'),(8580,2667,'Payment type','instant'),(8581,2667,'_paypal_status','completed'),(8582,2667,'_download_permissions_granted','yes'),(8583,2667,'_recorded_sales','yes'),(8584,2667,'_recorded_coupon_usage_counts','yes'),(8585,2667,'_order_stock_reduced','yes'),(8586,2667,'PayPal Transaction Fee','0.54'),(8587,2668,'_order_key','wc_order_5c7da57ba25d8'),(8588,2668,'_customer_user','0'),(8589,2668,'_payment_method','paypal'),(8590,2668,'_payment_method_title','PayPal'),(8591,2668,'_transaction_id','48P69014XV982905B'),(8592,2668,'_customer_ip_address','82.0.95.189'),(8593,2668,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A600FN Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36'),(8594,2668,'_created_via','checkout'),(8595,2668,'_date_completed',''),(8596,2668,'_completed_date',''),(8597,2668,'_date_paid','1551738326'),(8598,2668,'_paid_date','2019-03-04 22:25:26'),(8599,2668,'_cart_hash','d88e62e9ab8f0438a3439965bd03ffff'),(8600,2668,'_billing_first_name','Linda'),(8601,2668,'_billing_last_name','Graham'),(8602,2668,'_billing_company',''),(8603,2668,'_billing_address_1','39 Ordley Close'),(8604,2668,'_billing_address_2','Dumpling Hall'),(8605,2668,'_billing_city','Newcastle upon Tyne'),(8606,2668,'_billing_state',''),(8607,2668,'_billing_postcode','NE15 7XT'),(8608,2668,'_billing_country','GB'),(8609,2668,'_billing_email','Lagraham39@hotmail.co.uk'),(8610,2668,'_billing_phone','07971754892'),(8611,2668,'_shipping_first_name',''),(8612,2668,'_shipping_last_name',''),(8613,2668,'_shipping_company',''),(8614,2668,'_shipping_address_1',''),(8615,2668,'_shipping_address_2',''),(8616,2668,'_shipping_city',''),(8617,2668,'_shipping_state',''),(8618,2668,'_shipping_postcode',''),(8619,2668,'_shipping_country',''),(8620,2668,'_order_currency','GBP'),(8621,2668,'_cart_discount','0'),(8622,2668,'_cart_discount_tax','0'),(8623,2668,'_order_shipping','0.00'),(8624,2668,'_order_shipping_tax','0'),(8625,2668,'_order_tax','0'),(8626,2668,'_order_total','10.00'),(8627,2668,'_order_version','3.5.3'),(8628,2668,'_prices_include_tax','no'),(8629,2668,'_billing_address_index','Linda Graham  39 Ordley Close Dumpling Hall Newcastle upon Tyne  NE15 7XT GB Lagraham39@hotmail.co.uk 07971754892'),(8630,2668,'_shipping_address_index','         07971754892'),(8631,2668,'Payment type','instant'),(8632,2668,'_paypal_status','completed'),(8633,2668,'_download_permissions_granted','yes'),(8634,2668,'_recorded_sales','yes'),(8635,2668,'_recorded_coupon_usage_counts','yes'),(8636,2668,'_order_stock_reduced','yes'),(8637,2668,'PayPal Transaction Fee','0.54'),(8638,2669,'_order_key','wc_order_5c7e7efb437a4'),(8639,2669,'_customer_user','0'),(8640,2669,'_payment_method','bacs'),(8641,2669,'_payment_method_title','Direct bank transfer'),(8642,2669,'_transaction_id',''),(8643,2669,'_customer_ip_address','213.205.241.146'),(8644,2669,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(8645,2669,'_created_via','checkout'),(8646,2669,'_date_completed',''),(8647,2669,'_completed_date',''),(8648,2669,'_date_paid',''),(8649,2669,'_paid_date',''),(8650,2669,'_cart_hash','d88e62e9ab8f0438a3439965bd03ffff'),(8651,2669,'_billing_first_name','Malgorzata'),(8652,2669,'_billing_last_name','Chalupka'),(8653,2669,'_billing_company',''),(8654,2669,'_billing_address_1','6 St. Cuthberts Drive'),(8655,2669,'_billing_address_2',''),(8656,2669,'_billing_city','Gateshead'),(8657,2669,'_billing_state',''),(8658,2669,'_billing_postcode','NE10 9AA'),(8659,2669,'_billing_country','GB'),(8660,2669,'_billing_email','endrugosa@o2.pl'),(8661,2669,'_billing_phone','07704907599'),(8662,2669,'_shipping_first_name',''),(8663,2669,'_shipping_last_name',''),(8664,2669,'_shipping_company',''),(8665,2669,'_shipping_address_1',''),(8666,2669,'_shipping_address_2',''),(8667,2669,'_shipping_city',''),(8668,2669,'_shipping_state',''),(8669,2669,'_shipping_postcode',''),(8670,2669,'_shipping_country',''),(8671,2669,'_order_currency','GBP'),(8672,2669,'_cart_discount','0'),(8673,2669,'_cart_discount_tax','0'),(8674,2669,'_order_shipping','0.00'),(8675,2669,'_order_shipping_tax','0'),(8676,2669,'_order_tax','0'),(8677,2669,'_order_total','10.00'),(8678,2669,'_order_version','3.5.3'),(8679,2669,'_prices_include_tax','no'),(8680,2669,'_billing_address_index','Malgorzata Chalupka  6 St. Cuthberts Drive  Gateshead  NE10 9AA GB endrugosa@o2.pl 07704907599'),(8681,2669,'_shipping_address_index','         07704907599'),(8682,2669,'_recorded_sales','yes'),(8683,2669,'_recorded_coupon_usage_counts','yes'),(8684,2669,'_order_stock_reduced','yes'),(8685,2671,'_order_key','wc_order_5c8ea4829b86a'),(8686,2671,'_customer_user','0'),(8687,2671,'_payment_method','bacs'),(8688,2671,'_payment_method_title','Direct bank transfer'),(8689,2671,'_transaction_id',''),(8690,2671,'_customer_ip_address','90.205.218.10'),(8691,2671,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/16D57 [FBAN/FBIOS;FBAV/210.0.0.37.117;FBBV/143754374;FBDV/iPhone8,1;FBMD/iPhone;FBSN/iOS;FBSV/12.1.4;FBSS/2;FBCR/Three;FBID/phone;FBLC/en_GB;FBOP/5;FBRV/146236275]'),(8692,2671,'_created_via','checkout'),(8693,2671,'_date_completed',''),(8694,2671,'_completed_date',''),(8695,2671,'_date_paid',''),(8696,2671,'_paid_date',''),(8697,2671,'_cart_hash','828d3740feb5d1aba24c7fb91a759010'),(8698,2671,'_billing_first_name','Gail'),(8699,2671,'_billing_last_name','Wright'),(8700,2671,'_billing_company',''),(8701,2671,'_billing_address_1','64'),(8702,2671,'_billing_address_2','Tyneview place'),(8703,2671,'_billing_city','Gateshead'),(8704,2671,'_billing_state',''),(8705,2671,'_billing_postcode','NE8 2HR'),(8706,2671,'_billing_country','GB'),(8707,2671,'_billing_email','gailwright2010@gmail.com'),(8708,2671,'_billing_phone','07850275896'),(8709,2671,'_shipping_first_name',''),(8710,2671,'_shipping_last_name',''),(8711,2671,'_shipping_company',''),(8712,2671,'_shipping_address_1',''),(8713,2671,'_shipping_address_2',''),(8714,2671,'_shipping_city',''),(8715,2671,'_shipping_state',''),(8716,2671,'_shipping_postcode',''),(8717,2671,'_shipping_country',''),(8718,2671,'_order_currency','GBP'),(8719,2671,'_cart_discount','0'),(8720,2671,'_cart_discount_tax','0'),(8721,2671,'_order_shipping','0.00'),(8722,2671,'_order_shipping_tax','0'),(8723,2671,'_order_tax','0'),(8724,2671,'_order_total','10.00'),(8725,2671,'_order_version','3.5.3'),(8726,2671,'_prices_include_tax','no'),(8727,2671,'_billing_address_index','Gail Wright  64 Tyneview place Gateshead  NE8 2HR GB gailwright2010@gmail.com 07850275896'),(8728,2671,'_shipping_address_index','         07850275896'),(8729,2671,'_recorded_sales','yes'),(8730,2671,'_recorded_coupon_usage_counts','yes'),(8731,2671,'_order_stock_reduced','yes'),(8732,2672,'_order_key','wc_order_5c911a691cf5d'),(8733,2672,'_customer_user','0'),(8734,2672,'_payment_method','bacs'),(8735,2672,'_payment_method_title','Direct bank transfer'),(8736,2672,'_transaction_id',''),(8737,2672,'_customer_ip_address','188.29.164.243'),(8738,2672,'_customer_user_agent','Mozilla/5.0 (Linux; Android 7.0; SM-G920F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Mobile Safari/537.36'),(8739,2672,'_created_via','checkout'),(8740,2672,'_date_completed',''),(8741,2672,'_completed_date',''),(8742,2672,'_date_paid',''),(8743,2672,'_paid_date',''),(8744,2672,'_cart_hash','828d3740feb5d1aba24c7fb91a759010'),(8745,2672,'_billing_first_name','Ruta'),(8746,2672,'_billing_last_name','Ungure'),(8747,2672,'_billing_company',''),(8748,2672,'_billing_address_1','9 Woodlands Terrace'),(8749,2672,'_billing_address_2',''),(8750,2672,'_billing_city','Gateshead'),(8751,2672,'_billing_state','Tyne and Wear'),(8752,2672,'_billing_postcode','NE10 9HT'),(8753,2672,'_billing_country','GB'),(8754,2672,'_billing_email','ruta.ungure@gmail.com'),(8755,2672,'_billing_phone','07805820578'),(8756,2672,'_shipping_first_name',''),(8757,2672,'_shipping_last_name',''),(8758,2672,'_shipping_company',''),(8759,2672,'_shipping_address_1',''),(8760,2672,'_shipping_address_2',''),(8761,2672,'_shipping_city',''),(8762,2672,'_shipping_state',''),(8763,2672,'_shipping_postcode',''),(8764,2672,'_shipping_country',''),(8765,2672,'_order_currency','GBP'),(8766,2672,'_cart_discount','0'),(8767,2672,'_cart_discount_tax','0'),(8768,2672,'_order_shipping','0.00'),(8769,2672,'_order_shipping_tax','0'),(8770,2672,'_order_tax','0'),(8771,2672,'_order_total','10.00'),(8772,2672,'_order_version','3.5.3'),(8773,2672,'_prices_include_tax','no'),(8774,2672,'_billing_address_index','Ruta Ungure  9 Woodlands Terrace  Gateshead Tyne and Wear NE10 9HT GB ruta.ungure@gmail.com 07805820578'),(8775,2672,'_shipping_address_index','         07805820578'),(8776,2672,'_recorded_sales','yes'),(8777,2672,'_recorded_coupon_usage_counts','yes'),(8778,2672,'_order_stock_reduced','yes'),(8779,2674,'_wp_attached_file','2019/03/JacquiVanAlstyne.jpg'),(8780,2674,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:28:\"2019/03/JacquiVanAlstyne.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"JacquiVanAlstyne-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"JacquiVanAlstyne-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"JacquiVanAlstyne-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:28:\"JacquiVanAlstyne-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:28:\"JacquiVanAlstyne-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:28:\"JacquiVanAlstyne-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:28:\"JacquiVanAlstyne-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:28:\"JacquiVanAlstyne-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:28:\"JacquiVanAlstyne-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:28:\"JacquiVanAlstyne-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"JacquiVanAlstyne-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"JacquiVanAlstyne-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"JacquiVanAlstyne-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"JacquiVanAlstyne-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"JacquiVanAlstyne-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"JacquiVanAlstyne-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8781,2675,'_wp_attached_file','2019/03/The-Secrets-Of-Being-Happy.jpg'),(8782,2675,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:719;s:4:\"file\";s:38:\"2019/03/The-Secrets-Of-Being-Happy.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"The-Secrets-Of-Being-Happy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"The-Secrets-Of-Being-Happy-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"The-Secrets-Of-Being-Happy-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"The-Secrets-Of-Being-Happy-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:37:\"The-Secrets-Of-Being-Happy-100x56.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:56;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:37:\"The-Secrets-Of-Being-Happy-150x84.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:38:\"The-Secrets-Of-Being-Happy-200x112.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:38:\"The-Secrets-Of-Being-Happy-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:38:\"The-Secrets-Of-Being-Happy-450x253.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:253;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:38:\"The-Secrets-Of-Being-Happy-600x337.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:38:\"The-Secrets-Of-Being-Happy-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:38:\"The-Secrets-Of-Being-Happy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:38:\"The-Secrets-Of-Being-Happy-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:38:\"The-Secrets-Of-Being-Happy-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:38:\"The-Secrets-Of-Being-Happy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:38:\"The-Secrets-Of-Being-Happy-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:38:\"The-Secrets-Of-Being-Happy-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8783,2676,'_wp_attached_file','2019/03/FB_IMG_1553291092849.jpg'),(8784,2676,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:312;s:6:\"height\";i:312;s:4:\"file\";s:32:\"2019/03/FB_IMG_1553291092849.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1553291092849-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1553291092849-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1553291092849-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1553291092849-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1553291092849-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1553291092849-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"FB_IMG_1553291092849-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1553291092849-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1553291092849-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"FB_IMG_1553291092849-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8785,2679,'_order_key','wc_order_5c9a6ab9ed839'),(8786,2679,'_customer_user','0'),(8787,2679,'_payment_method','bacs'),(8788,2679,'_payment_method_title','Direct bank transfer'),(8789,2679,'_transaction_id',''),(8790,2679,'_customer_ip_address','82.132.244.22'),(8791,2679,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(8792,2679,'_created_via','checkout'),(8793,2679,'_date_completed',''),(8794,2679,'_completed_date',''),(8795,2679,'_date_paid',''),(8796,2679,'_paid_date',''),(8797,2679,'_cart_hash','249a3f4d4832e893bbc6a645ecc2b86b'),(8798,2679,'_billing_first_name','Tracey'),(8799,2679,'_billing_last_name','Newton'),(8800,2679,'_billing_company',''),(8801,2679,'_billing_address_1','3 Coronation street'),(8802,2679,'_billing_address_2',''),(8803,2679,'_billing_city','Ryton'),(8804,2679,'_billing_state','Tyne and wear'),(8805,2679,'_billing_postcode','NE40 3EW'),(8806,2679,'_billing_country','GB'),(8807,2679,'_billing_email','tracerblade938@gmail.com'),(8808,2679,'_billing_phone','07487810659'),(8809,2679,'_shipping_first_name',''),(8810,2679,'_shipping_last_name',''),(8811,2679,'_shipping_company',''),(8812,2679,'_shipping_address_1',''),(8813,2679,'_shipping_address_2',''),(8814,2679,'_shipping_city',''),(8815,2679,'_shipping_state',''),(8816,2679,'_shipping_postcode',''),(8817,2679,'_shipping_country',''),(8818,2679,'_order_currency','GBP'),(8819,2679,'_cart_discount','0'),(8820,2679,'_cart_discount_tax','0'),(8821,2679,'_order_shipping','0.00'),(8822,2679,'_order_shipping_tax','0'),(8823,2679,'_order_tax','0'),(8824,2679,'_order_total','10.00'),(8825,2679,'_order_version','3.5.3'),(8826,2679,'_prices_include_tax','no'),(8827,2679,'_billing_address_index','Tracey Newton  3 Coronation street  Ryton Tyne and wear NE40 3EW GB tracerblade938@gmail.com 07487810659'),(8828,2679,'_shipping_address_index','         07487810659'),(8829,2679,'_recorded_sales','yes'),(8830,2679,'_recorded_coupon_usage_counts','yes'),(8831,2679,'_order_stock_reduced','yes'),(8832,2679,'_edit_lock','1553705235:1'),(8833,2671,'_edit_lock','1557160132:1'),(9193,2718,'_edit_lock','1568382287:1'),(8834,2681,'_edit_lock','1568386107:1'),(8835,2681,'_edit_last','1'),(8836,2675,'_wp_attachment_image_alt','Newcastle Hypnotherapy Workshops & Events'),(8837,2681,'_wp_page_template','content-sidebar-page.php'),(8838,2681,'_responsive_layout','default'),(8839,2681,'_yoast_wpseo_content_score','90'),(8840,2701,'_wc_review_count','0'),(8841,2701,'_wc_rating_count','a:0:{}'),(8842,2701,'_wc_average_rating','0'),(8843,2701,'_edit_lock','1568386099:1'),(8844,2701,'_edit_last','1'),(8845,2701,'_sku',''),(8846,2701,'_regular_price','15'),(8848,2701,'_sale_price_dates_from',''),(8849,2701,'_sale_price_dates_to',''),(8850,2701,'total_sales','9'),(8851,2701,'_tax_status','none'),(8852,2701,'_tax_class','zero-rate'),(8853,2701,'_manage_stock','yes'),(8854,2701,'_backorders','no'),(8855,2701,'_low_stock_amount',''),(8856,2701,'_sold_individually','no'),(8857,2701,'_weight',''),(8858,2701,'_length',''),(8859,2701,'_width',''),(8860,2701,'_height',''),(8861,2701,'_upsell_ids','a:0:{}'),(8862,2701,'_crosssell_ids','a:0:{}'),(8863,2701,'_purchase_note',''),(8864,2701,'_default_attributes','a:0:{}'),(8865,2701,'_virtual','no'),(8866,2701,'_downloadable','no'),(8867,2701,'_product_image_gallery',''),(8868,2701,'_download_limit','-1'),(8869,2701,'_download_expiry','-1'),(8870,2701,'_stock','15'),(8871,2701,'_stock_status','instock'),(8872,2701,'_product_version','3.7.0'),(8873,2701,'_price','15'),(8874,2701,'_yoast_wpseo_primary_product_cat','48'),(8875,2701,'_yoast_wpseo_content_score','30'),(8876,2701,'_thumbnail_id','2675'),(8878,2701,'_wpas_done_all','1'),(8879,2703,'_menu_item_type','post_type'),(8880,2703,'_menu_item_menu_item_parent','804'),(8881,2703,'_menu_item_object_id','2681'),(8882,2703,'_menu_item_object','page'),(8883,2703,'_menu_item_target',''),(8884,2703,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(8885,2703,'_menu_item_xfn',''),(8886,2703,'_menu_item_url',''),(8888,2681,'_yoast_wpseo_focuskw','the secrets of being happy'),(8889,2681,'_yoast_wpseo_title','%%title%% %%page%% %%sep%%'),(8890,2681,'_yoast_wpseo_metadesc','Learn The Secrets Of Being Happy in this enjoyable workshop. Join us to learn some fun skills as part of the Secret Workshops'),(8891,2681,'_yoast_wpseo_linkdex','75'),(8892,2704,'_order_key','wc_order_5ca36fccd2628'),(8893,2704,'_customer_user','0'),(8894,2704,'_payment_method','paypal'),(8895,2704,'_payment_method_title','PayPal'),(8896,2704,'_transaction_id','22H05104EM6291342'),(8897,2704,'_customer_ip_address','94.4.96.211'),(8898,2704,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/16D57 [FBAN/FBIOS;FBDV/iPhone7,2;FBMD/iPhone;FBSN/iOS;FBSV/12.1.4;FBSS/2;FBCR/EE;FBID/phone;FBLC/en_GB;FBOP/5]'),(8899,2704,'_created_via','checkout'),(8900,2704,'_date_completed',''),(8901,2704,'_completed_date',''),(8902,2704,'_date_paid','1554214914'),(8903,2704,'_paid_date','2019-04-02 14:21:54'),(8904,2704,'_cart_hash','b45ad56e60c72d29ad8aa42bd0de7a3e'),(8905,2704,'_billing_first_name','Tori'),(8906,2704,'_billing_last_name','Lee'),(8907,2704,'_billing_company',''),(8908,2704,'_billing_address_1','11 Marina View'),(8909,2704,'_billing_address_2',''),(8910,2704,'_billing_city','Wallsend'),(8911,2704,'_billing_state',''),(8912,2704,'_billing_postcode','NE28 6JS'),(8913,2704,'_billing_country','GB'),(8914,2704,'_billing_email','tori.11@mail.com'),(8915,2704,'_billing_phone','07398668240'),(8916,2704,'_shipping_first_name',''),(8917,2704,'_shipping_last_name',''),(8918,2704,'_shipping_company',''),(8919,2704,'_shipping_address_1',''),(8920,2704,'_shipping_address_2',''),(8921,2704,'_shipping_city',''),(8922,2704,'_shipping_state',''),(8923,2704,'_shipping_postcode',''),(8924,2704,'_shipping_country',''),(8925,2704,'_order_currency','GBP'),(8926,2704,'_cart_discount','0'),(8927,2704,'_cart_discount_tax','0'),(8928,2704,'_order_shipping','0.00'),(8929,2704,'_order_shipping_tax','0'),(8930,2704,'_order_tax','0'),(8931,2704,'_order_total','20.00'),(8932,2704,'_order_version','3.5.3'),(8933,2704,'_prices_include_tax','no'),(8934,2704,'_billing_address_index','Tori Lee  11 Marina View  Wallsend  NE28 6JS GB tori.11@mail.com 07398668240'),(8935,2704,'_shipping_address_index','         07398668240'),(8936,2704,'Payment type','instant'),(8937,2704,'_paypal_status','completed'),(8938,2704,'_download_permissions_granted','yes'),(8939,2704,'_recorded_sales','yes'),(8940,2704,'_recorded_coupon_usage_counts','yes'),(8941,2704,'_order_stock_reduced','yes'),(8942,2704,'PayPal Transaction Fee','0.88'),(8943,2705,'_order_key','wc_order_5ca71fb351499'),(8944,2705,'_customer_user','0'),(8945,2705,'_payment_method','bacs'),(8946,2705,'_payment_method_title','Direct bank transfer'),(8947,2705,'_transaction_id',''),(8948,2705,'_customer_ip_address','213.205.241.223'),(8949,2705,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(8950,2705,'_created_via','checkout'),(8951,2705,'_date_completed',''),(8952,2705,'_completed_date',''),(8953,2705,'_date_paid',''),(8954,2705,'_paid_date',''),(8955,2705,'_cart_hash','546dd3bd4cd64363b21b8622623fdc33'),(8956,2705,'_billing_first_name','Laura'),(8957,2705,'_billing_last_name','Sharp'),(8958,2705,'_billing_company',''),(8959,2705,'_billing_address_1','10 Burnlea Gardens'),(8960,2705,'_billing_address_2',''),(8961,2705,'_billing_city','Seghill'),(8962,2705,'_billing_state',''),(8963,2705,'_billing_postcode','NE23 7EW'),(8964,2705,'_billing_country','GB'),(8965,2705,'_billing_email','sharp.laura94@gmail.com'),(8966,2705,'_billing_phone','07399973467'),(8967,2705,'_shipping_first_name',''),(8968,2705,'_shipping_last_name',''),(8969,2705,'_shipping_company',''),(8970,2705,'_shipping_address_1',''),(8971,2705,'_shipping_address_2',''),(8972,2705,'_shipping_city',''),(8973,2705,'_shipping_state',''),(8974,2705,'_shipping_postcode',''),(8975,2705,'_shipping_country',''),(8976,2705,'_order_currency','GBP'),(8977,2705,'_cart_discount','0'),(8978,2705,'_cart_discount_tax','0'),(8979,2705,'_order_shipping','0.00'),(8980,2705,'_order_shipping_tax','0'),(8981,2705,'_order_tax','0'),(8982,2705,'_order_total','10.00'),(8983,2705,'_order_version','3.5.3'),(8984,2705,'_prices_include_tax','no'),(8985,2705,'_billing_address_index','Laura Sharp  10 Burnlea Gardens  Seghill  NE23 7EW GB sharp.laura94@gmail.com 07399973467'),(8986,2705,'_shipping_address_index','         07399973467'),(8987,2705,'_recorded_sales','yes'),(8988,2705,'_recorded_coupon_usage_counts','yes'),(8989,2705,'_order_stock_reduced','yes'),(8990,2706,'_order_key','wc_order_5ca911820069f'),(8991,2706,'_customer_user','0'),(8992,2706,'_payment_method','paypal'),(8993,2706,'_payment_method_title','PayPal'),(8994,2706,'_transaction_id','8X035991V43796526'),(8995,2706,'_customer_ip_address','77.103.71.168'),(8996,2706,'_customer_user_agent','Mozilla/5.0 (Linux; Android 7.0; SM-G925F Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/73.0.3683.90 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/215.0.0.45.98;]'),(8997,2706,'_created_via','checkout'),(8998,2706,'_date_completed',''),(8999,2706,'_completed_date',''),(9000,2706,'_date_paid','1554583995'),(9001,2706,'_paid_date','2019-04-06 20:53:15'),(9002,2706,'_cart_hash','546dd3bd4cd64363b21b8622623fdc33'),(9003,2706,'_billing_first_name','Gillian'),(9004,2706,'_billing_last_name','Houston'),(9005,2706,'_billing_company',''),(9006,2706,'_billing_address_1','beech drive dunston'),(9007,2706,'_billing_address_2',''),(9008,2706,'_billing_city','Gateshead'),(9009,2706,'_billing_state','Tyne & wear'),(9010,2706,'_billing_postcode','NE11 9PE'),(9011,2706,'_billing_country','GB'),(9012,2706,'_billing_email','gillhouston539@gmail.com'),(9013,2706,'_billing_phone','07783855489'),(9014,2706,'_shipping_first_name',''),(9015,2706,'_shipping_last_name',''),(9016,2706,'_shipping_company',''),(9017,2706,'_shipping_address_1',''),(9018,2706,'_shipping_address_2',''),(9019,2706,'_shipping_city',''),(9020,2706,'_shipping_state',''),(9021,2706,'_shipping_postcode',''),(9022,2706,'_shipping_country',''),(9023,2706,'_order_currency','GBP'),(9024,2706,'_cart_discount','0'),(9025,2706,'_cart_discount_tax','0'),(9026,2706,'_order_shipping','0.00'),(9027,2706,'_order_shipping_tax','0'),(9028,2706,'_order_tax','0'),(9029,2706,'_order_total','10.00'),(9030,2706,'_order_version','3.5.3'),(9031,2706,'_prices_include_tax','no'),(9032,2706,'_billing_address_index','Gillian Houston  beech drive dunston  Gateshead Tyne & wear NE11 9PE GB gillhouston539@gmail.com 07783855489'),(9033,2706,'_shipping_address_index','         07783855489'),(9034,2706,'Payment type','instant'),(9035,2706,'_paypal_status','completed'),(9036,2706,'_download_permissions_granted','yes'),(9037,2706,'_recorded_sales','yes'),(9038,2706,'_recorded_coupon_usage_counts','yes'),(9039,2706,'_order_stock_reduced','yes'),(9042,2706,'_paypal_transaction_fee','0.54'),(9041,2706,'_edit_lock','1554747918:1'),(9043,2705,'_edit_lock','1554748368:1'),(9044,2708,'_order_key','wc_order_5cacfd786615d'),(9045,2708,'_customer_user','0'),(9046,2708,'_payment_method','bacs'),(9047,2708,'_payment_method_title','Direct bank transfer'),(9048,2708,'_transaction_id',''),(9049,2708,'_customer_ip_address','86.173.145.25'),(9050,2708,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(9051,2708,'_created_via','checkout'),(9052,2708,'_date_completed',''),(9053,2708,'_completed_date',''),(9054,2708,'_date_paid',''),(9055,2708,'_paid_date',''),(9056,2708,'_cart_hash','b45ad56e60c72d29ad8aa42bd0de7a3e'),(9057,2708,'_billing_first_name','Sophi'),(9058,2708,'_billing_last_name','Emmerson'),(9059,2708,'_billing_company',''),(9060,2708,'_billing_address_1','23 Lyons gardens'),(9061,2708,'_billing_address_2',''),(9062,2708,'_billing_city','Houghton le spring'),(9063,2708,'_billing_state',''),(9064,2708,'_billing_postcode','DH5 0HL'),(9065,2708,'_billing_country','GB'),(9066,2708,'_billing_email','sophemmerson@hotmail.com'),(9067,2708,'_billing_phone','07398723362'),(9068,2708,'_shipping_first_name',''),(9069,2708,'_shipping_last_name',''),(9070,2708,'_shipping_company',''),(9071,2708,'_shipping_address_1',''),(9072,2708,'_shipping_address_2',''),(9073,2708,'_shipping_city',''),(9074,2708,'_shipping_state',''),(9075,2708,'_shipping_postcode',''),(9076,2708,'_shipping_country',''),(9077,2708,'_order_currency','GBP'),(9078,2708,'_cart_discount','0'),(9079,2708,'_cart_discount_tax','0'),(9080,2708,'_order_shipping','0.00'),(9081,2708,'_order_shipping_tax','0'),(9082,2708,'_order_tax','0'),(9083,2708,'_order_total','20.00'),(9084,2708,'_order_version','3.5.3'),(9085,2708,'_prices_include_tax','no'),(9086,2708,'_billing_address_index','Sophi Emmerson  23 Lyons gardens  Houghton le spring  DH5 0HL GB sophemmerson@hotmail.com 07398723362'),(9087,2708,'_shipping_address_index','         07398723362'),(9088,2708,'_recorded_sales','yes'),(9089,2708,'_recorded_coupon_usage_counts','yes'),(9090,2708,'_order_stock_reduced','yes'),(9091,2709,'_order_key','wc_order_5cad073b0240f'),(9092,2709,'_customer_user','0'),(9093,2709,'_payment_method','paypal'),(9094,2709,'_payment_method_title','PayPal'),(9095,2709,'_transaction_id','0NV91756VH238145L'),(9096,2709,'_customer_ip_address','80.5.200.72'),(9097,2709,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [FBAN/FBIOS;FBDV/iPhone10,4;FBMD/iPhone;FBSN/iOS;FBSV/12.2;FBSS/2;FBCR/EE;FBID/phone;FBLC/en_GB;FBOP/5]'),(9098,2709,'_created_via','checkout'),(9099,2709,'_date_completed',''),(9100,2709,'_completed_date',''),(9101,2709,'_date_paid','1554843535'),(9102,2709,'_paid_date','2019-04-09 20:58:55'),(9103,2709,'_cart_hash','546dd3bd4cd64363b21b8622623fdc33'),(9104,2709,'_billing_first_name','Malgorzata'),(9105,2709,'_billing_last_name','Chalupka'),(9106,2709,'_billing_company',''),(9107,2709,'_billing_address_1','6 St. Cuthberts Drive'),(9108,2709,'_billing_address_2',''),(9109,2709,'_billing_city','Gateshead'),(9110,2709,'_billing_state',''),(9111,2709,'_billing_postcode','NE10 9AA'),(9112,2709,'_billing_country','GB'),(9113,2709,'_billing_email','endrugosa@o2.pl'),(9114,2709,'_billing_phone','07704907599'),(9115,2709,'_shipping_first_name',''),(9116,2709,'_shipping_last_name',''),(9117,2709,'_shipping_company',''),(9118,2709,'_shipping_address_1',''),(9119,2709,'_shipping_address_2',''),(9120,2709,'_shipping_city',''),(9121,2709,'_shipping_state',''),(9122,2709,'_shipping_postcode',''),(9123,2709,'_shipping_country',''),(9124,2709,'_order_currency','GBP'),(9125,2709,'_cart_discount','0'),(9126,2709,'_cart_discount_tax','0'),(9127,2709,'_order_shipping','0.00'),(9128,2709,'_order_shipping_tax','0'),(9129,2709,'_order_tax','0'),(9130,2709,'_order_total','10.00'),(9131,2709,'_order_version','3.5.3'),(9132,2709,'_prices_include_tax','no'),(9133,2709,'_billing_address_index','Malgorzata Chalupka  6 St. Cuthberts Drive  Gateshead  NE10 9AA GB endrugosa@o2.pl 07704907599'),(9134,2709,'_shipping_address_index','         07704907599'),(9135,2709,'Payment type','instant'),(9136,2709,'_paypal_status','completed'),(9137,2709,'_download_permissions_granted','yes'),(9138,2709,'_recorded_sales','yes'),(9139,2709,'_recorded_coupon_usage_counts','yes'),(9140,2709,'_order_stock_reduced','yes'),(9141,2709,'PayPal Transaction Fee','0.54'),(9142,2710,'_order_key','wc_order_5cad1125834d7'),(9143,2710,'_customer_user','0'),(9144,2710,'_payment_method','paypal'),(9145,2710,'_payment_method_title','PayPal'),(9146,2710,'_transaction_id','90A54340X9068005H'),(9147,2710,'_customer_ip_address','146.200.148.83'),(9148,2710,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; SM-A320FL Build/R16NW; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/72.0.3626.121 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/214.0.0.43.83;]'),(9149,2710,'_created_via','checkout'),(9150,2710,'_date_completed',''),(9151,2710,'_completed_date',''),(9152,2710,'_date_paid','1554846027'),(9153,2710,'_paid_date','2019-04-09 21:40:27'),(9154,2710,'_cart_hash','b45ad56e60c72d29ad8aa42bd0de7a3e'),(9155,2710,'_billing_first_name','Gemma'),(9156,2710,'_billing_last_name','Chaytor'),(9157,2710,'_billing_company',''),(9158,2710,'_billing_address_1','29 Roxburgh Close'),(9159,2710,'_billing_address_2',''),(9160,2710,'_billing_city','Seaton Delaval'),(9161,2710,'_billing_state','Tyne and Wear'),(9162,2710,'_billing_postcode','NE25 0FG'),(9163,2710,'_billing_country','GB'),(9164,2710,'_billing_email','gemma.chaytor@hotmail.com'),(9165,2710,'_billing_phone','07972736452'),(9166,2710,'_shipping_first_name',''),(9167,2710,'_shipping_last_name',''),(9168,2710,'_shipping_company',''),(9169,2710,'_shipping_address_1',''),(9170,2710,'_shipping_address_2',''),(9171,2710,'_shipping_city',''),(9172,2710,'_shipping_state',''),(9173,2710,'_shipping_postcode',''),(9174,2710,'_shipping_country',''),(9175,2710,'_order_currency','GBP'),(9176,2710,'_cart_discount','0'),(9177,2710,'_cart_discount_tax','0'),(9178,2710,'_order_shipping','0.00'),(9179,2710,'_order_shipping_tax','0'),(9180,2710,'_order_tax','0'),(9181,2710,'_order_total','20.00'),(9182,2710,'_order_version','3.5.3'),(9183,2710,'_prices_include_tax','no'),(9184,2710,'_billing_address_index','Gemma Chaytor  29 Roxburgh Close  Seaton Delaval Tyne and Wear NE25 0FG GB gemma.chaytor@hotmail.com 07972736452'),(9185,2710,'_shipping_address_index','         07972736452'),(9186,2710,'Payment type','instant'),(9187,2710,'_paypal_status','completed'),(9188,2710,'_download_permissions_granted','yes'),(9189,2710,'_recorded_sales','yes'),(9190,2710,'_recorded_coupon_usage_counts','yes'),(9191,2710,'_order_stock_reduced','yes'),(9304,2710,'_paypal_transaction_fee','0.88'),(9194,2718,'_edit_last','1'),(9195,2719,'_wp_attached_file','2019/04/dealing-with-difficult-people-and-children.jpg'),(9196,2719,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:54:\"2019/04/dealing-with-difficult-people-and-children.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"dealing-with-difficult-people-and-children-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"dealing-with-difficult-people-and-children-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:54:\"dealing-with-difficult-people-and-children-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:53:\"dealing-with-difficult-people-and-children-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:54:\"dealing-with-difficult-people-and-children-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:54:\"dealing-with-difficult-people-and-children-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:54:\"dealing-with-difficult-people-and-children-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:54:\"dealing-with-difficult-people-and-children-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:54:\"dealing-with-difficult-people-and-children-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:54:\"dealing-with-difficult-people-and-children-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:54:\"dealing-with-difficult-people-and-children-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:54:\"dealing-with-difficult-people-and-children-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:54:\"dealing-with-difficult-people-and-children-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:54:\"dealing-with-difficult-people-and-children-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:54:\"dealing-with-difficult-people-and-children-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:54:\"dealing-with-difficult-people-and-children-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 50D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"60\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9197,2719,'_wp_attachment_image_alt','dealing with difficult people and children'),(9198,2718,'_wp_page_template','default'),(9199,2718,'_responsive_layout','default'),(9200,2718,'_yoast_wpseo_content_score','60'),(9201,2718,'_yoast_wpseo_focuskw','Dealing With Difficult People Children'),(9202,2718,'_yoast_wpseo_metadesc','Dealing With Difficult People & Children is part of The Secret Workshops. Learn to improve your communication skills and enjoy better relationships'),(9203,2718,'_yoast_wpseo_linkdex','71'),(9204,2732,'_wc_review_count','0'),(9205,2732,'_wc_rating_count','a:0:{}'),(9206,2732,'_wc_average_rating','0'),(9207,2732,'_edit_lock','1568382137:1'),(9208,2732,'_edit_last','1'),(9209,2732,'_sku',''),(9210,2732,'_regular_price','15'),(9211,2732,'_sale_price',''),(9212,2732,'_sale_price_dates_from',''),(9213,2732,'_sale_price_dates_to',''),(9214,2732,'total_sales','10'),(9215,2732,'_tax_status','none'),(9216,2732,'_tax_class','zero-rate'),(9217,2732,'_manage_stock','yes'),(9218,2732,'_backorders','no'),(9219,2732,'_low_stock_amount',''),(9220,2732,'_sold_individually','no'),(9221,2732,'_weight',''),(9222,2732,'_length',''),(9223,2732,'_width',''),(9224,2732,'_height',''),(9225,2732,'_upsell_ids','a:0:{}'),(9226,2732,'_crosssell_ids','a:0:{}'),(9227,2732,'_purchase_note',''),(9228,2732,'_default_attributes','a:0:{}'),(9229,2732,'_virtual','no'),(9230,2732,'_downloadable','no'),(9231,2732,'_product_image_gallery',''),(9232,2732,'_download_limit','-1'),(9233,2732,'_download_expiry','-1'),(9234,2732,'_stock','13'),(9235,2732,'_stock_status','instock'),(9236,2732,'_product_version','3.7.0'),(9237,2732,'_price','15'),(9238,2732,'_yoast_wpseo_primary_product_cat','48'),(9239,2732,'_yoast_wpseo_content_score','90'),(9240,2732,'_thumbnail_id','2719'),(9241,2733,'_menu_item_type','post_type'),(9242,2733,'_menu_item_menu_item_parent','804'),(9243,2733,'_menu_item_object_id','2718'),(9244,2733,'_menu_item_object','page'),(9245,2733,'_menu_item_target',''),(9246,2733,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9247,2733,'_menu_item_xfn',''),(9248,2733,'_menu_item_url',''),(9250,2735,'_order_key','wc_order_5cb45e14a6483'),(9251,2735,'_customer_user','0'),(9252,2735,'_payment_method','paypal'),(9253,2735,'_payment_method_title','PayPal'),(9254,2735,'_transaction_id','7FW61723N0895144U'),(9255,2735,'_customer_ip_address','92.22.72.18'),(9256,2735,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1 Mobile/15E148 Safari/604.1'),(9257,2735,'_created_via','checkout'),(9258,2735,'_date_completed',''),(9259,2735,'_completed_date',''),(9260,2735,'_date_paid','1555324528'),(9261,2735,'_paid_date','2019-04-15 10:35:28'),(9262,2735,'_cart_hash','249a3f4d4832e893bbc6a645ecc2b86b'),(9263,2735,'_billing_first_name','Zoe'),(9264,2735,'_billing_last_name','Burnip'),(9265,2735,'_billing_company',''),(9266,2735,'_billing_address_1','5 The Acres'),(9267,2735,'_billing_address_2',''),(9268,2735,'_billing_city','Wallsend'),(9269,2735,'_billing_state',''),(9270,2735,'_billing_postcode','NE28 7RQ'),(9271,2735,'_billing_country','GB'),(9272,2735,'_billing_email','zoe.burnip1@sky.com'),(9273,2735,'_billing_phone','+447592829813'),(9274,2735,'_shipping_first_name',''),(9275,2735,'_shipping_last_name',''),(9276,2735,'_shipping_company',''),(9277,2735,'_shipping_address_1',''),(9278,2735,'_shipping_address_2',''),(9279,2735,'_shipping_city',''),(9280,2735,'_shipping_state',''),(9281,2735,'_shipping_postcode',''),(9282,2735,'_shipping_country',''),(9283,2735,'_order_currency','GBP'),(9284,2735,'_cart_discount','0'),(9285,2735,'_cart_discount_tax','0'),(9286,2735,'_order_shipping','0.00'),(9287,2735,'_order_shipping_tax','0'),(9288,2735,'_order_tax','0'),(9289,2735,'_order_total','10.00'),(9290,2735,'_order_version','3.5.3'),(9291,2735,'_prices_include_tax','no'),(9292,2735,'_billing_address_index','Zoe Burnip  5 The Acres  Wallsend  NE28 7RQ GB zoe.burnip1@sky.com +447592829813'),(9293,2735,'_shipping_address_index','         +447592829813'),(9294,2735,'Payment type','instant'),(9295,2735,'_paypal_status','completed'),(9296,2735,'_download_permissions_granted','yes'),(9297,2735,'_recorded_sales','yes'),(9298,2735,'_recorded_coupon_usage_counts','yes'),(9299,2735,'_order_stock_reduced','yes'),(9302,2735,'_paypal_transaction_fee','0.54'),(9301,2735,'_edit_lock','1555436991:1'),(9303,2710,'_edit_lock','1555437003:1'),(9307,2732,'_wpas_done_all','1'),(9306,2732,'_wp_old_date','2019-04-11'),(9308,2766,'_order_key','wc_order_5cbde7ae59b54'),(9309,2766,'_customer_user','0'),(9310,2766,'_payment_method','bacs'),(9311,2766,'_payment_method_title','Direct bank transfer'),(9312,2766,'_transaction_id',''),(9313,2766,'_customer_ip_address','80.189.250.193'),(9314,2766,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 12_0_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/16A404 [FBAN/FBIOS;FBDV/iPad5,3;FBMD/iPad;FBSN/iOS;FBSV/12.0.1;FBSS/2;FBCR/;FBID/tablet;FBLC/en_GB;FBOP/5]'),(9315,2766,'_created_via','checkout'),(9316,2766,'_date_completed',''),(9317,2766,'_completed_date',''),(9318,2766,'_date_paid',''),(9319,2766,'_paid_date',''),(9320,2766,'_cart_hash','4a1e90b3ceff1f9af932bf20199643d3'),(9321,2766,'_billing_first_name','Jennifer'),(9322,2766,'_billing_last_name','Bradley'),(9323,2766,'_billing_company',''),(9324,2766,'_billing_address_1','4 Dene Terrace'),(9325,2766,'_billing_address_2',''),(9326,2766,'_billing_city','Riding Mill'),(9327,2766,'_billing_state',''),(9328,2766,'_billing_postcode','NE44 6HJ'),(9329,2766,'_billing_country','GB'),(9330,2766,'_billing_email','jennifer-bradley@hotmail.com'),(9331,2766,'_billing_phone','07964944690'),(9332,2766,'_shipping_first_name',''),(9333,2766,'_shipping_last_name',''),(9334,2766,'_shipping_company',''),(9335,2766,'_shipping_address_1',''),(9336,2766,'_shipping_address_2',''),(9337,2766,'_shipping_city',''),(9338,2766,'_shipping_state',''),(9339,2766,'_shipping_postcode',''),(9340,2766,'_shipping_country',''),(9341,2766,'_order_currency','GBP'),(9342,2766,'_cart_discount','0'),(9343,2766,'_cart_discount_tax','0'),(9344,2766,'_order_shipping','0.00'),(9345,2766,'_order_shipping_tax','0'),(9346,2766,'_order_tax','0'),(9347,2766,'_order_total','10.00'),(9348,2766,'_order_version','3.5.3'),(9349,2766,'_prices_include_tax','no'),(9350,2766,'_billing_address_index','Jennifer Bradley  4 Dene Terrace  Riding Mill  NE44 6HJ GB jennifer-bradley@hotmail.com 07964944690'),(9351,2766,'_shipping_address_index','         07964944690'),(9352,2766,'_recorded_sales','yes'),(9353,2766,'_recorded_coupon_usage_counts','yes'),(9354,2766,'_order_stock_reduced','yes'),(9355,106,'_responsive_layout','default'),(9356,2769,'_wp_attached_file','2019/04/newcastle-hypnotherapy-for-stress-management.jpg'),(9357,2769,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:717;s:4:\"file\";s:56:\"2019/04/newcastle-hypnotherapy-for-stress-management.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"newcastle-hypnotherapy-for-stress-management-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"newcastle-hypnotherapy-for-stress-management-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:56:\"newcastle-hypnotherapy-for-stress-management-768x574.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:55:\"newcastle-hypnotherapy-for-stress-management-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:56:\"newcastle-hypnotherapy-for-stress-management-150x112.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:56:\"newcastle-hypnotherapy-for-stress-management-200x149.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:149;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:56:\"newcastle-hypnotherapy-for-stress-management-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:56:\"newcastle-hypnotherapy-for-stress-management-450x336.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:56:\"newcastle-hypnotherapy-for-stress-management-600x448.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:448;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:56:\"newcastle-hypnotherapy-for-stress-management-900x672.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:56:\"newcastle-hypnotherapy-for-stress-management-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:56:\"newcastle-hypnotherapy-for-stress-management-400x299.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:299;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:56:\"newcastle-hypnotherapy-for-stress-management-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:56:\"newcastle-hypnotherapy-for-stress-management-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:56:\"newcastle-hypnotherapy-for-stress-management-400x299.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:299;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:56:\"newcastle-hypnotherapy-for-stress-management-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9358,2769,'_wp_attachment_image_alt','newcastle hypnotherapy for stress management'),(9359,2794,'_order_key','wc_order_5cbe023eb0dee'),(9360,2794,'_customer_user','0'),(9361,2794,'_payment_method','paypal'),(9362,2794,'_payment_method_title','PayPal'),(9363,2794,'_transaction_id','5XN77798AX3972024'),(9364,2794,'_customer_ip_address','80.5.200.72'),(9365,2794,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [FBAN/FBIOS;FBDV/iPhone10,4;FBMD/iPhone;FBSN/iOS;FBSV/12.2;FBSS/2;FBCR/EE;FBID/phone;FBLC/en_GB;FBOP/5]'),(9366,2794,'_created_via','checkout'),(9367,2794,'_date_completed',''),(9368,2794,'_completed_date',''),(9369,2794,'_date_paid','1555956347'),(9370,2794,'_paid_date','2019-04-22 18:05:47'),(9371,2794,'_cart_hash','4a1e90b3ceff1f9af932bf20199643d3'),(9372,2794,'_billing_first_name','Malgorzata'),(9373,2794,'_billing_last_name','Chalupka'),(9374,2794,'_billing_company',''),(9375,2794,'_billing_address_1','6 St. Cuthberts Drive'),(9376,2794,'_billing_address_2',''),(9377,2794,'_billing_city','Gateshead'),(9378,2794,'_billing_state',''),(9379,2794,'_billing_postcode','NE10 9AA'),(9380,2794,'_billing_country','GB'),(9381,2794,'_billing_email','endrugosa@o2.pl'),(9382,2794,'_billing_phone','07704907599'),(9383,2794,'_shipping_first_name',''),(9384,2794,'_shipping_last_name',''),(9385,2794,'_shipping_company',''),(9386,2794,'_shipping_address_1',''),(9387,2794,'_shipping_address_2',''),(9388,2794,'_shipping_city',''),(9389,2794,'_shipping_state',''),(9390,2794,'_shipping_postcode',''),(9391,2794,'_shipping_country',''),(9392,2794,'_order_currency','GBP'),(9393,2794,'_cart_discount','0'),(9394,2794,'_cart_discount_tax','0'),(9395,2794,'_order_shipping','0.00'),(9396,2794,'_order_shipping_tax','0'),(9397,2794,'_order_tax','0'),(9398,2794,'_order_total','10.00'),(9399,2794,'_order_version','3.5.3'),(9400,2794,'_prices_include_tax','no'),(9401,2794,'_billing_address_index','Malgorzata Chalupka  6 St. Cuthberts Drive  Gateshead  NE10 9AA GB endrugosa@o2.pl 07704907599'),(9402,2794,'_shipping_address_index','         07704907599'),(9403,2794,'Payment type','instant'),(9404,2794,'_paypal_status','completed'),(9405,2794,'_download_permissions_granted','yes'),(9406,2794,'_recorded_sales','yes'),(9407,2794,'_recorded_coupon_usage_counts','yes'),(9408,2794,'_order_stock_reduced','yes'),(9409,2794,'PayPal Transaction Fee','0.54'),(9410,2806,'_order_key','wc_order_5cc0c68635808'),(9411,2806,'_customer_user','0'),(9412,2806,'_payment_method','paypal'),(9413,2806,'_payment_method_title','PayPal'),(9414,2806,'_transaction_id','7LB06970P0380513Y'),(9415,2806,'_customer_ip_address','146.200.148.83'),(9416,2806,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A320FL Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36'),(9417,2806,'_created_via','checkout'),(9418,2806,'_date_completed',''),(9419,2806,'_completed_date',''),(9420,2806,'_date_paid','1556137659'),(9421,2806,'_paid_date','2019-04-24 20:27:39'),(9422,2806,'_cart_hash','50f2db5cf6d2dbed26c2ddfd5ca4e680'),(9423,2806,'_billing_first_name','Gemma'),(9424,2806,'_billing_last_name','Chaytor'),(9425,2806,'_billing_company',''),(9426,2806,'_billing_address_1','29'),(9427,2806,'_billing_address_2','Roxburgh Close'),(9428,2806,'_billing_city','Seaton Delaval'),(9429,2806,'_billing_state','Tyne and Wear'),(9430,2806,'_billing_postcode','NE25 0FG'),(9431,2806,'_billing_country','GB'),(9432,2806,'_billing_email','gemma.chaytor@hotmail.com'),(9433,2806,'_billing_phone','07972736452'),(9434,2806,'_shipping_first_name',''),(9435,2806,'_shipping_last_name',''),(9436,2806,'_shipping_company',''),(9437,2806,'_shipping_address_1',''),(9438,2806,'_shipping_address_2',''),(9439,2806,'_shipping_city',''),(9440,2806,'_shipping_state',''),(9441,2806,'_shipping_postcode',''),(9442,2806,'_shipping_country',''),(9443,2806,'_order_currency','GBP'),(9444,2806,'_cart_discount','0'),(9445,2806,'_cart_discount_tax','0'),(9446,2806,'_order_shipping','0.00'),(9447,2806,'_order_shipping_tax','0'),(9448,2806,'_order_tax','0'),(9449,2806,'_order_total','20.00'),(9450,2806,'_order_version','3.5.3'),(9451,2806,'_prices_include_tax','no'),(9452,2806,'_billing_address_index','Gemma Chaytor  29 Roxburgh Close Seaton Delaval Tyne and Wear NE25 0FG GB gemma.chaytor@hotmail.com 07972736452'),(9453,2806,'_shipping_address_index','         07972736452'),(9454,2806,'Payment type','instant'),(9455,2806,'_paypal_status','completed'),(9456,2806,'_download_permissions_granted','yes'),(9457,2806,'_recorded_sales','yes'),(9458,2806,'_recorded_coupon_usage_counts','yes'),(9459,2806,'_order_stock_reduced','yes'),(9460,2806,'PayPal Transaction Fee','0.88'),(9461,2807,'_order_key','wc_order_5cc1ad013a68b'),(9462,2807,'_customer_user','0'),(9463,2807,'_payment_method','bacs'),(9464,2807,'_payment_method_title','Direct bank transfer'),(9465,2807,'_transaction_id',''),(9466,2807,'_customer_ip_address','80.2.20.141'),(9467,2807,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A600FN Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/9.2 Chrome/67.0.3396.87 Mobile Safari/537.36'),(9468,2807,'_created_via','checkout'),(9469,2807,'_date_completed',''),(9470,2807,'_completed_date',''),(9471,2807,'_date_paid',''),(9472,2807,'_paid_date',''),(9473,2807,'_cart_hash','4a1e90b3ceff1f9af932bf20199643d3'),(9474,2807,'_billing_first_name','Dianne'),(9475,2807,'_billing_last_name','Waldron'),(9476,2807,'_billing_company',''),(9477,2807,'_billing_address_1','23 Tynevale Terrace'),(9478,2807,'_billing_address_2','Lemington'),(9479,2807,'_billing_city','Newcastle upon Tyne'),(9480,2807,'_billing_state',''),(9481,2807,'_billing_postcode','NE15 8EJ'),(9482,2807,'_billing_country','GB'),(9483,2807,'_billing_email','diannewaldron@tiscali.co.uk'),(9484,2807,'_billing_phone','07931225635'),(9485,2807,'_shipping_first_name',''),(9486,2807,'_shipping_last_name',''),(9487,2807,'_shipping_company',''),(9488,2807,'_shipping_address_1',''),(9489,2807,'_shipping_address_2',''),(9490,2807,'_shipping_city',''),(9491,2807,'_shipping_state',''),(9492,2807,'_shipping_postcode',''),(9493,2807,'_shipping_country',''),(9494,2807,'_order_currency','GBP'),(9495,2807,'_cart_discount','0'),(9496,2807,'_cart_discount_tax','0'),(9497,2807,'_order_shipping','0.00'),(9498,2807,'_order_shipping_tax','0'),(9499,2807,'_order_tax','0'),(9500,2807,'_order_total','10.00'),(9501,2807,'_order_version','3.5.3'),(9502,2807,'_prices_include_tax','no'),(9503,2807,'_billing_address_index','Dianne Waldron  23 Tynevale Terrace Lemington Newcastle upon Tyne  NE15 8EJ GB diannewaldron@tiscali.co.uk 07931225635'),(9504,2807,'_shipping_address_index','         07931225635'),(9505,2807,'_recorded_sales','yes'),(9506,2807,'_recorded_coupon_usage_counts','yes'),(9507,2807,'_order_stock_reduced','yes'),(9508,2808,'_order_key','wc_order_5cc60609ca171'),(9509,2808,'_customer_user','0'),(9510,2808,'_payment_method','bacs'),(9511,2808,'_payment_method_title','Direct bank transfer'),(9512,2808,'_transaction_id',''),(9513,2808,'_customer_ip_address','81.108.45.105'),(9514,2808,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 10_1_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B100 Safari/602.1'),(9515,2808,'_created_via','checkout'),(9516,2808,'_date_completed',''),(9517,2808,'_completed_date',''),(9518,2808,'_date_paid',''),(9519,2808,'_paid_date',''),(9520,2808,'_cart_hash','4a1e90b3ceff1f9af932bf20199643d3'),(9521,2808,'_billing_first_name','Sharron'),(9522,2808,'_billing_last_name','Phillips'),(9523,2808,'_billing_company',''),(9524,2808,'_billing_address_1','2'),(9525,2808,'_billing_address_2','Summerhill'),(9526,2808,'_billing_city','BLaydon'),(9527,2808,'_billing_state','Tyne and Wear'),(9528,2808,'_billing_postcode','NE21 4JS'),(9529,2808,'_billing_country','GB'),(9530,2808,'_billing_email','sharron.phillips@hotmail.co.uk'),(9531,2808,'_billing_phone','07801292220'),(9532,2808,'_shipping_first_name',''),(9533,2808,'_shipping_last_name',''),(9534,2808,'_shipping_company',''),(9535,2808,'_shipping_address_1',''),(9536,2808,'_shipping_address_2',''),(9537,2808,'_shipping_city',''),(9538,2808,'_shipping_state',''),(9539,2808,'_shipping_postcode',''),(9540,2808,'_shipping_country',''),(9541,2808,'_order_currency','GBP'),(9542,2808,'_cart_discount','0'),(9543,2808,'_cart_discount_tax','0'),(9544,2808,'_order_shipping','0.00'),(9545,2808,'_order_shipping_tax','0'),(9546,2808,'_order_tax','0'),(9547,2808,'_order_total','10.00'),(9548,2808,'_order_version','3.5.3'),(9549,2808,'_prices_include_tax','no'),(9550,2808,'_billing_address_index','Sharron Phillips  2 Summerhill BLaydon Tyne and Wear NE21 4JS GB sharron.phillips@hotmail.co.uk 07801292220'),(9551,2808,'_shipping_address_index','         07801292220'),(9552,2808,'_recorded_sales','yes'),(9553,2808,'_recorded_coupon_usage_counts','yes'),(9554,2808,'_order_stock_reduced','yes'),(9555,2809,'_order_key','wc_order_5cc77bb206516'),(9556,2809,'_customer_user','0'),(9557,2809,'_payment_method','paypal'),(9558,2809,'_payment_method_title','PayPal'),(9559,2809,'_transaction_id',''),(9560,2809,'_customer_ip_address','2.126.237.153'),(9561,2809,'_customer_user_agent','Mozilla/5.0 (Linux; Android 9; SM-G960F Build/PPR1.180610.011; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/73.0.3683.90 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/218.0.0.46.109;]'),(9562,2809,'_created_via','checkout'),(9563,2809,'_date_completed',''),(9564,2809,'_completed_date',''),(9565,2809,'_date_paid',''),(9566,2809,'_paid_date',''),(9567,2809,'_cart_hash','4a1e90b3ceff1f9af932bf20199643d3'),(9568,2809,'_billing_first_name','Victoria'),(9569,2809,'_billing_last_name','Snowdon'),(9570,2809,'_billing_company',''),(9571,2809,'_billing_address_1','38 The Acres'),(9572,2809,'_billing_address_2',''),(9573,2809,'_billing_city','Wallsend'),(9574,2809,'_billing_state',''),(9575,2809,'_billing_postcode','NE28 7RQ'),(9576,2809,'_billing_country','GB'),(9577,2809,'_billing_email','v_snowdon@hotmail.com'),(9578,2809,'_billing_phone','07903675095'),(9579,2809,'_shipping_first_name',''),(9580,2809,'_shipping_last_name',''),(9581,2809,'_shipping_company',''),(9582,2809,'_shipping_address_1',''),(9583,2809,'_shipping_address_2',''),(9584,2809,'_shipping_city',''),(9585,2809,'_shipping_state',''),(9586,2809,'_shipping_postcode',''),(9587,2809,'_shipping_country',''),(9588,2809,'_order_currency','GBP'),(9589,2809,'_cart_discount','0'),(9590,2809,'_cart_discount_tax','0'),(9591,2809,'_order_shipping','0.00'),(9592,2809,'_order_shipping_tax','0'),(9593,2809,'_order_tax','0'),(9594,2809,'_order_total','10.00'),(9595,2809,'_order_version','3.5.3'),(9596,2809,'_prices_include_tax','no'),(9597,2809,'_billing_address_index','Victoria Snowdon  38 The Acres  Wallsend  NE28 7RQ GB v_snowdon@hotmail.com 07903675095'),(9598,2809,'_shipping_address_index','         07903675095'),(9599,2810,'_order_key','wc_order_5cc77c60bf95f'),(9600,2810,'_customer_user','0'),(9601,2810,'_payment_method','paypal'),(9602,2810,'_payment_method_title','PayPal'),(9603,2810,'_transaction_id',''),(9604,2810,'_customer_ip_address','2.126.237.153'),(9605,2810,'_customer_user_agent','Mozilla/5.0 (Linux; Android 9; SM-G960F Build/PPR1.180610.011; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/73.0.3683.90 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/218.0.0.46.109;]'),(9606,2810,'_created_via','checkout'),(9607,2810,'_date_completed',''),(9608,2810,'_completed_date',''),(9609,2810,'_date_paid',''),(9610,2810,'_paid_date',''),(9611,2810,'_cart_hash','50f2db5cf6d2dbed26c2ddfd5ca4e680'),(9612,2810,'_billing_first_name','Victoria'),(9613,2810,'_billing_last_name','Snowdon'),(9614,2810,'_billing_company',''),(9615,2810,'_billing_address_1','38 The Acres'),(9616,2810,'_billing_address_2',''),(9617,2810,'_billing_city','Wallsend'),(9618,2810,'_billing_state',''),(9619,2810,'_billing_postcode','NE28 7RQ'),(9620,2810,'_billing_country','GB'),(9621,2810,'_billing_email','v_snowdon@hotmail.com'),(9622,2810,'_billing_phone','07903675095'),(9623,2810,'_shipping_first_name',''),(9624,2810,'_shipping_last_name',''),(9625,2810,'_shipping_company',''),(9626,2810,'_shipping_address_1',''),(9627,2810,'_shipping_address_2',''),(9628,2810,'_shipping_city',''),(9629,2810,'_shipping_state',''),(9630,2810,'_shipping_postcode',''),(9631,2810,'_shipping_country',''),(9632,2810,'_order_currency','GBP'),(9633,2810,'_cart_discount','0'),(9634,2810,'_cart_discount_tax','0'),(9635,2810,'_order_shipping','0.00'),(9636,2810,'_order_shipping_tax','0'),(9637,2810,'_order_tax','0'),(9638,2810,'_order_total','20.00'),(9639,2810,'_order_version','3.5.3'),(9640,2810,'_prices_include_tax','no'),(9641,2810,'_billing_address_index','Victoria Snowdon  38 The Acres  Wallsend  NE28 7RQ GB v_snowdon@hotmail.com 07903675095'),(9642,2810,'_shipping_address_index','         07903675095'),(9643,2811,'_order_key','wc_order_5cc77ce15186a'),(9644,2811,'_customer_user','0'),(9645,2811,'_payment_method','paypal'),(9646,2811,'_payment_method_title','PayPal'),(9647,2811,'_transaction_id','8PX958614R848444T'),(9648,2811,'_customer_ip_address','2.126.237.153'),(9649,2811,'_customer_user_agent','Mozilla/5.0 (Linux; Android 9; SM-G960F Build/PPR1.180610.011; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/73.0.3683.90 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/218.0.0.46.109;]'),(9650,2811,'_created_via','checkout'),(9651,2811,'_date_completed',''),(9652,2811,'_completed_date',''),(9653,2811,'_date_paid','1556577546'),(9654,2811,'_paid_date','2019-04-29 22:39:06'),(9655,2811,'_cart_hash','4a1e90b3ceff1f9af932bf20199643d3'),(9656,2811,'_billing_first_name','Victoria'),(9657,2811,'_billing_last_name','Snowdon'),(9658,2811,'_billing_company',''),(9659,2811,'_billing_address_1','38 The Acres'),(9660,2811,'_billing_address_2',''),(9661,2811,'_billing_city','Wallsend'),(9662,2811,'_billing_state',''),(9663,2811,'_billing_postcode','NE28 7RQ'),(9664,2811,'_billing_country','GB'),(9665,2811,'_billing_email','v_snowdon@hotmail.com'),(9666,2811,'_billing_phone','07903675095'),(9667,2811,'_shipping_first_name',''),(9668,2811,'_shipping_last_name',''),(9669,2811,'_shipping_company',''),(9670,2811,'_shipping_address_1',''),(9671,2811,'_shipping_address_2',''),(9672,2811,'_shipping_city',''),(9673,2811,'_shipping_state',''),(9674,2811,'_shipping_postcode',''),(9675,2811,'_shipping_country',''),(9676,2811,'_order_currency','GBP'),(9677,2811,'_cart_discount','0'),(9678,2811,'_cart_discount_tax','0'),(9679,2811,'_order_shipping','0.00'),(9680,2811,'_order_shipping_tax','0'),(9681,2811,'_order_tax','0'),(9682,2811,'_order_total','10.00'),(9683,2811,'_order_version','3.5.3'),(9684,2811,'_prices_include_tax','no'),(9685,2811,'_billing_address_index','Victoria Snowdon  38 The Acres  Wallsend  NE28 7RQ GB v_snowdon@hotmail.com 07903675095'),(9686,2811,'_shipping_address_index','         07903675095'),(9687,2811,'Payment type','instant'),(9688,2811,'_paypal_status','completed'),(9689,2811,'_download_permissions_granted','yes'),(9690,2811,'_recorded_sales','yes'),(9691,2811,'_recorded_coupon_usage_counts','yes'),(9692,2811,'_order_stock_reduced','yes'),(9742,2811,'_paypal_transaction_fee','0.54'),(9694,2812,'_order_key','wc_order_5cc8651e28677'),(9695,2812,'_customer_user','0'),(9696,2812,'_payment_method','bacs'),(9697,2812,'_payment_method_title','Direct bank transfer'),(9698,2812,'_transaction_id',''),(9699,2812,'_customer_ip_address','77.96.213.44'),(9700,2812,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36'),(9701,2812,'_created_via','checkout'),(9702,2812,'_date_completed',''),(9703,2812,'_completed_date',''),(9704,2812,'_date_paid',''),(9705,2812,'_paid_date',''),(9706,2812,'_cart_hash','50f2db5cf6d2dbed26c2ddfd5ca4e680'),(9707,2812,'_billing_first_name','Heather'),(9708,2812,'_billing_last_name','Vaulkhard'),(9709,2812,'_billing_company','Nertherton Park Stables'),(9710,2812,'_billing_address_1','St, George\'s Lodge'),(9711,2812,'_billing_address_2','1 Adderstone Crescent , Jesmond'),(9712,2812,'_billing_city','Newcastle upon Tyne'),(9713,2812,'_billing_state','Tyne and Wear'),(9714,2812,'_billing_postcode','NE2 2HH'),(9715,2812,'_billing_country','GB'),(9716,2812,'_billing_email','heathervaulkhard@me.com'),(9717,2812,'_billing_phone','07714299942'),(9718,2812,'_shipping_first_name',''),(9719,2812,'_shipping_last_name',''),(9720,2812,'_shipping_company',''),(9721,2812,'_shipping_address_1',''),(9722,2812,'_shipping_address_2',''),(9723,2812,'_shipping_city',''),(9724,2812,'_shipping_state',''),(9725,2812,'_shipping_postcode',''),(9726,2812,'_shipping_country',''),(9727,2812,'_order_currency','GBP'),(9728,2812,'_cart_discount','0'),(9729,2812,'_cart_discount_tax','0'),(9730,2812,'_order_shipping','0.00'),(9731,2812,'_order_shipping_tax','0'),(9732,2812,'_order_tax','0'),(9733,2812,'_order_total','20.00'),(9734,2812,'_order_version','3.5.3'),(9735,2812,'_prices_include_tax','no'),(9736,2812,'_billing_address_index','Heather Vaulkhard Nertherton Park Stables St, George\'s Lodge 1 Adderstone Crescent , Jesmond Newcastle upon Tyne Tyne and Wear NE2 2HH GB heathervaulkhard@me.com 07714299942'),(9737,2812,'_shipping_address_index','         07714299942'),(9738,2812,'_recorded_sales','yes'),(9739,2812,'_recorded_coupon_usage_counts','yes'),(9740,2812,'_order_stock_reduced','yes'),(9741,2811,'_edit_lock','1556786807:1'),(9743,2813,'_edit_lock','1568386066:1'),(9744,2813,'_edit_last','1'),(9745,2813,'_wp_page_template','default'),(9746,2813,'_responsive_layout','default'),(9747,2813,'_yoast_wpseo_content_score','60'),(9748,2819,'_wp_attached_file','2019/05/deep-relaxation-mind-body-techniques.jpg'),(9749,2819,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:638;s:4:\"file\";s:48:\"2019/05/deep-relaxation-mind-body-techniques.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"deep-relaxation-mind-body-techniques-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"deep-relaxation-mind-body-techniques-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"deep-relaxation-mind-body-techniques-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:47:\"deep-relaxation-mind-body-techniques-100x66.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:48:\"deep-relaxation-mind-body-techniques-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:48:\"deep-relaxation-mind-body-techniques-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:48:\"deep-relaxation-mind-body-techniques-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:48:\"deep-relaxation-mind-body-techniques-450x299.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:299;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:48:\"deep-relaxation-mind-body-techniques-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:48:\"deep-relaxation-mind-body-techniques-900x598.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:598;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"deep-relaxation-mind-body-techniques-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"deep-relaxation-mind-body-techniques-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"deep-relaxation-mind-body-techniques-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"deep-relaxation-mind-body-techniques-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"deep-relaxation-mind-body-techniques-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"deep-relaxation-mind-body-techniques-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9750,2819,'_wp_attachment_image_alt','deep relaxation mind & body techniques'),(9751,2813,'_yoast_wpseo_focuskw','Deep Relaxation Mind & Body Techniques'),(9752,2813,'_yoast_wpseo_linkdex','65'),(9753,2813,'_yoast_wpseo_title','The Secrets Of Deep Relaxation Workshop'),(9754,2813,'_yoast_wpseo_metadesc','Deep Relaxation Mind & Body Techniques Workshop. Learn self-hypnosis & NLP skills to improve your relaxation, meditation, happiness & health'),(10781,3034,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(10780,3034,'_menu_item_target',''),(10779,3034,'_menu_item_object','page'),(10778,3034,'_menu_item_object_id','2989'),(10777,3034,'_menu_item_menu_item_parent','804'),(10776,3034,'_menu_item_type','post_type'),(9789,2836,'_tax_class','zero-rate'),(9788,2836,'_tax_status','none'),(9787,2836,'total_sales','12'),(9786,2836,'_sale_price_dates_to',''),(9785,2836,'_sale_price_dates_from',''),(9784,2836,'_sale_price',''),(9782,2836,'_sku',''),(9783,2836,'_regular_price','15'),(9773,2835,'_menu_item_type','post_type'),(9774,2835,'_menu_item_menu_item_parent','804'),(9775,2835,'_menu_item_object_id','2813'),(9776,2835,'_menu_item_object','page'),(9777,2835,'_menu_item_target',''),(9778,2835,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9779,2835,'_menu_item_xfn',''),(9780,2835,'_menu_item_url',''),(9790,2836,'_manage_stock','no'),(9791,2836,'_backorders','no'),(9792,2836,'_low_stock_amount',''),(9793,2836,'_sold_individually','no'),(9794,2836,'_weight',''),(9795,2836,'_length',''),(9796,2836,'_width',''),(9797,2836,'_height',''),(9798,2836,'_upsell_ids','a:0:{}'),(9799,2836,'_crosssell_ids','a:0:{}'),(9800,2836,'_purchase_note',''),(9801,2836,'_default_attributes','a:0:{}'),(9802,2836,'_virtual','no'),(9803,2836,'_downloadable','no'),(9804,2836,'_product_image_gallery',''),(9805,2836,'_download_limit','-1'),(9806,2836,'_download_expiry','-1'),(11342,3148,'_order_key','wc_order_5d74d1980dc1f'),(9808,2836,'_stock',NULL),(9809,2836,'_stock_status','instock'),(9810,2836,'_wc_average_rating','0'),(9811,2836,'_wc_rating_count','a:0:{}'),(9812,2836,'_wc_review_count','0'),(9813,2836,'_downloadable_files','a:0:{}'),(9814,2836,'_product_attributes','a:0:{}'),(9815,2836,'_product_version','3.5.3'),(9816,2836,'_price','15'),(9817,2836,'_yoast_wpseo_primary_product_cat',''),(9818,2836,'_yoast_wpseo_content_score','30'),(9819,2836,'_wpas_done_all','1'),(9820,2836,'_edit_lock','1567941727:1'),(9821,2836,'_edit_last','1'),(9823,1618,'_low_stock_amount',''),(9824,1616,'_low_stock_amount',''),(9825,1614,'_low_stock_amount',''),(9826,1612,'_low_stock_amount',''),(9827,1593,'_low_stock_amount',''),(9828,1591,'_low_stock_amount',''),(9829,2838,'_order_key','wc_order_5cd0675233170'),(9830,2838,'_customer_user','0'),(9831,2838,'_payment_method','paypal'),(9832,2838,'_payment_method_title','PayPal'),(9833,2838,'_transaction_id','8E944560TH249145M'),(9834,2838,'_customer_ip_address','82.132.220.249'),(9835,2838,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; FIG-LX1 Build/HUAWEIFIG-LX1; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/74.0.3729.136 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/219.0.0.46.114;]'),(9836,2838,'_created_via','checkout'),(9837,2838,'_date_completed',''),(9838,2838,'_completed_date',''),(9839,2838,'_date_paid','1557161866'),(9840,2838,'_paid_date','2019-05-06 16:57:46'),(9841,2838,'_cart_hash','ffd306ba866d233ea043d33ebf11c9dc'),(9842,2838,'_billing_first_name','Siggi'),(9843,2838,'_billing_last_name','Fritsch'),(9844,2838,'_billing_company',''),(9845,2838,'_billing_address_1','42 Ewen Court'),(9846,2838,'_billing_address_2',''),(9847,2838,'_billing_city','North Shields'),(9848,2838,'_billing_state',''),(9849,2838,'_billing_postcode','NE29 8HA'),(9850,2838,'_billing_country','GB'),(9851,2838,'_billing_email','siggi.fritsch@yahoo.co.uk'),(9852,2838,'_billing_phone','07881478818'),(9853,2838,'_shipping_first_name',''),(9854,2838,'_shipping_last_name',''),(9855,2838,'_shipping_company',''),(9856,2838,'_shipping_address_1',''),(9857,2838,'_shipping_address_2',''),(9858,2838,'_shipping_city',''),(9859,2838,'_shipping_state',''),(9860,2838,'_shipping_postcode',''),(9861,2838,'_shipping_country',''),(9862,2838,'_order_currency','GBP'),(9863,2838,'_cart_discount','0'),(9864,2838,'_cart_discount_tax','0'),(9865,2838,'_order_shipping','0.00'),(9866,2838,'_order_shipping_tax','0'),(9867,2838,'_order_tax','0'),(9868,2838,'_order_total','10.00'),(9869,2838,'_order_version','3.5.3'),(9870,2838,'_prices_include_tax','no'),(9871,2838,'_billing_address_index','Siggi Fritsch  42 Ewen Court  North Shields  NE29 8HA GB siggi.fritsch@yahoo.co.uk 07881478818'),(9872,2838,'_shipping_address_index','         07881478818'),(9873,2838,'Payment type','instant'),(9874,2838,'_paypal_status','completed'),(9875,2838,'_download_permissions_granted','yes'),(9876,2838,'_recorded_sales','yes'),(9877,2838,'_recorded_coupon_usage_counts','yes'),(9878,2838,'_order_stock_reduced','yes'),(9879,2838,'PayPal Transaction Fee','0.54'),(9880,2843,'_order_key','wc_order_5cd2aacd1c63c'),(9881,2843,'_customer_user','0'),(9882,2843,'_payment_method','paypal'),(9883,2843,'_payment_method_title','PayPal'),(9884,2843,'_transaction_id','5UX77090S79851430'),(9885,2843,'_customer_ip_address','90.249.18.214'),(9886,2843,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.131 Safari/537.36'),(9887,2843,'_created_via','checkout'),(9888,2843,'_date_completed',''),(9889,2843,'_completed_date',''),(9890,2843,'_date_paid','1557310285'),(9891,2843,'_paid_date','2019-05-08 10:11:25'),(9892,2843,'_cart_hash','b44c6743ed412e5868f83821f9e021b9'),(9893,2843,'_billing_first_name','julie'),(9894,2843,'_billing_last_name','ginns'),(9895,2843,'_billing_company',''),(9896,2843,'_billing_address_1','8 Canney Hill'),(9897,2843,'_billing_address_2','Coundon Gate'),(9898,2843,'_billing_city','Bishop Auckland'),(9899,2843,'_billing_state','Durham'),(9900,2843,'_billing_postcode','DL14 8QN'),(9901,2843,'_billing_country','GB'),(9902,2843,'_billing_email','ginnsjulie@gmail.com'),(9903,2843,'_billing_phone','07876550764'),(9904,2843,'_shipping_first_name',''),(9905,2843,'_shipping_last_name',''),(9906,2843,'_shipping_company',''),(9907,2843,'_shipping_address_1',''),(9908,2843,'_shipping_address_2',''),(9909,2843,'_shipping_city',''),(9910,2843,'_shipping_state',''),(9911,2843,'_shipping_postcode',''),(9912,2843,'_shipping_country',''),(9913,2843,'_order_currency','GBP'),(9914,2843,'_cart_discount','0'),(9915,2843,'_cart_discount_tax','0'),(9916,2843,'_order_shipping','0.00'),(9917,2843,'_order_shipping_tax','0'),(9918,2843,'_order_tax','0'),(9919,2843,'_order_total','15.00'),(9920,2843,'_order_version','3.5.3'),(9921,2843,'_prices_include_tax','no'),(9922,2843,'_billing_address_index','julie ginns  8 Canney Hill Coundon Gate Bishop Auckland Durham DL14 8QN GB ginnsjulie@gmail.com 07876550764'),(9923,2843,'_shipping_address_index','         07876550764'),(9924,2843,'Payment type','instant'),(9925,2843,'_paypal_status','completed'),(9926,2843,'_download_permissions_granted','yes'),(9927,2843,'_recorded_sales','yes'),(9928,2843,'_recorded_coupon_usage_counts','yes'),(9929,2843,'_order_stock_reduced','yes'),(9930,2843,'PayPal Transaction Fee','0.71'),(9931,2844,'_order_key','wc_order_5cd4a18deb6e1'),(9932,2844,'_customer_user','0'),(9933,2844,'_payment_method','paypal'),(9934,2844,'_payment_method_title','PayPal'),(9935,2844,'_transaction_id','4MF75868SS357060H'),(9936,2844,'_customer_ip_address','2.126.237.153'),(9937,2844,'_customer_user_agent','Mozilla/5.0 (Linux; Android 9; SM-G960F Build/PPR1.180610.011; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/74.0.3729.136 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/219.0.0.46.114;]'),(9938,2844,'_created_via','checkout'),(9939,2844,'_date_completed',''),(9940,2844,'_completed_date',''),(9941,2844,'_date_paid','1557438990'),(9942,2844,'_paid_date','2019-05-09 21:56:30'),(9943,2844,'_cart_hash','ffd306ba866d233ea043d33ebf11c9dc'),(9944,2844,'_billing_first_name','Victoria'),(9945,2844,'_billing_last_name','Snowdon'),(9946,2844,'_billing_company',''),(9947,2844,'_billing_address_1','38 The Acres'),(9948,2844,'_billing_address_2',''),(9949,2844,'_billing_city','Wallsend'),(9950,2844,'_billing_state','Tyne and Wear'),(9951,2844,'_billing_postcode','NE28 7RQ'),(9952,2844,'_billing_country','GB'),(9953,2844,'_billing_email','v_snowdon@hotmail.com'),(9954,2844,'_billing_phone','07903675095'),(9955,2844,'_shipping_first_name',''),(9956,2844,'_shipping_last_name',''),(9957,2844,'_shipping_company',''),(9958,2844,'_shipping_address_1',''),(9959,2844,'_shipping_address_2',''),(9960,2844,'_shipping_city',''),(9961,2844,'_shipping_state',''),(9962,2844,'_shipping_postcode',''),(9963,2844,'_shipping_country',''),(9964,2844,'_order_currency','GBP'),(9965,2844,'_cart_discount','0'),(9966,2844,'_cart_discount_tax','0'),(9967,2844,'_order_shipping','0.00'),(9968,2844,'_order_shipping_tax','0'),(9969,2844,'_order_tax','0'),(9970,2844,'_order_total','10.00'),(9971,2844,'_order_version','3.5.3'),(9972,2844,'_prices_include_tax','no'),(9973,2844,'_billing_address_index','Victoria Snowdon  38 The Acres  Wallsend Tyne and Wear NE28 7RQ GB v_snowdon@hotmail.com 07903675095'),(9974,2844,'_shipping_address_index','         07903675095'),(9975,2844,'Payment type','instant'),(9976,2844,'_paypal_status','completed'),(9977,2844,'_download_permissions_granted','yes'),(9978,2844,'_recorded_sales','yes'),(9979,2844,'_recorded_coupon_usage_counts','yes'),(9980,2844,'_order_stock_reduced','yes'),(9981,2844,'PayPal Transaction Fee','0.54'),(9982,2600,'_wp_attachment_image_alt','Freedom From Anxiety & Stress Workshop'),(9983,2564,'_yoast_wpseo_focuskw','Freedom From Anxiety & Stress Workshop'),(9984,2564,'_yoast_wpseo_linkdex','38'),(11465,3198,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568383758;}'),(9998,2864,'_order_key','wc_order_5cdc743438a10'),(10574,2987,'_customer_user','0'),(10575,2987,'_payment_method','bacs'),(10576,2987,'_payment_method_title','Direct bank transfer'),(10573,2987,'_order_key','wc_order_5d090dd22759d'),(9999,2864,'_customer_user','0'),(10000,2864,'_payment_method','paypal'),(10001,2864,'_payment_method_title','PayPal'),(10002,2864,'_transaction_id','0Y242677EN403943M'),(10003,2864,'_customer_ip_address','82.0.95.189'),(10004,2864,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A600FN Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/9.2 Chrome/67.0.3396.87 Mobile Safari/537.36'),(10005,2864,'_created_via','checkout'),(10006,2864,'_date_completed',''),(10007,2864,'_completed_date',''),(10008,2864,'_date_paid','1557951715'),(10009,2864,'_paid_date','2019-05-15 20:21:55'),(10010,2864,'_cart_hash','972e47005d80939a383e10c96bf88e1e'),(10011,2864,'_billing_first_name','Linda'),(10012,2864,'_billing_last_name','Graham'),(10013,2864,'_billing_company',''),(10014,2864,'_billing_address_1','39 Ordley Close'),(10015,2864,'_billing_address_2','Dumpling Hall'),(10016,2864,'_billing_city','Newcastle upon Tyne'),(10017,2864,'_billing_state',''),(10018,2864,'_billing_postcode','NE15 7XT'),(10019,2864,'_billing_country','GB'),(10020,2864,'_billing_email','Lagraham39@hotmail.co.uk'),(10021,2864,'_billing_phone','07971754892'),(10022,2864,'_shipping_first_name',''),(10023,2864,'_shipping_last_name',''),(10024,2864,'_shipping_company',''),(10025,2864,'_shipping_address_1',''),(10026,2864,'_shipping_address_2',''),(10027,2864,'_shipping_city',''),(10028,2864,'_shipping_state',''),(10029,2864,'_shipping_postcode',''),(10030,2864,'_shipping_country',''),(10031,2864,'_order_currency','GBP'),(10032,2864,'_cart_discount','0'),(10033,2864,'_cart_discount_tax','0'),(10034,2864,'_order_shipping','0.00'),(10035,2864,'_order_shipping_tax','0'),(10036,2864,'_order_tax','0'),(10037,2864,'_order_total','20.00'),(10038,2864,'_order_version','3.5.3'),(10039,2864,'_prices_include_tax','no'),(10040,2864,'_billing_address_index','Linda Graham  39 Ordley Close Dumpling Hall Newcastle upon Tyne  NE15 7XT GB Lagraham39@hotmail.co.uk 07971754892'),(10041,2864,'_shipping_address_index','         07971754892'),(10042,2864,'Payment type','instant'),(10043,2864,'_paypal_status','completed'),(10044,2864,'_download_permissions_granted','yes'),(10045,2864,'_recorded_sales','yes'),(10046,2864,'_recorded_coupon_usage_counts','yes'),(10047,2864,'_order_stock_reduced','yes'),(10048,2864,'PayPal Transaction Fee','0.88'),(10049,2920,'_order_key','wc_order_5ce264ea0e618'),(10050,2920,'_customer_user','0'),(10051,2920,'_payment_method','paypal'),(10052,2920,'_payment_method_title','PayPal'),(10053,2920,'_transaction_id','4V151243NX359922F'),(10054,2920,'_customer_ip_address','82.132.186.139'),(10055,2920,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A750FN Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36'),(10056,2920,'_created_via','checkout'),(10057,2920,'_date_completed',''),(10058,2920,'_completed_date',''),(10059,2920,'_date_paid','1558340879'),(10060,2920,'_paid_date','2019-05-20 08:27:59'),(10061,2920,'_cart_hash','a282d1d4b705d3047c76e6353b4eb4d1'),(10062,2920,'_billing_first_name','Ali'),(10063,2920,'_billing_last_name','Avery'),(10064,2920,'_billing_company','Averys Angels'),(10065,2920,'_billing_address_1','15 Birtley Avenue'),(10066,2920,'_billing_address_2',''),(10067,2920,'_billing_city','North Shields'),(10068,2920,'_billing_state','Tyne and Wear'),(10069,2920,'_billing_postcode','NE30 2RR'),(10070,2920,'_billing_country','GB'),(10071,2920,'_billing_email','aliavery@hotmail.co.uk'),(10072,2920,'_billing_phone','+447980923996'),(10073,2920,'_shipping_first_name',''),(10074,2920,'_shipping_last_name',''),(10075,2920,'_shipping_company',''),(10076,2920,'_shipping_address_1',''),(10077,2920,'_shipping_address_2',''),(10078,2920,'_shipping_city',''),(10079,2920,'_shipping_state',''),(10080,2920,'_shipping_postcode',''),(10081,2920,'_shipping_country',''),(10082,2920,'_order_currency','GBP'),(10083,2920,'_cart_discount','0'),(10084,2920,'_cart_discount_tax','0'),(10085,2920,'_order_shipping','0.00'),(10086,2920,'_order_shipping_tax','0'),(10087,2920,'_order_tax','0'),(10088,2920,'_order_total','15.00'),(10089,2920,'_order_version','3.5.3'),(10090,2920,'_prices_include_tax','no'),(10091,2920,'_billing_address_index','Ali Avery Averys Angels 15 Birtley Avenue  North Shields Tyne and Wear NE30 2RR GB aliavery@hotmail.co.uk +447980923996'),(10092,2920,'_shipping_address_index','         +447980923996'),(10093,2920,'Payment type','instant'),(10094,2920,'_paypal_status','completed'),(10095,2920,'_download_permissions_granted','yes'),(10096,2920,'_recorded_sales','yes'),(10097,2920,'_recorded_coupon_usage_counts','yes'),(10098,2920,'_order_stock_reduced','yes'),(10099,2920,'PayPal Transaction Fee','0.71'),(10100,2927,'_edit_lock','1559149058:1'),(10101,2927,'_edit_last','1'),(10102,2927,'_wp_page_template','default'),(10103,2927,'_responsive_layout','default'),(10104,2927,'_yoast_wpseo_content_score','60'),(10105,2936,'_order_key','wc_order_5ceebf0152848'),(10106,2936,'_customer_user','0'),(10107,2936,'_payment_method','paypal'),(10108,2936,'_payment_method_title','PayPal'),(10109,2936,'_transaction_id','5C222825YA351353B'),(10110,2936,'_customer_ip_address','2.101.145.221'),(10111,2936,'_customer_user_agent','Mozilla/5.0 (Linux; Android 9; SM-G970F Build/PPR1.180610.011; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/74.0.3729.157 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/222.0.0.48.113;]'),(10112,2936,'_created_via','checkout'),(10113,2936,'_date_completed',''),(10114,2936,'_completed_date',''),(10115,2936,'_date_paid','1559150393'),(10116,2936,'_paid_date','2019-05-29 17:19:53'),(10117,2936,'_cart_hash','dc5eec0678a3abdb05437a15448a001b'),(10118,2936,'_billing_first_name','Dawn'),(10119,2936,'_billing_last_name','Routledge'),(10120,2936,'_billing_company',''),(10121,2936,'_billing_address_1','48 Cormorant Dr'),(10122,2936,'_billing_address_2',''),(10123,2936,'_billing_city','Gateshead'),(10124,2936,'_billing_state',''),(10125,2936,'_billing_postcode','NE11 9LF'),(10126,2936,'_billing_country','GB'),(10127,2936,'_billing_email','dawnydawn2@hotmail.com'),(10128,2936,'_billing_phone','07982607790'),(10129,2936,'_shipping_first_name',''),(10130,2936,'_shipping_last_name',''),(10131,2936,'_shipping_company',''),(10132,2936,'_shipping_address_1',''),(10133,2936,'_shipping_address_2',''),(10134,2936,'_shipping_city',''),(10135,2936,'_shipping_state',''),(10136,2936,'_shipping_postcode',''),(10137,2936,'_shipping_country',''),(10138,2936,'_order_currency','GBP'),(10139,2936,'_cart_discount','0'),(10140,2936,'_cart_discount_tax','0'),(10141,2936,'_order_shipping','0.00'),(10142,2936,'_order_shipping_tax','0'),(10143,2936,'_order_tax','0'),(10144,2936,'_order_total','58.00'),(10145,2936,'_order_version','3.5.3'),(10146,2936,'_prices_include_tax','no'),(10147,2936,'_billing_address_index','Dawn Routledge  48 Cormorant Dr  Gateshead  NE11 9LF GB dawnydawn2@hotmail.com 07982607790'),(10148,2936,'_shipping_address_index','         07982607790'),(10149,2936,'Payment type','instant'),(10150,2936,'_paypal_status','completed'),(10151,2936,'_download_permissions_granted','yes'),(10152,2936,'_recorded_sales','yes'),(10153,2936,'_recorded_coupon_usage_counts','yes'),(10154,2936,'_order_stock_reduced','yes'),(10155,2936,'PayPal Transaction Fee','2.17'),(10156,2944,'_edit_lock','1560838518:1'),(10157,2944,'_edit_last','1'),(10158,2944,'_wp_page_template','content-sidebar-page.php'),(10159,2944,'_responsive_layout','default'),(10160,2944,'_yoast_wpseo_content_score','90'),(10161,2946,'_wp_attached_file','2019/06/office-899352_960_720.jpg'),(10162,2946,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:621;s:6:\"height\";i:720;s:4:\"file\";s:33:\"2019/06/office-899352_960_720.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"office-899352_960_720-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"office-899352_960_720-259x300.jpg\";s:5:\"width\";i:259;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:33:\"office-899352_960_720-100x116.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:33:\"office-899352_960_720-150x174.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:33:\"office-899352_960_720-200x232.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:33:\"office-899352_960_720-300x348.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:348;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:33:\"office-899352_960_720-450x522.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:522;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:33:\"office-899352_960_720-600x696.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:696;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"office-899352_960_720-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"office-899352_960_720-400x464.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"office-899352_960_720-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"office-899352_960_720-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"office-899352_960_720-400x464.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"office-899352_960_720-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10163,2946,'_wp_attachment_image_alt','Protection and empowerment skills workshop'),(10164,2948,'_wp_attached_file','2019/06/heart-2081684_960_720.jpg'),(10165,2948,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:33:\"2019/06/heart-2081684_960_720.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"heart-2081684_960_720-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"heart-2081684_960_720-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:33:\"heart-2081684_960_720-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:33:\"heart-2081684_960_720-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:33:\"heart-2081684_960_720-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:33:\"heart-2081684_960_720-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:33:\"heart-2081684_960_720-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:33:\"heart-2081684_960_720-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"heart-2081684_960_720-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"heart-2081684_960_720-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"heart-2081684_960_720-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"heart-2081684_960_720-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"heart-2081684_960_720-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"heart-2081684_960_720-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10166,2948,'_wp_attachment_image_alt','Protection & Empowerment Skills Workshop'),(10167,2960,'_wp_attached_file','2019/06/protection-empowerment-skills-2.jpg'),(10168,2960,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:43:\"2019/06/protection-empowerment-skills-2.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"protection-empowerment-skills-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"protection-empowerment-skills-2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"protection-empowerment-skills-2-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:42:\"protection-empowerment-skills-2-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:43:\"protection-empowerment-skills-2-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:43:\"protection-empowerment-skills-2-200x150.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:43:\"protection-empowerment-skills-2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:43:\"protection-empowerment-skills-2-450x338.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:43:\"protection-empowerment-skills-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:43:\"protection-empowerment-skills-2-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:43:\"protection-empowerment-skills-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:43:\"protection-empowerment-skills-2-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:43:\"protection-empowerment-skills-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:43:\"protection-empowerment-skills-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:43:\"protection-empowerment-skills-2-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"protection-empowerment-skills-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10169,2972,'_wc_review_count','0'),(10170,2972,'_wc_rating_count','a:0:{}'),(10171,2972,'_wc_average_rating','0'),(10172,2972,'_edit_lock','1559484053:1'),(10173,2972,'_edit_last','1'),(10174,2972,'_thumbnail_id','2960'),(10175,2972,'_sku',''),(10176,2972,'_regular_price','20'),(10177,2972,'_sale_price','12'),(10178,2972,'_sale_price_dates_from',''),(10179,2972,'_sale_price_dates_to',''),(10180,2972,'total_sales','7'),(10181,2972,'_tax_status','none'),(10182,2972,'_tax_class','zero-rate'),(10183,2972,'_manage_stock','no'),(10184,2972,'_backorders','no'),(10185,2972,'_low_stock_amount',''),(10186,2972,'_sold_individually','no'),(10187,2972,'_weight',''),(10188,2972,'_length',''),(10189,2972,'_width',''),(10190,2972,'_height',''),(10191,2972,'_upsell_ids','a:0:{}'),(10192,2972,'_crosssell_ids','a:0:{}'),(10193,2972,'_purchase_note',''),(10194,2972,'_default_attributes','a:0:{}'),(10195,2972,'_virtual','no'),(10196,2972,'_downloadable','no'),(10197,2972,'_product_image_gallery',''),(10198,2972,'_download_limit','-1'),(10199,2972,'_download_expiry','-1'),(10200,2972,'_stock',NULL),(10201,2972,'_stock_status','instock'),(10202,2972,'_product_version','3.5.3'),(10203,2972,'_price','12'),(10204,2972,'_yoast_wpseo_primary_product_cat','48'),(10205,2972,'_yoast_wpseo_content_score','30'),(10207,2972,'_wpas_done_all','1'),(10208,2974,'_wp_attached_file','2019/06/anxiety-400x265.jpg'),(10209,2974,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:265;s:4:\"file\";s:27:\"2019/06/anxiety-400x265.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"anxiety-400x265-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"anxiety-400x265-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:26:\"anxiety-400x265-100x66.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:26:\"anxiety-400x265-150x99.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:27:\"anxiety-400x265-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:27:\"anxiety-400x265-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"anxiety-400x265-300x265.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"anxiety-400x265-400x265.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"anxiety-400x265-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"anxiety-400x265-300x265.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"anxiety-400x265-400x265.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"anxiety-400x265-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10210,2558,'_thumbnail_id','2600'),(10211,2976,'_order_key','wc_order_5cf42728eeffc'),(10212,2976,'_customer_user','0'),(10213,2976,'_payment_method','paypal'),(10214,2976,'_payment_method_title','PayPal'),(10215,2976,'_transaction_id','4YK66737T8912581C'),(10216,2976,'_customer_ip_address','90.205.45.65'),(10217,2976,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-A750FN Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36'),(10218,2976,'_created_via','checkout'),(10219,2976,'_date_completed',''),(10220,2976,'_completed_date',''),(10221,2976,'_date_paid','1559504714'),(10222,2976,'_paid_date','2019-06-02 19:45:14'),(10223,2976,'_cart_hash','fce487e686c109adec647b354aea93ae'),(10224,2976,'_billing_first_name','Ali'),(10225,2976,'_billing_last_name','Avery'),(10226,2976,'_billing_company','Averys Angels'),(10227,2976,'_billing_address_1','15 Birtley Avenue'),(10228,2976,'_billing_address_2',''),(10229,2976,'_billing_city','North Shields'),(10230,2976,'_billing_state','Tyne and Wear'),(10231,2976,'_billing_postcode','NE30 2RR'),(10232,2976,'_billing_country','GB'),(10233,2976,'_billing_email','aliavery@hotmail.co.uk'),(10234,2976,'_billing_phone','+447980923996'),(10235,2976,'_shipping_first_name',''),(10236,2976,'_shipping_last_name',''),(10237,2976,'_shipping_company',''),(10238,2976,'_shipping_address_1',''),(10239,2976,'_shipping_address_2',''),(10240,2976,'_shipping_city',''),(10241,2976,'_shipping_state',''),(10242,2976,'_shipping_postcode',''),(10243,2976,'_shipping_country',''),(10244,2976,'_order_currency','GBP'),(10245,2976,'_cart_discount','0'),(10246,2976,'_cart_discount_tax','0'),(10247,2976,'_order_shipping','0.00'),(10248,2976,'_order_shipping_tax','0'),(10249,2976,'_order_tax','0'),(10250,2976,'_order_total','12.00'),(10251,2976,'_order_version','3.5.3'),(10252,2976,'_prices_include_tax','no'),(10253,2976,'_billing_address_index','Ali Avery Averys Angels 15 Birtley Avenue  North Shields Tyne and Wear NE30 2RR GB aliavery@hotmail.co.uk +447980923996'),(10254,2976,'_shipping_address_index','         +447980923996'),(10255,2976,'Payment type','instant'),(10256,2976,'_paypal_status','completed'),(10257,2976,'_download_permissions_granted','yes'),(10258,2976,'_recorded_sales','yes'),(10259,2976,'_recorded_coupon_usage_counts','yes'),(10260,2976,'_order_stock_reduced','yes'),(10261,2976,'PayPal Transaction Fee','0.61'),(10262,2977,'_menu_item_type','post_type'),(10263,2977,'_menu_item_menu_item_parent','804'),(10264,2977,'_menu_item_object_id','2944'),(10265,2977,'_menu_item_object','page'),(10266,2977,'_menu_item_target',''),(10267,2977,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(10268,2977,'_menu_item_xfn',''),(10269,2977,'_menu_item_url',''),(10271,2978,'_order_key','wc_order_5cf45f026cc53'),(10272,2978,'_customer_user','0'),(10273,2978,'_payment_method','paypal'),(10274,2978,'_payment_method_title','PayPal'),(10275,2978,'_transaction_id','7NG03800RU0872525'),(10276,2978,'_customer_ip_address','86.8.201.115'),(10277,2978,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [FBAN/FBIOS;FBDV/iPhone10,5;FBMD/iPhone;FBSN/iOS;FBSV/12.2;FBSS/3;FBCR/Virgin;FBID/phone;FBLC/en_GB;FBOP/5]'),(10278,2978,'_created_via','checkout'),(10279,2978,'_date_completed',''),(10280,2978,'_completed_date',''),(10281,2978,'_date_paid','1559519022'),(10282,2978,'_paid_date','2019-06-02 23:43:42'),(10283,2978,'_cart_hash','fce487e686c109adec647b354aea93ae'),(10284,2978,'_billing_first_name','Faye'),(10285,2978,'_billing_last_name','Craigen'),(10286,2978,'_billing_company',''),(10287,2978,'_billing_address_1','78 Brighton Grove'),(10288,2978,'_billing_address_2',''),(10289,2978,'_billing_city','Newcastle'),(10290,2978,'_billing_state',''),(10291,2978,'_billing_postcode','NE4 5NS'),(10292,2978,'_billing_country','GB'),(10293,2978,'_billing_email','fayecraigen@hotmail.com'),(10294,2978,'_billing_phone','07505541150'),(10295,2978,'_shipping_first_name',''),(10296,2978,'_shipping_last_name',''),(10297,2978,'_shipping_company',''),(10298,2978,'_shipping_address_1',''),(10299,2978,'_shipping_address_2',''),(10300,2978,'_shipping_city',''),(10301,2978,'_shipping_state',''),(10302,2978,'_shipping_postcode',''),(10303,2978,'_shipping_country',''),(10304,2978,'_order_currency','GBP'),(10305,2978,'_cart_discount','0'),(10306,2978,'_cart_discount_tax','0'),(10307,2978,'_order_shipping','0.00'),(10308,2978,'_order_shipping_tax','0'),(10309,2978,'_order_tax','0'),(10310,2978,'_order_total','12.00'),(10311,2978,'_order_version','3.5.3'),(10312,2978,'_prices_include_tax','no'),(10313,2978,'_billing_address_index','Faye Craigen  78 Brighton Grove  Newcastle  NE4 5NS GB fayecraigen@hotmail.com 07505541150'),(10314,2978,'_shipping_address_index','         07505541150'),(10315,2978,'Payment type','instant'),(10316,2978,'_paypal_status','completed'),(10317,2978,'_download_permissions_granted','yes'),(10318,2978,'_recorded_sales','yes'),(10319,2978,'_recorded_coupon_usage_counts','yes'),(10320,2978,'_order_stock_reduced','yes'),(10321,2978,'PayPal Transaction Fee','0.61'),(10322,2979,'_order_key','wc_order_5cf4de3b3e14c'),(10323,2979,'_customer_user','0'),(10324,2979,'_payment_method','paypal'),(10325,2979,'_payment_method_title','PayPal'),(10326,2979,'_transaction_id','5KY132197E9479503'),(10327,2979,'_customer_ip_address','213.205.192.236'),(10328,2979,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [FBAN/FBIOS;FBDV/iPhone8,4;FBMD/iPhone;FBSN/iOS;FBSV/12.2;FBSS/2;FBCR/EE;FBID/phone;FBLC/en_GB;FBOP/5]'),(10329,2979,'_created_via','checkout'),(10330,2979,'_date_completed',''),(10331,2979,'_completed_date',''),(10332,2979,'_date_paid','1559551611'),(10333,2979,'_paid_date','2019-06-03 08:46:51'),(10334,2979,'_cart_hash','fce487e686c109adec647b354aea93ae'),(10335,2979,'_billing_first_name','Sylvia'),(10336,2979,'_billing_last_name','Sormus'),(10337,2979,'_billing_company',''),(10338,2979,'_billing_address_1','261 Whitfield Road'),(10339,2979,'_billing_address_2',''),(10340,2979,'_billing_city','Newcastle Upon Tyne'),(10341,2979,'_billing_state','Tyne and Wear'),(10342,2979,'_billing_postcode','NE15 6AP'),(10343,2979,'_billing_country','GB'),(10344,2979,'_billing_email','bowiemoon777@gmail.com'),(10345,2979,'_billing_phone','07792763612'),(10346,2979,'_shipping_first_name',''),(10347,2979,'_shipping_last_name',''),(10348,2979,'_shipping_company',''),(10349,2979,'_shipping_address_1',''),(10350,2979,'_shipping_address_2',''),(10351,2979,'_shipping_city',''),(10352,2979,'_shipping_state',''),(10353,2979,'_shipping_postcode',''),(10354,2979,'_shipping_country',''),(10355,2979,'_order_currency','GBP'),(10356,2979,'_cart_discount','0'),(10357,2979,'_cart_discount_tax','0'),(10358,2979,'_order_shipping','0.00'),(10359,2979,'_order_shipping_tax','0'),(10360,2979,'_order_tax','0'),(10361,2979,'_order_total','12.00'),(10362,2979,'_order_version','3.5.3'),(10363,2979,'_prices_include_tax','no'),(10364,2979,'_billing_address_index','Sylvia Sormus  261 Whitfield Road  Newcastle Upon Tyne Tyne and Wear NE15 6AP GB bowiemoon777@gmail.com 07792763612'),(10365,2979,'_shipping_address_index','         07792763612'),(10366,2979,'Payment type','instant'),(10367,2979,'_paypal_status','completed'),(10368,2979,'_download_permissions_granted','yes'),(10369,2979,'_recorded_sales','yes'),(10370,2979,'_recorded_coupon_usage_counts','yes'),(10371,2979,'_order_stock_reduced','yes'),(10372,2979,'PayPal Transaction Fee','0.61'),(10373,2980,'_order_key','wc_order_5cf5316e0938a'),(10374,2980,'_customer_user','0'),(10375,2980,'_payment_method','paypal'),(10376,2980,'_payment_method_title','PayPal'),(10377,2980,'_transaction_id','76M62914NJ973925D'),(10378,2980,'_customer_ip_address','86.172.142.20'),(10379,2980,'_customer_user_agent','Mozilla/5.0 (Linux; Android 9; moto g(6) play Build/PPP29.55-25; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/74.0.3729.157 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/223.0.0.47.120;]'),(10380,2980,'_created_via','checkout'),(10381,2980,'_date_completed',''),(10382,2980,'_completed_date',''),(10383,2980,'_date_paid','1559574289'),(10384,2980,'_paid_date','2019-06-03 15:04:49'),(10385,2980,'_cart_hash','81ed372a0a4f172dc83a188eaa4dde7a'),(10386,2980,'_billing_first_name','Sandra'),(10387,2980,'_billing_last_name','Jobes'),(10388,2980,'_billing_company',''),(10389,2980,'_billing_address_1','34 Davison Street'),(10390,2980,'_billing_address_2',''),(10391,2980,'_billing_city','Boldon Colliery'),(10392,2980,'_billing_state',''),(10393,2980,'_billing_postcode','NE35 9JQ'),(10394,2980,'_billing_country','GB'),(10395,2980,'_billing_email','sandra_jobes@hotmail.com'),(10396,2980,'_billing_phone','07811777624'),(10397,2980,'_shipping_first_name',''),(10398,2980,'_shipping_last_name',''),(10399,2980,'_shipping_company',''),(10400,2980,'_shipping_address_1',''),(10401,2980,'_shipping_address_2',''),(10402,2980,'_shipping_city',''),(10403,2980,'_shipping_state',''),(10404,2980,'_shipping_postcode',''),(10405,2980,'_shipping_country',''),(10406,2980,'_order_currency','GBP'),(10407,2980,'_cart_discount','0'),(10408,2980,'_cart_discount_tax','0'),(10409,2980,'_order_shipping','0.00'),(10410,2980,'_order_shipping_tax','0'),(10411,2980,'_order_tax','0'),(10412,2980,'_order_total','29.00'),(10413,2980,'_order_version','3.5.3'),(10414,2980,'_prices_include_tax','no'),(10415,2980,'_billing_address_index','Sandra Jobes  34 Davison Street  Boldon Colliery  NE35 9JQ GB sandra_jobes@hotmail.com 07811777624'),(10416,2980,'_shipping_address_index','         07811777624'),(10417,2980,'Payment type','instant'),(10418,2980,'_paypal_status','completed'),(10419,2980,'_download_permissions_granted','yes'),(10420,2980,'_recorded_sales','yes'),(10421,2980,'_recorded_coupon_usage_counts','yes'),(10422,2980,'_order_stock_reduced','yes'),(10423,2980,'PayPal Transaction Fee','1.19'),(10424,2981,'_order_key','wc_order_5cf5a470cc724'),(10425,2981,'_customer_user','0'),(10426,2981,'_payment_method','paypal'),(10427,2981,'_payment_method_title','PayPal'),(10428,2981,'_transaction_id','1H364578WR8556640'),(10429,2981,'_customer_ip_address','78.148.166.238'),(10430,2981,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Mobile/15E148 Safari/604.1'),(10431,2981,'_created_via','checkout'),(10432,2981,'_date_completed',''),(10433,2981,'_completed_date',''),(10434,2981,'_date_paid','1559602334'),(10435,2981,'_paid_date','2019-06-03 22:52:14'),(10436,2981,'_cart_hash','fce487e686c109adec647b354aea93ae'),(10437,2981,'_billing_first_name','Kath'),(10438,2981,'_billing_last_name','Collins'),(10439,2981,'_billing_company',''),(10440,2981,'_billing_address_1','9 Low Farm'),(10441,2981,'_billing_address_2','Ellington'),(10442,2981,'_billing_city','Morpeth'),(10443,2981,'_billing_state','Northumberland'),(10444,2981,'_billing_postcode','NE61 5PA'),(10445,2981,'_billing_country','GB'),(10446,2981,'_billing_email','kath.collins@hotmail.co.uk'),(10447,2981,'_billing_phone','+447392324416'),(10448,2981,'_shipping_first_name',''),(10449,2981,'_shipping_last_name',''),(10450,2981,'_shipping_company',''),(10451,2981,'_shipping_address_1',''),(10452,2981,'_shipping_address_2',''),(10453,2981,'_shipping_city',''),(10454,2981,'_shipping_state',''),(10455,2981,'_shipping_postcode',''),(10456,2981,'_shipping_country',''),(10457,2981,'_order_currency','GBP'),(10458,2981,'_cart_discount','0'),(10459,2981,'_cart_discount_tax','0'),(10460,2981,'_order_shipping','0.00'),(10461,2981,'_order_shipping_tax','0'),(10462,2981,'_order_tax','0'),(10463,2981,'_order_total','12.00'),(10464,2981,'_order_version','3.5.3'),(10465,2981,'_prices_include_tax','no'),(10466,2981,'_billing_address_index','Kath Collins  9 Low Farm Ellington Morpeth Northumberland NE61 5PA GB kath.collins@hotmail.co.uk +447392324416'),(10467,2981,'_shipping_address_index','         +447392324416'),(10468,2981,'Payment type','instant'),(10469,2981,'_paypal_status','completed'),(10470,2981,'_download_permissions_granted','yes'),(10471,2981,'_recorded_sales','yes'),(10472,2981,'_recorded_coupon_usage_counts','yes'),(10473,2981,'_order_stock_reduced','yes'),(10474,2981,'PayPal Transaction Fee','0.61'),(10475,2982,'_order_key','wc_order_5cf6167d831e7'),(10476,2982,'_customer_user','0'),(10477,2982,'_payment_method','paypal'),(10478,2982,'_payment_method_title','PayPal'),(10479,2982,'_transaction_id','24370032KE937110X'),(10480,2982,'_customer_ip_address','2.31.150.35'),(10481,2982,'_customer_user_agent','Mozilla/5.0 (Linux; Android 9; SAMSUNG SM-G970F Build/PPR1.180610.011) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/9.2 Chrome/67.0.3396.87 Mobile Safari/537.36'),(10482,2982,'_created_via','checkout'),(10483,2982,'_date_completed',''),(10484,2982,'_completed_date',''),(10485,2982,'_date_paid','1559631537'),(10486,2982,'_paid_date','2019-06-04 06:58:57'),(10487,2982,'_cart_hash','fce487e686c109adec647b354aea93ae'),(10488,2982,'_billing_first_name','Vikki'),(10489,2982,'_billing_last_name','Minto'),(10490,2982,'_billing_company',''),(10491,2982,'_billing_address_1','49 Crathie'),(10492,2982,'_billing_address_2',''),(10493,2982,'_billing_city','Birtley'),(10494,2982,'_billing_state','Co. Durham'),(10495,2982,'_billing_postcode','DH3 1QJ'),(10496,2982,'_billing_country','GB'),(10497,2982,'_billing_email','vimto25@gmail.com'),(10498,2982,'_billing_phone','07917208559'),(10499,2982,'_shipping_first_name',''),(10500,2982,'_shipping_last_name',''),(10501,2982,'_shipping_company',''),(10502,2982,'_shipping_address_1',''),(10503,2982,'_shipping_address_2',''),(10504,2982,'_shipping_city',''),(10505,2982,'_shipping_state',''),(10506,2982,'_shipping_postcode',''),(10507,2982,'_shipping_country',''),(10508,2982,'_order_currency','GBP'),(10509,2982,'_cart_discount','0'),(10510,2982,'_cart_discount_tax','0'),(10511,2982,'_order_shipping','0.00'),(10512,2982,'_order_shipping_tax','0'),(10513,2982,'_order_tax','0'),(10514,2982,'_order_total','12.00'),(10515,2982,'_order_version','3.5.3'),(10516,2982,'_prices_include_tax','no'),(10517,2982,'_billing_address_index','Vikki Minto  49 Crathie  Birtley Co. Durham DH3 1QJ GB vimto25@gmail.com 07917208559'),(10518,2982,'_shipping_address_index','         07917208559'),(10519,2982,'Payment type','instant'),(10520,2982,'_paypal_status','completed'),(10521,2982,'_download_permissions_granted','yes'),(10522,2982,'_recorded_sales','yes'),(10523,2982,'_recorded_coupon_usage_counts','yes'),(10524,2982,'_order_stock_reduced','yes'),(10525,2982,'PayPal Transaction Fee','0.61'),(10526,2983,'_order_key','wc_order_5cf83050770cb'),(10527,2983,'_customer_user','0'),(10528,2983,'_payment_method','bacs'),(10529,2983,'_payment_method_title','Direct bank transfer'),(10530,2983,'_transaction_id',''),(10531,2983,'_customer_ip_address','86.176.7.22'),(10532,2983,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; SM-A520F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Mobile Safari/537.36'),(10533,2983,'_created_via','checkout'),(10534,2983,'_date_completed',''),(10535,2983,'_completed_date',''),(10536,2983,'_date_paid',''),(10537,2983,'_paid_date',''),(10538,2983,'_cart_hash','fce487e686c109adec647b354aea93ae'),(10539,2983,'_billing_first_name','Jennifer'),(10540,2983,'_billing_last_name','Glove'),(10541,2983,'_billing_company',''),(10542,2983,'_billing_address_1','10'),(10543,2983,'_billing_address_2','Winton Close'),(10544,2983,'_billing_city','Cramlington'),(10545,2983,'_billing_state',''),(10546,2983,'_billing_postcode','NE23 7RU'),(10547,2983,'_billing_country','GB'),(10548,2983,'_billing_email','jennifer-glover@outlook.com'),(10549,2983,'_billing_phone','07856230045'),(10550,2983,'_shipping_first_name',''),(10551,2983,'_shipping_last_name',''),(10552,2983,'_shipping_company',''),(10553,2983,'_shipping_address_1',''),(10554,2983,'_shipping_address_2',''),(10555,2983,'_shipping_city',''),(10556,2983,'_shipping_state',''),(10557,2983,'_shipping_postcode',''),(10558,2983,'_shipping_country',''),(10559,2983,'_order_currency','GBP'),(10560,2983,'_cart_discount','0'),(10561,2983,'_cart_discount_tax','0'),(10562,2983,'_order_shipping','0.00'),(10563,2983,'_order_shipping_tax','0'),(10564,2983,'_order_tax','0'),(10565,2983,'_order_total','12.00'),(10566,2983,'_order_version','3.5.3'),(10567,2983,'_prices_include_tax','no'),(10568,2983,'_billing_address_index','Jennifer Glove  10 Winton Close Cramlington  NE23 7RU GB jennifer-glover@outlook.com 07856230045'),(10569,2983,'_shipping_address_index','         07856230045'),(10570,2983,'_recorded_sales','yes'),(10571,2983,'_recorded_coupon_usage_counts','yes'),(10572,2983,'_order_stock_reduced','yes'),(10577,2987,'_transaction_id',''),(10578,2987,'_customer_ip_address','88.109.73.226'),(10579,2987,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(10580,2987,'_created_via','checkout'),(10581,2987,'_date_completed',''),(10582,2987,'_completed_date',''),(10583,2987,'_date_paid',''),(10584,2987,'_paid_date',''),(10585,2987,'_cart_hash','fce487e686c109adec647b354aea93ae'),(10586,2987,'_billing_first_name','Tom'),(10587,2987,'_billing_last_name','Gallagher'),(10588,2987,'_billing_company','Mr'),(10589,2987,'_billing_address_1','48 kings road'),(10590,2987,'_billing_address_2','south wallsend, tyne and wear'),(10591,2987,'_billing_city','newcastle'),(10592,2987,'_billing_state','Newcastle upon Tyne'),(10593,2987,'_billing_postcode','NE28 7RB'),(10594,2987,'_billing_country','GB'),(10595,2987,'_billing_email','tomgallagher1979@gmail.com'),(10596,2987,'_billing_phone','07487865570'),(10597,2987,'_shipping_first_name',''),(10598,2987,'_shipping_last_name',''),(10599,2987,'_shipping_company',''),(10600,2987,'_shipping_address_1',''),(10601,2987,'_shipping_address_2',''),(10602,2987,'_shipping_city',''),(10603,2987,'_shipping_state',''),(10604,2987,'_shipping_postcode',''),(10605,2987,'_shipping_country',''),(10606,2987,'_order_currency','GBP'),(10607,2987,'_cart_discount','0'),(10608,2987,'_cart_discount_tax','0'),(10609,2987,'_order_shipping','0.00'),(10610,2987,'_order_shipping_tax','0'),(10611,2987,'_order_tax','0'),(10612,2987,'_order_total','12.00'),(10613,2987,'_order_version','3.5.3'),(10614,2987,'_prices_include_tax','no'),(10615,2987,'_billing_address_index','Tom Gallagher Mr 48 kings road south wallsend, tyne and wear newcastle Newcastle upon Tyne NE28 7RB GB tomgallagher1979@gmail.com 07487865570'),(10616,2987,'_shipping_address_index','         07487865570'),(10617,2987,'_recorded_sales','yes'),(10618,2987,'_recorded_coupon_usage_counts','yes'),(10619,2987,'_order_stock_reduced','yes'),(10620,2987,'_edit_lock','1560931406:1'),(10621,2983,'_edit_lock','1560933142:1'),(10622,2989,'_edit_lock','1561889814:1'),(10623,2989,'_edit_last','1'),(10624,2989,'_wp_page_template','content-sidebar-page.php'),(10625,2989,'_responsive_layout','default'),(10626,2989,'_yoast_wpseo_content_score','90'),(10627,2994,'_wp_attached_file','2019/06/lnh.jpg'),(10628,2994,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:15:\"2019/06/lnh.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"lnh-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"lnh-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"lnh-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:14:\"lnh-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:15:\"lnh-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:15:\"lnh-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:15:\"lnh-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:15:\"lnh-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:15:\"lnh-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:15:\"lnh-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"lnh-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:15:\"lnh-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"lnh-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"lnh-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:15:\"lnh-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"lnh-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10629,2994,'_wp_attachment_image_alt','The Secrets Of Emotional Strength'),(10630,3004,'_wp_attached_file','2019/06/alit.jpg'),(10631,3004,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:579;s:6:\"height\";i:303;s:4:\"file\";s:16:\"2019/06/alit.jpg\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"alit-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"alit-300x157.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:15:\"alit-100x52.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:15:\"alit-150x78.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:16:\"alit-200x105.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:105;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:16:\"alit-300x157.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:16:\"alit-450x235.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"alit-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"alit-400x209.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"alit-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"alit-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"alit-400x209.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"alit-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:8:\"Mel Mann\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1561579203\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10632,3004,'_wp_attachment_image_alt','newcastle hypnotherapy feedback'),(10633,3005,'_wp_attached_file','2019/06/tomt.jpg'),(10634,3005,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:615;s:6:\"height\";i:296;s:4:\"file\";s:16:\"2019/06/tomt.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"tomt-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"tomt-300x144.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:15:\"tomt-100x48.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:15:\"tomt-150x72.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:72;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:15:\"tomt-200x96.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:16:\"tomt-300x144.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:16:\"tomt-450x217.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:16:\"tomt-600x289.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"tomt-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"tomt-400x193.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"tomt-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"tomt-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"tomt-400x193.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"tomt-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:8:\"Mel Mann\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10635,3005,'_wp_attachment_image_alt','Newcastle Hypnotherapy workshops and events'),(10636,3026,'_sku',''),(10637,3026,'_regular_price','20'),(10638,3026,'_sale_price','12.50'),(10639,3026,'_sale_price_dates_from',''),(10640,3026,'_sale_price_dates_to',''),(10641,3026,'total_sales','4'),(10642,3026,'_tax_status','none'),(10643,3026,'_tax_class','zero-rate'),(10644,3026,'_manage_stock','no'),(10645,3026,'_backorders','no'),(10646,3026,'_low_stock_amount',''),(10647,3026,'_sold_individually','no'),(10648,3026,'_weight',''),(10649,3026,'_length',''),(10650,3026,'_width',''),(10651,3026,'_height',''),(10652,3026,'_upsell_ids','a:0:{}'),(10653,3026,'_crosssell_ids','a:0:{}'),(10654,3026,'_purchase_note',''),(10655,3026,'_default_attributes','a:0:{}'),(10656,3026,'_virtual','no'),(10657,3026,'_downloadable','no'),(10658,3026,'_product_image_gallery',''),(10659,3026,'_download_limit','-1'),(10660,3026,'_download_expiry','-1'),(10661,3026,'_thumbnail_id','2994'),(10662,3026,'_stock',NULL),(10663,3026,'_stock_status','instock'),(10664,3026,'_wc_average_rating','0'),(10665,3026,'_wc_rating_count','a:0:{}'),(10666,3026,'_wc_review_count','0'),(10667,3026,'_downloadable_files','a:0:{}'),(10668,3026,'_product_attributes','a:0:{}'),(10669,3026,'_product_version','3.5.3'),(10670,3026,'_price','12.50'),(10671,3026,'_yoast_wpseo_primary_product_cat','48'),(10672,3026,'_yoast_wpseo_content_score','30'),(10673,3026,'_wpas_done_all','1'),(10674,3026,'_edit_lock','1561889818:1'),(10675,3026,'_edit_last','1'),(10677,2989,'_yoast_wpseo_metadesc','Learn The Secrets Of Emotional Strength during this fun workshop. Learn powerful Self-hypnosis and NLP skills to transform your life and relationships'),(10678,3032,'_order_key','wc_order_5d13d045e430a'),(10679,3032,'_customer_user','0'),(10680,3032,'_payment_method','paypal'),(10681,3032,'_payment_method_title','PayPal'),(10682,3032,'_transaction_id','0E979405K7399171V'),(10683,3032,'_customer_ip_address','90.205.45.65'),(10684,3032,'_customer_user_agent','Mozilla/5.0 (Linux; Android 9; SAMSUNG SM-A750FN Build/PPR1.180610.011) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36'),(10685,3032,'_created_via','checkout'),(10686,3032,'_date_completed',''),(10687,3032,'_completed_date',''),(10688,3032,'_date_paid','1561579629'),(10689,3032,'_paid_date','2019-06-26 20:07:09'),(10690,3032,'_cart_hash','39ada02b3201862dfe05aa6eb3c7781d'),(10691,3032,'_billing_first_name','Ali'),(10692,3032,'_billing_last_name','Avery'),(10693,3032,'_billing_company','Averys Angels'),(10694,3032,'_billing_address_1','15 Birtley Avenue'),(10695,3032,'_billing_address_2',''),(10696,3032,'_billing_city','North Shields'),(10697,3032,'_billing_state','Tyne and Wear'),(10698,3032,'_billing_postcode','NE30 2RR'),(10699,3032,'_billing_country','GB'),(10700,3032,'_billing_email','aliavery@hotmail.co.uk'),(10701,3032,'_billing_phone','+447980923996'),(10702,3032,'_shipping_first_name',''),(10703,3032,'_shipping_last_name',''),(10704,3032,'_shipping_company',''),(10705,3032,'_shipping_address_1',''),(10706,3032,'_shipping_address_2',''),(10707,3032,'_shipping_city',''),(10708,3032,'_shipping_state',''),(10709,3032,'_shipping_postcode',''),(10710,3032,'_shipping_country',''),(10711,3032,'_order_currency','GBP'),(10712,3032,'_cart_discount','0'),(10713,3032,'_cart_discount_tax','0'),(10714,3032,'_order_shipping','0.00'),(10715,3032,'_order_shipping_tax','0'),(10716,3032,'_order_tax','0'),(10717,3032,'_order_total','12.00'),(10718,3032,'_order_version','3.5.3'),(10719,3032,'_prices_include_tax','no'),(10720,3032,'_billing_address_index','Ali Avery Averys Angels 15 Birtley Avenue  North Shields Tyne and Wear NE30 2RR GB aliavery@hotmail.co.uk +447980923996'),(10721,3032,'_shipping_address_index','         +447980923996'),(10722,3032,'Payment type','instant'),(10723,3032,'_paypal_status','completed'),(10724,3032,'_download_permissions_granted','yes'),(10725,3032,'_recorded_sales','yes'),(10726,3032,'_recorded_coupon_usage_counts','yes'),(10727,3032,'_order_stock_reduced','yes'),(10728,3032,'PayPal Transaction Fee','0.61'),(10729,3033,'_order_key','wc_order_5d1495982717a'),(10730,3033,'_customer_user','0'),(10731,3033,'_payment_method','bacs'),(10732,3033,'_payment_method_title','Direct bank transfer'),(10733,3033,'_transaction_id',''),(10734,3033,'_customer_ip_address','199.66.88.108'),(10735,3033,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36'),(10736,3033,'_created_via','checkout'),(10737,3033,'_date_completed',''),(10738,3033,'_completed_date',''),(10739,3033,'_date_paid',''),(10740,3033,'_paid_date',''),(10741,3033,'_cart_hash','39ada02b3201862dfe05aa6eb3c7781d'),(10742,3033,'_billing_first_name','Tom'),(10743,3033,'_billing_last_name','Gallagher'),(10744,3033,'_billing_company','Mr'),(10745,3033,'_billing_address_1','48 kings road'),(10746,3033,'_billing_address_2','south wallsend, tyne and wear'),(10747,3033,'_billing_city','newcastle'),(10748,3033,'_billing_state','Newcastle upon Tyne'),(10749,3033,'_billing_postcode','NE28 7RB'),(10750,3033,'_billing_country','GB'),(10751,3033,'_billing_email','tomgallagher1979@gmail.com'),(10752,3033,'_billing_phone','07487865570'),(10753,3033,'_shipping_first_name',''),(10754,3033,'_shipping_last_name',''),(10755,3033,'_shipping_company',''),(10756,3033,'_shipping_address_1',''),(10757,3033,'_shipping_address_2',''),(10758,3033,'_shipping_city',''),(10759,3033,'_shipping_state',''),(10760,3033,'_shipping_postcode',''),(10761,3033,'_shipping_country',''),(10762,3033,'_order_currency','GBP'),(10763,3033,'_cart_discount','0'),(10764,3033,'_cart_discount_tax','0'),(10765,3033,'_order_shipping','0.00'),(10766,3033,'_order_shipping_tax','0'),(10767,3033,'_order_tax','0'),(10768,3033,'_order_total','12.00'),(10769,3033,'_order_version','3.5.3'),(10770,3033,'_prices_include_tax','no'),(10771,3033,'_billing_address_index','Tom Gallagher Mr 48 kings road south wallsend, tyne and wear newcastle Newcastle upon Tyne NE28 7RB GB tomgallagher1979@gmail.com 07487865570'),(10772,3033,'_shipping_address_index','         07487865570'),(10773,3033,'_recorded_sales','yes'),(10774,3033,'_recorded_coupon_usage_counts','yes'),(10775,3033,'_order_stock_reduced','yes'),(10782,3034,'_menu_item_xfn',''),(10783,3034,'_menu_item_url',''),(10785,3044,'_edit_lock','1561901377:1'),(10786,3044,'_edit_last','1'),(10787,3044,'_wp_page_template','content-sidebar-page.php'),(10788,3044,'_responsive_layout','default'),(10789,3044,'_yoast_wpseo_content_score','90'),(10790,3047,'_form','<fieldset>\n	<legend>Enter your details below to learn about NLP events</legend>\n	<ol>\n		<li> Name [text* cf7s-name] </li>\n		<li> Email [email* cf7s-email] </li>\n		\n	</ol>\n	[submit \"Submit\"]\n	<p>* Required</p>\n</fieldset>'),(10791,3047,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:26:\"NH - New Subscriber EVENTS\";s:6:\"sender\";s:44:\"NLP EVENTS <mark@newcastle-hypnotherapy.com>\";s:9:\"recipient\";s:31:\"mark@newcastle-hypnotherapy.com\";s:4:\"body\";s:229:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Newcastle Hypnotherapy Tyneside &amp; Northumberland, (http://www.newcastle-hypnotherapy.com)\";s:18:\"additional_headers\";s:43:\"Reply-To: <mark@newcastle-hypnotherapy.com>\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(10792,3047,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:66:\"Newcastle Hypnotherapy Tyneside & Northumberland, \"[your-subject]\"\";s:6:\"sender\";s:83:\"Newcastle Hypnotherapy Tyneside & Northumberland, <mark@newcastle-hypnotherapy.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:171:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Newcastle Hypnotherapy Tyneside &amp; Northumberland, (http://www.newcastle-hypnotherapy.com)\";s:18:\"additional_headers\";s:41:\"Reply-To: mark@newcastle-hypnotherapy.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(10793,3047,'_messages','a:23:{s:12:\"mail_sent_ok\";s:59:\"Thank you. You have been added to the NLP Events newsletter\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(10794,3047,'_additional_settings',''),(10795,3047,'_locale','en_GB'),(10796,3047,'cf7s_template','fieldset-basic'),(10797,3047,'cf7s_style','caspar'),(10798,3047,'cf7s_postbox','a:1:{s:8:\"cf7skins\";s:0:\"\";}'),(10799,3047,'cf7s_visual',''),(10800,3060,'_wp_attached_file','2019/06/power-384085_960_720.jpg'),(10801,3060,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:950;s:6:\"height\";i:720;s:4:\"file\";s:32:\"2019/06/power-384085_960_720.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"power-384085_960_720-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"power-384085_960_720-300x227.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"power-384085_960_720-768x582.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:582;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:31:\"power-384085_960_720-100x76.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:76;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:32:\"power-384085_960_720-150x114.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:32:\"power-384085_960_720-200x152.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:32:\"power-384085_960_720-300x227.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:32:\"power-384085_960_720-450x341.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:32:\"power-384085_960_720-600x455.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:32:\"power-384085_960_720-900x682.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"power-384085_960_720-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"power-384085_960_720-400x303.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"power-384085_960_720-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"power-384085_960_720-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"power-384085_960_720-400x303.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"power-384085_960_720-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10802,3060,'_wp_attachment_image_alt','newcastle hypnotherapy events workshops'),(10803,3064,'_menu_item_type','post_type'),(10804,3064,'_menu_item_menu_item_parent','804'),(10805,3064,'_menu_item_object_id','3044'),(10806,3064,'_menu_item_object','page'),(10807,3064,'_menu_item_target',''),(10808,3064,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(10809,3064,'_menu_item_xfn',''),(10810,3064,'_menu_item_url',''),(10821,3044,'_thumbnail_id','3060'),(11394,3150,'_customer_ip_address','88.109.98.244'),(11393,3150,'_transaction_id','83321428DK521940N'),(11392,3150,'_payment_method_title','PayPal'),(11391,3150,'_payment_method','paypal'),(11390,3150,'_customer_user','0'),(11389,3150,'_order_key','wc_order_5d7acc5fb0c9b'),(10822,3095,'_wp_attached_file','2019/06/hayley.jpg'),(10823,3095,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:653;s:6:\"height\";i:276;s:4:\"file\";s:18:\"2019/06/hayley.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"hayley-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"hayley-300x127.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:17:\"hayley-100x42.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:42;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:17:\"hayley-150x63.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:63;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:17:\"hayley-200x85.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:18:\"hayley-300x127.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:18:\"hayley-450x190.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:18:\"hayley-600x254.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"hayley-300x276.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:276;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"hayley-400x169.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"hayley-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"hayley-300x276.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:276;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"hayley-400x169.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"hayley-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:8:\"Mel Mann\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10824,3095,'_wp_attachment_image_alt','newcastle hypnotherapy events and workshops'),(10825,3098,'_wp_attached_file','2019/06/gail.jpg'),(10826,3098,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:619;s:6:\"height\";i:194;s:4:\"file\";s:16:\"2019/06/gail.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"gail-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"gail-300x94.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:15:\"gail-100x31.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:31;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:15:\"gail-150x47.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:47;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:15:\"gail-200x63.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:63;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:15:\"gail-300x94.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:16:\"gail-450x141.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:16:\"gail-600x188.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"gail-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"gail-400x125.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"gail-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"gail-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"gail-400x125.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"gail-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:8:\"Mel Mann\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1561908283\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10827,3098,'_wp_attachment_image_alt','newcastle hypnotherapy workshops and events'),(10828,2675,'_wp_old_slug','the-secrets-of-being-happy'),(10881,3130,'_customer_user','0'),(10831,1960,'_wp_old_slug','anxiety-breathing-excercises'),(10880,3130,'_order_key','wc_order_5d1ba7b1ac69d'),(10882,3130,'_payment_method','bacs'),(10883,3130,'_payment_method_title','Direct bank transfer'),(10884,3130,'_transaction_id',''),(10885,3130,'_customer_ip_address','82.0.95.189'),(10886,3130,'_customer_user_agent','Mozilla/5.0 (Linux; Android 9; SAMSUNG SM-A600FN Build/PPR1.180610.011) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/9.2 Chrome/67.0.3396.87 Mobile Safari/537.36'),(10887,3130,'_created_via','checkout'),(10888,3130,'_date_completed',''),(10889,3130,'_completed_date',''),(10890,3130,'_date_paid',''),(10891,3130,'_paid_date',''),(10892,3130,'_cart_hash','ce8a4f9ada81d1d56cde9fc9b6261251'),(10893,3130,'_billing_first_name','Linda'),(10894,3130,'_billing_last_name','Graham'),(10895,3130,'_billing_company',''),(10896,3130,'_billing_address_1','39 Ordley Close'),(10897,3130,'_billing_address_2','Dumpling Hall'),(10898,3130,'_billing_city','Newcastle upon Tyne'),(10899,3130,'_billing_state','United Kingdom'),(10900,3130,'_billing_postcode','NE15 7XT'),(10901,3130,'_billing_country','GB'),(10902,3130,'_billing_email','Lagraham39@hotmail.co.uk'),(10903,3130,'_billing_phone','07971754892'),(10904,3130,'_shipping_first_name',''),(10905,3130,'_shipping_last_name',''),(10906,3130,'_shipping_company',''),(10907,3130,'_shipping_address_1',''),(10908,3130,'_shipping_address_2',''),(10909,3130,'_shipping_city',''),(10910,3130,'_shipping_state',''),(10911,3130,'_shipping_postcode',''),(10912,3130,'_shipping_country',''),(10913,3130,'_order_currency','GBP'),(10914,3130,'_cart_discount','0'),(10915,3130,'_cart_discount_tax','0'),(10916,3130,'_order_shipping','0.00'),(10917,3130,'_order_shipping_tax','0'),(10918,3130,'_order_tax','0'),(10919,3130,'_order_total','12.50'),(10920,3130,'_order_version','3.5.3'),(10921,3130,'_prices_include_tax','no'),(10922,3130,'_billing_address_index','Linda Graham  39 Ordley Close Dumpling Hall Newcastle upon Tyne United Kingdom NE15 7XT GB Lagraham39@hotmail.co.uk 07971754892'),(10923,3130,'_shipping_address_index','         07971754892'),(10924,3130,'_recorded_sales','yes'),(10925,3130,'_recorded_coupon_usage_counts','yes'),(10926,3130,'_order_stock_reduced','yes'),(10927,3131,'_order_key','wc_order_5d20e941c8e31'),(10928,3131,'_customer_user','0'),(10929,3131,'_payment_method','paypal'),(10930,3131,'_payment_method_title','PayPal'),(10931,3131,'_transaction_id','06U84123W35493121'),(10932,3131,'_customer_ip_address','88.109.98.244'),(10933,3131,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Mobile/15E148 Safari/604.1'),(10934,3131,'_created_via','checkout'),(10935,3131,'_date_completed',''),(10936,3131,'_completed_date',''),(10937,3131,'_date_paid','1562437983'),(10938,3131,'_paid_date','2019-07-06 18:33:03'),(10939,3131,'_cart_hash','0b3b57eff616c0922378090ecb515ffc'),(10940,3131,'_billing_first_name','Victoria'),(10941,3131,'_billing_last_name','Cox'),(10942,3131,'_billing_company',''),(10943,3131,'_billing_address_1','2 Whitehouse Mews'),(10944,3131,'_billing_address_2',''),(10945,3131,'_billing_city','Wallsend'),(10946,3131,'_billing_state',''),(10947,3131,'_billing_postcode','NE28 7EP'),(10948,3131,'_billing_country','GB'),(10949,3131,'_billing_email','miffy101@hotmail.com'),(10950,3131,'_billing_phone','+447951578734'),(10951,3131,'_shipping_first_name',''),(10952,3131,'_shipping_last_name',''),(10953,3131,'_shipping_company',''),(10954,3131,'_shipping_address_1',''),(10955,3131,'_shipping_address_2',''),(10956,3131,'_shipping_city',''),(10957,3131,'_shipping_state',''),(10958,3131,'_shipping_postcode',''),(10959,3131,'_shipping_country',''),(10960,3131,'_order_currency','GBP'),(10961,3131,'_cart_discount','0'),(10962,3131,'_cart_discount_tax','0'),(10963,3131,'_order_shipping','0.00'),(10964,3131,'_order_shipping_tax','0'),(10965,3131,'_order_tax','0'),(10966,3131,'_order_total','12.50'),(10967,3131,'_order_version','3.5.3'),(10968,3131,'_prices_include_tax','no'),(10969,3131,'_billing_address_index','Victoria Cox  2 Whitehouse Mews  Wallsend  NE28 7EP GB miffy101@hotmail.com +447951578734'),(10970,3131,'_shipping_address_index','         +447951578734'),(10971,3131,'Payment type','instant'),(10972,3131,'_paypal_status','completed'),(10973,3131,'_download_permissions_granted','yes'),(10974,3131,'_recorded_sales','yes'),(10975,3131,'_recorded_coupon_usage_counts','yes'),(10976,3131,'_order_stock_reduced','yes'),(10977,3131,'PayPal Transaction Fee','0.63'),(10978,3132,'_order_key','wc_order_5d2499983aff1'),(10979,3132,'_customer_user','0'),(10980,3132,'_payment_method','paypal'),(10981,3132,'_payment_method_title','PayPal'),(10982,3132,'_transaction_id','9NH58346675627714'),(10983,3132,'_customer_ip_address','82.132.239.53'),(10984,3132,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.1.0; moto e5 play) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.101 Mobile Safari/537.36'),(10985,3132,'_created_via','checkout'),(10986,3132,'_date_completed',''),(10987,3132,'_completed_date',''),(10988,3132,'_date_paid','1562679792'),(10989,3132,'_paid_date','2019-07-09 13:43:12'),(10990,3132,'_cart_hash','0b3b57eff616c0922378090ecb515ffc'),(10991,3132,'_billing_first_name','Susan'),(10992,3132,'_billing_last_name','Jeffs'),(10993,3132,'_billing_company',''),(10994,3132,'_billing_address_1','215 Windsor walk'),(10995,3132,'_billing_address_2',''),(10996,3132,'_billing_city','Newcastle upon Tyne'),(10997,3132,'_billing_state',''),(10998,3132,'_billing_postcode','NE3 2TX'),(10999,3132,'_billing_country','GB'),(11000,3132,'_billing_email','su.jeffs@gmail.com'),(11001,3132,'_billing_phone','01912867964'),(11002,3132,'_shipping_first_name',''),(11003,3132,'_shipping_last_name',''),(11004,3132,'_shipping_company',''),(11005,3132,'_shipping_address_1',''),(11006,3132,'_shipping_address_2',''),(11007,3132,'_shipping_city',''),(11008,3132,'_shipping_state',''),(11009,3132,'_shipping_postcode',''),(11010,3132,'_shipping_country',''),(11011,3132,'_order_currency','GBP'),(11012,3132,'_cart_discount','0'),(11013,3132,'_cart_discount_tax','0'),(11014,3132,'_order_shipping','0.00'),(11015,3132,'_order_shipping_tax','0'),(11016,3132,'_order_tax','0'),(11017,3132,'_order_total','12.50'),(11018,3132,'_order_version','3.5.3'),(11019,3132,'_prices_include_tax','no'),(11020,3132,'_billing_address_index','Susan Jeffs  215 Windsor walk  Newcastle upon Tyne  NE3 2TX GB su.jeffs@gmail.com 01912867964'),(11021,3132,'_shipping_address_index','         01912867964'),(11022,3132,'Payment type','instant'),(11023,3132,'_paypal_status','completed'),(11024,3132,'_download_permissions_granted','yes'),(11025,3132,'_recorded_sales','yes'),(11026,3132,'_recorded_coupon_usage_counts','yes'),(11027,3132,'_order_stock_reduced','yes'),(11028,3132,'PayPal Transaction Fee','0.63'),(11029,3133,'_order_key','wc_order_5d25c6f4ce01e'),(11030,3133,'_customer_user','0'),(11031,3133,'_payment_method','bacs'),(11032,3133,'_payment_method_title','Direct bank transfer'),(11033,3133,'_transaction_id',''),(11034,3133,'_customer_ip_address','151.227.45.1'),(11035,3133,'_customer_user_agent','Mozilla/5.0 (Linux; Android 7.0; Moto G (5)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.101 Mobile Safari/537.36'),(11036,3133,'_created_via','checkout'),(11037,3133,'_date_completed',''),(11038,3133,'_completed_date',''),(11039,3133,'_date_paid',''),(11040,3133,'_paid_date',''),(11041,3133,'_cart_hash','74c268c290e9b472d6b758740e6210b8'),(11042,3133,'_billing_first_name','Inga'),(11043,3133,'_billing_last_name','Grebere'),(11044,3133,'_billing_company','Miss'),(11045,3133,'_billing_address_1','43 Bishops Park Road'),(11046,3133,'_billing_address_2','Gateshead'),(11047,3133,'_billing_city','Gateshead'),(11048,3133,'_billing_state','England'),(11049,3133,'_billing_postcode','NE8 3FF'),(11050,3133,'_billing_country','GB'),(11051,3133,'_billing_email','grebere@inbox.lv'),(11052,3133,'_billing_phone','07873583777'),(11053,3133,'_shipping_first_name',''),(11054,3133,'_shipping_last_name',''),(11055,3133,'_shipping_company',''),(11056,3133,'_shipping_address_1',''),(11057,3133,'_shipping_address_2',''),(11058,3133,'_shipping_city',''),(11059,3133,'_shipping_state',''),(11060,3133,'_shipping_postcode',''),(11061,3133,'_shipping_country',''),(11062,3133,'_order_currency','GBP'),(11063,3133,'_cart_discount','0'),(11064,3133,'_cart_discount_tax','0'),(11065,3133,'_order_shipping','0.00'),(11066,3133,'_order_shipping_tax','0'),(11067,3133,'_order_tax','0'),(11068,3133,'_order_total','25.00'),(11069,3133,'_order_version','3.5.3'),(11070,3133,'_prices_include_tax','no'),(11071,3133,'_billing_address_index','Inga Grebere Miss 43 Bishops Park Road Gateshead Gateshead England NE8 3FF GB grebere@inbox.lv 07873583777'),(11072,3133,'_shipping_address_index','         07873583777'),(11073,3133,'_recorded_sales','yes'),(11074,3133,'_recorded_coupon_usage_counts','yes'),(11075,3133,'_order_stock_reduced','yes'),(11076,3134,'_order_key','wc_order_5d2774008541c'),(11077,3134,'_customer_user','0'),(11078,3134,'_payment_method','paypal'),(11079,3134,'_payment_method_title','PayPal'),(11080,3134,'_transaction_id','01720554BL498205F'),(11081,3134,'_customer_ip_address','82.132.185.61'),(11082,3134,'_customer_user_agent','Mozilla/5.0 (Linux; Android 9; SAMSUNG SM-A750FN Build/PPR1.180610.011) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36'),(11083,3134,'_created_via','checkout'),(11084,3134,'_date_completed',''),(11085,3134,'_completed_date',''),(11086,3134,'_date_paid','1562866726'),(11087,3134,'_paid_date','2019-07-11 17:38:46'),(11088,3134,'_cart_hash','ce8a4f9ada81d1d56cde9fc9b6261251'),(11089,3134,'_billing_first_name','Ali'),(11090,3134,'_billing_last_name','Avery'),(11091,3134,'_billing_company',''),(11092,3134,'_billing_address_1','15 Birtley Avenue'),(11093,3134,'_billing_address_2',''),(11094,3134,'_billing_city','North Shields'),(11095,3134,'_billing_state','Tyne and Wear'),(11096,3134,'_billing_postcode','NE30 2RR'),(11097,3134,'_billing_country','GB'),(11098,3134,'_billing_email','aliavery@hotmail.co.uk'),(11099,3134,'_billing_phone','07980923996'),(11100,3134,'_shipping_first_name',''),(11101,3134,'_shipping_last_name',''),(11102,3134,'_shipping_company',''),(11103,3134,'_shipping_address_1',''),(11104,3134,'_shipping_address_2',''),(11105,3134,'_shipping_city',''),(11106,3134,'_shipping_state',''),(11107,3134,'_shipping_postcode',''),(11108,3134,'_shipping_country',''),(11109,3134,'_order_currency','GBP'),(11110,3134,'_cart_discount','0'),(11111,3134,'_cart_discount_tax','0'),(11112,3134,'_order_shipping','0.00'),(11113,3134,'_order_shipping_tax','0'),(11114,3134,'_order_tax','0'),(11115,3134,'_order_total','12.50'),(11116,3134,'_order_version','3.5.3'),(11117,3134,'_prices_include_tax','no'),(11118,3134,'_billing_address_index','Ali Avery  15 Birtley Avenue  North Shields Tyne and Wear NE30 2RR GB aliavery@hotmail.co.uk 07980923996'),(11119,3134,'_shipping_address_index','         07980923996'),(11120,3134,'Payment type','instant'),(11121,3134,'_paypal_status','completed'),(11122,3134,'_download_permissions_granted','yes'),(11123,3134,'_recorded_sales','yes'),(11124,3134,'_recorded_coupon_usage_counts','yes'),(11125,3134,'_order_stock_reduced','yes'),(11335,3134,'_paypal_transaction_fee','0.63'),(11127,3135,'_order_key','wc_order_5d2908ffddcb1'),(11128,3135,'_customer_user','0'),(11129,3135,'_payment_method','paypal'),(11130,3135,'_payment_method_title','PayPal'),(11131,3135,'_transaction_id','9J7736312V9017450'),(11132,3135,'_customer_ip_address','88.109.98.244'),(11133,3135,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Mobile/15E148 Safari/604.1'),(11134,3135,'_created_via','checkout'),(11135,3135,'_date_completed',''),(11136,3135,'_completed_date',''),(11137,3135,'_date_paid','1562970408'),(11138,3135,'_paid_date','2019-07-12 22:26:48'),(11139,3135,'_cart_hash','ce8a4f9ada81d1d56cde9fc9b6261251'),(11140,3135,'_billing_first_name','Victoria'),(11141,3135,'_billing_last_name','Cox'),(11142,3135,'_billing_company',''),(11143,3135,'_billing_address_1','2 Whitehouse Mews'),(11144,3135,'_billing_address_2',''),(11145,3135,'_billing_city','Wallsend'),(11146,3135,'_billing_state',''),(11147,3135,'_billing_postcode','NE28 7EP'),(11148,3135,'_billing_country','GB'),(11149,3135,'_billing_email','miffy101@hotmail.com'),(11150,3135,'_billing_phone','+447951578734'),(11151,3135,'_shipping_first_name',''),(11152,3135,'_shipping_last_name',''),(11153,3135,'_shipping_company',''),(11154,3135,'_shipping_address_1',''),(11155,3135,'_shipping_address_2',''),(11156,3135,'_shipping_city',''),(11157,3135,'_shipping_state',''),(11158,3135,'_shipping_postcode',''),(11159,3135,'_shipping_country',''),(11160,3135,'_order_currency','GBP'),(11161,3135,'_cart_discount','0'),(11162,3135,'_cart_discount_tax','0'),(11163,3135,'_order_shipping','0.00'),(11164,3135,'_order_shipping_tax','0'),(11165,3135,'_order_tax','0'),(11166,3135,'_order_total','12.50'),(11167,3135,'_order_version','3.5.3'),(11168,3135,'_prices_include_tax','no'),(11169,3135,'_billing_address_index','Victoria Cox  2 Whitehouse Mews  Wallsend  NE28 7EP GB miffy101@hotmail.com +447951578734'),(11170,3135,'_shipping_address_index','         +447951578734'),(11171,3135,'Payment type','instant'),(11172,3135,'_paypal_status','completed'),(11173,3135,'_download_permissions_granted','yes'),(11174,3135,'_recorded_sales','yes'),(11175,3135,'_recorded_coupon_usage_counts','yes'),(11176,3135,'_order_stock_reduced','yes'),(11333,3135,'_paypal_transaction_fee','0.63'),(11178,3138,'_order_key','wc_order_5d343a1e0c635'),(11179,3138,'_customer_user','0'),(11180,3138,'_payment_method','paypal'),(11181,3138,'_payment_method_title','PayPal'),(11182,3138,'_transaction_id','1P0487453S630154D'),(11183,3138,'_customer_ip_address','188.220.161.184'),(11184,3138,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 12_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Mobile/15E148 Safari/604.1'),(11185,3138,'_created_via','checkout'),(11186,3138,'_date_completed',''),(11187,3138,'_completed_date',''),(11188,3138,'_date_paid','1563704119'),(11189,3138,'_paid_date','2019-07-21 10:15:19'),(11190,3138,'_cart_hash','ce8a4f9ada81d1d56cde9fc9b6261251'),(11191,3138,'_billing_first_name','Sandra'),(11192,3138,'_billing_last_name','Kingsley-smith'),(11193,3138,'_billing_company',''),(11194,3138,'_billing_address_1','133'),(11195,3138,'_billing_address_2','Bayfield'),(11196,3138,'_billing_city','Newcastle upon Tyne'),(11197,3138,'_billing_state','Tyne & Wear'),(11198,3138,'_billing_postcode','NE27 0FE'),(11199,3138,'_billing_country','GB'),(11200,3138,'_billing_email','s.ksmith@btinternet.com'),(11201,3138,'_billing_phone','07795674130'),(11202,3138,'_shipping_first_name',''),(11203,3138,'_shipping_last_name',''),(11204,3138,'_shipping_company',''),(11205,3138,'_shipping_address_1',''),(11206,3138,'_shipping_address_2',''),(11207,3138,'_shipping_city',''),(11208,3138,'_shipping_state',''),(11209,3138,'_shipping_postcode',''),(11210,3138,'_shipping_country',''),(11211,3138,'_order_currency','GBP'),(11212,3138,'_cart_discount','0'),(11213,3138,'_cart_discount_tax','0'),(11214,3138,'_order_shipping','0.00'),(11215,3138,'_order_shipping_tax','0'),(11216,3138,'_order_tax','0'),(11217,3138,'_order_total','12.50'),(11218,3138,'_order_version','3.5.3'),(11219,3138,'_prices_include_tax','no'),(11220,3138,'_billing_address_index','Sandra Kingsley-smith  133 Bayfield Newcastle upon Tyne Tyne & Wear NE27 0FE GB s.ksmith@btinternet.com 07795674130'),(11221,3138,'_shipping_address_index','         07795674130'),(11222,3138,'Payment type','instant'),(11223,3138,'_paypal_status','completed'),(11224,3138,'_download_permissions_granted','yes'),(11225,3138,'_recorded_sales','yes'),(11226,3138,'_recorded_coupon_usage_counts','yes'),(11227,3138,'_order_stock_reduced','yes'),(11331,3138,'_paypal_transaction_fee','0.63'),(11229,3139,'_order_key','wc_order_5d381a854a8a2'),(11230,3139,'_customer_user','0'),(11231,3139,'_payment_method','paypal'),(11232,3139,'_payment_method_title','PayPal'),(11233,3139,'_transaction_id','36H458470D137660W'),(11234,3139,'_customer_ip_address','82.132.185.91'),(11235,3139,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.1.0; moto e5 play) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.101 Mobile Safari/537.36'),(11236,3139,'_created_via','checkout'),(11237,3139,'_date_completed',''),(11238,3139,'_completed_date',''),(11239,3139,'_date_paid','1563957991'),(11240,3139,'_paid_date','2019-07-24 08:46:31'),(11241,3139,'_cart_hash','ce8a4f9ada81d1d56cde9fc9b6261251'),(11242,3139,'_billing_first_name','Susan'),(11243,3139,'_billing_last_name','Jeffs'),(11244,3139,'_billing_company',''),(11245,3139,'_billing_address_1','215 Windsor walk'),(11246,3139,'_billing_address_2',''),(11247,3139,'_billing_city','Newcastle upon Tyne'),(11248,3139,'_billing_state','County (optional)'),(11249,3139,'_billing_postcode','NE3 2TX'),(11250,3139,'_billing_country','GB'),(11251,3139,'_billing_email','su.jeffs@gmail.com'),(11252,3139,'_billing_phone','01912867964'),(11253,3139,'_shipping_first_name',''),(11254,3139,'_shipping_last_name',''),(11255,3139,'_shipping_company',''),(11256,3139,'_shipping_address_1',''),(11257,3139,'_shipping_address_2',''),(11258,3139,'_shipping_city',''),(11259,3139,'_shipping_state',''),(11260,3139,'_shipping_postcode',''),(11261,3139,'_shipping_country',''),(11262,3139,'_order_currency','GBP'),(11263,3139,'_cart_discount','0'),(11264,3139,'_cart_discount_tax','0'),(11265,3139,'_order_shipping','0.00'),(11266,3139,'_order_shipping_tax','0'),(11267,3139,'_order_tax','0'),(11268,3139,'_order_total','12.50'),(11269,3139,'_order_version','3.5.3'),(11270,3139,'_prices_include_tax','no'),(11271,3139,'_billing_address_index','Susan Jeffs  215 Windsor walk  Newcastle upon Tyne County (optional) NE3 2TX GB su.jeffs@gmail.com 01912867964'),(11272,3139,'_shipping_address_index','         01912867964'),(11273,3139,'Payment type','instant'),(11274,3139,'_paypal_status','completed'),(11275,3139,'_download_permissions_granted','yes'),(11276,3139,'_recorded_sales','yes'),(11277,3139,'_recorded_coupon_usage_counts','yes'),(11278,3139,'_order_stock_reduced','yes'),(11329,3139,'_paypal_transaction_fee','0.63'),(11280,3140,'_order_key','wc_order_5d383eeb11dbc'),(11281,3140,'_customer_user','0'),(11282,3140,'_payment_method','bacs'),(11283,3140,'_payment_method_title','Direct bank transfer'),(11284,3140,'_transaction_id',''),(11285,3140,'_customer_ip_address','92.12.169.36'),(11286,3140,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(11287,3140,'_created_via','checkout'),(11288,3140,'_date_completed',''),(11289,3140,'_completed_date',''),(11290,3140,'_date_paid',''),(11291,3140,'_paid_date',''),(11292,3140,'_cart_hash','ce8a4f9ada81d1d56cde9fc9b6261251'),(11293,3140,'_billing_first_name','Tom'),(11294,3140,'_billing_last_name','Gallagher'),(11295,3140,'_billing_company',''),(11296,3140,'_billing_address_1','48 kings road'),(11297,3140,'_billing_address_2','south wallsend, tyne and wear'),(11298,3140,'_billing_city','newcastle'),(11299,3140,'_billing_state','England'),(11300,3140,'_billing_postcode','NE28 7RB'),(11301,3140,'_billing_country','GB'),(11302,3140,'_billing_email','tompetergallagher@hotmail.co.uk'),(11303,3140,'_billing_phone','+447487865570'),(11304,3140,'_shipping_first_name',''),(11305,3140,'_shipping_last_name',''),(11306,3140,'_shipping_company',''),(11307,3140,'_shipping_address_1',''),(11308,3140,'_shipping_address_2',''),(11309,3140,'_shipping_city',''),(11310,3140,'_shipping_state',''),(11311,3140,'_shipping_postcode',''),(11312,3140,'_shipping_country',''),(11313,3140,'_order_currency','GBP'),(11314,3140,'_cart_discount','0'),(11315,3140,'_cart_discount_tax','0'),(11316,3140,'_order_shipping','0.00'),(11317,3140,'_order_shipping_tax','0'),(11318,3140,'_order_tax','0'),(11319,3140,'_order_total','12.50'),(11320,3140,'_order_version','3.5.3'),(11321,3140,'_prices_include_tax','no'),(11322,3140,'_billing_address_index','Tom Gallagher  48 kings road south wallsend, tyne and wear newcastle England NE28 7RB GB tompetergallagher@hotmail.co.uk +447487865570'),(11323,3140,'_shipping_address_index','         +447487865570'),(11324,3140,'_recorded_sales','yes'),(11325,3140,'_recorded_coupon_usage_counts','yes'),(11326,3140,'_order_stock_reduced','yes'),(11327,3140,'_edit_lock','1563970343:1'),(11328,3139,'_edit_lock','1563970592:1'),(11330,3138,'_edit_lock','1563970510:1'),(11332,3135,'_edit_lock','1563970620:1'),(11334,3134,'_edit_lock','1563970692:1'),(11336,3133,'_edit_lock','1563970706:1'),(11337,3130,'_edit_lock','1563970921:1'),(11338,3145,'_wp_attached_file','2019/09/deep-relaxation.jpg'),(11339,3145,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:600;s:4:\"file\";s:27:\"2019/09/deep-relaxation.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"deep-relaxation-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"deep-relaxation-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"deep-relaxation-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:26:\"deep-relaxation-100x63.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:63;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:26:\"deep-relaxation-150x94.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:94;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:27:\"deep-relaxation-200x125.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:27:\"deep-relaxation-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:27:\"deep-relaxation-450x281.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:27:\"deep-relaxation-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:27:\"deep-relaxation-900x563.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"deep-relaxation-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"deep-relaxation-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"deep-relaxation-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"deep-relaxation-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"deep-relaxation-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"deep-relaxation-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11340,3145,'_wp_attachment_image_alt','deep relaxation'),(11341,2836,'_thumbnail_id','3145'),(11343,3148,'_customer_user','1'),(11344,3148,'_payment_method','bacs'),(11345,3148,'_payment_method_title','Direct bank transfer'),(11346,3148,'_transaction_id',''),(11347,3148,'_customer_ip_address','92.6.77.173'),(11348,3148,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0'),(11349,3148,'_created_via','checkout'),(11350,3148,'_date_completed',''),(11351,3148,'_completed_date',''),(11352,3148,'_date_paid',''),(11353,3148,'_paid_date',''),(11354,3148,'_cart_hash','a282d1d4b705d3047c76e6353b4eb4d1'),(11355,3148,'_billing_first_name','Test'),(11356,3148,'_billing_last_name','Tes'),(11357,3148,'_billing_company','test order 4'),(11358,3148,'_billing_address_1','27 Greystoke Place'),(11359,3148,'_billing_address_2','Test street'),(11360,3148,'_billing_city','Newcastle'),(11361,3148,'_billing_state',''),(11362,3148,'_billing_postcode','NE23 6NL'),(11363,3148,'_billing_country','GB'),(11364,3148,'_billing_email','myfreepack@gmail.com'),(11365,3148,'_billing_phone','0980980989'),(11366,3148,'_shipping_first_name',''),(11367,3148,'_shipping_last_name',''),(11368,3148,'_shipping_company',''),(11369,3148,'_shipping_address_1',''),(11370,3148,'_shipping_address_2',''),(11371,3148,'_shipping_city',''),(11372,3148,'_shipping_state',''),(11373,3148,'_shipping_postcode',''),(11374,3148,'_shipping_country',''),(11375,3148,'_order_currency','GBP'),(11376,3148,'_cart_discount','0'),(11377,3148,'_cart_discount_tax','0'),(11378,3148,'_order_shipping','0.00'),(11379,3148,'_order_shipping_tax','0'),(11380,3148,'_order_tax','0'),(11381,3148,'_order_total','15.00'),(11382,3148,'_order_version','3.5.3'),(11383,3148,'_prices_include_tax','no'),(11384,3148,'_billing_address_index','Test Tes test order 4 27 Greystoke Place Test street Newcastle  NE23 6NL GB myfreepack@gmail.com 0980980989'),(11385,3148,'_shipping_address_index','         0980980989'),(11386,3148,'_recorded_sales','yes'),(11387,3148,'_recorded_coupon_usage_counts','yes'),(11388,3148,'_order_stock_reduced','yes'),(11395,3150,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1'),(11396,3150,'_created_via','checkout'),(11397,3150,'_date_completed',''),(11398,3150,'_completed_date',''),(11399,3150,'_date_paid','1568328861'),(11400,3150,'_paid_date','2019-09-12 22:54:21'),(11401,3150,'_cart_hash','a282d1d4b705d3047c76e6353b4eb4d1'),(11402,3150,'_billing_first_name','Victoria'),(11403,3150,'_billing_last_name','Cox'),(11404,3150,'_billing_company',''),(11405,3150,'_billing_address_1','2 Whitehouse mews'),(11406,3150,'_billing_address_2',''),(11407,3150,'_billing_city','Wallsend'),(11408,3150,'_billing_state',''),(11409,3150,'_billing_postcode','NE28 7EP'),(11410,3150,'_billing_country','GB'),(11411,3150,'_billing_email','miffy101@hotmail.com'),(11412,3150,'_billing_phone','+447951578734'),(11413,3150,'_shipping_first_name',''),(11414,3150,'_shipping_last_name',''),(11415,3150,'_shipping_company',''),(11416,3150,'_shipping_address_1',''),(11417,3150,'_shipping_address_2',''),(11418,3150,'_shipping_city',''),(11419,3150,'_shipping_state',''),(11420,3150,'_shipping_postcode',''),(11421,3150,'_shipping_country',''),(11422,3150,'_order_currency','GBP'),(11423,3150,'_cart_discount','0'),(11424,3150,'_cart_discount_tax','0'),(11425,3150,'_order_shipping','0.00'),(11426,3150,'_order_shipping_tax','0'),(11427,3150,'_order_tax','0'),(11428,3150,'_order_total','15.00'),(11429,3150,'_order_version','3.5.3'),(11430,3150,'_prices_include_tax','no'),(11431,3150,'_billing_address_index','Victoria Cox  2 Whitehouse mews  Wallsend  NE28 7EP GB miffy101@hotmail.com +447951578734'),(11432,3150,'_shipping_address_index','         +447951578734'),(11433,3150,'Payment type','instant'),(11434,3150,'_paypal_status','completed'),(11435,3150,'_download_permissions_granted','yes'),(11436,3150,'_recorded_sales','yes'),(11437,3150,'_recorded_coupon_usage_counts','yes'),(11438,3150,'_order_stock_reduced','yes'),(11439,3150,'PayPal Transaction Fee','0.74'),(11440,3151,'_wp_attached_file','woocommerce-placeholder.png'),(11441,3151,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-900\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(11442,3159,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568378350;}'),(11444,3161,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568378449;}'),(11445,3162,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568378450;}'),(11446,3163,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568378451;}'),(11447,3164,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568378452;}'),(11448,3165,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568378453;}'),(11449,3166,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568378454;}'),(11450,3167,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568378455;}'),(11451,3168,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568378456;}'),(11452,3169,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568378493;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11453,3170,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568378499;}'),(11454,3171,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568378500;}'),(11455,3172,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568378501;}'),(11456,3173,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568378502;}'),(11457,3174,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568378503;}'),(11458,3175,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568378504;}'),(11459,3176,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568378505;}'),(11460,3177,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568378506;}'),(11461,3178,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568378507;}'),(11462,3179,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568378509;}'),(11463,3180,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568382099;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11464,3192,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568385720;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11466,3197,'_order_key','wc_order_fa280irKV7vLL'),(11467,3197,'_customer_user','0'),(11468,3197,'_payment_method','bacs'),(11469,3197,'_payment_method_title','Direct bank transfer'),(11470,3197,'_customer_ip_address','92.29.147.242'),(11471,3197,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(11472,3197,'_created_via','checkout'),(11473,3197,'_cart_hash','dc388d8fb7ce512a367f4c42b17f2604'),(11474,3197,'_billing_first_name','Tom'),(11475,3197,'_billing_last_name','Gallagher'),(11476,3197,'_billing_company','tom peter gallagher'),(11477,3197,'_billing_address_1','139 ayresome street'),(11478,3197,'_billing_address_2','middlesbrough'),(11479,3197,'_billing_city','Middlesbrough'),(11480,3197,'_billing_state','Cleveland'),(11481,3197,'_billing_postcode','TS1 4PX'),(11482,3197,'_billing_country','GB'),(11483,3197,'_billing_email','tompetergallagher@hotmail.co.uk'),(11484,3197,'_billing_phone','07506503965'),(11485,3197,'_order_currency','GBP'),(11486,3197,'_cart_discount','0'),(11487,3197,'_cart_discount_tax','0'),(11488,3197,'_order_shipping','0.00'),(11489,3197,'_order_shipping_tax','0'),(11490,3197,'_order_tax','0'),(11491,3197,'_order_total','15.00'),(11492,3197,'_order_version','3.7.0'),(11493,3197,'_prices_include_tax','no'),(11494,3197,'_billing_address_index','Tom Gallagher tom peter gallagher 139 ayresome street middlesbrough Middlesbrough Cleveland TS1 4PX GB tompetergallagher@hotmail.co.uk 07506503965'),(11495,3197,'_shipping_address_index','         07506503965'),(11496,3197,'is_vat_exempt','no'),(11497,3197,'_recorded_sales','yes'),(11498,3197,'_recorded_coupon_usage_counts','yes'),(11499,3197,'_order_stock_reduced','yes'),(11500,3199,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568389380;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11501,3202,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568393156;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11502,3203,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568396804;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11503,3204,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568400404;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11504,3205,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568404135;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11505,3206,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568408729;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11506,3207,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568412470;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11507,3209,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568409311;}'),(11508,3208,'_order_key','wc_order_6PbfHzliw1aTp'),(11509,3208,'_customer_user','0'),(11510,3208,'_payment_method','paypal'),(11511,3208,'_payment_method_title','PayPal'),(11512,3208,'_customer_ip_address','5.81.149.175'),(11513,3208,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(11514,3208,'_created_via','checkout'),(11515,3208,'_cart_hash','603a2e46342ba57c87f9c270dff90bf2'),(11516,3208,'_billing_first_name','hilary'),(11517,3208,'_billing_last_name','sibbald'),(11518,3208,'_billing_address_1','24 kendal'),(11519,3208,'_billing_city','birtley'),(11520,3208,'_billing_postcode','DH3 2HB'),(11521,3208,'_billing_country','GB'),(11522,3208,'_billing_email','hilsqjewels@aol.com'),(11523,3208,'_billing_phone','01914102620'),(11524,3208,'_order_currency','GBP'),(11525,3208,'_cart_discount','0'),(11526,3208,'_cart_discount_tax','0'),(11527,3208,'_order_shipping','0.00'),(11528,3208,'_order_shipping_tax','0'),(11529,3208,'_order_tax','0'),(11530,3208,'_order_total','30.00'),(11531,3208,'_order_version','3.7.0'),(11532,3208,'_prices_include_tax','no'),(11533,3208,'_billing_address_index','hilary sibbald  24 kendal  birtley  DH3 2HB GB hilsqjewels@aol.com 01914102620'),(11534,3208,'_shipping_address_index','         01914102620'),(11535,3208,'is_vat_exempt','no'),(11536,3208,'Payment type','instant'),(11537,3208,'_transaction_id','92U17182UG792051N'),(11538,3208,'_paypal_status','completed'),(11539,3208,'PayPal Transaction Fee','1.17'),(11540,3210,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568409365;}'),(11541,3208,'_date_paid','1568409360'),(11542,3208,'_paid_date','2019-09-13 21:16:00'),(11543,3208,'_download_permissions_granted','yes'),(11544,3208,'_recorded_sales','yes'),(11545,3208,'_recorded_coupon_usage_counts','yes'),(11546,3208,'_order_stock_reduced','yes'),(11547,3211,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568418255;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11548,3212,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568421862;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11549,3213,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568426702;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11550,3214,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568431040;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11551,3215,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568435545;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11552,3216,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568440648;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11553,3217,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568445092;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11554,3218,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568449330;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11555,3219,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568453106;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11556,3220,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568457218;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11557,3221,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568462293;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11558,3222,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568465921;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11559,3223,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568470456;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11560,3225,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568467814;}'),(11561,3224,'_order_key','wc_order_LWkt1rATau1Ot'),(11562,3224,'_customer_user','0'),(11563,3224,'_payment_method','bacs'),(11564,3224,'_payment_method_title','Direct bank transfer'),(11565,3224,'_customer_ip_address','82.33.156.101'),(11566,3224,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.1 Safari/605.1.15'),(11567,3224,'_created_via','checkout'),(11568,3224,'_cart_hash','dc388d8fb7ce512a367f4c42b17f2604'),(11569,3224,'_billing_first_name','Katrina'),(11570,3224,'_billing_last_name','Norman'),(11571,3224,'_billing_address_1','45 Palmers Green'),(11572,3224,'_billing_city','Newcastle'),(11573,3224,'_billing_postcode','NE12 9HF'),(11574,3224,'_billing_country','GB'),(11575,3224,'_billing_email','katrinamnorman@hotmail.com'),(11576,3224,'_billing_phone','07779313827'),(11577,3224,'_order_currency','GBP'),(11578,3224,'_cart_discount','0'),(11579,3224,'_cart_discount_tax','0'),(11580,3224,'_order_shipping','0.00'),(11581,3224,'_order_shipping_tax','0'),(11582,3224,'_order_tax','0'),(11583,3224,'_order_total','15.00'),(11584,3224,'_order_version','3.7.0'),(11585,3224,'_prices_include_tax','no'),(11586,3224,'_billing_address_index','Katrina Norman  45 Palmers Green  Newcastle  NE12 9HF GB katrinamnorman@hotmail.com 07779313827'),(11587,3224,'_shipping_address_index','         07779313827'),(11588,3224,'is_vat_exempt','no'),(11589,3224,'_recorded_sales','yes'),(11590,3224,'_recorded_coupon_usage_counts','yes'),(11591,3224,'_order_stock_reduced','yes'),(11592,3227,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568467913;}'),(11593,3226,'_order_key','wc_order_nFMzCL4rRWa5j'),(11594,3226,'_customer_user','0'),(11595,3226,'_payment_method','paypal'),(11596,3226,'_payment_method_title','PayPal'),(11597,3226,'_customer_ip_address','82.33.156.101'),(11598,3226,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.1 Safari/605.1.15'),(11599,3226,'_created_via','checkout'),(11600,3226,'_cart_hash','dc388d8fb7ce512a367f4c42b17f2604'),(11601,3226,'_billing_first_name','Katrina'),(11602,3226,'_billing_last_name','Norman'),(11603,3226,'_billing_address_1','45 Palmers Green'),(11604,3226,'_billing_city','Newcastle'),(11605,3226,'_billing_postcode','NE12 9HF'),(11606,3226,'_billing_country','GB'),(11607,3226,'_billing_email','katrinamnorman@hotmail.com'),(11608,3226,'_billing_phone','07779313827'),(11609,3226,'_order_currency','GBP'),(11610,3226,'_cart_discount','0'),(11611,3226,'_cart_discount_tax','0'),(11612,3226,'_order_shipping','0.00'),(11613,3226,'_order_shipping_tax','0'),(11614,3226,'_order_tax','0'),(11615,3226,'_order_total','15.00'),(11616,3226,'_order_version','3.7.0'),(11617,3226,'_prices_include_tax','no'),(11618,3226,'_billing_address_index','Katrina Norman  45 Palmers Green  Newcastle  NE12 9HF GB katrinamnorman@hotmail.com 07779313827'),(11619,3226,'_shipping_address_index','         07779313827'),(11620,3226,'is_vat_exempt','no'),(11621,3226,'Payment type','instant'),(11622,3226,'_transaction_id','14N05388K87666909'),(11623,3226,'_paypal_status','completed'),(11624,3226,'PayPal Transaction Fee','0.74'),(11625,3228,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568467986;}'),(11626,3226,'_date_paid','1568467981'),(11627,3226,'_paid_date','2019-09-14 13:33:01'),(11628,3226,'_download_permissions_granted','yes'),(11629,3226,'_recorded_sales','yes'),(11630,3226,'_recorded_coupon_usage_counts','yes'),(11631,3226,'_order_stock_reduced','yes'),(11632,3229,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568474113;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11633,3230,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568477768;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11634,3231,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568482070;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11635,3232,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568485828;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11636,3233,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568489757;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11637,3234,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568493502;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11638,3235,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568497348;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11639,3236,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568501121;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11640,3237,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568504928;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11641,3238,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568508764;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11642,3239,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568512386;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11643,3240,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568516022;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11644,3241,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568519909;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11645,3242,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568525619;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11646,3243,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568530124;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11647,3244,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568534437;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11648,3245,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568538118;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11649,3246,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568542321;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11650,3247,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568546105;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11651,3248,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568549957;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11652,3249,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568553634;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11653,3250,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568557583;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11654,3251,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568561471;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11655,3252,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568566120;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11656,3253,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568570145;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11657,3254,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568573767;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11658,3255,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568577575;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11659,3256,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568581394;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11660,3257,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568585118;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11661,3258,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568588981;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11662,3259,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568593415;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11663,3260,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568597337;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11664,3261,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568600979;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11665,3262,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568605699;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11666,3263,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568609802;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11667,3264,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568613599;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11668,3265,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568617374;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11669,3266,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568623522;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11670,3267,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568627786;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11671,3268,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568631650;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11672,3269,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568635941;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11673,3270,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568639864;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11674,3271,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568643545;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11675,3272,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568647243;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11676,3273,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568650870;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11677,3274,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568654705;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11678,3275,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568658402;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11679,3276,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568662410;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11680,3277,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568666490;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11681,3278,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568670104;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11682,3279,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568673756;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11683,3280,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568677520;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11684,3281,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568681161;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11685,3282,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568686148;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11686,3283,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568690437;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11687,3284,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568694263;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11688,3285,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568697926;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11689,3286,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568701698;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11690,3287,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568705504;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11691,3288,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568709236;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11692,3290,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568708782;}'),(11693,3289,'_order_key','wc_order_0zW2mTeUAZq3Z'),(11694,3289,'_customer_user','0'),(11695,3289,'_payment_method','paypal'),(11696,3289,'_payment_method_title','PayPal'),(11697,3289,'_customer_ip_address','94.0.176.154'),(11698,3289,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 12_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1'),(11699,3289,'_created_via','checkout'),(11700,3289,'_cart_hash','dc388d8fb7ce512a367f4c42b17f2604'),(11701,3289,'_billing_first_name','Sandra'),(11702,3289,'_billing_last_name','Kingsley-smith'),(11703,3289,'_billing_address_1','133 Bayfield'),(11704,3289,'_billing_city','Newcastle upon Tyne'),(11705,3289,'_billing_postcode','NE27 0FE'),(11706,3289,'_billing_country','GB'),(11707,3289,'_billing_email','s.ksmith@btinternet.com'),(11708,3289,'_billing_phone','07795674130'),(11709,3289,'_order_currency','GBP'),(11710,3289,'_cart_discount','0'),(11711,3289,'_cart_discount_tax','0'),(11712,3289,'_order_shipping','0.00'),(11713,3289,'_order_shipping_tax','0'),(11714,3289,'_order_tax','0'),(11715,3289,'_order_total','15.00'),(11716,3289,'_order_version','3.7.0'),(11717,3289,'_prices_include_tax','no'),(11718,3289,'_billing_address_index','Sandra Kingsley-smith  133 Bayfield  Newcastle upon Tyne  NE27 0FE GB s.ksmith@btinternet.com 07795674130'),(11719,3289,'_shipping_address_index','         07795674130'),(11720,3289,'is_vat_exempt','no'),(11721,3291,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568708901;}'),(11722,3292,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568712898;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11723,3293,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568716868;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11724,3294,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568720586;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11725,3295,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568724347;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11726,3296,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568728471;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11727,3297,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568732220;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11728,3298,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568736138;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11729,3299,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568739798;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11730,3300,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568743630;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11731,3301,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568747293;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11732,3302,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568751045;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11733,3303,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568755782;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11734,3304,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568759389;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11735,3305,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568764467;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11736,3306,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568768095;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11737,3307,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568772655;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11738,3308,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568776255;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11739,3309,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568780261;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11740,3310,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568784111;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11741,3311,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568788001;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11742,3312,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568791752;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11743,3314,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568788503;}'),(11744,3313,'_order_key','wc_order_asMt3vC4O8HUm'),(11745,3313,'_customer_user','0'),(11746,3313,'_payment_method','paypal'),(11747,3313,'_payment_method_title','PayPal'),(11748,3313,'_customer_ip_address','94.0.176.154'),(11749,3313,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 12_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1'),(11750,3313,'_created_via','checkout'),(11751,3313,'_cart_hash','dc388d8fb7ce512a367f4c42b17f2604'),(11752,3313,'_billing_first_name','Sandra'),(11753,3313,'_billing_last_name','Kingsley-smith'),(11754,3313,'_billing_address_1','133 Bayfield'),(11755,3313,'_billing_city','Newcastle upon Tyne'),(11756,3313,'_billing_postcode','NE27 0FE'),(11757,3313,'_billing_country','GB'),(11758,3313,'_billing_email','s.ksmith@btinternet.com'),(11759,3313,'_billing_phone','07795674130'),(11760,3313,'_order_currency','GBP'),(11761,3313,'_cart_discount','0'),(11762,3313,'_cart_discount_tax','0'),(11763,3313,'_order_shipping','0.00'),(11764,3313,'_order_shipping_tax','0'),(11765,3313,'_order_tax','0'),(11766,3313,'_order_total','15.00'),(11767,3313,'_order_version','3.7.0'),(11768,3313,'_prices_include_tax','no'),(11769,3313,'_billing_address_index','Sandra Kingsley-smith  133 Bayfield  Newcastle upon Tyne  NE27 0FE GB s.ksmith@btinternet.com 07795674130'),(11770,3313,'_shipping_address_index','         07795674130'),(11771,3313,'is_vat_exempt','no'),(11772,3313,'Payment type','instant'),(11773,3313,'_transaction_id','69C97593ML7016723'),(11774,3313,'_paypal_status','completed'),(11775,3313,'PayPal Transaction Fee','0.74'),(11776,3315,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568788693;}'),(11777,3313,'_date_paid','1568788688'),(11778,3313,'_paid_date','2019-09-18 06:38:08'),(11779,3313,'_download_permissions_granted','yes'),(11780,3313,'_recorded_sales','yes'),(11781,3313,'_recorded_coupon_usage_counts','yes'),(11782,3313,'_order_stock_reduced','yes'),(11783,3316,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568795388;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11784,3318,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1568793061;}'),(11785,3317,'_order_key','wc_order_URu8X9QqRRnE4'),(11786,3317,'_customer_user','0'),(11787,3317,'_payment_method','bacs'),(11788,3317,'_payment_method_title','Direct bank transfer'),(11789,3317,'_customer_ip_address','79.70.190.173'),(11790,3317,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.1.0; SM-T580) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.73 Safari/537.36'),(11791,3317,'_created_via','checkout'),(11792,3317,'_cart_hash','dc388d8fb7ce512a367f4c42b17f2604'),(11793,3317,'_billing_first_name','Lesley'),(11794,3317,'_billing_last_name','Hollyman'),(11795,3317,'_billing_address_1','30 IVY ROAD, Forest Hall'),(11796,3317,'_billing_address_2','Forest Hall'),(11797,3317,'_billing_city','NEWCASTLE UPON TYNE'),(11798,3317,'_billing_state','Newcastle upon Tyne'),(11799,3317,'_billing_postcode','NE12 9AP'),(11800,3317,'_billing_country','GB'),(11801,3317,'_billing_email','lahollyman@yahoo.com'),(11802,3317,'_billing_phone','01912685941'),(11803,3317,'_order_currency','GBP'),(11804,3317,'_cart_discount','0'),(11805,3317,'_cart_discount_tax','0'),(11806,3317,'_order_shipping','0.00'),(11807,3317,'_order_shipping_tax','0'),(11808,3317,'_order_tax','0'),(11809,3317,'_order_total','15.00'),(11810,3317,'_order_version','3.7.0'),(11811,3317,'_prices_include_tax','no'),(11812,3317,'_billing_address_index','Lesley Hollyman  30 IVY ROAD, Forest Hall Forest Hall NEWCASTLE UPON TYNE Newcastle upon Tyne NE12 9AP GB lahollyman@yahoo.com 01912685941'),(11813,3317,'_shipping_address_index','         01912685941'),(11814,3317,'is_vat_exempt','no'),(11815,3317,'_recorded_sales','yes'),(11816,3317,'_recorded_coupon_usage_counts','yes'),(11817,3317,'_order_stock_reduced','yes'),(11818,3319,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568799655;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11819,3320,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568803450;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11820,3321,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568807153;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11821,3322,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568811975;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11822,3323,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568815762;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11823,3324,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568819942;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11824,3325,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568824097;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11825,3326,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568828114;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11826,3327,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568831749;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11827,3328,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568835614;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11828,3329,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568840027;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11829,3330,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568843681;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11830,3331,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568847523;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11831,3332,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568851162;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11832,3333,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568856491;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11833,3334,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568860734;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11834,3335,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568864840;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11835,3336,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568869458;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11836,3337,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568873064;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11837,3338,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568877951;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11838,3339,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568882340;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11839,3340,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568886314;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11840,3341,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568890410;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11841,3342,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568894178;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11842,3343,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568898161;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11843,3344,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568901821;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11844,3345,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568905746;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11845,3346,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568909438;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11846,3347,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568913657;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11847,3348,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568917321;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11848,3349,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568921205;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11849,3350,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568925679;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11850,3351,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568929374;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11851,3352,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568932974;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11852,3353,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568938014;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11853,3354,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568942895;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11854,3355,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568946624;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11855,3356,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568951718;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11856,3357,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568956689;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11857,3358,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568960457;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11858,3359,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568964062;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11859,3360,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568968663;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11860,3361,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568972359;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11861,3362,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568976299;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11862,3363,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568980644;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11863,3364,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568984580;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11864,3365,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568988303;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11865,3366,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568992000;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11866,3367,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568995752;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11867,3368,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1568999620;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11868,3369,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569003498;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11869,3370,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569007409;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11870,3371,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569011761;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11871,3372,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569015635;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11872,3373,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569019436;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11873,3374,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569024399;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11874,3375,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569028259;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11875,3376,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569032418;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11876,3377,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569036316;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11877,3378,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569039998;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11878,3379,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569043963;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11879,3380,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569048810;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11880,3381,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569052541;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11881,3382,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569056158;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11882,3383,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569059779;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11883,3384,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569063896;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11884,3385,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569067591;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11885,3386,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569071571;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11886,3387,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569075612;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11887,3388,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569079392;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11888,3389,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569082994;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11889,3390,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569086658;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11890,3391,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569090429;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11891,3392,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569094223;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11892,3393,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569098894;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11893,3394,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569102725;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11894,3395,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569106339;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11895,3396,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569110003;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11896,3397,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569114141;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11897,3398,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569118182;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11898,3399,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569122984;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11899,3400,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569126990;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11900,3401,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569130742;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11901,3402,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569134546;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11902,3403,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569138887;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11903,3404,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569142496;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11904,3405,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569146549;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11905,3406,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569150223;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11906,3407,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569153873;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11907,3408,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569158455;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11908,3409,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569162816;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11909,3410,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569167073;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11910,3411,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569170808;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11911,3413,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569174521;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11912,3414,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569178122;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11913,3415,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1569181787;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}');
/*!40000 ALTER TABLE `wpqj_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_posts`
--

DROP TABLE IF EXISTS `wpqj_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=3416 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_posts`
--

LOCK TABLES `wpqj_posts` WRITE;
/*!40000 ALTER TABLE `wpqj_posts` DISABLE KEYS */;
INSERT INTO `wpqj_posts` VALUES (322,1,'2018-01-20 18:51:20','2018-01-20 18:51:20','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong><img class=\"alignleft wp-image-2675 size-medium\" title=\"The Secret Workshops Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secret Workshops Newcastle Hypnotherapy\" width=\"300\" height=\"169\" />\r\nWorkshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\"> Upcoming Events 2019.\r\n</span></strong></h4>\r\n<strong>18th September - <a href=\"https://www.newcastle-hypnotherapy.com/the-secrets-of-deep-relaxation-workshop/\">The Secrets Of Relaxation - Learn More</a></strong>\r\n\r\n<strong>9th October</strong> - <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/past-life-regression-workshop/\"><strong>Past Life Regression Workshop - Learn More</strong></a>\r\n\r\n<strong>23rd October - <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-freedom-workshop/\">Freedom From Anxiety &amp; Stress Workshop - Learn More</a>\r\n</strong>\r\n\r\n<strong>6th November - <a href=\"https://www.newcastle-hypnotherapy.com/the-secrets-of-being-happy/\">The Secrets Of Being Happy - Learn More</a>\r\n</strong>\r\n\r\n<strong>20th November - <a href=\"https://www.newcastle-hypnotherapy.com/dealing-with-difficult-people-children/\">Dealing With Difficult People - Learn More</a>\r\n</strong>\r\n\r\n<strong>11th December - <a href=\"https://www.newcastle-hypnotherapy.com/self-confidence-workshop/\">The Secrets Of Self-Confidence - Learn More</a>\r\n</strong>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for your feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n<strong>Thank you for your feedback</strong>\r\n\r\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft size-full wp-image-3098\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/gail.jpg\" alt=\"newcastle hypnotherapy workshops and events\" width=\"619\" height=\"194\" />\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which therapies will be best for you and the best way forward.\r\n<strong>Simply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></span> to book your free session.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What did the NHS Dr say about Newcastle </strong>Hypnotherapy<strong>?</strong></span></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n\r\n<strong>Simply call 07568 455 809 today to get started or <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a> to book your free session.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','publish','closed','closed','','events-workshops-newcastle-hypnotherapy','','','2019-09-13 14:58:02','2019-09-13 14:58:02','',0,'http://www.newcastle-hypnotherapy.com/?page_id=322',50,'page','',0),(3067,1,'2019-06-30 13:28:03','2019-06-30 13:28:03','<strong>Newcastle Hypnotherapy regularly runs and take part in many local events, workshops, training and fairs\r\n</strong>\r\n\r\nYou can learn about these events by joining the newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\nIn these workshops you can lean:\r\n<ul>\r\n 	<li>Life Enhancing Skills</li>\r\n 	<li>Handle Problems &amp; Challenges Better</li>\r\n 	<li>Build Confidence &amp; Make New Friends</li>\r\n 	<li>Personal Development</li>\r\n 	<li>Good Mental Health</li>\r\n</ul>\r\n<strong>We teach skills in</strong>\r\n<ul>\r\n 	<li>Neuro-Linguistic Programming - NLP,</li>\r\n 	<li>Hypnosis,</li>\r\n 	<li>Self-Hypnosis,</li>\r\n 	<li>Emotional Freedom Technique - EFT Tapping</li>\r\n 	<li>Meditation</li>\r\n 	<li>Mindfulness</li>\r\n 	<li>Relaxation</li>\r\n 	<li>Many other techniques and skills that really can make a difference.</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h2>\r\nNow running weekly and from various locations, teaching new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:28:03','2019-06-30 13:28:03','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(2662,1,'2019-02-24 18:33:44','2019-02-24 18:33:44','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Newcastle Hypnotherapy regularly runs and take part in many local events, workshops, training and fairs to promote:\r\n</strong>\r\n<ul>\r\n 	<li>Life Enhancing Skills</li>\r\n 	<li>Handle Problems &amp; Challenges Better</li>\r\n 	<li>Build Confidence &amp; Make New Friends</li>\r\n 	<li>Personal Development</li>\r\n 	<li>Good Mental Health</li>\r\n</ul>\r\n<strong>We teach skills in</strong>\r\n<ul>\r\n 	<li>Neuro-Linguistic Programming - NLP,</li>\r\n 	<li>Hypnosis,</li>\r\n 	<li>Self-Hypnosis,</li>\r\n 	<li>Emotional Freedom Technique - EFT Tapping</li>\r\n 	<li>Meditation</li>\r\n 	<li>Mindfulness</li>\r\n 	<li>Relaxation</li>\r\n 	<li>Many other techniques and skills that really can make a difference.</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h2>\r\nNow running weekly and from various locations, teaching new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-02-24 18:33:44','2019-02-24 18:33:44','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(106,1,'2017-10-30 21:54:24','2017-10-30 21:54:24','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<strong>Just like NHS Dr. Andrew, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\n<strong>Imagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away. This is how hypnotherapy for stress management helps people just like you.\r\n</strong>\r\n<h4 style=\"text-align: center;\">To get started simply get in touch today, to arrange a free phone consultation. Call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809.</strong></span></a></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">How Can Hypnotherapy For Stress Management Help Me?</span></strong></h4>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference in how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Changing your response from Stressed to Relaxed</strong>.</span></h4>\r\nPeople who suffer from stress issues find that certain stress triggers make them respond in the wrong way. There are times when we do need to feel stressed but when we react to these things too often, it becomes a habit and damages our health.\r\n\r\n<strong>Hypnosis and Self-Hypnosis are very powerful methods to help you to relax and stay relaxed, rather than feeling stressed.</strong>\r\n<strong>Are you ready to take the first step? <em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us today</a></span></em> to learn how hypnotherapy for stress management can help you.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span></h4>\r\nThere are effective ways to remove stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Self Help For Stress Management?</strong></span></h4>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n<h4><strong><span style=\"color: #008000;\">Free Tips &amp; Advice For Stress Management.</span></strong></h4>\r\n<strong>Join the Stress Management Newsletter today.</strong>\r\nYour privacy is safe and you can unsubscribe at any time.\r\n[contact-form-7 id=\"2017\" title=\"Stress Tips Newsletter\"]\r\n<h4><strong><span style=\"color: #008000;\">Living With Stress Problems.</span></strong></h4>\r\nIf you are suffering from stress issues you will be aware that it can make life very miserable.\r\nStress can affect you in many ways including\r\n<ul>\r\n 	<li>mood</li>\r\n 	<li>work performance</li>\r\n 	<li>sex life &amp; sex drive</li>\r\n 	<li>panic attacks</li>\r\n 	<li>self-esteem</li>\r\n 	<li>self-confidence</li>\r\n 	<li>excess worry</li>\r\n 	<li>uncomfortable breathing</li>\r\n 	<li>general health</li>\r\n 	<li>energy levels</li>\r\n 	<li>disturbed sleep</li>\r\n 	<li>feeling overwhelmed</li>\r\n 	<li>upsetting the people around you</li>\r\n</ul>\r\nStress can really take the fun out of life and interestingly it is one of the easiest problems to rectify.\r\nStress is not really the problem but the way you react to things is.\r\nAre you ready to take control and live a better life?\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Can Hypnotherapy Help Stress Issues?</span></strong></h4>\r\nMost clients find their stress levels drop quite quickly after their first session of hypnotherapy for stress management.\r\nAs you practice your exercises and gain control over your stress, you will enjoy your stress levels dropping even further.\r\nEvery stress client is different and results will vary for each person.\r\n<h4><span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span></h4>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n<h4><strong><span style=\"color: #008000;\">Your FREE Stress Management Consultation. </span></strong></h4>\r\nMany of our clients love the free consultation as it gives you the chance to explain your stress issues and get answers to all of your questions. We can look at the issues and then let you know the best way forward to change that feeling of being stressed to feeling relaxed and calm.\r\n\r\n<span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Stress Management Client feedback from Steve</strong></span><em><span class=\"r-irHasJMkQBec\" tabindex=\"0\">. “I Would like to thank Mark for the great help he has given with<strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.”</strong></span></em>\r\n<h4><span style=\"color: #008000;\"><strong>Mark\'s Journey With Stress &amp; Stress Management.</strong></span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practising these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress management techniques.\r\n<h4><strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong></h4>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n<h4><span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span></h4>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span>\r\n<h4>[wpforms id=\"35\"]</h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy helps people with stress and many other issues from a number of locations in the North East of England.\r\nYou can find our hypnotherapy &amp; NLP services at the following locations.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n 	<li>Online via video link - ask for details.</li>\r\n</ul>\r\n&nbsp;','Hypnotherapy For Stress Management','','publish','closed','closed','','stress-management','','','2019-04-22 19:11:57','2019-04-22 19:11:57','',1451,'http://www.newcastle-hypnotherapy.com/?page_id=106',6,'page','',0),(2767,1,'2019-04-22 17:04:38','2019-04-22 17:04:38','&nbsp;\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnosis For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:04:38','2019-04-22 17:04:38','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(107,1,'2017-10-30 21:54:24','2017-10-30 21:54:24','t','Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-10-30 21:54:24','2017-10-30 21:54:24','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(221,1,'2017-11-12 16:19:45','2017-11-12 16:19:45','<span style=\"color: #008000;\"><strong>Thank you to all of our customers who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Kris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.\r\n</em>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','200-revision-v1','','','2017-11-12 16:19:45','2017-11-12 16:19:45','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(103,1,'2017-10-30 20:40:50','2017-10-30 20:40:50','','Hypnosis For Stress Management','','inherit','open','closed','','mmhead','','','2019-04-22 17:00:11','2019-04-22 17:00:11','',43,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead.jpg',0,'attachment','image/jpeg',0),(104,1,'2017-10-30 20:53:11','2017-10-30 20:53:11','','About Us Yvette Spoor','','inherit','open','closed','','19059074_10154638475062322_1825527744185497542_n','','','2018-11-29 23:26:22','2018-11-29 23:26:22','',43,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n.jpg',0,'attachment','image/jpeg',0),(68,1,'2017-10-12 14:07:17','2017-10-12 14:07:17','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<strong>Simply we help people to take control with anxiety treatment and counselling. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension. </strong><strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<iframe src=\"https://www.youtube.com/embed/Tg4ij_bPGxs\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr for\r\nAnxiety Treatment &amp; Counselling\r\n</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>5 Powerful Self-Help Tips To Ease Anxiety Symptoms</strong>\r\n</span></h4>\r\nLearn the powerful techniques our clients use to ease anxiety symptoms fast.\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is safe and you can leave the newsletter at any time.\r\n<h4><strong><span style=\"color: #008000;\">Good News!  You Have Choices</span>.</strong></h4>\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\r\nThis client had suffered from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often become stronger.\r\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\r\n\r\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety, symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\r\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\r\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\r\n\r\nAnxiety symptoms included digestive issues, muscle pains, tension headaches, worry and fear.\r\n\r\nWithin 2 weeks of starting the program the client was amused that she was now fascinated by wasps and bees.\r\nShe was now keen to watch TV programs about insects and had bought books on the subject.\r\nIn the final session, she reported she now enjoyed life and work and her husband was amazed at the changes.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\r\n</strong></h4>\r\nThis client was experiencing severe worry when a journey in the car or bus were expected.\r\nAnxiety drugs had resulted in side effects and did not help with the issue.\r\nAnxiety symptoms included several repeated visits to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occasions if a car journey was needed.\r\n\r\nThe client reported major improvements the following morning after her first session.\r\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\r\nWithin weeks she had enjoyed long car journeys for weekends away and was looking forward to longer trips for holidays.\r\n\r\n<span style=\"color: #008000;\"><strong>Contact us today to arrange your free phone anxiety consultation.</strong></span>\r\n<strong><span style=\"color: #ff6600;\"><em>Call 07568 455 809 now</em></span></strong> or <strong><em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Book Your Consultation Online Here</a>.</span></em></strong>\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy has a <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">Facebook Group here with details of Anxiety Workshops and Events</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','publish','closed','closed','','anxiety-treatment-counselling-newcastle','','','2019-05-31 10:35:20','2019-05-31 10:35:20','',1451,'http://www.newcastle-hypnotherapy.com/?page_id=68',3,'page','',0),(1548,1,'2018-09-20 20:06:19','2018-09-20 20:06:19','Terms &amp; Conditions.\r\nThe Wednesday Workshop is a non-profit event running on the 1st and 3rd Wednesday of each month.\r\nAttendance is strictly by advance booking on a first come first served basis.\r\n\r\nOnce you have booked your place, the website will send you a confirmation.\r\nUseful notes regarding each workshop are sent out a few days in advance.\r\n\r\nRefund Policy. Please note we do not offer refunds if you are unable to attend.\r\nYou may transfer your place to someone else if required.','Memory Improvement','The Wednesday Workshop - Memory Improvement Skills.\r\nBook your place here','publish','closed','closed','','nlp-memory-improvement','','','2019-09-13 13:40:51','2019-09-13 13:40:51','',0,'https://www.newcastle-hypnotherapy.com/?post_type=product&#038;p=1548',0,'product','',0),(11,1,'2017-09-27 16:18:11','2017-09-27 16:18:11','1','responsive','','publish','closed','closed','','responsive','','','2017-09-27 16:18:11','2017-09-27 16:18:11','',0,'http://www.newcastle-hypnotherapy.com/2017/09/27/responsive/',0,'custom_css','',0),(12,1,'2017-09-27 16:18:11','2017-09-27 16:18:11','1','responsive','','inherit','closed','closed','','11-revision-v1','','','2017-09-27 16:18:11','2017-09-27 16:18:11','',11,'http://www.newcastle-hypnotherapy.com/2017/09/27/11-revision-v1/',0,'revision','',0),(16,1,'2017-09-27 17:00:54','2017-09-27 17:00:54','','Happiness','','inherit','open','closed','','medi-1','','','2017-09-27 17:01:15','2017-09-27 17:01:15','',0,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/09/Medi-1-2.jpg',0,'attachment','image/jpeg',0),(294,1,'2017-12-01 13:59:32','2017-12-01 13:59:32','<span style=\"color: #008000;\"><strong>Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Review by Kris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue.\r\nMark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief.\r\nWithin 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Reviews - What Our Clients Say','','inherit','closed','closed','','200-revision-v1','','','2017-12-01 13:59:32','2017-12-01 13:59:32','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(293,1,'2017-12-01 13:57:08','2017-12-01 13:57:08','<span style=\"color: #008000;\"><strong>Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Review by Kris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue.\r\nMark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief.\r\nWithin 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Reviews - What Our Clients Say','','inherit','closed','closed','','200-revision-v1','','','2017-12-01 13:57:08','2017-12-01 13:57:08','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(292,1,'2017-12-01 13:44:22','2017-12-01 13:44:22','<span style=\"color: #008000;\"><strong>Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Kris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue.\r\nMark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief.\r\nWithin 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Reviews - What Our Clients Say','','inherit','closed','closed','','200-revision-v1','','','2017-12-01 13:44:22','2017-12-01 13:44:22','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(33,1,'2017-09-27 17:47:36','2017-09-27 17:47:36','<p>This is the WPForms preview page. All your form previews will be handled on this page.</p><p>The page is set to private, so it is not publicly accessible. Please do not delete this page :) .</p>','WPForms Preview','','private','closed','closed','','wpforms-preview','','','2017-09-27 17:47:36','2017-09-27 17:47:36','',0,'http://www.newcastle-hypnotherapy.com/wpforms-preview/',0,'page','',0),(34,1,'2017-09-27 17:47:37','0000-00-00 00:00:00','<p>\n<strong>Important WPForms Announcement</strong><br />\nWe are retiring the WPForms Ultimate Lifetime Plan on October 2nd.</p>\n<p>This plan allows you to get lifetime access to all current and new WPForms features along with all updates and support.</p>\n<p>All existing users will be grandfathered in. I just wanted to let you know in case you want to upgrade and lock in the best WPForms deal ever before it goes away.\n</p>\n<p><a href=\"https://wpforms.com/pricing/?utm_source=wpdashboard&#038;utm_campaign=amnotification\" target=\"_blank\" class=\"button button-primary\">Click Here to Upgrade &raquo;</a> <a href=\"https://wpforms.com/were-ending-our-ultimate-lifetime-plan-get-in-now-before-its-gone/?utm_source=wpdashboard&#038;utm_campaign=amnotification\" class=\"button button-secondary\" target=\"_blank\">Read the Full Announcement</a></p>\n<p>Thanks as always for your continuous support of WPForms!<br />\nSyed Balkhi<br />\nFounder of WPForms</p>\n','','','draft','closed','closed','','','','','2017-09-27 17:47:37','0000-00-00 00:00:00','',0,'http://www.newcastle-hypnotherapy.com/?post_type=amn_wpforms-lite&p=34',0,'amn_wpforms-lite','',0),(35,1,'2017-09-27 17:52:06','2017-09-27 17:52:06','{\"id\":\"35\",\"field_id\":5,\"fields\":{\"0\":{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},\"1\":{\"id\":\"1\",\"type\":\"email\",\"label\":\"E-mail\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"3\":{\"id\":\"3\",\"type\":\"number\",\"label\":\"Phone\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},\"2\":{\"id\":\"2\",\"type\":\"textarea\",\"label\":\"Comment or Message\",\"description\":\"Please give a little information on your issue and the best time for me to call you back\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Contact Us\",\"form_desc\":\"Main Page\",\"hide_title_desc\":\"1\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"Form Contact\",\"sender_name\":\"{field_id=\\\"0\\\"}\",\"sender_address\":\"{field_id=\\\"1\\\"}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"Thanks for contacting us! We will be in touch with you shortly.\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"43\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"contact\"}}','Contact Us','Main Page','publish','closed','closed','','simple-contact-form','','','2018-05-21 10:06:21','2018-05-21 10:06:21','',0,'http://www.newcastle-hypnotherapy.com/?post_type=wpforms&#038;p=35',0,'wpforms','',0),(291,1,'2017-12-01 13:39:45','2017-12-01 13:39:45','<span style=\"color: #008000;\"><strong>Thank you to all of our customers who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Kris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue.\r\nMark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief.\r\nWithin 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials - What Our Clients Say','','inherit','closed','closed','','200-revision-v1','','','2017-12-01 13:39:45','2017-12-01 13:39:45','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(43,1,'2017-09-27 18:37:19','2017-09-27 18:37:19','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Linguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications and previously spent many years learning Self-Hypnosis and NLP for himself.\r\n<h4><span style=\"color: #008000;\"><strong>Mark\'s Qualifications</strong></span></h4>\r\n<strong>Practitioner Neuro-Linguistic Programming - NLP North East</strong>\r\n\r\n<strong>Master Practitioner Neuro-Linguistic Programming - NLP North East</strong>\r\n\r\n<strong>Diploma in Clinical Hypnotherapy - Transform NLP</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Mark\'s Experience &amp; Personal Achievements.\r\n</strong></span></h4>\r\nMark has always been very passionate about personal development, nutrition and health.\r\nMark started to learn self-hypnosis and neuro-linguistic programming in his teens as a way to overcome issues such as anxiety, stress, poor self-confidence and a stammer.\r\nMark overcame these issues and at the age of 18 started his first business as a mobile disc jockey. The techniques he learnt helped to improve his self-confidence issues and helped him to work as a multiple mobile disco operator for many North East Hotels and even to enjoy public speaking and training others in various roles.\r\n\r\nMark now enjoys speaking at regular health events such as The Mind, Body, Spirit Fair at The Vault each month. Topics include Hypnotherapy, Self-Hypnosis, Neuro-Linguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnosis and NLP skills to others.\r\n\r\n<span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span>\r\n\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clinical Hypnotherapy, NLP and other modern techniques. He also works in many other areas.\r\n\r\nTo chat with Mark about your issues call <strong>07568 455 809</strong> or <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #ff6600;\"><strong>Contact Us</strong></span></a> for a call back.\r\n\r\nTou can also learn about the regualr events and workshops by joining the newsletter lower down the page.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n<h2><span style=\"color: #008000;\"><strong>Yvette Spoor</strong></span></h2>\r\nYvette is a passionate Occupational Therapist, a Practitioner of Neuro-Linguistic Programming and is also skilled in many other areas including family and child work.\r\n\r\nShe has many years of experience within the NHS and also enjoys specialist work in many other areas, helping people with anxiety and stress problems.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including</span></strong>\r\n<ul>\r\n 	<li><strong>NLP</strong> - Neuro Linguistic Programming</li>\r\n 	<li><strong>Hypnotherapy</strong></li>\r\n 	<li><strong>EFT</strong> - Emotional Freedom Technique</li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Coaching</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Nutritional Therapy\r\n</strong> and other useful techniques.</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<ul>\r\n 	<li><strong>Anxiety</strong></li>\r\n 	<li><strong>Depression</strong></li>\r\n 	<li><strong>Stress &amp; Stress Management</strong></li>\r\n 	<li><strong>Anger Management</strong></li>\r\n 	<li><strong>Phobias </strong></li>\r\n 	<li><strong>Pain &amp; Chronic Pain Management</strong></li>\r\n 	<li><strong>Weight Loss &amp; Weight Management</strong></li>\r\n 	<li><strong>Addiction - Alcohol &amp; Habits</strong></li>\r\n 	<li><strong>Smoking Cessation</strong></li>\r\n 	<li><strong>Grief Counselling</strong></li>\r\n 	<li><strong>Confidence Building</strong></li>\r\n 	<li><strong>IBS - Irritable Bowel Syndrome</strong></li>\r\n 	<li><strong>Tinnitus</strong></li>\r\n 	<li><strong>Sleep Disorders</strong></li>\r\n 	<li><strong>Allergies</strong></li>\r\n 	<li><strong>Food Intolerances</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Practice Locations\r\n</strong></span></h4>\r\nWe work across the North East of England, Newcastle upon Tyne &amp; Northumberland for face to face appointments &amp; workshops. We also work online &amp; by phone across the UK when needed.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend\"><span style=\"color: #008000;\">Newcastle <strong>Hypnotherapy</strong> Wallsend Practice</span></a>\r\n<span class=\"LrzXr\"><strong>31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Newcastle Hypnotherapy Seaton Delaval Practice</strong></a></span>\r\n28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Newcastle Hypnotherapy Bedlington Practice</a></span></strong>\r\n1 Vulcan Place, Bedlington, Northumberland, NE22 5DN.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Newcastle Hypnotherapy Cramlington Practice</a></span></strong>\r\n27 Greystoke Place, Cramlington, Northumberland, NE23 6NL.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\">Newcastle Hypnotherapy South Shields Practice</a></span></strong>\r\nWhite Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n\r\nTo book your appointment for hypnotherapy or NLP for these locations please call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\r\n<h4><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy Events, Workshops &amp; Training.</span></strong></h4>\r\nThe<strong> <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\">Wednesday Workshop</a></strong> is a regular event to share useful skills such as Self-Hypnosis, Hypnosis, Neuro-linguistic programming - NLP, Emotional Freedom Technique Tapping - EFT, Meditation, Mindfulness and more.\r\nThe aim is to share skills to improve happiness and good mental health while also making friends and having fun.\r\n\r\nNewcastle Hypnotherapy also runs longer training and development events for deeper learning and advanced skills.\r\n\r\n<strong>For more information about these events and workshops join our newsletter below.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n<strong>Your privacy is safe and you can unsubscribe from the newsletter at any time.</strong>\r\n<h4><strong><span style=\"color: #008000;\">How do I book my appointment?</span></strong></h4>\r\nSimply <strong>call on 07568 455 809</strong> or <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">contact us.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span></strong></h4>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\">Click here to arrange your free consultation.</span></a>\r\n<h4><span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span></h4>\r\nMost appointments are charged at £79 for a 1 to 1.5-hour session.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n<h4><span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span></h4>\r\nMost appointments take about an hour to an hour and a half although may vary depending on your circumstances.\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span></h4>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h4><strong><span style=\"color: #008000;\">Call us on 07568 455 809 to arrange your free 15-minute consultation.</span></strong></h4>\r\n&nbsp;','ABOUT US','','publish','closed','closed','','about-us','','','2019-01-06 15:49:09','2019-01-06 15:49:09','',0,'http://www.newcastle-hypnotherapy.com/?page_id=43',18,'page','',0),(44,1,'2017-09-27 18:37:19','2017-09-27 18:37:19','&nbsp;\r\n\r\nWe specialise in using techniques that result in change and life improvement including NLP - Neuro Linguistic Programming, Hypnotherapy, EFT - Emotional Freedom Techniques (EFT) and other useful techniques.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-09-27 18:37:19','2017-09-27 18:37:19','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(45,1,'2019-01-06 15:45:09','2019-01-06 15:45:09','About Us - Newcastle Hypnotherapy\n\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\n<h2></h2>\n<h2></h2>\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Linguistic Programming.\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications and previously spent many years learning Self-Hypnosis and NLP for himself.\n<h4><span style=\"color: #008000;\"><strong>Mark\'s Qualifications</strong></span></h4>\n<strong>Practitioner Neuro-Linguistic Programming - NLP North East</strong>\n\n<strong>Master Practitioner Neuro-Linguistic Programming - NLP North East</strong>\n\n<strong>Diploma in Clinical Hypnotherapy - Transform NLP</strong>\n<h4><span style=\"color: #008000;\"><strong>Mark\'s Experience &amp; Personal Achievements.\n</strong></span></h4>\nMark has always been very passionate about personal development, nutrition and health.\nMark started to learn self-hypnosis and neuro-linguistic programming in his teens as a way to overcome issues such as anxiety, stress, poor self-confidence and a stammer.\nMark overcame these issues and at the age of 18 started his first business as a mobile disc jockey. The techniques he learnt helped to improve his self-confidence issues and helped him to work as a multiple mobile disco operator for many North East Hotels and even to enjoy public speaking and training others in various roles.\n\nMark now enjoys speaking at regular health events such as The Mind, Body, Spirit Fair at The Vault each month. Topics include Hypnotherapy, Self-Hypnosis, Neuro-Linguistic Programming,  Emotional Freedom Technique, and more.\n\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnosis and NLP skills to others.\n\n<span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span>\n\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clinical Hypnotherapy, NLP and other modern techniques. He also works in many other areas.\n\nTo chat with Mark about your issues call <strong>07568 455 809</strong> or <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #ff6600;\"><strong>Contact Us</strong></span></a> for a call back.\n\nTou can also learn about the regualr events and workshops by joining the\n\n&nbsp;\n\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\n<h2><span style=\"color: #008000;\"><strong>Yvette Spoor</strong></span></h2>\nYvette is a passionate Occupational Therapist, a Practitioner of Neuro-Linguistic Programming and is also skilled in many other areas including family and child work.\n\nShe has many years of experience within the NHS and also enjoys specialist work in many other areas, helping people with anxiety and stress problems.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including</span></strong>\n<ul>\n 	<li><strong>NLP</strong> - Neuro Linguistic Programming</li>\n 	<li><strong>Hypnotherapy</strong></li>\n 	<li><strong>EFT</strong> - Emotional Freedom Technique</li>\n 	<li><strong>Self-Hypnosis</strong></li>\n 	<li><strong>Coaching</strong></li>\n 	<li><strong>Meditation</strong></li>\n 	<li><strong>Mindfulness</strong></li>\n 	<li><strong>Nutritional Therapy\n</strong> and other useful techniques.</li>\n</ul>\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\n<ul>\n 	<li><strong>Anxiety</strong></li>\n 	<li><strong>Depression</strong></li>\n 	<li><strong>Stress &amp; Stress Management</strong></li>\n 	<li><strong>Anger Management</strong></li>\n 	<li><strong>Phobias </strong></li>\n 	<li><strong>Pain &amp; Chronic Pain Management</strong></li>\n 	<li><strong>Weight Loss &amp; Weight Management</strong></li>\n 	<li><strong>Addiction - Alcohol &amp; Habits</strong></li>\n 	<li><strong>Smoking Cessation</strong></li>\n 	<li><strong>Grief Counselling</strong></li>\n 	<li><strong>Confidence Building</strong></li>\n 	<li><strong>IBS - Irritable Bowel Syndrome</strong></li>\n 	<li><strong>Tinnitus</strong></li>\n 	<li><strong>Sleep Disorders</strong></li>\n 	<li><strong>Allergies</strong></li>\n 	<li><strong>Food Intolerances</strong></li>\n</ul>\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Practice Locations\n</strong></span></h4>\nWe work across the North East of England, Newcastle upon Tyne &amp; Northumberland for face to face appointments &amp; workshops. We also work online &amp; by phone across the UK when needed.\n\n<a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend\"><span style=\"color: #008000;\">Newcastle <strong>Hypnotherapy</strong> Wallsend Practice</span></a>\n<span class=\"LrzXr\"><strong>31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.</strong></span>\n\n<span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Newcastle Hypnotherapy Seaton Delaval Practice</strong></a></span>\n28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\n\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Newcastle Hypnotherapy Bedlington Practice</a></span></strong>\n1 Vulcan Place, Bedlington, Northumberland, NE22 5DN.\n\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Newcastle Hypnotherapy Cramlington Practice</a></span></strong>\n27 Greystoke Place, Cramlington, Northumberland, NE23 6NL.\n\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\">Newcastle Hypnotherapy South Shields Practice</a></span></strong>\nWhite Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\n\nTo book your appointment for hypnotherapy or NLP for these locations please call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\n<h4><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy Events, Workshops &amp; Training.</span></strong></h4>\nThe<strong> <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\">Wednesday Workshop</a></strong> is a regular event to share useful skills such as Self-Hypnosis, Hypnosis, Neuro-linguistic programming - NLP, Emotional Freedom Technique Tapping - EFT, Meditation, Mindfulness and more.\nThe aim is to share skills to improve happiness and good mental health while also making friends and having fun.\n\nNewcastle Hypnotherapy also runs longer training and development events for deeper learning and advanced skills.\n\n<strong>For more information about these events and workshops join our newsletter below.</strong>\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\n<strong>Your privacy is safe and you can unsubscribe from the newsletter at any time.</strong>\n<h4><strong><span style=\"color: #008000;\">How do I book my appointment?</span></strong></h4>\nSimply <strong>call on 07568 455 809</strong> or <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">contact us.</a></strong>\n<h4><strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span></strong></h4>\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\">Click here to arrange your free consultation.</span></a>\n<h4><span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span></h4>\nMost appointments are charged at £79 for a 1 to 1.5-hour session.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\n<h4><span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span></h4>\nMost appointments take about an hour to an hour and a half although may vary depending on your circumstances.\n<h4><span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span></h4>\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\n<h4><strong><span style=\"color: #008000;\">Call us on 07568 455 809 to arrange your free 15-minute consultation.</span></strong></h4>\n&nbsp;','ABOUT US','','inherit','closed','closed','','43-autosave-v1','','','2019-01-06 15:45:09','2019-01-06 15:45:09','',43,'http://www.newcastle-hypnotherapy.com/43-autosave-v1/',0,'revision','',0),(46,1,'2017-09-27 18:46:40','2017-09-27 18:46:40','&nbsp;\r\n\r\nWe specialise in using techniques that result in change and life improvement including NLP - Neuro Linguistic Programming, Hypnotherapy, EFT - Emotional Freedom Techniques (EFT), Coaching, Meditation, Mindfullness and other useful techniques.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-09-27 18:46:40','2017-09-27 18:46:40','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(47,1,'2017-09-27 18:54:16','2017-09-27 18:54:16','&nbsp;\r\n\r\nHow Do We Work?\r\nWe specialise in using techniques that result in change and life improvement including NLP - Neuro Linguistic Programming, Hypnotherapy, EFT - Emotional Freedom Techniques (EFT), Coaching, Meditation, Mindfullness and other useful techniques.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-09-27 18:54:16','2017-09-27 18:54:16','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(48,1,'2017-09-27 18:54:25','2017-09-27 18:54:25','&nbsp;\r\n\r\n<strong>How Do We Work?</strong>\r\nWe specialise in using techniques that result in change and life improvement including NLP - Neuro Linguistic Programming, Hypnotherapy, EFT - Emotional Freedom Techniques (EFT), Coaching, Meditation, Mindfullness and other useful techniques.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-09-27 18:54:25','2017-09-27 18:54:25','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(49,1,'2017-09-27 19:04:06','2017-09-27 19:04:06','&nbsp;\r\n\r\n<strong>How do we work?</strong>\r\nWe specialise in using techniques that result in change and life improvement including NLP - Neuro Linguistic Programming, Hypnotherapy, EFT - Emotional Freedom Techniques (EFT), Coaching, Meditation, Mindfulness and other useful techniques.\r\n\r\n<strong>Where do we work?</strong>\r\nWe work across the North East of England, Newcastle &amp; Northumberland for face to face appointments &amp; workshops.\r\nWe also work via Skype, Zoom and Phone across the UK when needed.\r\n\r\n<strong>How do I pay?</strong>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-09-27 19:04:06','2017-09-27 19:04:06','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(50,1,'2017-09-27 19:08:37','2017-09-27 19:08:37','&nbsp;\r\n\r\n<strong>How do we work?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including,\r\nNLP - Neuro Linguistic Programming,\r\nHypnotherapy,\r\nEFT - Emotional Freedom Techniques,\r\nCoaching,\r\nMeditation,\r\nMindfulness,\r\nNutritional Therapy and other useful techniques.\r\n\r\n<strong>Where do we work?</strong>\r\nWe work across the North East of England, Newcastle &amp; Northumberland for face to face appointments &amp; workshops.\r\nWe also work via Skype, Zoom and Phone across the UK when needed.\r\n\r\n<strong>How do I pay?</strong>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply give us a call on 07 or contact us through the contact form below','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-09-27 19:08:37','2017-09-27 19:08:37','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(51,1,'2017-09-27 19:37:46','2017-09-27 19:37:46','&nbsp;\r\n\r\n<strong>How do we work?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including,\r\nNLP - Neuro Linguistic Programming,\r\nHypnotherapy,\r\nEFT - Emotional Freedom Techniques,\r\nCoaching,\r\nMeditation,\r\nMindfulness,\r\nNutritional Therapy and other useful techniques.\r\n\r\n<strong>Where do we work?</strong>\r\nWe work across the North East of England, Newcastle &amp; Northumberland for face to face appointments &amp; workshops.\r\nWe also work via Skype, Zoom and Phone across the UK when needed.\r\n\r\n<strong>How do I pay?</strong>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply give us a call on 07 or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £65 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-09-27 19:37:46','2017-09-27 19:37:46','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(52,1,'2017-09-27 19:50:48','2017-09-27 19:50:48','&nbsp;\r\n\r\n<strong>How do we work?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including,\r\nNLP - Neuro Linguistic Programming,\r\nHypnotherapy,\r\nEFT - Emotional Freedom Techniques,\r\nCoaching,\r\nMeditation,\r\nMindfulness,\r\nNutritional Therapy and other useful techniques.\r\n\r\n<strong>Where do we work?</strong>\r\nWe work across the North East of England, Newcastle &amp; Northumberland for face to face appointments &amp; workshops.\r\nWe also work via Skype, Zoom and Phone across the UK when needed.\r\n\r\n<strong>How do I pay?</strong>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply give us a call on 07 or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £65 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-09-27 19:50:48','2017-09-27 19:50:48','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(295,1,'2017-12-01 14:01:33','2017-12-01 14:01:33','<span style=\"color: #008000;\"><strong>Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Review by Kris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue.\r\nMark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief.\r\nWithin 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>You can make your appointment by calling <span style=\"color: #000000;\">07568 455 809</span> or contact us through the contact form below.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Reviews - What Our Clients Say','','inherit','closed','closed','','200-revision-v1','','','2017-12-01 14:01:33','2017-12-01 14:01:33','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(55,1,'2017-10-02 20:28:39','2017-10-02 20:28:39','&nbsp;\r\n\r\n<strong>How do we work?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including,\r\nNLP - Neuro Linguistic Programming,\r\nHypnotherapy,\r\nEFT - Emotional Freedom Technique,\r\nCoaching,\r\nMeditation,\r\nMindfulness,\r\nNutritional Therapy and other useful techniques.\r\n\r\n<strong>Where do we work?</strong>\r\nWe work across the North East of England, Newcastle &amp; Northumberland for face to face appointments &amp; workshops.\r\nWe also work via Skype, Zoom and Phone across the UK when needed.\r\n\r\n<strong>How do I pay?</strong>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply give us a call on 07568 455 809 or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £65 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-02 20:28:39','2017-10-02 20:28:39','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(56,1,'2017-10-02 20:44:54','2017-10-02 20:44:54','&nbsp;\r\n\r\n<strong>How do we work?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including,\r\nNLP - Neuro Linguistic Programming,\r\nHypnotherapy,\r\nEFT - Emotional Freedom Technique,\r\nCoaching,\r\nMeditation,\r\nMindfulness,\r\nNutritional Therapy and other useful techniques.\r\n\r\n<strong>Where do we work?</strong>\r\nWe work across the North East of England, Newcastle &amp; Northumberland for face to face appointments &amp; workshops.\r\nWe also work via Skype, Zoom and Phone across the UK when needed.\r\n\r\n<strong>How do I pay?</strong>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply give us a call on 07568 455 809 or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £65 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-02 20:44:54','2017-10-02 20:44:54','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(58,1,'2017-10-02 21:26:06','2017-10-02 21:26:06','<img class=\"alignnone size-medium wp-image-57\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/09/Feature-2-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>How do we work?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including,\r\nNLP - Neuro Linguistic Programming,\r\nHypnotherapy,\r\nEFT - Emotional Freedom Technique,\r\nCoaching,\r\nMeditation,\r\nMindfulness,\r\nNutritional Therapy and other useful techniques.\r\n\r\n<strong>Where do we work?</strong>\r\nWe work across the North East of England, Newcastle &amp; Northumberland for face to face appointments &amp; workshops.\r\nWe also work via Skype, Zoom and Phone across the UK when needed.\r\n\r\n<strong>How do I pay?</strong>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply give us a call on 07568 455 809 or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £65 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-02 21:26:06','2017-10-02 21:26:06','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(59,1,'2017-10-02 21:26:46','2017-10-02 21:26:46','<img class=\"alignleft wp-image-57 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/09/Feature-2-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>How do we work?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including,\r\nNLP - Neuro Linguistic Programming,\r\nHypnotherapy,\r\nEFT - Emotional Freedom Technique,\r\nCoaching,\r\nMeditation,\r\nMindfulness,\r\nNutritional Therapy and other useful techniques.\r\n\r\n<strong>Where do we work?</strong>\r\nWe work across the North East of England, Newcastle &amp; Northumberland for face to face appointments &amp; workshops.\r\nWe also work via Skype, Zoom and Phone across the UK when needed.\r\n\r\n<strong>How do I pay?</strong>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply give us a call on 07568 455 809 or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £65 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-02 21:26:46','2017-10-02 21:26:46','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(60,1,'2017-10-02 21:27:10','2017-10-02 21:27:10','<img class=\"alignleft wp-image-57 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/09/Feature-2-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>How do we work?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including,\r\nNLP - Neuro Linguistic Programming,\r\nHypnotherapy,\r\nEFT - Emotional Freedom Technique,\r\nCoaching,\r\nMeditation,\r\nMindfulness,\r\nNutritional Therapy and other useful techniques.\r\n\r\n&nbsp;\r\n\r\n<strong>Where do we work?</strong>\r\nWe work across the North East of England, Newcastle &amp; Northumberland for face to face appointments &amp; workshops.\r\nWe also work via Skype, Zoom and Phone across the UK when needed.\r\n\r\n<strong>How do I pay?</strong>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply give us a call on 07568 455 809 or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £65 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-02 21:27:10','2017-10-02 21:27:10','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(61,1,'2017-10-02 21:49:20','2017-10-02 21:49:20','<img class=\"alignleft wp-image-57 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/09/Feature-2-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>How do we work?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including,\r\nNLP - Neuro Linguistic Programming,\r\nHypnotherapy,\r\nEFT - Emotional Freedom Technique,\r\nCoaching,\r\nMeditation,\r\nMindfulness,\r\nNutritional Therapy and other useful techniques.\r\n\r\n&nbsp;\r\n\r\n<strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:\r\nAnxiety\r\nDepression\r\nStress &amp; Stress Management\r\nPain &amp; Pain Management\r\nWeight Loss &amp; Weight Management\r\nAddiction\r\nSmoking Cessation\r\nGrief\r\nConfidence\r\n<strong>\r\n\r\n\r\nWhere do we work?</strong>\r\nWe work across the North East of England, Newcastle &amp; Northumberland for face to face appointments &amp; workshops.\r\nWe also work via Skype, Zoom and Phone across the UK when needed.\r\n\r\n<strong>How do I pay?</strong>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply give us a call on 07568 455 809 or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £65 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-02 21:49:20','2017-10-02 21:49:20','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(62,1,'2017-10-02 21:56:53','2017-10-02 21:56:53','<img class=\"alignleft wp-image-57 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/09/Feature-2-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>How do we work?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including,\r\nNLP - Neuro Linguistic Programming,\r\nHypnotherapy,\r\nEFT - Emotional Freedom Technique,\r\nCoaching,\r\nMeditation,\r\nMindfulness,\r\nNutritional Therapy and other useful techniques.\r\n\r\n&nbsp;\r\n\r\n<strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:\r\nAnxiety\r\nDepression\r\nStress &amp; Stress Management\r\nAnger Management\r\nPhobias\r\nPain &amp; Chronic Pain Management\r\nWeight Loss &amp; Weight Management\r\nAddiction\r\nSmoking Cessation\r\nGrief Counselling\r\nConfidence Building\r\nIBS - Irritable Bowel Syndrome\r\nTinnitus\r\nSleep Disorders\r\n\r\nWhere do we work?\r\nWe work across the North East of England, Newcastle &amp; Northumberland for face to face appointments &amp; workshops.\r\nWe also work via Skype, Zoom and Phone across the UK when needed.\r\n\r\n<strong>How do I pay?</strong>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply give us a call on 07568 455 809 or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £65 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-02 21:56:53','2017-10-02 21:56:53','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(63,1,'2017-10-02 21:57:52','2017-10-02 21:57:52','<img class=\"alignleft wp-image-57 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/09/Feature-2-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>How do we work?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including,\r\nNLP - Neuro Linguistic Programming,\r\nHypnotherapy,\r\nEFT - Emotional Freedom Technique,\r\nCoaching,\r\nMeditation,\r\nMindfulness,\r\nNutritional Therapy and other useful techniques.\r\n\r\n&nbsp;\r\n\r\n<strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:\r\nAnxiety\r\nDepression\r\nStress &amp; Stress Management\r\nAnger Management\r\nPhobias\r\nPain &amp; Chronic Pain Management\r\nWeight Loss &amp; Weight Management\r\nAddiction\r\nSmoking Cessation\r\nGrief Counselling\r\nConfidence Building\r\nIBS - Irritable Bowel Syndrome\r\nTinnitus\r\nSleep Disorders\r\nAllergies\r\n\r\nWhere do we work?\r\nWe work across the North East of England, Newcastle &amp; Northumberland for face to face appointments &amp; workshops.\r\nWe also work via Skype, Zoom and Phone across the UK when needed.\r\n\r\n<strong>How do I pay?</strong>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply give us a call on 07568 455 809 or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £65 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-02 21:57:52','2017-10-02 21:57:52','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(64,1,'2017-10-02 22:01:33','2017-10-02 22:01:33','<img class=\"alignleft wp-image-57 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/09/Feature-2-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>How do we work?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including,\r\nNLP - Neuro Linguistic Programming,\r\nHypnotherapy,\r\nEFT - Emotional Freedom Technique,\r\nCoaching,\r\nMeditation,\r\nMindfulness,\r\nNutritional Therapy and other useful techniques.\r\n\r\n&nbsp;\r\n\r\n<strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:\r\nAnxiety\r\nDepression\r\nStress &amp; Stress Management\r\nAnger Management\r\nPhobias\r\nPain &amp; Chronic Pain Management\r\nWeight Loss &amp; Weight Management\r\nAddiction\r\nSmoking Cessation\r\nGrief Counselling\r\nConfidence Building\r\nIBS - Irritable Bowel Syndrome\r\nTinnitus\r\nSleep Disorders\r\nAllergies\r\nFood Intolerances\r\n\r\nWhere do we work?\r\nWe work across the North East of England, Newcastle &amp; Northumberland for face to face appointments &amp; workshops.\r\nWe also work via Skype, Zoom and Phone across the UK when needed.\r\n\r\n<strong>How do I pay?</strong>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply give us a call on 07568 455 809 or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £65 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-02 22:01:33','2017-10-02 22:01:33','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(65,1,'2017-10-02 22:03:15','2017-10-02 22:03:15','<img class=\"alignleft wp-image-57 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/09/Feature-2-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>How do we work?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including,\r\nNLP - Neuro Linguistic Programming,\r\nHypnotherapy,\r\nEFT - Emotional Freedom Technique,\r\nCoaching,\r\nMeditation,\r\nMindfulness,\r\nNutritional Therapy and other useful techniques.\r\n\r\n&nbsp;\r\n\r\n<strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:\r\nAnxiety\r\nDepression\r\nStress &amp; Stress Management\r\nAnger Management\r\nPhobias\r\nPain &amp; Chronic Pain Management\r\nWeight Loss &amp; Weight Management\r\nAddiction\r\nSmoking Cessation\r\nGrief Counselling\r\nConfidence Building\r\nIBS - Irritable Bowel Syndrome\r\nTinnitus\r\nSleep Disorders\r\nAllergies\r\nFood Intolerances\r\n\r\n<strong>Where do we work?</strong>\r\nWe work across the North East of England, Newcastle &amp; Northumberland for face to face appointments &amp; workshops.\r\nWe also work via Skype, Zoom and Phone across the UK when needed.\r\n\r\n<strong>How do I pay?</strong>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £65 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-02 22:03:15','2017-10-02 22:03:15','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(66,1,'2017-10-02 22:06:01','2017-10-02 22:06:01','<img class=\"alignleft wp-image-57 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/09/Feature-2-300x222.jpg\" alt=\"\" width=\"300\" height=\"222\" />\r\n\r\n<strong>How do we work?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including,\r\nNLP - Neuro Linguistic Programming,\r\nHypnotherapy,\r\nEFT - Emotional Freedom Technique,\r\nCoaching,\r\nMeditation,\r\nMindfulness,\r\nNutritional Therapy and other useful techniques.\r\n\r\n&nbsp;\r\n\r\n<strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:\r\nAnxiety\r\nDepression\r\nStress &amp; Stress Management\r\nAnger Management\r\nPhobias\r\nPain &amp; Chronic Pain Management\r\nWeight Loss &amp; Weight Management\r\nAddiction - Alcohol &amp; Habits\r\nSmoking Cessation\r\nGrief Counselling\r\nConfidence Building\r\nIBS - Irritable Bowel Syndrome\r\nTinnitus\r\nSleep Disorders\r\nAllergies\r\nFood Intolerances\r\n\r\n<strong>Where do we work?</strong>\r\nWe work across the North East of England, Newcastle &amp; Northumberland for face to face appointments &amp; workshops.\r\nWe also work via Skype, Zoom and Phone across the UK when needed.\r\n\r\n<strong>How do I pay?</strong>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £65 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-02 22:06:01','2017-10-02 22:06:01','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(70,1,'2017-10-12 14:07:17','2017-10-12 14:07:17','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\">IS ANXIETY\r\n\r\nMAKING YOUR LIFE\r\n\r\nUNPLEASANT?</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 14:07:17','2017-10-12 14:07:17','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(71,1,'2017-10-12 14:07:54','2017-10-12 14:07:54','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n\r\n&nbsp;\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?</h1>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 14:07:54','2017-10-12 14:07:54','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(73,1,'2017-10-12 14:09:26','2017-10-12 14:09:26','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n\r\n&nbsp;\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?</h1>\r\n<h2 style=\"text-align: center;\">Do you experience any of these symptoms?</h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 14:09:26','2017-10-12 14:09:26','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(74,1,'2017-10-12 14:09:47','2017-10-12 14:09:47','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?</h1>\r\n<h2 style=\"text-align: center;\">Do you experience any of these symptoms?</h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 14:09:47','2017-10-12 14:09:47','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(75,1,'2017-10-12 14:10:26','2017-10-12 14:10:26','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?\r\n-</h1>\r\n<h2 style=\"text-align: center;\">Do you experience any of these symptoms?</h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 14:10:26','2017-10-12 14:10:26','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(76,1,'2017-10-12 14:20:13','2017-10-12 14:20:13','','Medi-32','','inherit','open','closed','','medi-32','','','2017-10-12 14:20:13','2017-10-12 14:20:13','',68,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/Medi-32.jpg',0,'attachment','image/jpeg',0),(77,1,'2017-10-12 14:21:54','2017-10-12 14:21:54','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?\r\n-</h1>\r\n<h2 style=\"text-align: center;\"><strong>Do you experience any of these symptoms?</strong></h2>\r\n&nbsp;\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easiliy</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2><img class=\"alignleft wp-image-76 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/Medi-32-300x236.jpg\" alt=\"\" width=\"300\" height=\"236\" /><strong>We can help.</strong></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 14:21:54','2017-10-12 14:21:54','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(78,1,'2017-10-12 14:26:24','2017-10-12 14:26:24','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?\r\n-</h1>\r\n<h2 style=\"text-align: center;\"><strong>Do you experience any of these symptoms?</strong></h2>\r\n&nbsp;\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easiliy</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2><img class=\"alignleft wp-image-76 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/Medi-32-300x236.jpg\" alt=\"\" width=\"300\" height=\"236\" /><strong>We can help.</strong></h2>\r\nTried and tested anxiety treatments can quickly provide relief.\r\nWe can show you effective techniques to help you regain control and improve your life.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 14:26:24','2017-10-12 14:26:24','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(80,1,'2017-10-12 14:37:57','2017-10-12 14:37:57','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?\r\n-</h1>\r\n<h2 style=\"text-align: center;\"><strong>Do you experience any of these symptoms?</strong></h2>\r\n&nbsp;\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easiliy</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2 style=\"text-align: center;\"><img class=\"alignleft wp-image-76\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/Medi-32-300x236.jpg\" alt=\"\" width=\"418\" height=\"328\" /><strong>WE CAN HELP\r\n</strong></h2>\r\n<p style=\"text-align: center;\">You will quickly find relief from the symptoms of anxiety with our\r\ntried and tested techniques.\r\n\r\nWe can show you very effective methods, that you can learn quickly to reduce and banish your anxiety.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 14:37:57','2017-10-12 14:37:57','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(79,1,'2017-10-12 14:32:37','2017-10-12 14:32:37','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?\r\n-</h1>\r\n<h2 style=\"text-align: center;\"><strong>Do you experience any of these symptoms?</strong></h2>\r\n&nbsp;\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easiliy</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2 style=\"text-align: center;\"><img class=\"alignleft wp-image-76 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/Medi-32-300x236.jpg\" alt=\"\" width=\"300\" height=\"236\" /><strong>WE CAN HELP\r\n</strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>Tried and tested anxiety techniques can quickly provide relief and improve the quality of your life fast.</strong>\r\n<strong> We can show you very effective methods you can learn quickly yourself, to bring relief and reduce or banish your anxiety.</strong>\r\n\r\n\r\nARE YOU READY TO TAKE YOUR FIRST STEPS TO A BETTER LIFE?</h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 14:32:37','2017-10-12 14:32:37','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(81,1,'2017-10-12 14:38:40','2017-10-12 14:38:40','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?\r\n-</h1>\r\n<h2 style=\"text-align: center;\"><strong>Do you experience any of these symptoms?</strong></h2>\r\n&nbsp;\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easiliy</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2 style=\"text-align: center;\"><img class=\"alignleft wp-image-76\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/Medi-32-300x236.jpg\" alt=\"\" width=\"418\" height=\"328\" /><strong>WE CAN HELP\r\n</strong></h2>\r\n<h2 style=\"text-align: center;\">You will quickly find relief from the symptoms of anxiety with our\r\ntried and tested techniques.</h2>\r\n<h2 style=\"text-align: center;\">We can show you very effective methods, that you can learn quickly to reduce and banish your anxiety.</h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 14:38:40','2017-10-12 14:38:40','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(82,1,'2017-10-12 14:39:12','2017-10-12 14:39:12','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?\r\n-</h1>\r\n<h2 style=\"text-align: center;\"><strong>Do you experience any of these symptoms?</strong></h2>\r\n&nbsp;\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easiliy</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2 style=\"text-align: center;\"><img class=\"alignleft wp-image-76\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/Medi-32-300x236.jpg\" alt=\"\" width=\"418\" height=\"328\" /><strong>WE CAN HELP\r\n</strong></h2>\r\n<h3 style=\"text-align: center;\">You will quickly find relief from the symptoms of anxiety with our tried and tested techniques.</h3>\r\n<h3 style=\"text-align: center;\">We can show you very effective methods, that you can learn quickly to reduce and banish your anxiety.</h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 14:39:12','2017-10-12 14:39:12','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(83,1,'2017-10-12 14:42:38','2017-10-12 14:42:38','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?\r\n-</h1>\r\n<h2 style=\"text-align: center;\"><strong>Do you experience any of these symptoms?</strong></h2>\r\n&nbsp;\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easiliy</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2 style=\"text-align: center;\"><img class=\"alignleft wp-image-76\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/Medi-32-300x236.jpg\" alt=\"\" width=\"418\" height=\"328\" /><strong>WE CAN HELP\r\n</strong></h2>\r\n<h3 style=\"text-align: center;\">You will quickly find relief from the symptoms of anxiety with our tried and tested techniques.</h3>\r\n<h3 style=\"text-align: center;\">We can show you very effective methods, that you can learn quickly to reduce and banish your anxiety.</h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nARE YOU READY TO\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 14:42:38','2017-10-12 14:42:38','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(84,1,'2017-10-12 14:43:01','2017-10-12 14:43:01','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?\r\n-</h1>\r\n<h2 style=\"text-align: center;\"><strong>Do you experience any of these symptoms?</strong></h2>\r\n&nbsp;\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easiliy</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2 style=\"text-align: center;\"><img class=\"alignleft wp-image-76\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/Medi-32-300x236.jpg\" alt=\"\" width=\"418\" height=\"328\" /><strong>WE CAN HELP\r\n</strong></h2>\r\n<h4 style=\"text-align: center;\">You will quickly find relief from the symptoms of anxiety with our tried and tested techniques.</h4>\r\n<h4 style=\"text-align: center;\">We can show you very effective methods, that you can learn quickly to reduce and banish your anxiety.</h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nARE YOU READY TO\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 14:43:01','2017-10-12 14:43:01','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(85,1,'2017-10-12 14:43:46','2017-10-12 14:43:46','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?\r\n-</h1>\r\n<h2 style=\"text-align: center;\"><strong>Do you experience any of these symptoms?</strong></h2>\r\n&nbsp;\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easiliy</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2 style=\"text-align: center;\"><img class=\"alignleft wp-image-76\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/Medi-32-300x236.jpg\" alt=\"\" width=\"418\" height=\"328\" /><strong>WE CAN HELP\r\n</strong></h2>\r\n<h4 style=\"text-align: center;\">You will quickly find relief from the symptoms of anxiety\r\nwith our tried and tested techniques.</h4>\r\n<h4 style=\"text-align: center;\">We can show you very effective methods, that you can learn\r\nquickly to reduce and banish your anxiety.</h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nARE YOU READY TO\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 14:43:46','2017-10-12 14:43:46','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(139,1,'2017-10-31 00:20:36','2017-10-31 00:20:36','<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?</strong></span>\r\n\r\nAnxiety is different to stress as often the cause is unclear.\r\n\r\nSymptoms of anxiety can be:\r\n<h2 style=\"text-align: center;\"></h2>\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h4 style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully we can help - Complete the form below or call us today to take your first steps.\r\nTel </span></strong>07568 455 809</h4>\r\n<h2 style=\"text-align: center;\">[wpforms id=\"35\" title=\"false\" description=\"false\"]</h2>','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-31 00:20:36','2017-10-31 00:20:36','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(86,1,'2017-10-12 14:45:10','2017-10-12 14:45:10','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?\r\n-</h1>\r\n<h2 style=\"text-align: center;\"><strong>Do you experience any of these symptoms?</strong></h2>\r\n&nbsp;\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easiliy</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2 style=\"text-align: center;\"><img class=\"alignleft wp-image-76\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/Medi-32-300x236.jpg\" alt=\"\" width=\"418\" height=\"328\" /><strong>WE CAN HELP\r\n</strong></h2>\r\n<h4 style=\"text-align: center;\">You will quickly find relief from the symptoms of anxiety\r\nwith our tried and tested techniques.</h4>\r\n<h4 style=\"text-align: center;\">We can show you very effective methods, that you can learn\r\nquickly to reduce and banish your anxiety.</h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">ARE YOU READY TO MAKE LIFE BETTER?</h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 14:45:10','2017-10-12 14:45:10','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(87,1,'2017-10-12 14:45:27','2017-10-12 14:45:27','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?\r\n-</h1>\r\n<h2 style=\"text-align: center;\"><strong>Do you experience any of these symptoms?</strong></h2>\r\n&nbsp;\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easiliy</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2 style=\"text-align: center;\"><img class=\"alignleft wp-image-76\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/Medi-32-300x236.jpg\" alt=\"\" width=\"418\" height=\"328\" /><strong>WE CAN HELP\r\n</strong></h2>\r\n<h4 style=\"text-align: center;\">You will quickly find relief from the symptoms of anxiety\r\nwith our tried and tested techniques.</h4>\r\n<h4 style=\"text-align: center;\">We can show you very effective methods, that you can learn\r\nquickly to reduce and banish your anxiety.</h4>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">ARE YOU READY TO MAKE LIFE BETTER?</h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 14:45:27','2017-10-12 14:45:27','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(88,1,'2017-10-12 14:45:50','2017-10-12 14:45:50','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?\r\n-</h1>\r\n<h2 style=\"text-align: center;\"><strong>Do you experience any of these symptoms?</strong></h2>\r\n&nbsp;\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easiliy</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2 style=\"text-align: center;\"><img class=\"alignleft wp-image-76\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/Medi-32-300x236.jpg\" alt=\"\" width=\"418\" height=\"328\" /><strong>WE CAN HELP\r\n</strong></h2>\r\n<h4 style=\"text-align: center;\">You will quickly find relief from the symptoms of anxiety\r\nwith our tried and tested techniques.</h4>\r\n<h4 style=\"text-align: center;\">We can show you very effective methods, that you can learn\r\nquickly to reduce and banish your anxiety.</h4>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">ARE YOU READY TO MAKE\r\nYOUR LIFE BETTER?</h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 14:45:50','2017-10-12 14:45:50','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(89,1,'2017-10-12 14:50:08','2017-10-12 14:50:08','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?\r\n-</h1>\r\n<h2 style=\"text-align: center;\"><strong>Do you experience any of these symptoms?</strong></h2>\r\n&nbsp;\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easiliy</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2 style=\"text-align: center;\"><img class=\"alignleft wp-image-76\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/Medi-32-300x236.jpg\" alt=\"\" width=\"418\" height=\"328\" /><strong>WE CAN HELP\r\n</strong></h2>\r\n<h4 style=\"text-align: center;\">You will quickly find relief from the symptoms of anxiety\r\nwith our tried and tested techniques.</h4>\r\n<h4 style=\"text-align: center;\">We can show you very effective methods, that you can learn\r\nquickly to reduce and banish your anxiety.</h4>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">ARE YOU READY TO MAKE\r\nYOUR LIFE BETTER?</h2>\r\n&nbsp;\r\n<h1 style=\"text-align: center;\">Call us today or complete the form below\r\nTo arrange your free consultation\r\n<strong>Cal 07568 455 809\r\n</strong></h1>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 14:50:08','2017-10-12 14:50:08','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(90,1,'2017-10-12 14:50:57','2017-10-12 14:50:57','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?\r\n-</h1>\r\n<h2 style=\"text-align: center;\"><strong>Do you experience any of these symptoms?</strong></h2>\r\n&nbsp;\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easiliy</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2 style=\"text-align: center;\"><img class=\"alignleft wp-image-76\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/Medi-32-300x236.jpg\" alt=\"\" width=\"418\" height=\"328\" /><strong>WE CAN HELP\r\n</strong></h2>\r\n<h4 style=\"text-align: center;\">You will quickly find relief from the symptoms of anxiety\r\nwith our tried and tested techniques.</h4>\r\n<h4 style=\"text-align: center;\">We can show you very effective methods, that you can learn\r\nquickly to reduce and banish your anxiety.</h4>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">ARE YOU READY TO MAKE\r\nYOUR LIFE BETTER?</h2>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">Call us today or complete the form below\r\nTo arrange your free consultation\r\n<strong>Cal 07568 455 809\r\n</strong></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 14:50:57','2017-10-12 14:50:57','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(105,1,'2017-10-30 21:47:02','2017-10-30 21:47:02','&nbsp;\r\n\r\n&nbsp;\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?\r\n-</h1>\r\n<h2 style=\"text-align: center;\"><strong>Do you experience any of these symptoms?</strong></h2>\r\n&nbsp;\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easiliy</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2 style=\"text-align: center;\"><img class=\"alignleft wp-image-76\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/Medi-32-300x236.jpg\" alt=\"\" width=\"418\" height=\"328\" /><strong>WE CAN HELP\r\n</strong></h2>\r\n<h4 style=\"text-align: center;\">You will quickly find relief from the symptoms of anxiety\r\nwith our tried and tested techniques.</h4>\r\n<h4 style=\"text-align: center;\">We can show you very effective methods, that you can learn\r\nquickly to reduce and banish your anxiety.</h4>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">ARE YOU READY TO MAKE\r\nYOUR LIFE BETTER?</h2>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">Call us today or complete the form below\r\nTo arrange your free consultation\r\nCal 07568 455 809<strong>\r\n</strong></h2>\r\n[wpforms id=\"35\" title=\"false\" description=\"false\"]\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-30 21:47:02','2017-10-30 21:47:02','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(91,1,'2017-10-12 14:52:48','2017-10-12 14:52:48','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?\r\n-</h1>\r\n<h2 style=\"text-align: center;\"><strong>Do you experience any of these symptoms?</strong></h2>\r\n&nbsp;\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easiliy</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2 style=\"text-align: center;\"><img class=\"alignleft wp-image-76\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/Medi-32-300x236.jpg\" alt=\"\" width=\"418\" height=\"328\" /><strong>WE CAN HELP\r\n</strong></h2>\r\n<h4 style=\"text-align: center;\">You will quickly find relief from the symptoms of anxiety\r\nwith our tried and tested techniques.</h4>\r\n<h4 style=\"text-align: center;\">We can show you very effective methods, that you can learn\r\nquickly to reduce and banish your anxiety.</h4>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">ARE YOU READY TO MAKE\r\nYOUR LIFE BETTER?</h2>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">Call us today or complete the form below\r\nTo arrange your free consultation\r\n<strong>Cal 07568 455 809\r\n</strong></h2>\r\n[wpforms id=\"35\" title=\"false\" description=\"false\"]\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 14:52:48','2017-10-12 14:52:48','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(92,1,'2017-10-12 14:53:30','2017-10-12 14:53:30','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?\r\n-</h1>\r\n<h2 style=\"text-align: center;\"><strong>Do you experience any of these symptoms?</strong></h2>\r\n&nbsp;\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easiliy</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2 style=\"text-align: center;\"><img class=\"alignleft wp-image-76\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/Medi-32-300x236.jpg\" alt=\"\" width=\"418\" height=\"328\" /><strong>WE CAN HELP\r\n</strong></h2>\r\n<h4 style=\"text-align: center;\">You will quickly find relief from the symptoms of anxiety\r\nwith our tried and tested techniques.</h4>\r\n<h4 style=\"text-align: center;\">We can show you very effective methods, that you can learn\r\nquickly to reduce and banish your anxiety.</h4>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">ARE YOU READY TO MAKE\r\nYOUR LIFE BETTER?</h2>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">Call us today or complete the form below\r\nTo arrange your free consultation\r\nCal 07568 455 809<strong>\r\n</strong></h2>\r\n[wpforms id=\"35\" title=\"false\" description=\"false\"]\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 14:53:30','2017-10-12 14:53:30','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(93,1,'2017-10-12 15:00:28','2017-10-12 15:00:28','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?\r\n-</h1>\r\n<h2 style=\"text-align: center;\"><strong>Do you experience any of these symptoms?</strong></h2>\r\n&nbsp;\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easiliy</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2 style=\"text-align: center;\"><img class=\"alignleft wp-image-76\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/Medi-32-300x236.jpg\" alt=\"\" width=\"418\" height=\"328\" /><strong>WE CAN HELP\r\n</strong></h2>\r\n<h4 style=\"text-align: center;\">You will quickly find relief from the symptoms of anxiety\r\nwith our tried and tested techniques.</h4>\r\n<h4 style=\"text-align: center;\">We can show you very effective methods, that you can learn\r\nquickly to reduce and banish your anxiety.</h4>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">ARE YOU READY TO MAKE\r\nYOUR LIFE BETTER?</h2>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">Call us today or complete the form below\r\nTo arrange your free consultation\r\nCal 07568 455 809<strong>\r\n</strong></h2>\r\n[wpforms id=\"35\" title=\"false\" description=\"false\"]\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 15:00:28','2017-10-12 15:00:28','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(94,1,'2017-10-12 15:03:28','2017-10-12 15:03:28','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-69 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/img17-418x289.jpg\" alt=\"\" width=\"418\" height=\"289\" />\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?\r\n-</h1>\r\n<h2 style=\"text-align: center;\"><strong>Do you experience any of these symptoms?</strong></h2>\r\n&nbsp;\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easiliy</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2 style=\"text-align: center;\"><img class=\"alignleft wp-image-76\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/Medi-32-300x236.jpg\" alt=\"\" width=\"418\" height=\"328\" /><strong>WE CAN HELP\r\n</strong></h2>\r\n<h4 style=\"text-align: center;\">You will quickly find relief from the symptoms of anxiety\r\nwith our tried and tested techniques.</h4>\r\n<h4 style=\"text-align: center;\">We can show you very effective methods, that you can learn\r\nquickly to reduce and banish your anxiety.</h4>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">ARE YOU READY TO MAKE\r\nYOUR LIFE BETTER?</h2>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">Call us today or complete the form below\r\nTo arrange your free consultation\r\nCal 07568 455 809<strong>\r\n</strong></h2>\r\n[wpforms id=\"35\" title=\"false\" description=\"false\"]\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-12 15:03:28','2017-10-12 15:03:28','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(224,1,'2017-11-26 18:27:38','2017-11-26 18:27:38','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n\r\n\r\n\r\n</strong></span>Stress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 18:27:38','2017-11-26 18:27:38','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(222,0,'2017-11-26 18:26:26','0000-00-00 00:00:00','<p><strong>Exclusive: WPForms Black Friday Sale &#8211; Get 25% OFF on All Plans</strong></p>\n<p>All you have to do is use the coupon: BF2017 to claim the offer.</p>\n<p><a href=\"https://wpforms.com/pricing/?utm_source=wpdashboard&#038;utm_campaign=amnotification&#038;utm_content=blackfriday\" target=\"_blank\" class=\"button button-primary\">Click Here and Upgrade to WPForms Pro &raquo;</a> <a href=\"http://www.wpbeginner.com/news/black-friday-cyber-monday-2017-wordpress-deals-big-savings/?utm_source=wpdashboard&#038;utm_campaign=amnotification&#038;utm_content=blackfriday\" class=\"button button-secondary\" target=\"_blank\">See all other WordPress Black Friday Deals</a></p>\n<p>NOTE: this is a LIMITED TIME offer, and it will expire on November 30th, 2017 (Midnight EST).</p>\n','','','draft','closed','closed','','','','','2017-11-26 18:26:26','0000-00-00 00:00:00','',0,'http://www.newcastle-hypnotherapy.com/?post_type=amn_wpforms-lite&p=222',0,'amn_wpforms-lite','',0),(108,1,'2017-10-30 21:59:01','2017-10-30 21:59:01','&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /> <img class=\"alignnone size-thumbnail wp-image-104\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n\r\n<strong>Mark &amp; Yvette</strong>\r\n\r\n<strong>How do we work &amp; what do we do?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including:\r\n\r\n<strong>NLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy</strong> and other useful techniques.\r\n\r\n&nbsp;\r\n\r\n<strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:\r\n\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n\r\n<strong>Where do we work?</strong>\r\nWe work across the North East of England, Newcastle &amp; Northumberland for face to face appointments &amp; workshops.\r\nWe also work via Skype, Zoom and Phone across the UK when needed.\r\n\r\n<strong>How do I pay?</strong>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £65 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-30 21:59:01','2017-10-30 21:59:01','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(109,1,'2017-10-30 21:59:25','2017-10-30 21:59:25','<img class=\"alignnone size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /> <img class=\"alignnone size-thumbnail wp-image-104\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n\r\n<strong>Mark &amp; Yvette</strong>\r\n\r\n<strong>How do we work &amp; what do we do?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including:\r\n\r\n<strong>NLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy</strong> and other useful techniques.\r\n\r\n&nbsp;\r\n\r\n<strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:\r\n\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n\r\n<strong>Where do we work?</strong>\r\nWe work across the North East of England, Newcastle &amp; Northumberland for face to face appointments &amp; workshops.\r\nWe also work via Skype, Zoom and Phone across the UK when needed.\r\n\r\n<strong>How do I pay?</strong>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £65 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-30 21:59:25','2017-10-30 21:59:25','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(110,1,'2017-10-30 21:59:50','2017-10-30 21:59:50','<img class=\"alignnone size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /> <img class=\"alignnone size-thumbnail wp-image-104\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n\r\n<strong>Mark &amp; Yvette</strong>\r\n\r\n<strong>How do we work &amp; what do we do?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including:\r\n\r\n<strong>NLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy</strong> and other useful techniques.\r\n\r\n<strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:\r\n\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n\r\n<strong>Where do we work?</strong>\r\nWe work across the North East of England, Newcastle &amp; Northumberland for face to face appointments &amp; workshops.\r\nWe also work via Skype, Zoom and Phone across the UK when needed.\r\n\r\n<strong>How do I pay?</strong>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £65 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-30 21:59:50','2017-10-30 21:59:50','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(111,1,'2017-10-30 22:00:53','2017-10-30 22:00:53','<img class=\"alignnone size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /> <img class=\"alignnone size-thumbnail wp-image-104\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n\r\n<strong>Mark &amp; Yvette</strong>\r\n<h3><strong>How do we work &amp; what do we do?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including:</h3>\r\n<strong>NLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n\r\n<strong>Where do we work?</strong>\r\nWe work across the North East of England, Newcastle &amp; Northumberland for face to face appointments &amp; workshops.\r\nWe also work via Skype, Zoom and Phone across the UK when needed.\r\n\r\n<strong>How do I pay?</strong>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £65 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-30 22:00:53','2017-10-30 22:00:53','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(114,1,'2017-10-30 22:02:54','2017-10-30 22:02:54','<img class=\"alignnone size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /> <img class=\"alignnone size-thumbnail wp-image-104\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n\r\n<strong>Mark &amp; Yvette</strong>\r\n<h3><strong>How do we work &amp; what do we do?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including:</h3>\r\n<strong>NLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the North East of England, Newcastle &amp; Northumberland for face to face appointments &amp; workshops.\r\nWe also work via Skype, Zoom and Phone across the UK when needed.\r\n\r\n<strong>How do I pay?</strong>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £65 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-30 22:02:54','2017-10-30 22:02:54','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(112,1,'2017-10-30 22:02:07','2017-10-30 22:02:07','<img class=\"alignnone size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /> <img class=\"alignnone size-thumbnail wp-image-104\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n\r\n<strong>Mark &amp; Yvette</strong>\r\n<h3><strong>How do we work &amp; what do we do?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including:</h3>\r\n<strong>NLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\n<strong>\r\n</strong>\r\nWe work across the North East of England, Newcastle &amp; Northumberland for face to face appointments &amp; workshops.\r\nWe also work via Skype, Zoom and Phone across the UK when needed.\r\n\r\n<strong>How do I pay?</strong>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £65 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-30 22:02:07','2017-10-30 22:02:07','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(113,1,'2017-10-30 22:02:33','2017-10-30 22:02:33','<img class=\"alignnone size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /> <img class=\"alignnone size-thumbnail wp-image-104\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n\r\n<strong>Mark &amp; Yvette</strong>\r\n<h3><strong>How do we work &amp; what do we do?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including:</h3>\r\n<strong>NLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\n<strong>\r\n</strong>We work across the North East of England, Newcastle &amp; Northumberland for face to face appointments &amp; workshops.\r\nWe also work via Skype, Zoom and Phone across the UK when needed.\r\n\r\n<strong>How do I pay?</strong>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £65 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-30 22:02:33','2017-10-30 22:02:33','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(115,1,'2017-10-30 22:05:40','2017-10-30 22:05:40','<img class=\"alignnone size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /> <img class=\"alignnone size-thumbnail wp-image-104\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n\r\n<strong>Mark &amp; Yvette</strong>\r\n<h3><strong>How do we work &amp; what do we do?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including:</h3>\r\n<strong>NLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><strong>How do I pay?</strong></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-30 22:05:40','2017-10-30 22:05:40','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(116,1,'2017-10-30 22:09:00','2017-10-30 22:09:00','<img class=\"alignnone size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /> <img class=\"alignnone size-thumbnail wp-image-104\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n\r\n<strong>Mark &amp; Yvette</strong>\r\n<h3><strong>How do we work &amp; what do we do?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including:</h3>\r\n<strong>NLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><strong>How do I pay?</strong></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n\r\nCall us on <strong>07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-30 22:09:00','2017-10-30 22:09:00','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(117,1,'2017-10-30 22:17:15','2017-10-30 22:17:15','<img class=\"alignnone size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /> <img class=\"alignnone size-thumbnail wp-image-104\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n\r\n<strong>Mark &amp; Yvette</strong>\r\n<h3><strong>How do we work &amp; what do we do?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including:</h3>\r\n<strong>NLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><strong>How do I pay?</strong></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong>Call us on 07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-30 22:17:15','2017-10-30 22:17:15','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(120,1,'2017-10-30 22:52:13','2017-10-30 22:52:13','2<img class=\"alignnone size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /> <img class=\"alignnone size-thumbnail wp-image-104\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n\r\n<strong>Mark &amp; Yvette</strong>\r\n<h3><strong>How do we work &amp; what do we do?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including:</h3>\r\n<strong>NLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness02</strong>\r\n<strong>Nutritional Therapy</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><strong>How do I pay?</strong></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong>Call us on 07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-30 22:52:13','2017-10-30 22:52:13','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(121,1,'2017-10-30 22:53:18','2017-10-30 22:53:18','&nbsp;\r\n\r\n&nbsp;\r\n<h1 style=\"text-align: center;\">IS ANXIETY</h1>\r\n<h1 style=\"text-align: center;\">MAKING YOUR LIFE</h1>\r\n<h1 style=\"text-align: center;\">UNPLEASANT?\r\n-</h1>\r\n<h2 style=\"text-align: center;\"><strong>Do you experience any of these symptoms?</strong></h2>\r\n&nbsp;\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easiliy</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2 style=\"text-align: center;\"><img class=\"alignleft wp-image-76\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/Medi-32-300x236.jpg\" alt=\"\" width=\"418\" height=\"328\" /><strong>WE CAN HELP\r\n</strong></h2>\r\n<h4 style=\"text-align: center;\">You will quickly find relief from the symptoms of anxiety\r\nwith our tried and tested techniques.</h4>\r\n<h4 style=\"text-align: center;\">We can show you very effective methods, that you can learn\r\nquickly to reduce and banish your anxiety.</h4>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">ARE YOU READY TO MAKE\r\nYOUR LIFE BETTER?</h2>\r\n&nbsp;\r\n<h2 style=\"text-align: center;\">Call us today or complete the form below\r\nTo arrange your free consultation\r\nCal 07568 455 809<strong>\r\n</strong></h2>\r\n[wpforms id=\"35\" title=\"false\" description=\"false\"]','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-30 22:53:18','2017-10-30 22:53:18','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(122,1,'2017-10-30 23:08:25','2017-10-30 23:08:25','<h4><img class=\"alignnone wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<span style=\"color: #008000;\"><strong>We help people with depression to take control and make their lives better.\r\n</strong></span></h4>\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n<h2><strong><span style=\"color: #008000;\">The good news is,  we can help with your depression.</span></strong></h2>\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n<h2><span style=\"color: #008000;\"><strong>Jenny’s experience.</strong></span></h2>\r\n<em><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to make that call. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span></em>\r\n\r\n<em><span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span></em>\r\n<h2><strong><span style=\"color: #008000;\">Depression You Have The Choice &amp; We Have The Skills.</span></strong></h2>\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n<h2><strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?\r\n</span></strong></h2>\r\nWorking with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n<h2><span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How can Depression affect you &amp; What are the symptoms?\r\n</strong></span></h2>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms. Depression can give us a very distorted view of the world and our lives.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\nSome studies and research show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\nThe good news is that there are many techniques and therapies we use to help you with your depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','DEPRESSION','','publish','closed','closed','','hypnosis-for-depression','','','2019-01-06 18:39:11','2019-01-06 18:39:11','',1451,'http://www.newcastle-hypnotherapy.com/?page_id=122',9,'page','',0),(123,1,'2017-10-30 23:08:25','2017-10-30 23:08:25','','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-10-30 23:08:25','2017-10-30 23:08:25','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(124,1,'2017-10-30 23:09:17','2017-10-30 23:09:17','2<img class=\"alignnone size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /> <img class=\"alignnone size-thumbnail wp-image-104\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n\r\n<strong>Mark &amp; Yvette</strong>\r\n<h3><strong>How do we work &amp; what do we do?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including:</h3>\r\n<strong>NLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><strong>How do I pay?</strong></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong>Call us on 07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-30 23:09:17','2017-10-30 23:09:17','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(125,1,'2017-10-30 23:09:42','2017-10-30 23:09:42','<img class=\"alignnone size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />   <img class=\"alignnone size-thumbnail wp-image-104\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n\r\n<strong>Mark &amp; Yvette</strong>\r\n<h3><strong>How do we work &amp; what do we do?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including:</h3>\r\n<strong>NLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><strong>How do I pay?</strong></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong>Call us on 07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-30 23:09:42','2017-10-30 23:09:42','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(126,1,'2017-10-30 23:10:39','2017-10-30 23:10:39','<img class=\"alignnone size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />   <img class=\"alignnone size-thumbnail wp-image-104\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n\r\n<strong>Mark &amp; Yvette</strong>\r\n<h3><strong>How do we work &amp; what do we do?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement including:</h3>\r\n<strong>NLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><strong>How do I pay?</strong></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong>Call us on 07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-10-30 23:10:39','2017-10-30 23:10:39','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(127,1,'2019-04-22 19:08:55','2019-04-22 19:08:55','&nbsp;\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\n\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\n\n<strong>Imagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away. This is how hypnotherapy for stress management helps people just like you.\n</strong>\n<h4 style=\"text-align: center;\">To get started simply get in touch today, to arrange a free phone consultation. Call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809.</strong></span></a></h4>\n&nbsp;\n<h4><strong><span style=\"color: #008000;\">How Can Hypnotherapy For Stress Management Help Me?</span></strong></h4>\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\nLearning good Stress Management skills can make all the difference in how we naturally deal with stress and stressful situations, on a day to day basis.\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\n<h4><span style=\"color: #008000;\"><strong>Changing your response from Stressed to Relaxed</strong>.</span></h4>\nPeople who suffer from stress issues find that certain stress triggers make them respond in the wrong way. There are times when we do need to feel stressed but when we react to these things too often, it becomes a habit and damages our health.\n\n<strong>Hypnosis and Self-Hypnosis are very powerful methods to help you to relax and stay relaxed, rather than feeling stressed.</strong>\n<strong>Are you ready to take the first step? <em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us today</a></span></em> to learn how hypnotherapy for stress management can help you.</strong>\n<h4><span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span></h4>\nThere are effective ways to remove stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\n<h4><span style=\"color: #008000;\"><strong>Self Help For Stress Management?</strong></span></h4>\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\n<h4><strong><span style=\"color: #008000;\">Free Tips &amp; Advice For Stress Management.</span></strong></h4>\n<strong>Join the Stress Management Newsletter today.</strong>\nYour privacy is safe and you can unsubscribe at any time.\n[contact-form-7 id=\"2017\" title=\"Stress Tips Newsletter\"]\n<h4><strong><span style=\"color: #008000;\">Living With Stress Problems.</span></strong></h4>\nIf you are suffereing from stress issues you will be aware that it can make life very miserable.\nStress can affect you in many ways including\n<ul>\n 	<li>mood</li>\n 	<li>work performance</li>\n 	<li>sex life &amp; sex drive</li>\n 	<li>panic attacks</li>\n 	<li>self-esteem</li>\n 	<li>self-confidence</li>\n 	<li>excess worry</li>\n 	<li>uncomfortable breathing</li>\n 	<li>general health</li>\n 	<li>energy levels</li>\n 	<li>disturbed sleep</li>\n 	<li>feeling overwhelemed</li>\n 	<li>upsetting the people around you</li>\n</ul>\nStress can really take the fun our of life and interestingly it is one of the easiest problems to rectify.\nStress is not really the problem but the way you react to things is.\nAre you ready to take control and live a better life?\n<h4><strong><span style=\"color: #008000;\">How Quickly Can Hypnotherapy Help Stress Issues?</span></strong></h4>\nMost clients find their stress levels drop quite quickly after their first session of hypnotherapy for stress management.\nAs you practice your excercises and gian control over your stress, you will enjoy your stress levels dropping even further.\nEvery stress client is different and results will vary for each person.\n<h4><span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span></h4>\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\n<h4><strong><span style=\"color: #008000;\">Your FREE Stress Management Consultation. </span></strong></h4>\nMany of our clients love the free consultation as it gives you the chance to explain your stress issues and get answers to all of your questions. We can look at the issues and then let you know the best way forward to change that feeling of being stressed to feeling relaxed and calm.\n\n<span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Stress Management Client feedback from Steve</strong></span><em><span class=\"r-irHasJMkQBec\" tabindex=\"0\">. “I Would like to thank Mark for the great help he has given with<strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.”</strong></span></em>\n<h4><span style=\"color: #008000;\"><strong>Mark\'s Journey With Stress &amp; Stress Management.</strong></span></h4>\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\nOn studying and practising these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress management techniques.\n<h4><strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong></h4>\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\n<h4><span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span></h4>\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\n\n<span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\n</strong></span>\n<h4>[wpforms id=\"35\"]</h4>\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\nNewcastle Hypnotherapy helps people with stress and many other issues from a number of locations in the North East of England.\nYou can find our hypnotherapy &amp; NLP services at the following locations.\n<ul>\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\n</strong></li>\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\n</strong></li>\n 	<li><strong>Newcastle City Centre</strong></li>\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\n 	<li>Online via video link - ask for details.</li>\n</ul>\n&nbsp;','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-autosave-v1','','','2019-04-22 19:08:55','2019-04-22 19:08:55','',106,'http://www.newcastle-hypnotherapy.com/106-autosave-v1/',0,'revision','',0),(575,1,'2018-04-09 21:14:07','2018-04-09 21:14:07','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2018-04-09 21:14:07','2018-04-09 21:14:07','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(573,1,'2018-04-09 21:09:40','2018-04-09 21:09:40','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nThe Life Unlimited Group are specialists in \"Change Work\". This means we help our clients to make major changes in their lives, for the better.\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of the people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2018-04-09 21:09:40','2018-04-09 21:09:40','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(128,1,'2017-10-30 23:18:10','2017-10-30 23:18:10','Stress is an interesting thing!\r\nYes stress is interesting in that for some people it can really make them unwell\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[wpforms id=\"35\"]','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-10-30 23:18:10','2017-10-30 23:18:10','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(129,1,'2017-10-30 23:32:43','2017-10-30 23:32:43','Stress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\n\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\n<h4>To take control of your stress today call us on 07568 455 809 or fill in the form at the bottom of this page.</h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[wpforms id=\"35\"]','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-10-30 23:32:43','2017-10-30 23:32:43','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(130,1,'2017-10-30 23:54:30','2017-10-30 23:54:30','Stress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\n\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4>Take control of your stress today call us on 07568 455 809 or fill in the form at the bottom of this page.</h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully I began studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show people how to change how stress affects them and how to respond to stress better.\r\nMost importantly we can show you how to use stress to your advantage.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[wpforms id=\"35\"]','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-10-30 23:54:30','2017-10-30 23:54:30','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(131,1,'2017-10-30 23:56:36','2017-10-30 23:56:36','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Stress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\n\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4>Take control of your stress today call us on 07568 455 809 or fill in the form at the bottom of this page.</h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully I began studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show people how to change how stress affects them and how to respond to stress better.\r\nMost importantly we can show you how to use stress to your advantage.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[wpforms id=\"35\"]','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-10-30 23:56:36','2017-10-30 23:56:36','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(132,1,'2017-10-30 23:57:34','2017-10-30 23:57:34','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Stress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\n\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4><span style=\"color: #008000;\">Take control of your stress today call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully I began studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show people how to change how stress affects them and how to respond to stress better.\r\nMost importantly we can show you how to use stress to your advantage.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[wpforms id=\"35\"]','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-10-30 23:57:34','2017-10-30 23:57:34','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(133,1,'2017-10-30 23:57:47','2017-10-30 23:57:47','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Stress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\n\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully I began studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show people how to change how stress affects them and how to respond to stress better.\r\nMost importantly we can show you how to use stress to your advantage.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[wpforms id=\"35\"]','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-10-30 23:57:47','2017-10-30 23:57:47','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(134,1,'2017-10-31 00:00:30','2017-10-31 00:00:30','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Stress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\n\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[wpforms id=\"35\"]','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-10-31 00:00:30','2017-10-31 00:00:30','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(135,1,'2017-10-31 00:03:14','2017-10-31 00:03:14','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Stress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\n\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress. Tel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-10-31 00:03:14','2017-10-31 00:03:14','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(136,1,'2017-10-31 00:03:33','2017-10-31 00:03:33','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Stress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\n\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-10-31 00:03:33','2017-10-31 00:03:33','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(137,1,'2017-10-31 00:04:24','2017-10-31 00:04:24','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Stress is an interesting thing!</strong></span>\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\n\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-10-31 00:04:24','2017-10-31 00:04:24','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(138,1,'2017-10-31 00:05:38','2017-10-31 00:05:38','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n\r\n</strong></span>Stress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\n\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-10-31 00:05:38','2017-10-31 00:05:38','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(140,1,'2017-10-31 00:21:21','2017-10-31 00:21:21','<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?</strong></span>\r\n\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\n\r\nSymptoms of anxiety can be:\r\n<h2 style=\"text-align: center;\"></h2>\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h4 style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully we can help - Complete the form below or call us today to take your first steps.\r\nTel </span></strong>07568 455 809</h4>\r\n<h2 style=\"text-align: center;\">[wpforms id=\"35\" title=\"false\" description=\"false\"]</h2>','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-31 00:21:21','2017-10-31 00:21:21','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(141,1,'2017-10-31 00:21:46','2017-10-31 00:21:46','<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?</strong></span>\r\n\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\n\r\n<span style=\"color: #008000;\"><strong>Symptoms of anxiety can be:</strong></span>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h4 style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully we can help - Complete the form below or call us today to take your first steps.\r\nTel </span></strong>07568 455 809</h4>\r\n<h2 style=\"text-align: center;\">[wpforms id=\"35\" title=\"false\" description=\"false\"]</h2>','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-31 00:21:46','2017-10-31 00:21:46','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(143,1,'2017-10-31 00:23:26','2017-10-31 00:23:26','<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?</strong></span>\r\n\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\n\r\n<span style=\"color: #008000;\"><strong>Symptoms of anxiety can be:</strong></span>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h4 style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully we can help - Complete the form below or call us today to take your first steps.\r\nTel </span></strong><span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]</h4>','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-31 00:23:26','2017-10-31 00:23:26','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(142,1,'2017-10-31 00:22:30','2017-10-31 00:22:30','<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?</strong></span>\r\n\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\n\r\n<span style=\"color: #008000;\"><strong>Symptoms of anxiety can be:</strong></span>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h4 style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully we can help - Complete the form below or call us today to take your first steps.\r\nTel </span></strong>07568 455 809</h4>\r\n<ul>\r\n 	<li style=\"text-align: center;\">[wpforms id=\"35\" title=\"false\" description=\"false\"]</li>\r\n</ul>','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-31 00:22:30','2017-10-31 00:22:30','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(144,1,'2017-10-31 00:24:50','2017-10-31 00:24:50','<span style=\"color: #008000;\"><strong><img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Is anxiety making your life uncomfortable?</strong></span>\r\n\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Symptoms of anxiety can be:</strong></span>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h4 style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully we can help - Complete the form below or call us today to take your first steps.\r\nTel </span></strong><span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]</h4>','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-31 00:24:50','2017-10-31 00:24:50','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(145,1,'2017-10-31 00:26:25','2017-10-31 00:26:25','<span style=\"color: #008000;\"><strong><img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Is anxiety making your life uncomfortable?</strong></span>\r\n\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety, showing you how to take control.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Symptoms of anxiety can be:</strong></span>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h4 style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully we can help - Complete the form below or call us today to take your first steps.\r\nTel </span></strong><span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]</h4>','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-31 00:26:25','2017-10-31 00:26:25','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(146,1,'2017-10-31 00:27:05','2017-10-31 00:27:05','<span style=\"color: #008000;\"><strong><img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Symptoms of anxiety can be:</strong></span>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h4 style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully we can help - Complete the form below or call us today to take your first steps.\r\nTel </span></strong><span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]</h4>','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-31 00:27:05','2017-10-31 00:27:05','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(147,1,'2017-10-31 00:27:20','2017-10-31 00:27:20','<span style=\"color: #008000;\"><strong><img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Symptoms of anxiety can be:</strong></span>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h4 style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully we can help - Complete the form below or call us today to take your first steps.\r\nTel </span></strong><span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]</h4>','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-31 00:27:20','2017-10-31 00:27:20','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(148,1,'2017-10-31 00:27:38','2017-10-31 00:27:38','<span style=\"color: #008000;\"><strong><img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Symptoms of anxiety can be:</strong></span>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h4 style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully we can help - Complete the form below or call us today to take your first steps.\r\nTel </span></strong><span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]</h4>','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-31 00:27:38','2017-10-31 00:27:38','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(149,1,'2017-10-31 00:28:03','2017-10-31 00:28:03','<span style=\"color: #008000;\"><strong><img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Common symptoms of anxiety can be:</strong></span>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h4 style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully we can help - Complete the form below or call us today to take your first steps.\r\nTel </span></strong><span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]</h4>','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-31 00:28:03','2017-10-31 00:28:03','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(150,1,'2017-10-31 00:31:44','2017-10-31 00:31:44','<span style=\"color: #008000;\"><strong><img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Common symptoms of anxiety can be:</strong></span>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to reduce and banish anxiety that can work quickly.\r\n\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel </span></strong><span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]</p>','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-31 00:31:44','2017-10-31 00:31:44','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(151,1,'2017-10-31 00:33:05','2017-10-31 00:33:05','<span style=\"color: #008000;\"><strong><img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Common symptoms of anxiety can be:</strong></span>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2017-10-31 00:33:05','2017-10-31 00:33:05','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(153,1,'2017-11-04 20:32:24','2017-11-04 20:32:24','<img class=\"alignnone size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />   <img class=\"alignnone size-thumbnail wp-image-104\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n\r\n<strong>Mark &amp; Yvette</strong>\r\n<h3><strong>How do we work &amp; what do we do?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement, including:</h3>\r\n<strong>NLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><strong>How do I pay?</strong></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong>Call us on 07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-11-04 20:32:24','2017-11-04 20:32:24','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(154,1,'2017-12-04 21:34:24','2017-12-04 21:34:24','<h1><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h1>\n<h2><span style=\"color: #008000;\"><strong>We help people with depression to take control and make their lives better.\n</strong></span></h2>\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\n<h2><strong><span style=\"color: #008000;\">The good news is,  We can help with your dep.</span></strong></h2>\n&nbsp;\n\nWe can show you easy, simple techniques that put back in control of your life.\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\n<h2><span style=\"color: #008000;\"><strong>Jenny’s experience.</strong></span></h2>\n<em><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\n</span><span style=\"font-weight: 400;\">\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to make that call. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span></em>\n\n<em><span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span></em>\n<h2><strong><span style=\"color: #008000;\">Depression You Have The Choice &amp; We Have The Skills.</span></strong></h2>\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\n<h2><strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?\n</span></strong></h2>\nWorking with you, we discover what can be setting off your depression, negative thoughts or behaviors.\nThese can be everyday events, work, stress, family issues or even memories.\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\n\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\n<h2><span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\n</strong></span></h2>\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\n[wpforms id=\"35\"]</strong></span>\n\n&nbsp;\n\n&nbsp;\n<h2><span style=\"color: #008000;\"><strong>How can Depression affect you &amp; What are the symptoms?\n</strong></span></h2>\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms. Depression can give us a very distorted view of the world and our lives.\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\nSome studies and research show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\n\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\nThe good news is that there are many techniques and therapies we use to help you with your depression.\nContact us today and see what can help you.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','Depression','','inherit','closed','closed','','122-autosave-v1','','','2017-12-04 21:34:24','2017-12-04 21:34:24','',122,'http://www.newcastle-hypnotherapy.com/122-autosave-v1/',0,'revision','',0),(155,1,'2017-11-04 21:11:10','2017-11-04 21:11:10','<img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  Is depression getting you down?\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nIs depression getting you down?','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-11-04 21:11:10','2017-11-04 21:11:10','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(156,1,'2017-11-04 21:15:44','2017-11-04 21:15:44','<img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  Is depression getting you down?\r\n\r\nDepression can affect everyone and in some cases, it can make life unpleasant.\r\n\r\nThankfully NLP and hypnosis can be very effective in changing how we think and how we behave.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nIs depression getting you down?','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-11-04 21:15:44','2017-11-04 21:15:44','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(157,1,'2017-11-04 21:16:24','2017-11-04 21:16:24','<img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  Is depression getting you down?\r\n\r\nDepression can affect everyone and in some cases, it can make life unpleasant.\r\nThankfully NLP and hypnosis can be very effective in changing how we think and how we behave.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nIs depression getting you down?','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-11-04 21:16:24','2017-11-04 21:16:24','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(158,1,'2017-11-04 21:22:39','2017-11-04 21:22:39','<img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  Is depression getting you down?\r\n\r\nDepression can affect everyone and in some cases, it can make life unpleasant.\r\nIt is very easy to get stuck in a rut or thinking in a negative way.\r\nThe longer we do it, the stronger it becomes and then harder to pull ourselves out of this negative behavior.\r\n\r\nThankfully NLP, hypnosis &amp; coaching can be very effective in changing how we think and how we behave.\r\nThese techniques can help us to recognise what sets off, our negative thinking and to quickly replace it, with positive actions and thinking.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nIs depression getting you down?','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-11-04 21:22:39','2017-11-04 21:22:39','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(159,1,'2017-11-04 21:25:37','2017-11-04 21:25:37','<img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span>\r\n\r\nDepression can affect everyone and in some cases, it can make life unpleasant.\r\nIt is very easy to get stuck in a rut or thinking in a negative way.\r\nThe longer we do it, the stronger it becomes and then harder to pull ourselves out of this negative behavior.\r\n\r\nThankfully NLP, hypnosis &amp; coaching can be very effective in changing how we think and how we behave.\r\nThese techniques can help us to recognise what sets off, our negative thinking and to quickly replace it, with positive actions and thinking.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nIs depression getting you down?','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-11-04 21:25:37','2017-11-04 21:25:37','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(160,1,'2017-11-04 21:35:02','2017-11-04 21:35:02','<img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span>\r\n\r\nDepression can affect everyone and in some cases, it can make life unpleasant.\r\nIt is very easy to get stuck in a rut or thinking in a negative way. The longer we do it, the stronger it becomes and then harder to pull ourselves out of this negative behavior or thinking.\r\n\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective in changing how we think and how we behave.\r\nThese techniques can help us to recognise what sets off our negative thinking, makes us aware of then it starts and how to quickly replace it, with positive actions and thinking.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nIs depression getting you down?','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-11-04 21:35:02','2017-11-04 21:35:02','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(161,1,'2017-11-04 21:37:19','2017-11-04 21:37:19','<img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span>\r\n\r\nDepression can affect everyone and in some cases, it can make life unpleasant.\r\nIt is very easy to get stuck in a rut or thinking in a negative way. The longer we do this, the stronger the pattern becomes, making harder to pull ourselves out of this negative behavior or thinking.\r\n\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective in changing how we think and how we behave.\r\nThese techniques can help us to recognise what sets off our negative thinking, makes us aware of then it starts and how to quickly replace it, with positive actions and thinking.\r\n\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nIs depression getting you down?','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-11-04 21:37:19','2017-11-04 21:37:19','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(162,1,'2017-11-04 21:39:11','2017-11-04 21:39:11','<img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span>\r\n\r\nDepression can affect everyone and in some cases, it can make life unpleasant.\r\nIt is very easy to get stuck in a rut or thinking in a negative way. The longer we do this, the stronger the pattern becomes, making harder to pull ourselves out of this negative behavior or thinking.\r\n\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective in changing how we think and how we behave.\r\nThese techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thinking.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nIs depression getting you down?','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-11-04 21:39:11','2017-11-04 21:39:11','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(163,1,'2017-11-04 21:40:30','2017-11-04 21:40:30','<img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span>\r\n\r\nDepression can affect everyone and in some cases, it can make life unpleasant.\r\nIt is very easy to get stuck in a rut or thinking in a negative way. The longer we do this, the stronger the pattern becomes, making it harder to pull ourselves out of this negative behavior or thinking.\r\n\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective in changing how we think and how we behave.\r\nThese techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thinking.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nIs depression getting you down?','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-11-04 21:40:30','2017-11-04 21:40:30','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(164,1,'2017-11-04 21:43:00','2017-11-04 21:43:00','<img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span>\r\n\r\nDepression can affect everyone and in some cases, it can make life unpleasant.\r\nIt is very easy to get stuck in a rut or thinking in a negative way. The longer we do this, the stronger the pattern becomes, making it harder to pull ourselves out of this negative behavior or thinking.\r\n\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective in changing how we think and how we behave.\r\nThese techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thinking.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nIs depression getting you down?','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-11-04 21:43:00','2017-11-04 21:43:00','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(165,1,'2017-11-04 21:43:24','2017-11-04 21:43:24','<img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span>\r\n\r\nDepression can affect everyone and in some cases, it can make life unpleasant.\r\nIt is very easy to get stuck in a rut or thinking in a negative way. The longer we do this, the stronger the pattern becomes, making it harder to pull ourselves out of this negative behavior or thinking.\r\n\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective in changing how we think and how we behave.\r\nThese techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thinking.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-11-04 21:43:24','2017-11-04 21:43:24','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(166,1,'2017-11-04 21:43:53','2017-11-04 21:43:53','<h2><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h2>\r\nDepression can affect everyone and in some cases, it can make life unpleasant.\r\nIt is very easy to get stuck in a rut or thinking in a negative way. The longer we do this, the stronger the pattern becomes, making it harder to pull ourselves out of this negative behavior or thinking.\r\n\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective in changing how we think and how we behave.\r\nThese techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thinking.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-11-04 21:43:53','2017-11-04 21:43:53','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(167,1,'2017-11-04 21:44:50','2017-11-04 21:44:50','<h2><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h2>\r\nDepression can affect everyone and in some cases, it can make life unpleasant.\r\nIt is very easy to get stuck in a rut or thinking in a negative way. The longer we do this, the stronger the pattern becomes, making it harder to pull ourselves out of this negative behavior or thinking.\r\n\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective in changing how we think and how we behave.\r\nThese techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-11-04 21:44:50','2017-11-04 21:44:50','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(168,1,'2017-11-04 21:56:52','2017-11-04 21:56:52','<h2><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h2>\r\nDepression can affect everyone and in some cases, it can make life unpleasant.\r\nIt is very easy to get stuck in a rut or thinking in a negative way. The longer we do this, the stronger the pattern becomes, making it harder to pull ourselves out of this negative behavior or thinking.\r\n\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective in changing how we think and how we behave.\r\nThese techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page.</strong></span>\r\n\r\nWe usually find clients with depression have low energy, little interest in life, feel worthless and no direction.\r\nLife is often distorted in a negative way, offering little hope for the future.\r\n\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\n\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-11-04 21:56:52','2017-11-04 21:56:52','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(169,1,'2017-11-04 22:29:50','2017-11-04 22:29:50','<h2><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h2>\r\nDepression can affect everyone and in some cases, it can make life unpleasant for you and those around you.\r\nIt is very easy to get stuck in a rut or thinking in a negative way. The longer we do this, the stronger the pattern becomes, making it harder to pull ourselves out of this negative behavior or thinking.\r\n\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective in changing how we think and how we behave.\r\nThese techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n\r\n<strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?</span>\r\n</strong>Working with you, we discover what can be setting off your depression, negative thoughts or behaviors. These can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we can explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-11-04 22:29:50','2017-11-04 22:29:50','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(170,1,'2017-11-04 22:31:03','2017-11-04 22:31:03','<h2><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h2>\r\nDepression can affect everyone and in some cases, it can make life unpleasant for you and those around you.\r\nIt is very easy to get stuck in a rut or thinking in a negative way. The longer we do this, the stronger the pattern becomes, making it harder to pull ourselves out of this negative behavior or thinking.\r\n\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective in changing how we think and how we behave.\r\nThese techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n\r\n<strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?</span>\r\n</strong>Working with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we can explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-11-04 22:31:03','2017-11-04 22:31:03','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(171,1,'2017-11-04 22:34:59','2017-11-04 22:34:59','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />   <img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h2><span style=\"color: #008000;\"><strong>Mark &amp; Yvette</strong></span></h2>\r\n<h3><strong>How do we work &amp; what do we do?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement, including:</h3>\r\n<strong>NLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><strong>How do I pay?</strong></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong>Call us on 07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-11-04 22:34:59','2017-11-04 22:34:59','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(172,1,'2017-11-04 22:35:18','2017-11-04 22:35:18','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />   <img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h2><span style=\"color: #008000;\"><strong>Mark &amp; Yvette\r\n\r\n\r\n</strong></span></h2>\r\n<h3><strong>How do we work &amp; what do we do?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement, including:</h3>\r\n<strong>NLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><strong>How do I pay?</strong></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong>Call us on 07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-11-04 22:35:18','2017-11-04 22:35:18','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(173,1,'2017-11-04 22:35:35','2017-11-04 22:35:35','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />   <img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h2><span style=\"color: #008000;\"><strong>Mark &amp; Yvette</strong></span></h2>\r\n&nbsp;\r\n<h3><strong>How do we work &amp; what do we do?</strong>\r\nWe specialise in using proven techniques that result in change and life improvement, including:</h3>\r\n<strong>NLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><strong>How do I pay?</strong></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong>Call us on 07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-11-04 22:35:35','2017-11-04 22:35:35','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(176,1,'2017-11-04 22:37:22','2017-11-04 22:37:22','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />   <img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h2><span style=\"color: #008000;\"><strong>Mark &amp; Yvette\r\n</strong></span><strong>How do we work &amp; what do we do?</strong></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<strong>NLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><strong>How do I pay?</strong></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong>Call us on 07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-11-04 22:37:22','2017-11-04 22:37:22','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(174,1,'2017-11-04 22:36:36','2017-11-04 22:36:36','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />   <img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h2><span style=\"color: #008000;\"><strong>Mark &amp; Yvette\r\n</strong></span><strong>How do we work &amp; what do we do?</strong></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2>\r\nWe specialise in using proven techniques that result in change and life improvement, including:</h2>\r\n<strong>NLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><strong>How do I pay?</strong></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong>Call us on 07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-11-04 22:36:36','2017-11-04 22:36:36','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(175,1,'2017-11-04 22:37:01','2017-11-04 22:37:01','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />   <img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h2><span style=\"color: #008000;\"><strong>Mark &amp; Yvette\r\n</strong></span><strong>How do we work &amp; what do we do?</strong></h2>\r\n<h2></h2>\r\n<h2>We specialise in using proven techniques that result in change and life improvement, including:</h2>\r\n<strong>NLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><strong>How do I pay?</strong></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong>Call us on 07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-11-04 22:37:01','2017-11-04 22:37:01','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(177,1,'2017-11-04 22:37:40','2017-11-04 22:37:40','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />   <img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h2><span style=\"color: #008000;\"><strong>Mark &amp; Yvette\r\n</strong></span><strong>How do we work &amp; what do we do?</strong></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>NLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><strong>How do I pay?</strong></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong>Call us on 07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-11-04 22:37:40','2017-11-04 22:37:40','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(178,1,'2017-11-04 22:38:08','2017-11-04 22:38:08','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />   <img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h2><span style=\"color: #008000;\"><strong>Mark &amp; Yvette\r\n</strong></span><strong>How do we work &amp; what do we do?</strong></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nWe specialise in using proven techniques that result in change and life improvement, including:\r\n\r\n<strong>\r\nNLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><strong>How do I pay?</strong></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong>Call us on 07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-11-04 22:38:08','2017-11-04 22:38:08','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(179,1,'2017-11-04 22:38:24','2017-11-04 22:38:24','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />   <img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h2><span style=\"color: #008000;\"><strong>Mark &amp; Yvette\r\n</strong></span><strong>How do we work &amp; what do we do?</strong></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nWe specialise in using proven techniques that result in change and life improvement, including:<strong>\r\nNLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><strong>How do I pay?</strong></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong>Call us on 07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-11-04 22:38:24','2017-11-04 22:38:24','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(180,1,'2017-11-04 22:38:55','2017-11-04 22:38:55','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />   <img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h2><span style=\"color: #008000;\"><strong>Mark &amp; Yvette\r\n</strong></span><strong>How do we work &amp; what do we do?</strong></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>We </strong></span>specialise<strong><span style=\"color: #008000;\"> in using proven techniques that result in change and life improvement, including:</span>\r\nNLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><strong>How do I pay?</strong></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong>Call us on 07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-11-04 22:38:55','2017-11-04 22:38:55','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(181,1,'2017-11-04 22:41:19','2017-11-04 22:41:19','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />   <img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h2><span style=\"color: #008000;\"><strong>Mark &amp; Yvette\r\n</strong></span><strong>How do we work &amp; what do we do?</strong></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including:</span>\r\nNLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><strong>How do I pay?</strong></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong>Call us on 07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-11-04 22:41:19','2017-11-04 22:41:19','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(182,1,'2017-11-04 23:11:38','2017-11-04 23:11:38','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />   <img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h2><span style=\"color: #008000;\"><strong>Mark &amp; Yvette\r\n</strong></span><strong>How do we work &amp; what do we do?</strong></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people just like you, to make life-improving changes by using specialist techniques and therapies including:</span>\r\nNLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong>What do we do?\r\n</strong>We specialise in helping people with the following issues:</h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><strong>How do I pay?</strong></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong>Call us on 07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-11-04 23:11:38','2017-11-04 23:11:38','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(184,1,'2017-11-04 23:15:15','2017-11-04 23:15:15','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />   <img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h2><span style=\"color: #008000;\"><strong>Mark &amp; Yvette\r\n</strong></span><strong>How do we work &amp; what do we do?</strong></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including:</span>\r\nNLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><strong>How do I pay?</strong></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong>Call us on 07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-11-04 23:15:15','2017-11-04 23:15:15','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(183,1,'2017-11-04 23:14:49','2017-11-04 23:14:49','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />   <img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h2><span style=\"color: #008000;\"><strong>Mark &amp; Yvette\r\n</strong></span><strong>How do we work &amp; what do we do?</strong></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including:</span>\r\nNLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><span style=\"color: #008000;\">We </span>specialise<span style=\"color: #008000;\"> in helping people with the following issues:</span></h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><strong>Where do we work?</strong></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><strong>How do I pay?</strong></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong>How do I book my appointment?</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong>Call us on 07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-11-04 23:14:49','2017-11-04 23:14:49','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(185,1,'2017-11-04 23:16:46','2017-11-04 23:16:46','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />   <img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h2><span style=\"color: #008000;\"><strong>Mark &amp; Yvette\r\n</strong></span><strong>How do we work &amp; what do we do?</strong></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including:</span>\r\nNLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><span style=\"color: #008000;\"><strong>Where do we work?</strong></span></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><span style=\"color: #008000;\"><strong>How do I pay?</strong></span></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n<h3><strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below</h3>\r\n<strong>Do you offer a free initial consultation?</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.\r\n\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong>Call us on 07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-11-04 23:16:46','2017-11-04 23:16:46','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(186,1,'2017-11-04 23:17:51','2017-11-04 23:17:51','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />   <img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h2><span style=\"color: #008000;\"><strong>Mark &amp; Yvette\r\n</strong></span><strong>How do we work &amp; what do we do?</strong></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including:</span>\r\nNLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><span style=\"color: #008000;\"><strong>Where do we work?</strong></span></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><span style=\"color: #008000;\"><strong>How do I pay?</strong></span></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n<h3><strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below</h3>\r\n<h5><strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to asses the issue &amp; see what will help you.</h5>\r\n<strong>What do you charge for appointments?</strong>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<strong>How long do appointments take?</strong>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<strong>How many appointments will be needed?</strong>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong>Call us on 07568 455 809 or complete the form below to see what we can do for you.\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-11-04 23:17:51','2017-11-04 23:17:51','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(187,1,'2017-11-04 23:20:18','2017-11-04 23:20:18','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />   <img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h2><span style=\"color: #008000;\"><strong>Mark &amp; Yvette\r\n</strong></span><strong>How do we work &amp; what do we do?</strong></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including:</span>\r\nNLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><span style=\"color: #008000;\"><strong>Where do we work?</strong></span></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><span style=\"color: #008000;\"><strong>How do I pay?</strong></span></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 or complete the form below to see what we can do for you.</span>\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About Us','','inherit','closed','closed','','43-revision-v1','','','2017-11-04 23:20:18','2017-11-04 23:20:18','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(190,1,'2017-11-06 14:09:24','2017-11-06 14:09:24','There are many views on depression and alternative treatments.','Helping depression without drugs','','draft','open','open','','helping-depression-without-drugs','','','2017-11-06 15:15:33','2017-11-06 15:15:33','',0,'http://www.newcastle-hypnotherapy.com/?p=190',0,'post','',0),(191,1,'2017-11-06 14:09:24','2017-11-06 14:09:24','There are many views on depression and alternative treatments.','Helping depression without drugs','','inherit','closed','closed','','190-revision-v1','','','2017-11-06 14:09:24','2017-11-06 14:09:24','',190,'http://www.newcastle-hypnotherapy.com/190-revision-v1/',0,'revision','',0),(192,1,'2017-11-06 14:25:32','2017-11-06 14:25:32','Simply put, the answer is yes!\r\nWe know the foods we eat can strongly affect brain function and this, in turn, can affect our mood and our energy.\r\n\r\nNutritional deficiencies, food intolerances, digestive disorders and other issues can also cause problems with brain function, mood, and energy.\r\n\r\nWe all know we need a good, varied diet with 5+ servings a day of good fruits and vegetables.\r\nSadly many of us could really do with working on our diet, to ensure we are getting all the essential nutrients from our food.\r\nPlanning and following a good daily diet can make such a difference.','Can Diet Effect Depression?','','draft','open','open','','diet-depression','','','2017-11-06 15:12:57','2017-11-06 15:12:57','',0,'http://www.newcastle-hypnotherapy.com/?p=192',0,'post','',0),(193,1,'2017-11-06 14:25:32','2017-11-06 14:25:32','Coming soon','Diet & Depression','','inherit','closed','closed','','192-revision-v1','','','2017-11-06 14:25:32','2017-11-06 14:25:32','',192,'http://www.newcastle-hypnotherapy.com/192-revision-v1/',0,'revision','',0),(198,1,'2017-11-06 15:11:53','2017-11-06 15:11:53','Simply put, the answer is yes!\nWe know the foods we eat can strongly affect brain function and this, in turn, can affect our mood and our energy.\n\nNutritional deficiencies, food intolerances, digestive disorders and other issues can also cause problems with brain function, mood, and energy.\n\nWe all know we need a good, varied diet with 5+ servings a day of good fruits and vegetables.\nSadly many of us could really do with working on our diet, to ensure we are getting all the essential nutrients from our food.\nPlanning and following a good daily diet can make','Can Diet Effect Depression?','','inherit','closed','closed','','192-autosave-v1','','','2017-11-06 15:11:53','2017-11-06 15:11:53','',192,'http://www.newcastle-hypnotherapy.com/192-autosave-v1/',0,'revision','',0),(199,1,'2017-11-06 15:12:57','2017-11-06 15:12:57','Simply put, the answer is yes!\r\nWe know the foods we eat can strongly affect brain function and this, in turn, can affect our mood and our energy.\r\n\r\nNutritional deficiencies, food intolerances, digestive disorders and other issues can also cause problems with brain function, mood, and energy.\r\n\r\nWe all know we need a good, varied diet with 5+ servings a day of good fruits and vegetables.\r\nSadly many of us could really do with working on our diet, to ensure we are getting all the essential nutrients from our food.\r\nPlanning and following a good daily diet can make such a difference.','Can Diet Effect Depression?','','inherit','closed','closed','','192-revision-v1','','','2017-11-06 15:12:57','2017-11-06 15:12:57','',192,'http://www.newcastle-hypnotherapy.com/192-revision-v1/',0,'revision','',0),(315,1,'2018-01-18 19:07:24','2018-01-18 19:07:24','','Client Feedback','','inherit','open','closed','','ukghp','','','2018-04-09 21:01:22','2018-04-09 21:01:22','',200,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp.png',0,'attachment','image/png',0),(200,1,'2017-11-06 23:51:55','2017-11-06 23:51:55','<h4><span style=\"color: #008000;\"><strong><img class=\"alignleft size-medium wp-image-2489\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/18301132_10213555215381275_3679351157902333621_n-300x211.jpg\" alt=\"Happy Customer Reviews\" width=\"300\" height=\"211\" />Client Feedback &amp; Reviews</strong></span></h4>\r\n<strong>Thank you to all of our customers &amp; clients who have sent us a review.\r\nWe love your feedback, please keep it coming because it really helps others.</strong><span style=\"color: #008000;\"><strong>\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Dr Andrew\'s feedback on Newcastle Hypnotherapy.</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>\"I\'ve had an amazing Christmas. I\'ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I\'m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.\"<span style=\"color: #008000;\"><span style=\"color: #000000;\">LN</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Carol </span></strong>\"Hi Mark, just wanted to let you know that you have completely transformed my life! I am no longer arachnophobic, and yesterday in the office I was the one who came to the rescue, picking a spider up in my bare hands and putting it out the window. Just think that before my sessions I couldn\'t even say the word spider, or hear anyone else say it! That fear is completely gone and I cannot thank you enough.\"\r\n<strong><span style=\"color: #008000;\">\r\nClient Feedback by Joyce</span></strong> <span style=\"color: #000000;\">\"<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce\"</span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback by Gary </span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar-free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number of therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by S F</span>.</strong>  \"<span style=\"color: #000000;\">I</span> Met Mark initially at an event at \'The Vault\' and found him to be a trustworthy genuine person, so I booked two Hypnotherapy sessions with him. I felt stuck with certain issues in my life and also had some trauma work to do. I had done a lot of work myself but the last little bit was still missing. With Mark\'s help, I found that missing bit and can now work with the tools that Mark offered to me. He introduced me to tapping (EFT) and NLP (Neuro-linguistic Programming) which are fantastic tools. Also, I can always use the hypnotherapy session that Mark recorded for me. Thank you so much, Mark! \"\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Learn More</a></strong>\r\n\r\nFind us on Facebook - <a href=\"https://www.facebook.com/newcastlehypnosis/\">Newcastle Hypnotherapy Facebook Page</a>\r\n\r\n&nbsp;','Reviews','','publish','closed','closed','','client-feedback','','','2019-05-23 08:33:59','2019-05-23 08:33:59','',0,'http://www.newcastle-hypnotherapy.com/?page_id=200',1,'page','',0),(375,1,'2018-03-04 17:06:32','2018-03-04 17:06:32','<span style=\"color: #008000;\"><strong>Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Review by Kris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Reviews - What Our Clients Say','','inherit','closed','closed','','200-revision-v1','','','2018-03-04 17:06:32','2018-03-04 17:06:32','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(201,1,'2017-11-06 23:51:55','2017-11-06 23:51:55','Kris. \"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.\r\n\r\nThe second time that we met was the first of 2 hypnotherapy session which is my opinion were done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.\r\n\r\nI have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','200-revision-v1','','','2017-11-06 23:51:55','2017-11-06 23:51:55','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(202,1,'2017-11-06 23:52:43','2017-11-06 23:52:43','<strong>Kris.</strong> \"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.\r\n\r\nThe second time that we met was the first of 2 hypnotherapy session which is my opinion were done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.\r\n\r\nI have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','200-revision-v1','','','2017-11-06 23:52:43','2017-11-06 23:52:43','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(203,1,'2017-11-06 23:53:09','2017-11-06 23:53:09','<span style=\"color: #008000;\"><strong>Kris.</strong></span> \"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.\r\n\r\nThe second time that we met was the first of 2 hypnotherapy session which is my opinion were done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.\r\n\r\nI have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','200-revision-v1','','','2017-11-06 23:53:09','2017-11-06 23:53:09','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(204,1,'2019-05-23 08:32:54','2019-05-23 08:32:54','<h4><span style=\"color: #008000;\"><strong><img class=\"alignleft size-medium wp-image-2489\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/18301132_10213555215381275_3679351157902333621_n-300x211.jpg\" alt=\"Happy Customer Reviews\" width=\"300\" height=\"211\" />Client Feedback &amp; Reviews</strong></span></h4>\n<strong>Thank you to all of our customers &amp; clients who have sent us a review.\nWe love your feedback, please keep it coming because it really helps others.</strong><span style=\"color: #008000;\"><strong>\n</strong></span>\n\n&nbsp;\n<h4><strong><span style=\"color: #008000;\">Dr Andrew\'s feedback on Newcastle Hypnotherapy.</span></strong></h4>\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>\"I\'ve had an amazing Christmas. I\'ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I\'m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.\"<span style=\"color: #008000;\"><span style=\"color: #000000;\">LN</span></span>\n\n<strong><span style=\"color: #008000;\">Client Feedback by Carol </span></strong>\"Hi Mark, just wanted to let you know that you have completely transformed my life! I am no longer arachnophobic, and yesterday in the office I was the one who came to the rescue, picking a spider up in my bare hands and putting it out the window. Just think that before my sessions I couldn\'t even say the word spider, or hear anyone else say it! That fear is completely gone and I cannot thank you enough.\"\n<strong><span style=\"color: #008000;\">\nClient Feedback by Joyce</span></strong> <span style=\"color: #000000;\">\"<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce\"</span></span>\n\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\n<strong>\n<span style=\"color: #008000;\">Client Feedback by Gary </span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar-free\' for over two weeks\"\n\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\n\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\n\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\n\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number of therapists in the past and Yvette outshines them by miles.\"</em>\n\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\n\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\n\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\n\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\n\n<strong><span style=\"color: #008000;\">Client Feedback by S F</span>.</strong>  \"<span style=\"color: #000000;\">I</span> Met Mark initially at an event at \'The Vault\' and found him to be a trustworthy genuine person, so I booked two Hypnotherapy sessions with him. I felt stuck with certain issues in my life and also had some trauma work to do. I had done a lot of work myself but the last little bit was still missing. With Mark\'s help, I found that missing bit and can now work with the tools that Mark offered to me. He introduced me to tapping (EFT) and NLP (Neuro-linguistic Programming) which are fantastic tools. Also, I can always use the hypnotherapy session that Mark recorded for me. Thank you so much, Mark! \"\n\n&nbsp;\n\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\n[wpforms id=\"35\"]\n</strong></span>\n\n&nbsp;\n\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Learn More</a></strong>\n\nFind us on Facebook - <a href=\"https://www.facebook.com/newcastlehypnosis/\">Newcastle Hypnotherapy Facebook Page</a>\n\n&nbsp;','Reviews','','inherit','closed','closed','','200-autosave-v1','','','2019-05-23 08:32:54','2019-05-23 08:32:54','',200,'http://www.newcastle-hypnotherapy.com/200-autosave-v1/',0,'revision','',0),(205,1,'2017-11-08 19:13:50','2017-11-08 19:13:50','<span style=\"color: #008000;\"><strong>Kris.</strong></span> \"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.\r\n\r\nThe second time that we met was the first of 2 hypnotherapy session which is my opinion were done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.\r\n\r\nI have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"\r\n\r\nMalcolm. \"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','200-revision-v1','','','2017-11-08 19:13:50','2017-11-08 19:13:50','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(206,1,'2017-11-08 20:21:05','2017-11-08 20:21:05','<span style=\"color: #008000;\"><strong>Kris.</strong></span> \"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.\r\n\r\nThe second time that we met was the first of 2 hypnotherapy session which is my opinion were done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.\r\n\r\nI have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"\r\n\r\n<span style=\"color: #008000;\"><strong>M A</strong></span>. \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"\r\n\r\n<span style=\"color: #008000;\"><strong>Malcolm.</strong></span> \"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','200-revision-v1','','','2017-11-08 20:21:05','2017-11-08 20:21:05','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(207,1,'2017-11-08 20:21:57','2017-11-08 20:21:57','<span style=\"color: #008000;\"><strong>Kris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>M A</strong></span>. \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"\r\n\r\n<span style=\"color: #008000;\"><strong>Malcolm.</strong></span> \"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','200-revision-v1','','','2017-11-08 20:21:57','2017-11-08 20:21:57','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(208,1,'2017-11-08 20:22:40','2017-11-08 20:22:40','<span style=\"color: #008000;\"><strong>Kris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','200-revision-v1','','','2017-11-08 20:22:40','2017-11-08 20:22:40','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(209,1,'2017-11-08 21:56:07','2017-11-08 21:56:07','<span style=\"color: #008000;\"><strong>Thank you to all of our customers who have sent us a review. We love your feedback.\r\nHere are just a few of them.\r\n\r\nKris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','200-revision-v1','','','2017-11-08 21:56:07','2017-11-08 21:56:07','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(210,1,'2017-11-09 13:31:39','2017-11-09 13:31:39','<span style=\"color: #008000;\"><strong>Thank you to all of our customers who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\nKris. <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"\r\n\r\n\r\n</em><span style=\"color: #008000;\"><strong>Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident then I\'ve felt in a long time.\r\n</em>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','200-revision-v1','','','2017-11-09 13:31:39','2017-11-09 13:31:39','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(211,1,'2017-11-09 13:32:12','2017-11-09 13:32:12','<span style=\"color: #008000;\"><strong>Thank you to all of our customers who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\nKris. <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident then I\'ve felt in a long time.\r\n</em>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','200-revision-v1','','','2017-11-09 13:32:12','2017-11-09 13:32:12','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(212,1,'2017-11-09 13:32:41','2017-11-09 13:32:41','<span style=\"color: #008000;\"><strong>Thank you to all of our customers who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\nKris. <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident then I\'ve felt in a long time.\r\n</em>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','200-revision-v1','','','2017-11-09 13:32:41','2017-11-09 13:32:41','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(213,1,'2017-11-09 13:33:11','2017-11-09 13:33:11','<span style=\"color: #008000;\"><strong>Thank you to all of our customers who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Kris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident then I\'ve felt in a long time.\r\n</em>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','200-revision-v1','','','2017-11-09 13:33:11','2017-11-09 13:33:11','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(214,1,'2017-11-09 13:48:41','2017-11-09 13:48:41','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />   <img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h2><span style=\"color: #008000;\"><strong>Mark &amp; Yvette\r\n</strong></span><strong>How do we work &amp; what do we do?</strong></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including:</span>\r\nNLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><span style=\"color: #008000;\"><strong>Where do we work?</strong></span></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><span style=\"color: #008000;\"><strong>How do I pay?</strong></span></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 or complete the form below to see what we can do for you.</span>\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About','','inherit','closed','closed','','43-revision-v1','','','2017-11-09 13:48:41','2017-11-09 13:48:41','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(215,1,'2017-11-09 13:53:03','2017-11-09 13:53:03','[caption id=\"attachment_103\" align=\"alignleft\" width=\"150\"]<img class=\"wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark Therapist\" width=\"150\" height=\"150\" /> Mark Therapist[/caption]\r\n\r\n[caption id=\"attachment_104\" align=\"alignleft\" width=\"150\"]<img class=\"wp-image-104 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"Yvette Therapist\" width=\"150\" height=\"150\" /> Yvette Therapist[/caption]\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Mark &amp; Yvette\r\n</strong></span><strong>How do we work &amp; what do we do?</strong></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including:</span>\r\nNLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><span style=\"color: #008000;\"><strong>Where do we work?</strong></span></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><span style=\"color: #008000;\"><strong>How do I pay?</strong></span></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 or complete the form below to see what we can do for you.</span>\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About','','inherit','closed','closed','','43-revision-v1','','','2017-11-09 13:53:03','2017-11-09 13:53:03','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(216,1,'2017-11-09 13:54:49','2017-11-09 13:54:49','[caption id=\"attachment_103\" align=\"alignleft\" width=\"150\"]<img class=\"wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"About Mark Therapist\" width=\"150\" height=\"150\" /> Mark -Therapist[/caption]\r\n\r\n[caption id=\"attachment_104\" align=\"alignleft\" width=\"150\"]<img class=\"wp-image-104 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"About Yvette - Therapist\" width=\"150\" height=\"150\" /> Yvette - Therapist[/caption]\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Mark &amp; Yvette\r\n</strong></span><strong>How do we work &amp; what do we do?</strong></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including:</span>\r\nNLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><span style=\"color: #008000;\"><strong>Where do we work?</strong></span></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><span style=\"color: #008000;\"><strong>How do I pay?</strong></span></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 or complete the form below to see what we can do for you.</span>\r\n[wpforms id=\"35\"]\r\n</strong></h3>','About','','inherit','closed','closed','','43-revision-v1','','','2017-11-09 13:54:49','2017-11-09 13:54:49','',43,'http://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(217,1,'2017-11-09 19:56:10','2017-11-09 19:56:10','<h2><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h2>\r\nDepression can affect everyone and in some cases, it can make life unpleasant for you and those around you.\r\nIt is very easy to get stuck in a rut or thinking in a negative way. The longer we do this, the stronger the pattern becomes, making it harder to pull ourselves out of this negative behavior or thinking.\r\n\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective in changing how we think and how we behave.\r\nThese techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n\r\n<strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?</span>\r\n</strong>Working with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-11-09 19:56:10','2017-11-09 19:56:10','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(218,1,'2017-11-09 20:03:10','2017-11-09 20:03:10','<h2><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h2>\r\nDepression can affect everyone and in some cases, it can make life unpleasant for you and those around you.\r\nIt is very easy to get stuck in a rut or thinking in a negative way. The longer we do this, the stronger the pattern becomes, making it harder to pull ourselves out of this negative behavior or depressive thinking.\r\n\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective in changing how we think and how we behave to treat depression. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n\r\n<strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?</span>\r\n</strong>Working with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-11-09 20:03:10','2017-11-09 20:03:10','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(219,1,'2017-11-09 20:36:10','2017-11-09 20:36:10','<h2><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h2>\r\nDepression can affect everyone and in some cases, it can make life unpleasant for you and those around you.\r\nIt is very easy to get stuck in a rut or thinking in a negative way. The longer we do this, the stronger the pattern becomes, making it harder to pull ourselves out of this negative behavior or depressive thinking.\r\n\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective in changing how we think and how we behave to treat depression. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n\r\n<strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?</span>\r\n</strong>Working with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nHow can Depression affect you?\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\n\r\nSome studies show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-11-09 20:36:10','2017-11-09 20:36:10','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(220,1,'2017-11-09 20:39:33','2017-11-09 20:39:33','<h2><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h2>\r\nDepression can affect everyone and in some cases, it can make life unpleasant for you and those around you.\r\nIt is very easy to get stuck in a rut or thinking in a negative way. The longer we do this, the stronger the pattern becomes, making it harder to pull ourselves out of this negative behavior or depressive thinking.\r\n\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective in changing how we think and how we behave to treat depression. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n\r\n<strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?</span>\r\n</strong>Working with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>How can Depression affect you?</strong></span>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\n\r\nSome studies show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\n\r\nThe good news is that there are many things we can try to help or eradicate depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-11-09 20:39:33','2017-11-09 20:39:33','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(225,1,'2017-11-26 18:28:21','2017-11-26 18:28:21','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n\r\n\r\n\r\n\r\n</strong></span>\r\n\r\nStress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 18:28:21','2017-11-26 18:28:21','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(226,1,'2017-11-26 18:31:59','2017-11-26 18:31:59','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>\r\n\r\nWe can help with fast, powerful stress management techniques to relieve your stress and put you back in control.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nStress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 18:31:59','2017-11-26 18:31:59','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(228,1,'2017-11-26 18:33:02','2017-11-26 18:33:02','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nStress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 18:33:02','2017-11-26 18:33:02','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(227,1,'2017-11-26 18:32:39','2017-11-26 18:32:39','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span></h3>\r\nWe can help with fast, powerful stress management techniques to relieve your stress and put you back in control.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nStress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 18:32:39','2017-11-26 18:32:39','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(229,1,'2017-11-26 18:33:21','2017-11-26 18:33:21','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nStress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 18:33:21','2017-11-26 18:33:21','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(230,1,'2017-11-26 18:34:01','2017-11-26 18:34:01','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n&nbsp;\r\n<h4>Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</h4>\r\n&nbsp;\r\n\r\nStress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 18:34:01','2017-11-26 18:34:01','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(231,1,'2017-11-26 18:34:33','2017-11-26 18:34:33','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</strong></span>\r\n\r\n&nbsp;\r\n\r\nStress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 18:34:33','2017-11-26 18:34:33','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(232,1,'2017-11-26 18:34:48','2017-11-26 18:34:48','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</strong></span>\r\n\r\n&nbsp;\r\n\r\nStress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 18:34:48','2017-11-26 18:34:48','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(233,1,'2017-11-26 18:35:06','2017-11-26 18:35:06','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</strong></span>\r\n\r\n&nbsp;\r\n\r\nStress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 18:35:06','2017-11-26 18:35:06','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(234,1,'2017-11-26 18:36:50','2017-11-26 18:36:50','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.\r\nRemeber to ask about your FREE Stress Management Consultation.\r\n</strong></span><strong>This can be done by phone, in person or online.</strong>\r\n\r\n&nbsp;\r\n\r\nStress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 18:36:50','2017-11-26 18:36:50','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(235,1,'2017-11-26 18:37:46','2017-11-26 18:37:46','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.\r\nRemember to ask about your FREE Stress Management Consultation.\r\n</strong></span><strong>This can be done by phone, in person or online.</strong>\r\n\r\n&nbsp;\r\n\r\nStress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 18:37:46','2017-11-26 18:37:46','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(237,1,'2017-11-26 18:39:37','2017-11-26 18:39:37','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on 07568 455 809 or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your FREE Stress Management Consultation. </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n&nbsp;\r\n\r\nStress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 18:39:37','2017-11-26 18:39:37','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(236,1,'2017-11-26 18:38:56','2017-11-26 18:38:56','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on 07568 455 809 or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your FREE Stress Management Consultation.</strong></em><span style=\"color: #008000;\"><strong>\r\n</strong></span><strong>This can be done by phone, in person or online.</strong>\r\n\r\n&nbsp;\r\n\r\nStress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 18:38:56','2017-11-26 18:38:56','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(238,1,'2017-11-26 18:40:30','2017-11-26 18:40:30','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n&nbsp;\r\n\r\nStress is an interesting thing!\r\nYes, stress is interesting in that for some people it can really make them unwell while others thrive on it.\r\nWhen stress causes us a problem, it is not the stress that is the issue but our reaction to it.\r\nYes, it is often our response to the stress that is the problem, not the stress itself.\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 18:40:30','2017-11-26 18:40:30','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(239,1,'2017-11-26 18:45:09','2017-11-26 18:45:09','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.\r\n\r\nWhat can we do about Stress?\r\n</strong>Stress is all around us and can appear in many different forms. What may be a stressful situation for one person, may no be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 18:45:09','2017-11-26 18:45:09','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(240,1,'2017-11-26 18:45:56','2017-11-26 18:45:56','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n<h4><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 18:45:56','2017-11-26 18:45:56','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(241,1,'2017-11-26 18:51:07','2017-11-26 18:51:07','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n<h4><span style=\"color: #008000;\">Stress Reduction Techniques &amp; Stress Relief Methods\r\n</span>can quickly and effectively reduce the negative effects of stress, helping us to start coping with stress &amp; anxiety.\r\n\r\n\r\n<span style=\"color: #008000;\">\r\nTake control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 18:51:07','2017-11-26 18:51:07','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(242,1,'2017-11-26 19:02:32','2017-11-26 19:02:32','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving\r\nthose symptoms of stress. Life can quickly return to normal once you start taking action.\r\n\r\n<span style=\"color: #008000;\">\r\nTake control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span>\r\n\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 19:02:32','2017-11-26 19:02:32','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(243,1,'2017-11-26 19:03:27','2017-11-26 19:03:27','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving\r\nthose stressful symptoms. Life can quickly return to normal once you start taking action.\r\n\r\n<span style=\"color: #008000;\">\r\nTake control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span>\r\n\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 19:03:27','2017-11-26 19:03:27','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(244,1,'2017-11-26 19:03:48','2017-11-26 19:03:48','<img class=\"size-thumbnail wp-image-103 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms. Life can quickly return to normal once you start taking action.\r\n\r\n<span style=\"color: #008000;\">\r\nTake control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span>\r\n\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 19:03:48','2017-11-26 19:03:48','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(245,1,'2017-11-26 19:16:32','2017-11-26 19:16:32','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms. Life can quickly return to normal once you start taking action.\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that Neuro-Linguistic Programming (NLP) and Clinical Hypnotherapy are very effective in reducing the effects and symptoms of stress. However, our approach is to evaluate the problems stress is causing you and finding the best stress reduction methods suitable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to work or the workplace.\r\n\r\n\r\n\r\n<span style=\"color: #008000;\">\r\nTake control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span>\r\n\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 19:16:32','2017-11-26 19:16:32','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(246,1,'2017-11-26 19:17:23','2017-11-26 19:17:23','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms. Life can quickly return to normal once you start taking action.\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that Neuro-Linguistic Programming (NLP) and Clinical Hypnotherapy are very effective in reducing the effects and symptoms of stress. However, our approach is to evaluate the problems stress is causing you and finding the best stress reduction methods suitable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace.\r\n\r\n<span style=\"color: #008000;\">\r\nTake control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span>\r\n\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 19:17:23','2017-11-26 19:17:23','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(247,1,'2017-11-26 19:22:02','2017-11-26 19:22:02','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms. Life can quickly return to normal once you start taking action.\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that Neuro-Linguistic Programming (NLP) and Clinical Hypnotherapy are very effective in reducing the effects and symptoms of stress. However, our approach is to evaluate the problems stress is causing you and finding the best stress reduction methods suitable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation.\r\n\r\n<strong><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></strong>\r\n\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 19:22:02','2017-11-26 19:22:02','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(248,1,'2017-11-26 19:23:21','2017-11-26 19:23:21','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms. <strong>Life can quickly return to normal once you start taking action.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that Neuro-Linguistic Programming (NLP) and Clinical Hypnotherapy are very effective in reducing the effects and symptoms of stress. However, our approach is to evaluate the problems stress is causing you and finding the best stress reduction methods suitable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation.\r\n\r\n<strong><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></strong>\r\n\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 19:23:21','2017-11-26 19:23:21','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(249,1,'2017-11-26 19:23:40','2017-11-26 19:23:40','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking action.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that Neuro-Linguistic Programming (NLP) and Clinical Hypnotherapy are very effective in reducing the effects and symptoms of stress. However, our approach is to evaluate the problems stress is causing you and finding the best stress reduction methods suitable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation.\r\n\r\n<strong><span style=\"color: #008000;\">Take control of your stress today, call us on 07568 455 809 or fill in the form at the bottom of this page.</span></strong>\r\n\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 19:23:40','2017-11-26 19:23:40','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(250,1,'2017-11-26 19:24:52','2017-11-26 19:24:52','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking action.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that Neuro-Linguistic Programming (NLP) and Clinical Hypnotherapy are very effective in reducing the effects and symptoms of stress. However, our approach is to evaluate the problems stress is causing you and finding the best stress reduction methods suitable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation.\r\n\r\n<strong><span style=\"color: #008000;\">Take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 19:24:52','2017-11-26 19:24:52','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(251,1,'2017-11-26 19:25:23','2017-11-26 19:25:23','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that Neuro-Linguistic Programming (NLP) and Clinical Hypnotherapy are very effective in reducing the effects and symptoms of stress. However, our approach is to evaluate the problems stress is causing you and finding the best stress reduction methods suitable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation.\r\n\r\n<strong><span style=\"color: #008000;\">Take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 19:25:23','2017-11-26 19:25:23','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(252,1,'2017-11-26 19:26:41','2017-11-26 19:26:41','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation.\r\n\r\n<strong><span style=\"color: #008000;\">Take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms.\r\nAs I got older it interfered with work and caused muscle clenching, headaches, teeth grinding, jaw problems and more.\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis and neuro-linguistic programming.\r\nI learned over time, to manage stress better and eventually turn it to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 19:26:41','2017-11-26 19:26:41','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(253,1,'2017-11-26 19:34:37','2017-11-26 19:34:37','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation.\r\n\r\n<strong><span style=\"color: #008000;\">Take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work and business, causing physical symptoms and problems\r\n\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming along with others.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for others.\r\nI learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 19:34:37','2017-11-26 19:34:37','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(254,1,'2017-11-26 19:37:33','2017-11-26 19:37:33','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation.\r\n\r\n<strong><span style=\"color: #008000;\">Take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work and business, causing physical symptoms, pain, and other problems.\r\nThankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and others useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for others.\r\nI learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 19:37:33','2017-11-26 19:37:33','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(255,1,'2017-11-26 19:37:55','2017-11-26 19:37:55','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation.\r\n\r\n<strong><span style=\"color: #008000;\">Take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work and business, causing physical symptoms, pain, and other problems. Thankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and others useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for others.\r\nI learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage.\r\n\r\nToday we can show you how stress affects you and how to respond to stress in a better way.\r\nMost importantly we can show you how to use stress to your advantage and even make you stronger.\r\n<h4><span style=\"color: #008000;\"><strong>Complete the form below or call us today, to take control of your stress.\r\nTel 07568 455 809</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 19:37:55','2017-11-26 19:37:55','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(256,1,'2017-11-26 19:50:59','2017-11-26 19:50:59','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation.\r\n\r\n<strong><span style=\"color: #008000;\">Take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work and business, causing physical symptoms, pain, and other problems. Thankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and others useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for others.\r\nI learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\nStress issues should not be left to get worse as we know they can cause or increase other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress complete the form below or call us today on 07568 455 809, to take control of your stress.</span>\r\n\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 19:50:59','2017-11-26 19:50:59','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(257,1,'2017-11-26 19:51:59','2017-11-26 19:51:59','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation.\r\n\r\n<strong><span style=\"color: #008000;\">Take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work and business, causing physical symptoms, pain, and other problems. Thankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and others useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for others.\r\nI learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\nStress issues should not be left to get worse as we know they can cause or increase other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress complete the form below or call us today on 07568 455 809, to take control of your stress.</span></strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 19:51:59','2017-11-26 19:51:59','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(258,1,'2017-11-26 19:52:26','2017-11-26 19:52:26','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation.\r\n\r\n<strong><span style=\"color: #008000;\">Take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work and business, causing physical symptoms, pain, and other problems. Thankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and others useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for others.\r\nI learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\nStress issues should not be left to get worse as we know they can cause or increase other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress, complete the form below or call us today on 07568 455 809, to take control of your stress.</span></strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 19:52:26','2017-11-26 19:52:26','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(259,1,'2017-11-26 19:54:30','2017-11-26 19:54:30','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation.\r\n\r\n<strong><span style=\"color: #008000;\">Take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work and business, causing physical symptoms, pain, and other problems. Thankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and others useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for others.\r\nI learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\nStress issues should not be left to get worse as we know they can cause or increase other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress, complete the form below or call us today on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 19:54:30','2017-11-26 19:54:30','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(260,1,'2017-11-26 19:55:35','2017-11-26 19:55:35','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation.\r\n\r\n<strong><span style=\"color: #008000;\">Take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work and business, causing physical symptoms, pain, and other problems. Thankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and others useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for others.\r\nI learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\nStress issues should not be left to get worse as we know they can cause or increase other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress, complete the form below or call us today on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 19:55:35','2017-11-26 19:55:35','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(261,1,'2017-11-26 19:56:20','2017-11-26 19:56:20','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell, while others thrive on it or use it to push themselves forward in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation.\r\n\r\n<strong><span style=\"color: #008000;\">Take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work and business, causing physical symptoms, pain, and other problems. Thankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and others useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for others.\r\nI learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\nStress issues should not be left to get worse as we know they can cause or increase other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress, complete the form below or call us today on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 19:56:20','2017-11-26 19:56:20','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(262,1,'2017-11-26 19:57:58','2017-11-26 19:57:58','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation.\r\n\r\n<strong><span style=\"color: #008000;\">Take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work and business, causing physical symptoms, pain, and other problems. Thankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and others useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for others.\r\nI learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\nStress issues should not be left to get worse as we know they can cause or increase other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress, complete the form below or call us today on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 19:57:58','2017-11-26 19:57:58','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(263,1,'2017-11-26 20:00:20','2017-11-26 20:00:20','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work and business, causing physical symptoms, pain, and other problems. Thankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and others useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for others.\r\nI learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\nStress issues should not be left to get worse as we know they can cause or increase other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress, complete the form below or call us today on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 20:00:20','2017-11-26 20:00:20','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(264,1,'2017-11-26 20:04:37','2017-11-26 20:04:37','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work and business, causing physical symptoms, pain, and other problems. Thankfully it led me to begin studying personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and others useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for others.\r\nI learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\nStress issues should not be left to get worse as we know they can cause or increase other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress, complete the form below or call us today on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 20:04:37','2017-11-26 20:04:37','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(265,1,'2017-11-26 20:06:07','2017-11-26 20:06:07','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully it led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and others useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others.\r\nI learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\nStress issues should not be left to get worse as we know they can cause or increase other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress, complete the form below or call us today on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 20:06:07','2017-11-26 20:06:07','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(266,1,'2017-11-26 20:10:52','2017-11-26 20:10:52','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully it led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and others useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others.\r\nI learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress, complete the form below or call us today on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 20:10:52','2017-11-26 20:10:52','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(267,1,'2017-11-26 20:11:32','2017-11-26 20:11:32','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully it led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and others useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others.\r\nI learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress, complete the form below or call us today on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 20:11:32','2017-11-26 20:11:32','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(280,1,'2017-11-26 21:01:15','2017-11-26 21:01:15','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">\r\nWhat can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life. Stress Management can make such a difference in your life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. We will show you a number of powerful self-help stress management techniques, allowing you to take control of your stress and to use whenever needed.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\"> </span></strong><span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully, this led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and other useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others. I learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today. Complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 21:01:15','2017-11-26 21:01:15','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(268,1,'2017-11-26 20:17:28','2017-11-26 20:17:28','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put you back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. We will show you a number of powerful self-help stress management techniques, allowing you to take control of your stress and to use whenever needed.\r\n\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully it led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and others useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others.\r\nI learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress, complete the form below or call us today on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 20:17:28','2017-11-26 20:17:28','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(269,1,'2017-11-26 20:26:36','2017-11-26 20:26:36','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. We will show you a number of powerful self-help stress management techniques, allowing you to take control of your stress and to use whenever needed.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully it led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and others useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others.\r\nI learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress, complete the form below or call us today on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 20:26:36','2017-11-26 20:26:36','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(270,1,'2017-11-26 20:30:48','2017-11-26 20:30:48','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. We will show you a number of powerful self-help stress management techniques, allowing you to take control of your stress and to use whenever needed.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully, this led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and other useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others. I learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress, complete the form below or call us today on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 20:30:48','2017-11-26 20:30:48','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(271,1,'2017-11-26 20:33:04','2017-11-26 20:33:04','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. We will show you a number of powerful self-help stress management techniques, allowing you to take control of your stress and to use whenever needed.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully, this led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and other useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others. I learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today. Complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 20:33:04','2017-11-26 20:33:04','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(272,1,'2017-11-26 20:46:12','2017-11-26 20:46:12','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today and learn how stress management can help you.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. We will show you a number of powerful self-help stress management techniques, allowing you to take control of your stress and to use whenever needed.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully, this led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and other useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others. I learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today. Complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 20:46:12','2017-11-26 20:46:12','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(273,1,'2017-11-26 20:47:52','2017-11-26 20:47:52','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful stress management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life. Stress Management can make such a difference to your life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. We will show you a number of powerful self-help stress management techniques, allowing you to take control of your stress and to use whenever needed.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully, this led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and other useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others. I learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today. Complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 20:47:52','2017-11-26 20:47:52','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(274,1,'2017-11-26 20:48:51','2017-11-26 20:48:51','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life. Stress Management can make such a difference to your life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. We will show you a number of powerful self-help stress management techniques, allowing you to take control of your stress and to use whenever needed.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Managing Stress At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully, this led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and other useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others. I learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today. Complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 20:48:51','2017-11-26 20:48:51','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(275,1,'2017-11-26 20:55:47','2017-11-26 20:55:47','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life. Stress Management can make such a difference to your life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. We will show you a number of powerful self-help stress management techniques, allowing you to take control of your stress and to use whenever needed.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page.</span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully, this led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and other useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others. I learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today. Complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 20:55:47','2017-11-26 20:55:47','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(279,1,'2017-11-26 21:00:57','2017-11-26 21:00:57','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\n\r\n</strong></span>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life. Stress Management can make such a difference in your life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. We will show you a number of powerful self-help stress management techniques, allowing you to take control of your stress and to use whenever needed.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\"> </span></strong><span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully, this led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and other useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others. I learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today. Complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 21:00:57','2017-11-26 21:00:57','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(276,1,'2017-11-26 20:57:48','2017-11-26 20:57:48','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life. Stress Management can make such a difference to your life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. We will show you a number of powerful self-help stress management techniques, allowing you to take control of your stress and to use whenever needed.\r\n<h4><span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong></h4>\r\n<strong><span style=\"color: #008000;\"> </span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully, this led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and other useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others. I learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today. Complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 20:57:48','2017-11-26 20:57:48','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(277,1,'2017-11-26 20:58:39','2017-11-26 20:58:39','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life. Stress Management can make such a difference to your life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. We will show you a number of powerful self-help stress management techniques, allowing you to take control of your stress and to use whenever needed.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\"> </span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully, this led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and other useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others. I learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today. Complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 20:58:39','2017-11-26 20:58:39','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(278,1,'2017-11-26 20:59:46','2017-11-26 20:59:46','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n<span style=\"color: #008000;\"><strong>\r\nTake control of your Stress today.\r\nSimply call us on </strong></span><strong>07568 455 809</strong> <span style=\"color: #008000;\"><strong>or fill in the form at the bottom of this page.\r\n</strong></span><em><strong>Remember to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </strong></em><strong>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life. Stress Management can make such a difference to your life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. We will show you a number of powerful self-help stress management techniques, allowing you to take control of your stress and to use whenever needed.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\"> </span></strong><span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully, this led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and other useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others. I learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today. Complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 20:59:46','2017-11-26 20:59:46','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(281,1,'2017-11-26 21:01:36','2017-11-26 21:01:36','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life. Stress Management can make such a difference in your life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. We will show you a number of powerful self-help stress management techniques, allowing you to take control of your stress and to use whenever needed.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\"> </span></strong><span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully, this led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and other useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others. I learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today. Complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 21:01:36','2017-11-26 21:01:36','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(282,1,'2017-11-26 21:01:54','2017-11-26 21:01:54','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">What can we do about Stress?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life. Stress Management can make such a difference in your life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. We will show you a number of powerful self-help stress management techniques, allowing you to take control of your stress and to use whenever needed.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\"> </span></strong><span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully, this led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and other useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others. I learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today. Complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 21:01:54','2017-11-26 21:01:54','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(283,1,'2017-11-26 21:02:51','2017-11-26 21:02:51','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life. Stress Management can make such a difference in your life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. We will show you a number of powerful self-help stress management techniques, allowing you to take control of your stress and to use whenever needed.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\"> </span></strong><span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully, this led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and other useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others. I learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today. Complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 21:02:51','2017-11-26 21:02:51','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(284,1,'2017-11-26 21:15:03','2017-11-26 21:15:03','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life. Stress Management can make such a difference in your life.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. We will show you a number of powerful self-help stress management techniques, allowing you to take control of your stress and to use whenever needed.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\"> </span></strong><span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully, this led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and other useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others. I learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today. Complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nThe Life Unlimited Group are specialists in \"Change Work\". This means we help our clients to make major changes in their lives, for the better.\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of the people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 21:15:03','2017-11-26 21:15:03','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(285,1,'2017-11-26 21:22:03','2017-11-26 21:22:03','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP)</strong> and <strong>Clinical Hypnotherapy</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. We will show you a number of powerful self-help stress management techniques, allowing you to take control of your stress and to use whenever needed.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\"> </span></strong><span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully, this led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and other useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others. I learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today. Complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nThe Life Unlimited Group are specialists in \"Change Work\". This means we help our clients to make major changes in their lives, for the better.\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of the people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 21:22:03','2017-11-26 21:22:03','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(286,1,'2017-11-26 21:26:25','2017-11-26 21:26:25','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong>  &amp; <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you and find the best stress reduction methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. We will show you a number of powerful self-help stress management techniques, allowing you to take control of your stress and to use whenever needed.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\"> </span></strong><span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully, this led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and other useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others. I learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today. Complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nThe Life Unlimited Group are specialists in \"Change Work\". This means we help our clients to make major changes in their lives, for the better.\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of the people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 21:26:25','2017-11-26 21:26:25','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(287,1,'2017-11-26 21:27:39','2017-11-26 21:27:39','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. We will show you a number of powerful self-help stress management techniques, allowing you to take control of your stress and to use whenever needed.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to your work or your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with stress, effectively.\r\n<strong><span style=\"color: #008000;\">\r\nTake control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<strong><span style=\"color: #008000;\"> </span></strong><span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused digestive symptoms. As I got older it interfered with work, business and social time, causing physical symptoms, pain, and many other problems. Thankfully, this led me to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and other useful techniques.\r\nOn studying and trying these many techniques, I discovered which were most effective for me and for many others. I learned over time, how to reduce the symptoms of stress, manage stress better and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today. Complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nThe Life Unlimited Group are specialists in \"Change Work\". This means we help our clients to make major changes in their lives, for the better.\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of the people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 21:27:39','2017-11-26 21:27:39','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(288,1,'2017-11-26 21:38:48','2017-11-26 21:38:48','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today. Complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nThe Life Unlimited Group are specialists in \"Change Work\". This means we help our clients to make major changes in their lives, for the better.\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of the people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-26 21:38:48','2017-11-26 21:38:48','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(289,1,'2017-11-27 18:40:57','2017-11-27 18:40:57','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nThe Life Unlimited Group are specialists in \"Change Work\". This means we help our clients to make major changes in their lives, for the better.\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of the people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2017-11-27 18:40:57','2017-11-27 18:40:57','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(290,1,'2017-11-27 19:55:00','2017-11-27 19:55:00','<span style=\"color: #008000;\"><strong>Thank you to all of our customers who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Kris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.\r\n\r\n<strong><span style=\"color: #008000;\">Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n</em>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Testimonials','','inherit','closed','closed','','200-revision-v1','','','2017-11-27 19:55:00','2017-11-27 19:55:00','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(297,1,'2017-12-04 20:24:35','2017-12-04 20:24:35','<h2><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h2>\r\nWe help people with depression to take control and make your life better.\r\n\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n\r\nThe good news is, you don\'t have to put up with it! You have a choice to make things better.\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n\r\n<span style=\"color: #008000;\"><strong>Jenny’s experience.</strong></span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to<em> make that call</em>. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span><span style=\"font-weight: 400;\">\r\n\r\n</span><span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span>\r\n\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n\r\n<strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?</span>\r\n</strong>Working with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>How can Depression affect you?</strong></span>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\n\r\nSome studies show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\n\r\nThe good news is that there are many things we can try to help or eradicate depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-12-04 20:24:35','2017-12-04 20:24:35','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(298,1,'2017-12-04 20:28:09','2017-12-04 20:28:09','<h2><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h2>\r\nWe help people with depression to take control and make your life better.\r\n\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n\r\n<strong><span style=\"color: #008000;\">The good news is,  You have choices to make things better.</span></strong>\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n\r\n<span style=\"color: #008000;\"><strong>Jenny’s experience.</strong></span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to<em> make that call</em>. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span>\r\n\r\n<span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span>\r\n\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n\r\n<strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?</span>\r\n</strong>Working with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>How can Depression affect you?</strong></span>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\n\r\nSome studies show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\n\r\nThe good news is that there are many things we can try to help or eradicate depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-12-04 20:28:09','2017-12-04 20:28:09','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(299,1,'2017-12-04 20:30:00','2017-12-04 20:30:00','<h2><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>We help people with depression to take control and make your life better. </strong></span>\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n\r\n<strong><span style=\"color: #008000;\">The good news is,  You have choices to make things better.</span></strong>\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n\r\n<span style=\"color: #008000;\"><strong>Jenny’s experience.</strong></span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to<em> make that call</em>. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span>\r\n\r\n<span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span>\r\n\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n\r\n<strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?</span>\r\n</strong>Working with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>How can Depression affect you?</strong></span>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\n\r\nSome studies show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\n\r\nThe good news is that there are many things we can try to help or eradicate depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-12-04 20:30:00','2017-12-04 20:30:00','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(300,1,'2017-12-04 20:32:04','2017-12-04 20:32:04','<h2><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>We help people with depression to take control and make their lives better. </strong></span>\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n\r\n<strong><span style=\"color: #008000;\">The good news is,  You have choices to make things better.</span></strong>\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n\r\n<span style=\"color: #008000;\"><strong>Jenny’s experience.</strong></span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to<em> make that call</em>. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span>\r\n\r\n<span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span>\r\n\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n\r\n<strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?</span>\r\n</strong>Working with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>How can Depression affect you?</strong></span>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\n\r\nSome studies show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\n\r\nThe good news is that there are many things we can try to help or eradicate depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-12-04 20:32:04','2017-12-04 20:32:04','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(301,1,'2017-12-04 20:41:04','2017-12-04 20:41:04','<h2><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>We help people with depression to take control and make their lives better. </strong></span>\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n\r\n<strong><span style=\"color: #008000;\">The good news is,  You have choices to make things better.</span></strong>\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n\r\n<span style=\"color: #008000;\"><strong>Jenny’s experience.\r\n</strong></span><em><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to make that call. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span></em>\r\n\r\n<em><span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span></em>\r\n\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n\r\n<strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?</span>\r\n</strong>Working with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>How can Depression affect you?</strong></span>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\n\r\nSome studies show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\n\r\nThe good news is that there are many things we can try to help or eradicate depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-12-04 20:41:04','2017-12-04 20:41:04','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(302,1,'2017-12-04 20:59:37','2017-12-04 20:59:37','<h1><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h1>\r\n<span style=\"color: #008000;\"><strong>We help people with depression to take control and make their lives better. </strong></span>\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n\r\n<strong><span style=\"color: #008000;\">The good news is,  You have choices to make things better.</span></strong>\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n\r\n<span style=\"color: #008000;\"><strong>Jenny’s experience.\r\n</strong></span><em><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to make that call. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span></em>\r\n\r\n<em><span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span></em>\r\n\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n\r\n<strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?</span>\r\n</strong>Working with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>How can Depression affect you?</strong></span>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\n\r\nSome studies show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\n\r\nThe good news is that there are many things we can try to help or eradicate depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-12-04 20:59:37','2017-12-04 20:59:37','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(304,1,'2017-12-04 21:09:49','2017-12-04 21:09:49','<h1><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h1>\r\n<span style=\"color: #008000;\"><strong>We help people with depression to take control and make their lives better.\r\n</strong></span></h2>\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n\r\n<strong><span style=\"color: #008000;\">The good news is,  You have choices to make things better.</span></strong>\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n\r\n<span style=\"color: #008000;\"><strong>Jenny’s experience.\r\n</strong></span><em><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to make that call. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span></em>\r\n\r\n<em><span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span></em>\r\n\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n\r\n<strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?</span>\r\n</strong>Working with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>How can Depression affect you?</strong></span>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\n\r\nSome studies show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\n\r\nThe good news is that there are many things we can try to help or eradicate depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-12-04 21:09:49','2017-12-04 21:09:49','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(303,1,'2017-12-04 21:01:05','2017-12-04 21:01:05','<h1><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h1>\r\n<span style=\"color: #008000;\"><strong>We help people with depression to take control and make their lives better.\r\n</strong></span>\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n\r\n<strong><span style=\"color: #008000;\">The good news is,  You have choices to make things better.</span></strong>\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n\r\n<span style=\"color: #008000;\"><strong>Jenny’s experience.\r\n</strong></span><em><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to make that call. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span></em>\r\n\r\n<em><span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span></em>\r\n\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n\r\n<strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?</span>\r\n</strong>Working with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>How can Depression affect you?</strong></span>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\n\r\nSome studies show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\n\r\nThe good news is that there are many things we can try to help or eradicate depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-12-04 21:01:05','2017-12-04 21:01:05','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(305,1,'2017-12-04 21:11:01','2017-12-04 21:11:01','<h1><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h1>\r\n<h2><span style=\"color: #008000;\"><strong>We help people with depression to take control and make their lives better.\r\n</strong></span></h2>\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n\r\n<strong><span style=\"color: #008000;\">The good news is,  You have choices to make things better.</span></strong>\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n\r\n<span style=\"color: #008000;\"><strong>Jenny’s experience.\r\n</strong></span><em><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to make that call. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span></em>\r\n\r\n<em><span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span></em>\r\n\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n\r\n<strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?</span>\r\n</strong>Working with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>How can Depression affect you?</strong></span>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\n\r\nSome studies show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\n\r\nThe good news is that there are many things we can try to help or eradicate depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-12-04 21:11:01','2017-12-04 21:11:01','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(307,1,'2017-12-04 21:13:17','2017-12-04 21:13:17','<h1><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h1>\r\n<h2><span style=\"color: #008000;\"><strong>We help people with depression to take control and make their lives better.\r\n</strong></span></h2>\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n\r\n<strong><span style=\"color: #008000;\">The good news is,  You have choices to make things better.</span></strong>\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n<h2><span style=\"color: #008000;\"><strong>Jenny’s experience.</strong></span></h2>\r\n<em><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to make that call. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span></em>\r\n\r\n<em><span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span></em>\r\n\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n\r\n<strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?</span>\r\n</strong>Working with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>How can Depression affect you?</strong></span>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\n\r\nSome studies show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\n\r\nThe good news is that there are many things we can try to help or eradicate depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-12-04 21:13:17','2017-12-04 21:13:17','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(306,1,'2017-12-04 21:12:54','2017-12-04 21:12:54','<h1><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h1>\r\n<h2><span style=\"color: #008000;\"><strong>We help people with depression to take control and make their lives better.\r\n</strong></span></h2>\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n\r\n<strong><span style=\"color: #008000;\">The good news is,  You have choices to make things better.</span></strong>\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n<h2><span style=\"color: #008000;\"><strong>Jenny’s experience.</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>\r\n</strong></span><em><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to make that call. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span></em>\r\n\r\n<em><span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span></em>\r\n\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n\r\n<strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?</span>\r\n</strong>Working with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>How can Depression affect you?</strong></span>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\n\r\nSome studies show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\n\r\nThe good news is that there are many things we can try to help or eradicate depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-12-04 21:12:54','2017-12-04 21:12:54','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(308,1,'2017-12-04 21:16:20','2017-12-04 21:16:20','<h1><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h1>\r\n<h2><span style=\"color: #008000;\"><strong>We help people with depression to take control and make their lives better.\r\n</strong></span></h2>\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n\r\n<strong><span style=\"color: #008000;\">The good news is,  You have choices to make things better.</span></strong>\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n<h2><span style=\"color: #008000;\"><strong>Jenny’s experience.</strong></span></h2>\r\n<em><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to make that call. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span></em>\r\n\r\n<em><span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span></em>\r\n<h2><span style=\"color: #008000;\">Depression You Have A Choice &amp; We Have The Skills.</span></h2>\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n\r\n<strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?</span>\r\n</strong>Working with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>How can Depression affect you?</strong></span>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\n\r\nSome studies show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\n\r\nThe good news is that there are many things we can try to help or eradicate depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-12-04 21:16:20','2017-12-04 21:16:20','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(309,1,'2017-12-04 21:16:53','2017-12-04 21:16:53','<h1><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h1>\r\n<h2><span style=\"color: #008000;\"><strong>We help people with depression to take control and make their lives better.\r\n</strong></span></h2>\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n\r\n<strong><span style=\"color: #008000;\">The good news is,  You have choices to make things better.</span></strong>\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n<h2><span style=\"color: #008000;\"><strong>Jenny’s experience.</strong></span></h2>\r\n<em><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to make that call. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span></em>\r\n\r\n<em><span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span></em>\r\n<h2><strong><span style=\"color: #008000;\">Depression You Have The Choice &amp; We Have The Skills.</span></strong></h2>\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n\r\n<strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?</span>\r\n</strong>Working with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>How can Depression affect you?</strong></span>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\n\r\nSome studies show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\n\r\nThe good news is that there are many things we can try to help or eradicate depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-12-04 21:16:53','2017-12-04 21:16:53','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(310,1,'2017-12-04 21:22:16','2017-12-04 21:22:16','<h1><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h1>\r\n<h2><span style=\"color: #008000;\"><strong>We help people with depression to take control and make their lives better.\r\n</strong></span></h2>\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n\r\n<strong><span style=\"color: #008000;\">The good news is,  You have choices to make things better.</span></strong>\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n<h2><span style=\"color: #008000;\"><strong>Jenny’s experience.</strong></span></h2>\r\n<em><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to make that call. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span></em>\r\n\r\n<em><span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span></em>\r\n<h2><strong><span style=\"color: #008000;\">Depression You Have The Choice &amp; We Have The Skills.</span></strong></h2>\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n\r\n<strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?</span>\r\n</strong>Working with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n\r\n<span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\nCall us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How can Depression affect you &amp; What are the symptoms?\r\n</strong></span></h2>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms. Depression can give us a very distorted view of the world and our lives.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\nSome studies and research show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\nThe good news is that there are many techniques and therapies we use to help you with your depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-12-04 21:22:16','2017-12-04 21:22:16','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(312,1,'2017-12-04 21:34:39','2017-12-04 21:34:39','<h1><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h1>\r\n<h2><span style=\"color: #008000;\"><strong>We help people with depression to take control and make their lives better.\r\n</strong></span></h2>\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n<h2><strong><span style=\"color: #008000;\">The good news is,  We can help with your depression.</span></strong></h2>\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n<h2><span style=\"color: #008000;\"><strong>Jenny’s experience.</strong></span></h2>\r\n<em><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to make that call. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span></em>\r\n\r\n<em><span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span></em>\r\n<h2><strong><span style=\"color: #008000;\">Depression You Have The Choice &amp; We Have The Skills.</span></strong></h2>\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n<h2><strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?\r\n</span></strong></h2>\r\nWorking with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n<h2><span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How can Depression affect you &amp; What are the symptoms?\r\n</strong></span></h2>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms. Depression can give us a very distorted view of the world and our lives.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\nSome studies and research show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\nThe good news is that there are many techniques and therapies we use to help you with your depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-12-04 21:34:39','2017-12-04 21:34:39','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(311,1,'2017-12-04 21:25:30','2017-12-04 21:25:30','<h1><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h1>\r\n<h2><span style=\"color: #008000;\"><strong>We help people with depression to take control and make their lives better.\r\n</strong></span></h2>\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n\r\n<strong><span style=\"color: #008000;\">The good news is,  You have choices to make things better.</span></strong>\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n<h2><span style=\"color: #008000;\"><strong>Jenny’s experience.</strong></span></h2>\r\n<em><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to make that call. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span></em>\r\n\r\n<em><span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span></em>\r\n<h2><strong><span style=\"color: #008000;\">Depression You Have The Choice &amp; We Have The Skills.</span></strong></h2>\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n<h2><strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?\r\n</span></strong></h2>\r\nWorking with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n<h2><span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How can Depression affect you &amp; What are the symptoms?\r\n</strong></span></h2>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms. Depression can give us a very distorted view of the world and our lives.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\nSome studies and research show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\nThe good news is that there are many techniques and therapies we use to help you with your depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-12-04 21:25:30','2017-12-04 21:25:30','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(313,1,'2017-12-04 21:35:13','2017-12-04 21:35:13','<h1><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h1>\r\n<h2><span style=\"color: #008000;\"><strong>We help people with depression to take control and make their lives better.\r\n</strong></span></h2>\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n<h2><strong><span style=\"color: #008000;\">The good news is,  we can help with your depression.</span></strong></h2>\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n<h2><span style=\"color: #008000;\"><strong>Jenny’s experience.</strong></span></h2>\r\n<em><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to make that call. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span></em>\r\n\r\n<em><span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span></em>\r\n<h2><strong><span style=\"color: #008000;\">Depression You Have The Choice &amp; We Have The Skills.</span></strong></h2>\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n<h2><strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?\r\n</span></strong></h2>\r\nWorking with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n<h2><span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How can Depression affect you &amp; What are the symptoms?\r\n</strong></span></h2>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms. Depression can give us a very distorted view of the world and our lives.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\nSome studies and research show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\nThe good news is that there are many techniques and therapies we use to help you with your depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Depression','','inherit','closed','closed','','122-revision-v1','','','2017-12-04 21:35:13','2017-12-04 21:35:13','',122,'http://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(323,1,'2018-01-20 18:51:20','2018-01-20 18:51:20','t','Events & Workshops','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 18:51:20','2018-01-20 18:51:20','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(324,1,'2018-01-20 18:52:39','2018-01-20 18:52:39','50t','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 18:52:39','2018-01-20 18:52:39','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(326,1,'2018-01-20 19:11:30','2018-01-20 19:11:30','','Secrets Of Self Hypnosis','','inherit','open','closed','','hypnosis-edit','','','2019-01-02 15:05:13','2019-01-02 15:05:13','',322,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit.jpg',0,'attachment','image/jpeg',0),(327,1,'2018-01-20 19:11:59','2018-01-20 19:11:59','<img class=\"alignnone size-thumbnail wp-image-326\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-150x150.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n50t','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 19:11:59','2018-01-20 19:11:59','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(328,1,'2018-01-20 19:12:37','2018-01-20 19:12:37','<img class=\"alignnone wp-image-326 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n50t','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 19:12:37','2018-01-20 19:12:37','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(329,1,'2018-01-20 19:19:39','2018-01-20 19:19:39','<img class=\"aligncenter wp-image-326 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-1024x576.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"1024\" height=\"576\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n50t','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 19:19:39','2018-01-20 19:19:39','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(330,1,'2018-01-20 19:20:59','2018-01-20 19:20:59','<img class=\"alignleft wp-image-326 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n50t','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 19:20:59','2018-01-20 19:20:59','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(373,0,'2018-02-25 09:27:05','0000-00-00 00:00:00','<p>\n<strong>NEW: Create Surveys and Polls with WPForms</strong><br />\nYou asked for it, here it is. Now you can use WPForms to create interactive surveys and polls for your WordPress site.</p>\n<p>The survey and polls addon comes with smart survey fields, powerful personalization logic, pre-made form templates and best-in-class reports.\n</p>\n<p><a href=\"https://wpforms.com/pricing/?utm_source=wpdashboard&#038;utm_medium=amnotification&#038;utm_campaign=surveyaddon\" target=\"_blank\" class=\"button button-primary\">Click Here to Upgrade &raquo;</a> <a href=\"https://wpforms.com/introducing-the-new-wpforms-surveys-and-polls-addon/?utm_source=wpdashboard&#038;utm_medium=amnotification&#038;utm_campaign=surveyaddon\" class=\"button button-secondary\" target=\"_blank\">Read the Full Announcement</a></p>\n<p>Thanks as always for your continuous support of WPForms!<br />\nSyed Balkhi<br />\nFounder of WPForms</p>\n','','','draft','closed','closed','','','','','2018-02-25 09:27:05','0000-00-00 00:00:00','',0,'http://www.newcastle-hypnotherapy.com/?post_type=amn_wpforms-lite&p=373',0,'amn_wpforms-lite','',0),(336,1,'2018-01-20 19:26:10','2018-01-20 19:26:10','<img class=\"wp-image-326 size-medium alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\nSECRETS OF SELF-HYPNOSIS WORKSHOP\r\n\r\nSeaton Deleval - February 24th 2017\r\n\r\nJoin us for an enjoyable workshop in the Linskill Centre, North Shields, where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\nIn just one short day, you\'ll learn:\r\n\r\n- several methods for achieving hypnotic states.\r\n\r\n- to improve your ability to relax . . . anytime, anywhere.\r\n\r\n- how to direct your mind to ease pain and tension.\r\n\r\n- how to program your unconscious to help you attain your goals.\r\n\r\n- to improve your ability to concentrate.\r\n\r\n- how hypnosis differs from mindfulness and meditation, and how to combine all three.\r\n\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 a whole day.\r\n\r\nFor more information, or to book your place, click on the link below:','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 19:26:10','2018-01-20 19:26:10','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(331,1,'2018-01-20 19:22:01','2018-01-20 19:22:01','<img class=\"alignleft wp-image-326 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nSECRETS OF SELF-HYPNOSIS WORKSHOP\r\n\r\nNorth Shields - September 30th 2017\r\n\r\nJoin us for an enjoyable workshop in the Linskill Centre, North Shields, where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\nIn just one short day, you\'ll learn:\r\n\r\n- several methods for achieving hypnotic states.\r\n\r\n- to improve your ability to relax . . . anytime, anywhere.\r\n\r\n- how to direct your mind to ease pain and tension.\r\n\r\n- how to program your unconscious to help you attain your goals.\r\n\r\n- to improve your ability to concentrate.\r\n\r\n- how hypnosis differs from mindfulness and meditation, and how to combine all three.\r\n\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 a whole day.\r\n\r\nFor more information, or to book your place, click on the link below:','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 19:22:01','2018-01-20 19:22:01','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(359,1,'2018-01-20 20:31:53','2018-01-20 20:31:53','We run regular workshops &amp; events.\r\nFor the latest information by email please join our newsletter below.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/secrets-self-hypnosis/\">Secrets Of Self Hypnosis Workshop - 24th Feb</a></strong>\r\n\r\n.\r\n\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 20:31:53','2018-01-20 20:31:53','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(332,1,'2018-01-20 19:23:15','2018-01-20 19:23:15','<img class=\"alignleft wp-image-326 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nSECRETS OF SELF-HYPNOSIS WORKSHOP\r\n\r\nSeaton Deleval - February 24th 2017\r\n\r\nJoin us for an enjoyable workshop in the Linskill Centre, North Shields, where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\nIn just one short day, you\'ll learn:\r\n\r\n- several methods for achieving hypnotic states.\r\n\r\n- to improve your ability to relax . . . anytime, anywhere.\r\n\r\n- how to direct your mind to ease pain and tension.\r\n\r\n- how to program your unconscious to help you attain your goals.\r\n\r\n- to improve your ability to concentrate.\r\n\r\n- how hypnosis differs from mindfulness and meditation, and how to combine all three.\r\n\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 a whole day.\r\n\r\nFor more information, or to book your place, click on the link below:','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 19:23:15','2018-01-20 19:23:15','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(333,1,'2018-01-20 19:23:52','2018-01-20 19:23:52','<img class=\"alignleft wp-image-326 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nSECRETS OF SELF-HYPNOSIS WORKSHOP\r\n\r\nSeaton Deleval - February 24th 2017\r\n\r\nJoin us for an enjoyable workshop in the Linskill Centre, North Shields, where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\nIn just one short day, you\'ll learn:\r\n\r\n- several methods for achieving hypnotic states.\r\n\r\n- to improve your ability to relax . . . anytime, anywhere.\r\n\r\n- how to direct your mind to ease pain and tension.\r\n\r\n- how to program your unconscious to help you attain your goals.\r\n\r\n- to improve your ability to concentrate.\r\n\r\n- how hypnosis differs from mindfulness and meditation, and how to combine all three.\r\n\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 a whole day.\r\n\r\nFor more information, or to book your place, click on the link below:','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 19:23:52','2018-01-20 19:23:52','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(334,1,'2018-01-20 19:24:10','2018-01-20 19:24:10','<img class=\"alignleft wp-image-326 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nSECRETS OF SELF-HYPNOSIS WORKSHOP\r\n\r\nSeaton Deleval - February 24th 2017\r\n\r\nJoin us for an enjoyable workshop in the Linskill Centre, North Shields, where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\nIn just one short day, you\'ll learn:\r\n\r\n- several methods for achieving hypnotic states.\r\n\r\n- to improve your ability to relax . . . anytime, anywhere.\r\n\r\n- how to direct your mind to ease pain and tension.\r\n\r\n- how to program your unconscious to help you attain your goals.\r\n\r\n- to improve your ability to concentrate.\r\n\r\n- how hypnosis differs from mindfulness and meditation, and how to combine all three.\r\n\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 a whole day.\r\n\r\nFor more information, or to book your place, click on the link below:','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 19:24:10','2018-01-20 19:24:10','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(335,1,'2018-01-20 19:25:49','2018-01-20 19:25:49','<img class=\"wp-image-326 size-medium aligncenter\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nSECRETS OF SELF-HYPNOSIS WORKSHOP\r\n\r\nSeaton Deleval - February 24th 2017\r\n\r\nJoin us for an enjoyable workshop in the Linskill Centre, North Shields, where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\nIn just one short day, you\'ll learn:\r\n\r\n- several methods for achieving hypnotic states.\r\n\r\n- to improve your ability to relax . . . anytime, anywhere.\r\n\r\n- how to direct your mind to ease pain and tension.\r\n\r\n- how to program your unconscious to help you attain your goals.\r\n\r\n- to improve your ability to concentrate.\r\n\r\n- how hypnosis differs from mindfulness and meditation, and how to combine all three.\r\n\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 a whole day.\r\n\r\nFor more information, or to book your place, click on the link below:','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 19:25:49','2018-01-20 19:25:49','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(337,1,'2018-01-20 19:29:25','2018-01-20 19:29:25','<img class=\"wp-image-326 size-medium alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\nSECRETS OF SELF-HYPNOSIS WORKSHOP\r\nSeaton Delaval - Saturday, February 24th, 2018\r\n\r\n8 Places Remaining\r\n\r\nJoin us for an enjoyable workshop in the Linskill Centre, North Shields, where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\nIn this workshop, you will learn:\r\n\r\n- several methods for achieving hypnotic states.\r\n\r\n- to improve your ability to relax . . . anytime, anywhere.\r\n\r\n- how to direct your mind to ease pain and tension.\r\n\r\n- how to program your unconscious to help you attain your goals.\r\n\r\n- to improve your ability to concentrate.\r\n\r\n- how hypnosis differs from mindfulness and meditation, and how to combine all three.\r\n\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 a whole day.\r\n\r\nFor more information, or to book your place, click on the link below:','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 19:29:25','2018-01-20 19:29:25','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(338,1,'2018-01-20 19:31:49','2018-01-20 19:31:49','<img class=\"wp-image-326 size-medium alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\nSECRETS OF SELF-HYPNOSIS WORKSHOP\r\nSaturday, February 24th, 2018\r\nSeaton Delaval\r\n\r\n&nbsp;\r\n\r\n8 Places Remaining\r\n\r\nJoin us for an enjoyable workshop in the Linskill Centre, North Shields, where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\nIn this workshop, you will learn:\r\n\r\n- several methods for achieving hypnotic states.\r\n\r\n- to improve your ability to relax . . . anytime, anywhere.\r\n\r\n- how to direct your mind to ease pain and tension.\r\n\r\n- how to program your unconscious to help you attain your goals.\r\n\r\n- to improve your ability to concentrate.\r\n\r\n- how hypnosis differs from mindfulness and meditation, and how to combine all three.\r\n\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 a whole day.\r\n\r\nFor more information, or to book your place, click on the link below:','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 19:31:49','2018-01-20 19:31:49','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(342,1,'2018-01-20 19:37:18','2018-01-20 19:37:18','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\nSECRETS OF SELF-HYPNOSIS WORKSHOP\r\nSaturday, February 24th, 2018. Seaton Delaval.\r\nAvailability: 8 Places remaining\r\n\r\nJoin us for an enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\nIn this workshop, you will learn:\r\n\r\n- several methods for achieving hypnotic states.\r\n\r\n- to improve your ability to relax . . . anytime, anywhere.\r\n\r\n- how to direct your mind to ease pain, stress and tension.\r\n\r\n- how to program your unconscious to help you attain your goals.\r\n\r\n- to improve your ability to concentrate.\r\n\r\n- how hypnosis differs from mindfulness and meditation, and how to combine all three.\r\n\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 a whole day.\r\n\r\nFor more information, or to book your place, click on the link below:','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 19:37:18','2018-01-20 19:37:18','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(339,1,'2018-01-20 19:32:54','2018-01-20 19:32:54','<img class=\"wp-image-326 size-medium alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\nSECRETS OF SELF-HYPNOSIS WORKSHOP\r\nSaturday, February 24th, 2018\r\nSeaton Delaval\r\nAvailability: 8 Places remaining\r\n\r\nJoin us for an enjoyable workshop in the Linskill Centre, North Shields, where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\nIn this workshop, you will learn:\r\n\r\n- several methods for achieving hypnotic states.\r\n\r\n- to improve your ability to relax . . . anytime, anywhere.\r\n\r\n- how to direct your mind to ease pain and tension.\r\n\r\n- how to program your unconscious to help you attain your goals.\r\n\r\n- to improve your ability to concentrate.\r\n\r\n- how hypnosis differs from mindfulness and meditation, and how to combine all three.\r\n\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 a whole day.\r\n\r\nFor more information, or to book your place, click on the link below:','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 19:32:54','2018-01-20 19:32:54','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(340,1,'2018-01-20 19:33:14','2018-01-20 19:33:14','<img class=\"wp-image-326 size-medium alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\nSECRETS OF SELF-HYPNOSIS WORKSHOP\r\nSaturday, February 24th, 2018\r\nSeaton Delaval\r\nAvailability:\r\n8 Places remaining\r\n\r\nJoin us for an enjoyable workshop in the Linskill Centre, North Shields, where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\nIn this workshop, you will learn:\r\n\r\n- several methods for achieving hypnotic states.\r\n\r\n- to improve your ability to relax . . . anytime, anywhere.\r\n\r\n- how to direct your mind to ease pain and tension.\r\n\r\n- how to program your unconscious to help you attain your goals.\r\n\r\n- to improve your ability to concentrate.\r\n\r\n- how hypnosis differs from mindfulness and meditation, and how to combine all three.\r\n\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 a whole day.\r\n\r\nFor more information, or to book your place, click on the link below:','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 19:33:14','2018-01-20 19:33:14','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(341,1,'2018-01-20 19:34:10','2018-01-20 19:34:10','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\nSECRETS OF SELF-HYPNOSIS WORKSHOP\r\nSaturday, February 24th, 2018\r\nSeaton Delaval\r\nAvailability:\r\n8 Places remaining\r\n\r\nJoin us for an enjoyable workshop in the Linskill Centre, North Shields, where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\nIn this workshop, you will learn:\r\n\r\n- several methods for achieving hypnotic states.\r\n\r\n- to improve your ability to relax . . . anytime, anywhere.\r\n\r\n- how to direct your mind to ease pain and tension.\r\n\r\n- how to program your unconscious to help you attain your goals.\r\n\r\n- to improve your ability to concentrate.\r\n\r\n- how hypnosis differs from mindfulness and meditation, and how to combine all three.\r\n\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 a whole day.\r\n\r\nFor more information, or to book your place, click on the link below:','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 19:34:10','2018-01-20 19:34:10','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(343,1,'2018-01-20 19:41:38','2018-01-20 19:41:38','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\nSECRETS OF SELF-HYPNOSIS WORKSHOP\r\nSaturday, February 24th, 2018. Seaton Delaval.\r\nLimited Availability: 8 Places remaining\r\n\r\nJoin us for an enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\nIn this workshop, you will learn:\r\n<ul>\r\n 	<li>several methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax . . . anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, and tension.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation, and how to combine all three.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 a whole workshop.\r\n\r\nFor more information, or to book your place, click on the link below:','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 19:41:38','2018-01-20 19:41:38','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(344,1,'2018-01-20 19:45:12','2018-01-20 19:45:12','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n<strong>SECRETS OF SELF-HYPNOSIS WORKSHOP</strong>\r\nSaturday, February 24th, 2018. Seaton Delaval.\r\nLimited Availability: 8 Places remaining\r\n\r\nJoin us for an enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>several methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax . . . anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, and tension.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation, and how to combine all three.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 a whole workshop.\r\n\r\nFor more information, or to book your place, click on the link below:','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 19:45:12','2018-01-20 19:45:12','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(350,1,'2018-01-20 20:01:09','2018-01-20 20:01:09','text here &amp; form','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 20:01:09','2018-01-20 20:01:09','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(345,1,'2018-01-20 19:45:41','2018-01-20 19:45:41','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n<strong>SECRETS OF SELF-HYPNOSIS WORKSHOP</strong>\r\nSaturday, February 24th, 2018. Seaton Delaval.\r\nLimited Availability: 8 Places remaining of 12\r\n\r\nJoin us for an enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>several methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax . . . anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, and tension.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation, and how to combine all three.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 a whole workshop.\r\n\r\nFor more information, or to book your place, click on the link below:','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 19:45:41','2018-01-20 19:45:41','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(346,1,'2018-01-20 19:46:20','2018-01-20 19:46:20','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n<strong>SECRETS OF SELF-HYPNOSIS WORKSHOP</strong>\r\nSaturday, February 24th, 2018. Seaton Delaval.\r\nLimited Availability: 8 Places remaining of 12\r\n\r\nJoin us for an enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>several methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax . . . anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, and tension.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation, and how to combine all three.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 for the whole workshop.\r\n\r\nFor more information, or to book your place, click on the link below:','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-01-20 19:46:20','2018-01-20 19:46:20','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(347,1,'2018-01-20 19:57:49','2018-01-20 19:57:49','<iframe src=\"https://www.youtube.com/embed/_jgzp1iTuXs?rel=0&amp;controls=0&amp;showinfo=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h4><strong><span style=\"color: #008000;\">Self Hypnosis Introduction Workshop</span>\r\n</strong></h4>\r\n<strong>Wednesday 6th Feb 2019,</strong>\r\n<strong>7.30 to 10.00 pm,</strong>\r\n<strong>Newcastle Hypnotherapy - The Vault.</strong>\r\n<strong>Advance booking required.\r\n<span style=\"color: #ff6600;\">Fully Booked</span>\r\n</strong>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Secrets Of Self-Hypnosis Workshop</span>\r\n</strong></h2>\r\nBack by popular request, the introduction to self-hypnosis evening.\r\nIn this practical, fun workshop you will learn a new set of skills around self-hypnosis.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>meditate deeper and faster with self-hypnosis</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>hypnotic language patterns and phrases</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\nPlaces are just £10 each and limited to just 12 participants. Handouts, tea, coffee and snacks are included.\r\nOnce you have booked your place, helpful info will be sent out just before the event.\r\nBooking is strictly by advance booking only and on a first come, first served basis.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self-Hypnosis Workshop','','publish','closed','closed','','secrets-self-hypnosis','','','2019-02-06 17:04:27','2019-02-06 17:04:27','',322,'http://www.newcastle-hypnotherapy.com/?page_id=347',0,'page','',0),(2190,1,'2018-12-15 16:31:28','2018-12-15 16:31:28','&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"embed-container\"></div>\r\n<h2><strong>Self Hypnosis Introduction Workshop\r\nHosted by Newcastle Hypnotherapy\r\n</strong></h2>\r\n<strong>New events to be announced shorlty</strong><strong> - see the newsletter below\r\n</strong>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-12-15 16:31:28','2018-12-15 16:31:28','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(2188,1,'2018-12-15 16:29:55','2018-12-15 16:29:55','&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"embed-container\"></div>\r\n<h2><strong>Self Hypnosis Introduction Workshop\r\nHosted by Newcastle Hypnotherapy\r\n</strong></h2>\r\n<strong>New events to be announced shorlty</strong><strong> - see the newsletter below\r\n</strong>\r\niframe src=\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/QDixy8yh1Q0\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-12-15 16:29:55','2018-12-15 16:29:55','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(470,1,'2018-04-02 12:16:27','2018-04-02 12:16:27','&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/QDixy8yh1Q0?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<h2><strong>Self Hypnosis Introduction Workshop\r\nHosted by Newcastle Hypnotherapy\r\n</strong></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.\r\n<span style=\"color: #ff6600;\">8 Spaces remaining</span></strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>This workshop is £99 for the whole workshop &amp; includes handouts &amp; notes.\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form><script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-04-02 12:16:27','2018-04-02 12:16:27','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(348,1,'2018-01-20 19:57:49','2018-01-20 19:57:49','Tests','Secrets Of Self Hypnosis','','inherit','closed','closed','','347-revision-v1','','','2018-01-20 19:57:49','2018-01-20 19:57:49','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(349,1,'2018-01-20 19:59:24','2018-01-20 19:59:24','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n<strong>SECRETS OF SELF-HYPNOSIS WORKSHOP</strong>\r\nSaturday, February 24th, 2018. Seaton Delaval.\r\nLimited Availability: 8 Places remaining of 12\r\n\r\nJoin us for an enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>several methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax . . . anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, and tension.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation, and how to combine all three.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 for the whole workshop.\r\n\r\nFor more information, or to book your place, click on the link below:','Secrets Of Self Hypnosis','','inherit','closed','closed','','347-revision-v1','','','2018-01-20 19:59:24','2018-01-20 19:59:24','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(390,1,'2018-03-15 12:26:48','2018-03-15 12:26:48','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n<span style=\"color: #008000;\"><strong>SECRETS OF SELF-HYPNOSIS WORKSHOP</strong></span>\r\nSaturday, February 24th, 2018. Seaton Delaval. 1.45pm to 5pm\r\n<span style=\"color: #ff0000;\"><strong>Limited Availability: <span style=\"color: #008000;\">6</span></strong></span><span style=\"color: #008000;\"> <strong>Places remaining of 12</strong></span>\r\n\r\nJoin us for an enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\n<span style=\"color: #008000;\"><strong>In this workshop, you will learn:</strong></span>\r\n<ul>\r\n 	<li>several methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax . . . anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, and tension.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation, and how to combine all three.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £99 for the whole workshop &amp; includes handouts &amp; notes. <strong>Spaces are limited to just 12 people.</strong>\r\n\r\n<strong><em>Book your place now</em> by Card or Paypal to secure your place at the workshop.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\nFor information on future events &amp; news please join our newsletter.</form><script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis','','inherit','closed','closed','','347-revision-v1','','','2018-03-15 12:26:48','2018-03-15 12:26:48','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(355,1,'2019-02-03 09:20:11','2019-02-03 09:20:11','<iframe src=\"https://www.youtube.com/embed/_jgzp1iTuXs?rel=0&amp;controls=0&amp;showinfo=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\n<h4><strong><span style=\"color: #008000;\">Self Hypnosis Introduction Workshop</span>\n</strong></h4>\n<strong>Wednesday 6th Feb 2019,</strong>\n<strong>7.30 to 10.00 pm,</strong>\n<strong>Newcastle Hypnotherapy - The Vault.</strong>\n<strong>Advance booking required.\nUpdate - Only 4 places remaining - Book Now\n</strong>\n<h2></h2>\n<h2></h2>\n&nbsp;\n<h2><strong><span style=\"color: #008000;\">The Secrets Of Self-Hypnosis Workshop</span>\n</strong></h2>\nBack by popular request, the introduction to self-hypnosis evening.\nIn this practical, fun workshop you will learn a new set of skills around self-hypnosis.\n\n<strong>In this workshop, you will learn:</strong>\n<ul>\n 	<li>methods for achieving hypnotic states.</li>\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\n 	<li>how to reduce bad habits and behaviour.</li>\n 	<li>how to program your unconscious to help you attain your goals.</li>\n 	<li>to improve your ability to concentrate &amp; focus.</li>\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\n 	<li>how to build self-confidence.</li>\n 	<li>how to handle problems and challenges better.</li>\n 	<li>hypnotic language patterns and phrases</li>\n</ul>\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\n\nPlaces are just £10 each and limited to just 12 participants. Handouts, tea, coffee and snacks are included.\nOnce you have booked your place, helpful info will be sent out just before the event.\nBooking is strictly by advance booking only and on a first come, first served basis.\n\n<a href=\"https://www.newcastle-hypnotherapy.com/product/secrets-of-self-hypnosis/\"><img class=\"size-medium wp-image-1659 alignleft\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<strong>Learn more about our events by joining the newsletter below\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\nYour privacy is always safe and you can remove yourself at any time\n</strong>\n\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\n\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\n\n</form>&nbsp;','Secrets Of Self-Hypnosis Workshop','','inherit','closed','closed','','347-autosave-v1','','','2019-02-03 09:20:11','2019-02-03 09:20:11','',347,'http://www.newcastle-hypnotherapy.com/347-autosave-v1/',0,'revision','',0),(2187,1,'2018-12-15 16:26:32','2018-12-15 16:26:32','&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"></div>\r\n<h2><strong>Self Hypnosis Introduction Workshop\r\nHosted by Newcastle Hypnotherapy\r\n</strong></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.\r\n<span style=\"color: #ff6600;\">0 Spaces remaining. Please see other <span style=\"color: #339966;\"><a style=\"color: #339966;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">events here</a></span></span></strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-12-15 16:26:32','2018-12-15 16:26:32','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(565,1,'2018-04-09 20:50:35','2018-04-09 20:50:35','&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/QDixy8yh1Q0?rel=0&amp;showinfo=0\" width=\"100%\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<h2><strong>Self Hypnosis Introduction Workshop\r\nHosted by Newcastle Hypnotherapy\r\n</strong></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.\r\n<span style=\"color: #ff6600;\">0 Spaces remaining. Please see other <span style=\"color: #339966;\"><a style=\"color: #339966;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">events here</a></span></span></strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>This workshop is £99 for the whole workshop &amp; includes handouts &amp; notes.\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form><script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-04-09 20:50:35','2018-04-09 20:50:35','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(393,1,'2018-03-18 18:38:41','2018-03-18 18:38:41','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n&nbsp;\r\n<h2><strong>The Secrets Of Self Hypnosis Workshop</strong></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong><strong><span class=\"\">,</span></strong><strong> 2018. 1 pm to 4.30 pm.\r\n</strong>The Vault, Wallsend.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Only £99 for the whole workshop &amp; includes handouts &amp; notes.  (£39 for Workshop Newsletter Members)</strong>\r\n<strong>You can join the newsletter below today.</strong>\r\n\r\n<strong>Pay by Paypal at £99 here or join the Workshop Newsletter to pay just £39.</strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\nFor information on future events &amp; news please join our newsletter.</form><script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-18 18:38:41','2018-03-18 18:38:41','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(392,1,'2018-03-18 18:36:34','2018-03-18 18:36:34','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n&nbsp;\r\n<h2><strong>The Secrets Of Self Hypnosis Workshop</strong></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong><strong><span class=\"\">,</span></strong><strong> 2018. 1 pm to 4.30 pm.\r\n</strong>The Vault, Wallsend.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Only £99 for the whole workshop &amp; includes handouts &amp; notes. </strong>\r\n<strong>Please note. </strong>Members of our <strong>Workshop Newsletter</strong> can attend this course for <strong>only £39</strong> for a limited period.\r\n<strong>You can join the newsletter below today.\r\n\r\nPay by Paypal at £99 here or join the Workshop Newsletter to pay just £39</strong>\r\n\r\n<strong><em>\r\n\r\n\r\n\r\n\r\nBook your place now</em> by Card or Paypal to secure your place at the workshop.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\nFor information on future events &amp; news please join our newsletter.</form><script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-18 18:36:34','2018-03-18 18:36:34','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(356,1,'2018-01-20 20:24:59','2018-01-20 20:24:59','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n<strong>SECRETS OF SELF-HYPNOSIS WORKSHOP</strong>\r\nSaturday, February 24th, 2018. Seaton Delaval.\r\nLimited Availability: 8 Places remaining of 12\r\n\r\nJoin us for an enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>several methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax . . . anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, and tension.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation, and how to combine all three.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 for the whole workshop.\r\n\r\nFor more information on our future Workshops &amp; Events, please join our newsletter\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis','','inherit','closed','closed','','347-revision-v1','','','2018-01-20 20:24:59','2018-01-20 20:24:59','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(357,1,'2018-01-20 20:26:30','2018-01-20 20:26:30','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n<span style=\"color: #008000;\"><strong>SECRETS OF SELF-HYPNOSIS WORKSHOP</strong></span>\r\nSaturday, February 24th, 2018. Seaton Delaval.\r\nLimited Availability: 8 Places remaining of 12\r\n\r\nJoin us for an enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\n<span style=\"color: #008000;\"><strong>In this workshop, you will learn:</strong></span>\r\n<ul>\r\n 	<li>several methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax . . . anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, and tension.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation, and how to combine all three.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 for the whole workshop.\r\n\r\n<span style=\"color: #008000;\"><strong>For more information on our future Workshops &amp; Events, please join our newsletter</strong></span>\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis','','inherit','closed','closed','','347-revision-v1','','','2018-01-20 20:26:30','2018-01-20 20:26:30','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(358,1,'2018-01-20 20:27:40','2018-01-20 20:27:40','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n<span style=\"color: #008000;\"><strong>SECRETS OF SELF-HYPNOSIS WORKSHOP</strong></span>\r\nSaturday, February 24th, 2018. Seaton Delaval.\r\nLimited Availability: 8 Places remaining of 12\r\n\r\nJoin us for an enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\n<span style=\"color: #008000;\"><strong>In this workshop, you will learn:</strong></span>\r\n<ul>\r\n 	<li>several methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax . . . anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, and tension.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation, and how to combine all three.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 for the whole workshop &amp; includes handouts &amp; notes.\r\n\r\n<span style=\"color: #008000;\"><strong>For more information on our future Workshops &amp; Events, please join our newsletter</strong></span>\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis','','inherit','closed','closed','','347-revision-v1','','','2018-01-20 20:27:40','2018-01-20 20:27:40','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(360,1,'2018-01-20 20:35:14','2018-01-20 20:35:14','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n<span style=\"color: #008000;\"><strong>SECRETS OF SELF-HYPNOSIS WORKSHOP</strong></span>\r\nSaturday, February 24th, 2018. Seaton Delaval. 1.45pm to 5pm\r\nLimited Availability: 8 Places remaining of 12\r\n\r\nJoin us for an enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\n<span style=\"color: #008000;\"><strong>In this workshop, you will learn:</strong></span>\r\n<ul>\r\n 	<li>several methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax . . . anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, and tension.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation, and how to combine all three.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 for the whole workshop &amp; includes handouts &amp; notes.\r\n\r\n<span style=\"color: #008000;\"><strong>For more information on our future Workshops &amp; Events, please join our newsletter</strong></span>\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis','','inherit','closed','closed','','347-revision-v1','','','2018-01-20 20:35:14','2018-01-20 20:35:14','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(363,1,'2018-01-20 21:18:52','2018-01-20 21:18:52','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n<span style=\"color: #008000;\"><strong>SECRETS OF SELF-HYPNOSIS WORKSHOP</strong></span>\r\nSaturday, February 24th, 2018. Seaton Delaval. 1.45pm to 5pm\r\nLimited Availability: 8 Places remaining of 12\r\n\r\nJoin us for an enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\n<span style=\"color: #008000;\"><strong>In this workshop, you will learn:</strong></span>\r\n<ul>\r\n 	<li>several methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax . . . anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, and tension.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation, and how to combine all three.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 for the whole workshop &amp; includes handouts &amp; notes. <strong>Spaces are limited to just 12 people.</strong>\r\n\r\n<strong><em>Book your place now</em> by Card or Paypal to secure your place at the workshop.</strong>\r\n\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis','','inherit','closed','closed','','347-revision-v1','','','2018-01-20 21:18:52','2018-01-20 21:18:52','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(362,1,'2018-01-20 21:18:01','2018-01-20 21:18:01','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n<span style=\"color: #008000;\"><strong>SECRETS OF SELF-HYPNOSIS WORKSHOP</strong></span>\r\nSaturday, February 24th, 2018. Seaton Delaval. 1.45pm to 5pm\r\nLimited Availability: 8 Places remaining of 12\r\n\r\nJoin us for an enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\n<span style=\"color: #008000;\"><strong>In this workshop, you will learn:</strong></span>\r\n<ul>\r\n 	<li>several methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax . . . anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, and tension.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation, and how to combine all three.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 for the whole workshop &amp; includes handouts &amp; notes. <strong>Spaces are limited to just 12 people.</strong>\r\n\r\n<strong><em>Book your place now</em> by Card or Paypal to secure your place at the workshop.</strong>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"QTK6ABZND8UMY\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal – The safer, easier way to pay online!\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis','','inherit','closed','closed','','347-revision-v1','','','2018-01-20 21:18:01','2018-01-20 21:18:01','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(361,1,'2018-01-20 21:16:17','2018-01-20 21:16:17','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n<span style=\"color: #008000;\"><strong>SECRETS OF SELF-HYPNOSIS WORKSHOP</strong></span>\r\nSaturday, February 24th, 2018. Seaton Delaval. 1.45pm to 5pm\r\nLimited Availability: 8 Places remaining of 12\r\n\r\nJoin us for an enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\n<span style=\"color: #008000;\"><strong>In this workshop, you will learn:</strong></span>\r\n<ul>\r\n 	<li>several methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax . . . anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, and tension.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation, and how to combine all three.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 for the whole workshop &amp; includes handouts &amp; notes. <strong>Spaces are limited to just 12 people.</strong>\r\n\r\n<strong><em>Book your place now</em> by Card or Paypal to secure your place at the workshop.</strong>\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /><span style=\"color: #008000;\"><strong>For more information on our future Workshops &amp; Events, please join our newsletter</strong></span>\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis','','inherit','closed','closed','','347-revision-v1','','','2018-01-20 21:16:17','2018-01-20 21:16:17','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(364,1,'2018-01-20 21:19:28','2018-01-20 21:19:28','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n<span style=\"color: #008000;\"><strong>SECRETS OF SELF-HYPNOSIS WORKSHOP</strong></span>\r\nSaturday, February 24th, 2018. Seaton Delaval. 1.45pm to 5pm\r\nLimited Availability: 8 Places remaining of 12\r\n\r\nJoin us for an enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\n<span style=\"color: #008000;\"><strong>In this workshop, you will learn:</strong></span>\r\n<ul>\r\n 	<li>several methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax . . . anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, and tension.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation, and how to combine all three.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 for the whole workshop &amp; includes handouts &amp; notes. <strong>Spaces are limited to just 12 people.</strong>\r\n\r\n<strong><em>Book your place now</em> by Card or Paypal to secure your place at the workshop.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form><script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis','','inherit','closed','closed','','347-revision-v1','','','2018-01-20 21:19:28','2018-01-20 21:19:28','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(365,1,'2018-01-20 21:20:46','2018-01-20 21:20:46','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n<span style=\"color: #008000;\"><strong>SECRETS OF SELF-HYPNOSIS WORKSHOP</strong></span>\r\nSaturday, February 24th, 2018. Seaton Delaval. 1.45pm to 5pm\r\nLimited Availability: 8 Places remaining of 12\r\n\r\nJoin us for an enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\n<span style=\"color: #008000;\"><strong>In this workshop, you will learn:</strong></span>\r\n<ul>\r\n 	<li>several methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax . . . anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, and tension.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation, and how to combine all three.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 for the whole workshop &amp; includes handouts &amp; notes. <strong>Spaces are limited to just 12 people.</strong>\r\n\r\n<strong><em>Book your place now</em> by Card or Paypal to secure your place at the workshop.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\nFor information on future events &amp; news please join our newsletter.\r\n\r\n</form><script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis','','inherit','closed','closed','','347-revision-v1','','','2018-01-20 21:20:46','2018-01-20 21:20:46','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(366,1,'2018-01-20 21:24:24','2018-01-20 21:24:24','It is so easy to contact us.\r\n<strong>Telephone 07568 455 809</strong>\r\n\r\nEmail us\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','CONTACT US','','publish','closed','closed','','contact-us','','','2018-09-02 16:28:56','2018-09-02 16:28:56','',0,'http://www.newcastle-hypnotherapy.com/?page_id=366',99,'page','',0),(1302,1,'2018-08-18 10:52:41','2018-08-18 10:52:41','It is so easy to contact us.\r\n<strong>Telephone 07568 455 809</strong>\r\n\r\nEmail us\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Contact Us','','inherit','closed','closed','','366-revision-v1','','','2018-08-18 10:52:41','2018-08-18 10:52:41','',366,'https://www.newcastle-hypnotherapy.com/366-revision-v1/',0,'revision','',0),(367,1,'2018-01-20 21:24:24','2018-01-20 21:24:24','It is so easy to contact us.\r\nTelephone 07568 455 809\r\n\r\nEmail us\r\n[wpforms id=\"35\"]','Contact Us','','inherit','closed','closed','','366-revision-v1','','','2018-01-20 21:24:24','2018-01-20 21:24:24','',366,'http://www.newcastle-hypnotherapy.com/366-revision-v1/',0,'revision','',0),(368,1,'2018-01-20 21:25:25','2018-01-20 21:25:25','It is so easy to contact us.\r\nTelephone 07568 455 809\r\n\r\nEmail us\r\n[wpforms id=\"35\"]\r\n\r\nJoin our newsletter\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Contact Us','','inherit','closed','closed','','366-revision-v1','','','2018-01-20 21:25:25','2018-01-20 21:25:25','',366,'http://www.newcastle-hypnotherapy.com/366-revision-v1/',0,'revision','',0),(369,1,'2018-01-20 21:25:57','2018-01-20 21:25:57','It is so easy to contact us.\r\n<strong>Telephone 07568 455 809</strong>\r\n\r\nEmail us\r\n[wpforms id=\"35\"]\r\n\r\nJoin our newsletter\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Contact Us','','inherit','closed','closed','','366-revision-v1','','','2018-01-20 21:25:57','2018-01-20 21:25:57','',366,'http://www.newcastle-hypnotherapy.com/366-revision-v1/',0,'revision','',0),(371,1,'2018-02-05 22:33:13','2018-02-05 22:33:13','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n<span style=\"color: #008000;\"><strong>SECRETS OF SELF-HYPNOSIS WORKSHOP</strong></span>\r\nSaturday, February 24th, 2018. Seaton Delaval. 1.45pm to 5pm\r\n<span style=\"color: #ff0000;\"><strong>Limited Availability: 6</strong></span> <strong>Places remaining of 12</strong>\r\n\r\nJoin us for an enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\n<span style=\"color: #008000;\"><strong>In this workshop, you will learn:</strong></span>\r\n<ul>\r\n 	<li>several methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax . . . anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, and tension.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation, and how to combine all three.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 for the whole workshop &amp; includes handouts &amp; notes. <strong>Spaces are limited to just 12 people.</strong>\r\n\r\n<strong><em>Book your place now</em> by Card or Paypal to secure your place at the workshop.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\nFor information on future events &amp; news please join our newsletter.</form><script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis','','inherit','closed','closed','','347-revision-v1','','','2018-02-05 22:33:13','2018-02-05 22:33:13','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(372,1,'2018-02-05 22:33:32','2018-02-05 22:33:32','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n<span style=\"color: #008000;\"><strong>SECRETS OF SELF-HYPNOSIS WORKSHOP</strong></span>\r\nSaturday, February 24th, 2018. Seaton Delaval. 1.45pm to 5pm\r\n<span style=\"color: #ff0000;\"><strong>Limited Availability: <span style=\"color: #008000;\">6</span></strong></span><span style=\"color: #008000;\"> <strong>Places remaining of 12</strong></span>\r\n\r\nJoin us for an enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\n\r\n<span style=\"color: #008000;\"><strong>In this workshop, you will learn:</strong></span>\r\n<ul>\r\n 	<li>several methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax . . . anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, and tension.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation, and how to combine all three.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals. Further training in these areas will be available soon.\r\n\r\nOnly £39 for the whole workshop &amp; includes handouts &amp; notes. <strong>Spaces are limited to just 12 people.</strong>\r\n\r\n<strong><em>Book your place now</em> by Card or Paypal to secure your place at the workshop.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\nFor information on future events &amp; news please join our newsletter.</form><script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis','','inherit','closed','closed','','347-revision-v1','','','2018-02-05 22:33:32','2018-02-05 22:33:32','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(376,1,'2018-03-04 17:07:34','2018-03-04 17:07:34','<span style=\"color: #008000;\"><strong>Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Review by Kris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Reviews - What Our Clients Say','','inherit','closed','closed','','200-revision-v1','','','2018-03-04 17:07:34','2018-03-04 17:07:34','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(385,1,'2018-10-29 17:45:23','2018-10-29 17:45:23','<h2>Thanks for joining our newsletter and your email will be with you shortly.</h2>\r\n&nbsp;\r\n\r\n[embed]https://youtu.be/CXB3uPmBR6Q[/embed]','Thank You','','publish','closed','closed','','thank-you','','','2018-10-29 17:45:23','2018-10-29 17:45:23','',0,'http://www.newcastle-hypnotherapy.com/?page_id=385',0,'page','',0),(377,1,'2018-03-04 17:10:48','2018-03-04 17:10:48','<span style=\"color: #008000;\"><strong>Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Review by Kris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Reviews - What Our Clients Say','','inherit','closed','closed','','200-revision-v1','','','2018-03-04 17:10:48','2018-03-04 17:10:48','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(378,1,'2018-03-04 17:20:40','2018-03-04 17:20:40','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\n<strong>Please follow the instructions below to arrange your free consultation with me - it\'s fast and easy.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Simply Pick Your Time Slot Below</strong></span></h2>\r\n<pre><code>[ssa_booking type=free-15-minute-phone-strategy-session]</code></pre>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1244\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />To arrange your free consultation simply pick a time above for the the time best suited for you.<em>\r\n</em>You can also call us on <em><strong>07568 455 809</strong></em>.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div><span style=\"color: #ffffff;\">.</span></div>\r\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\r\n<div>Hypnotherapy near me?\r\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\r\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\r\nSimply ask and we can usually find a suitable location perfect for you.</div>\r\n<div></div>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<div></div>','FREE CONSULTATION','','publish','closed','closed','','free-consultation-newcastle-hypnotherapy','','','2018-09-25 13:34:31','2018-09-25 13:34:31','',0,'http://www.newcastle-hypnotherapy.com/?page_id=378',20,'page','',0),(381,1,'2018-03-04 17:24:49','2018-03-04 17:24:49','<p class=\"title\">I look forward to speaking with you soon discuss how we can help you.</p>\r\n\r\n<div class=\"page-desc\">\r\n\r\nPhone <strong>07568 455 809</strong> Today or complete your details below.\r\n\r\n[wpforms id=\"35\"]\r\n\r\n</div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-03-04 17:24:49','2018-03-04 17:24:49','',378,'http://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(379,1,'2018-03-04 17:20:40','2018-03-04 17:20:40','<h1 class=\"title\">Connect With Us</h1>\r\n<div class=\"page-desc\">\r\n<h4 class=\"title\">I look forward to speaking with you soon discuss how we can help you. Calls will be returned within the next day.\r\n\r\nPhone 07568 455 809 Today or complete your details below.\r\n\r\n[wpforms id=\"35\"]</h4>\r\n</div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-03-04 17:20:40','2018-03-04 17:20:40','',378,'http://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(380,1,'2018-03-04 17:23:58','2018-03-04 17:23:58','<h1 class=\"title\">I look forward to speaking with you soon discuss how we can help you. Calls will be returned within the next day.</h1>\r\n<div class=\"page-desc\">\r\n\r\nPhone 07568 455 809 Today or complete your details below.\r\n\r\n[wpforms id=\"35\"]\r\n\r\n</div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-03-04 17:23:58','2018-03-04 17:23:58','',378,'http://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(382,1,'2018-03-04 17:25:17','2018-03-04 17:25:17','<p class=\"title\">I look forward to speaking with you soon to discuss how we can help you.</p>\r\n\r\n<div class=\"page-desc\">\r\n\r\nPhone <strong>07568 455 809</strong> Today or complete your details below.\r\n\r\n[wpforms id=\"35\"]\r\n\r\n</div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-03-04 17:25:17','2018-03-04 17:25:17','',378,'http://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(383,1,'2018-09-25 13:33:33','2018-09-25 13:33:33','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\nOur clients tell us they love the initial free consultation.\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\n\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\n\nPlease follow the instructions  time with me - it\'s fast and easy.\n<h2><span style=\"color: #008000;\"><strong>Simply Pick Your Time Slot Below</strong></span></h2>\n<pre><code>[ssa_booking type=free-15-minute-phone-strategy-session]</code></pre>\n&nbsp;\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span></h2>\n<img class=\"alignleft size-medium wp-image-1244\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />To arrange your free consultation simply pick a time above for the the time best suited for you.<em>\n</em>You can also call us on <em><strong>07568 455 809</strong></em>.\n\nI look forward to speaking with you soon to discuss how we can help you.\n<div class=\"page-desc\">\n\n&nbsp;\n\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\n\n</div>\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\n</strong></span></h2>\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\n\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\n<div></div>\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\n<div></div>\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\n<div></div>\n<div><span style=\"color: #ffffff;\">.</span></div>\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\n<div>Hypnotherapy near me?\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\nSimply ask and we can usually find a suitable location perfect for you.</div>\n<div></div>\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\n<div></div>','FREE CONSULTATION','','inherit','closed','closed','','378-autosave-v1','','','2018-09-25 13:33:33','2018-09-25 13:33:33','',378,'http://www.newcastle-hypnotherapy.com/378-autosave-v1/',0,'revision','',0),(384,1,'2018-03-04 17:27:03','2018-03-04 17:27:03','<p class=\"title\">I look forward to speaking with you soon to discuss how we can help you.</p>\r\n\r\n<div class=\"page-desc\">\r\n\r\nSimply call <strong>07568 455 809</strong> today or complete your details below. We will call you back as quickly as possible\r\n\r\n[wpforms id=\"35\"]\r\n\r\n</div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-03-04 17:27:03','2018-03-04 17:27:03','',378,'http://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(387,1,'2018-03-05 23:22:22','2018-03-05 23:22:22','<span style=\"color: #008000;\"><strong><img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2018-03-05 23:22:22','2018-03-05 23:22:22','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(388,1,'2018-03-06 13:25:53','2018-03-06 13:25:53','<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>\r\n<span style=\"color: #008000;\"><strong><img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2018-03-06 13:25:53','2018-03-06 13:25:53','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(386,1,'2018-03-05 23:20:33','2018-03-05 23:20:33','<span style=\"color: #008000;\"><strong><img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<!-- Begin MailChimp Signup Form -->\r\n\r\n<style type=\"text/css\">\r\n	#mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; }<br />\r\n	/* Add your own MailChimp form style overrides in your site stylesheet or in this style block.<br />\r\n	   We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */<br />\r\n</style>\r\n<div id=\"mc_embed_signup\"><form id=\"mc-embedded-subscribe-form\" class=\"validate\" action=\"https://newcastle-hypnotherapy.us17.list-manage.com/subscribe/post?u=40aa05bd1c8984cc46693bcdf&amp;id=fe9511afe5\" method=\"post\" name=\"mc-embedded-subscribe-form\" novalidate=\"\" target=\"_blank\">\r\n<div id=\"mc_embed_signup_scroll\">\r\n<h2>Subscribe to our mailing list</h2>\r\n<div class=\"indicates-required\"><span class=\"asterisk\">*</span> indicates required</div>\r\n<div class=\"mc-field-group\"><label for=\"mce-FNAME\">First Name </label>\r\n<input id=\"mce-FNAME\" class=\"\" name=\"FNAME\" type=\"text\" value=\"\" /></div>\r\n<div class=\"mc-field-group\"><label for=\"mce-EMAIL\">Email Address <span class=\"asterisk\">*</span>\r\n</label>\r\n<input id=\"mce-EMAIL\" class=\"required email\" name=\"EMAIL\" type=\"email\" value=\"\" /></div>\r\n<div id=\"mce-responses\" class=\"clear\">\r\n<div id=\"mce-error-response\" class=\"response\" style=\"display: none;\"></div>\r\n<div id=\"mce-success-response\" class=\"response\" style=\"display: none;\"></div>\r\n</div>\r\n<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->\r\n<div style=\"position: absolute; left: -5000px;\" aria-hidden=\"true\"><input tabindex=\"-1\" name=\"b_40aa05bd1c8984cc46693bcdf_fe9511afe5\" type=\"text\" value=\"\" /></div>\r\n<div class=\"clear\"><input id=\"mc-embedded-subscribe\" class=\"button\" name=\"subscribe\" type=\"submit\" value=\"Subscribe\" /></div>\r\n</div>\r\n</form></div>\r\n<script type=\'text/javascript\' src=\'//s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js\'></script><script type=\'text/javascript\'>(function($) {window.fnames = new Array(); window.ftypes = new Array();fnames[1]=\'FNAME\';ftypes[1]=\'text\';fnames[0]=\'EMAIL\';ftypes[0]=\'email\';}(jQuery));var $mcj = jQuery.noConflict(true);</script>\r\n<!--End mc_embed_signup-->\r\n<span style=\"color: #008000;\"><strong>Common symptoms of anxiety can be:</strong></span>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2018-03-05 23:20:33','2018-03-05 23:20:33','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(389,1,'2018-03-06 13:31:24','2018-03-06 13:31:24','<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>\r\n<span style=\"color: #008000;\"><strong><img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]','Anxiety','','inherit','closed','closed','','68-revision-v1','','','2018-03-06 13:31:24','2018-03-06 13:31:24','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(391,1,'2018-03-18 15:16:36','2018-03-18 15:16:36','<iframe width=\"1600\" height=\"900\" src=\"https://www.youtube.com/embed/OWeDKoIMFug?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>','','','publish','closed','closed','','a9c8edf952cd31c3d52cea740990412a','','','2018-03-18 15:16:36','2018-03-18 15:16:36','',0,'http://www.newcastle-hypnotherapy.com/a9c8edf952cd31c3d52cea740990412a/',0,'oembed_cache','',0),(394,1,'2018-03-18 18:48:09','2018-03-18 18:48:09','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n&nbsp;\r\n<h2><strong>The Secrets Of Self Hypnosis Workshop</strong></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\n</strong>The Vault, Wallsend.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Only £99 for the whole workshop &amp; includes handouts &amp; notes.  (£39 for Workshop Newsletter Members)</strong>\r\n<strong>You can join the newsletter below today.</strong>\r\n\r\n<strong>Pay by Paypal at £99 here or join the Workshop Newsletter to pay just £39.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\nFor information on future events &amp; news please join our newsletter.</form><script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-18 18:48:09','2018-03-18 18:48:09','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(396,1,'2018-03-18 20:45:24','2018-03-18 20:45:24','<iframe src=\"https://www.youtube.com/embed/QDixy8yh1Q0?rel=0&amp;controls=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<h2><strong>The Secrets Of Self Hypnosis Workshop</strong></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\n</strong>The Vault, Wallsend.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Only £99 for the whole workshop &amp; includes handouts &amp; notes.  (<span style=\"color: #ff6600;\">£39 for Workshop Newsletter Members</span>)</strong>\r\n<strong>You can join the newsletter below today.</strong>\r\n\r\n<strong>Pay by Paypal at £99 here or join the Workshop Newsletter to pay just £39.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\nFor information on future events &amp; news please join our newsletter.</form><script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-18 20:45:24','2018-03-18 20:45:24','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(395,1,'2018-03-18 18:48:55','2018-03-18 18:48:55','<img class=\"wp-image-326 size-medium alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n\r\n&nbsp;\r\n<h2><strong>The Secrets Of Self Hypnosis Workshop</strong></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\n</strong>The Vault, Wallsend.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Only £99 for the whole workshop &amp; includes handouts &amp; notes.  (<span style=\"color: #ff6600;\">£39 for Workshop Newsletter Members</span>)</strong>\r\n<strong>You can join the newsletter below today.</strong>\r\n\r\n<strong>Pay by Paypal at £99 here or join the Workshop Newsletter to pay just £39.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\nFor information on future events &amp; news please join our newsletter.</form><script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-18 18:48:55','2018-03-18 18:48:55','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(405,1,'2018-03-19 21:13:13','2018-03-19 21:13:13','\r\n\r\n\r\n\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Only £99 for the whole workshop &amp; includes handouts &amp; notes.\r\n(<span style=\"color: #ff6600;\">£39 for Workshop Newsletter Members</span>)</strong>\r\n<strong>You can join the newsletter below today.</strong>\r\n\r\n<strong>Pay by Paypal at £99 here or join the Workshop Newsletter to pay just £39.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>For information on future events &amp; news please join our newsletter.\r\n\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-19 21:13:13','2018-03-19 21:13:13','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(397,1,'2018-03-18 20:47:48','2018-03-18 20:47:48','<iframe src=\"https://www.youtube.com/embed/QDixy8yh1Q0?rel=0&amp;controls=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2><span style=\"color: #008000;\"><strong>The Secrets Of Self Hypnosis Workshop\r\n<span style=\"color: #003300;\">Hosted by Newcastle Hypnotherapy</span></strong></span></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\n</strong>The Vault, Wallsend.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Only £99 for the whole workshop &amp; includes handouts &amp; notes.  (<span style=\"color: #ff6600;\">£39 for Workshop Newsletter Members</span>)</strong>\r\n<strong>You can join the newsletter below today.</strong>\r\n\r\n<strong>Pay by Paypal at £99 here or join the Workshop Newsletter to pay just £39.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\nFor information on future events &amp; news please join our newsletter.</form><script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-18 20:47:48','2018-03-18 20:47:48','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(398,1,'2018-03-18 20:51:54','2018-03-18 20:51:54','<iframe src=\"https://www.youtube.com/embed/QDixy8yh1Q0?rel=0&amp;controls=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2><span style=\"color: #008000;\"><strong>The Secrets Of Self Hypnosis Workshop\r\n<span style=\"color: #003300;\">Hosted by Newcastle Hypnotherapy</span></strong></span></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Only £99 for the whole workshop &amp; includes handouts &amp; notes.  (<span style=\"color: #ff6600;\">£39 for Workshop Newsletter Members</span>)</strong>\r\n<strong>You can join the newsletter below today.</strong>\r\n\r\n<strong>Pay by Paypal at £99 here or join the Workshop Newsletter to pay just £39.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\nFor information on future events &amp; news please join our newsletter.</form><script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-18 20:51:54','2018-03-18 20:51:54','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(399,1,'2018-03-18 20:55:49','2018-03-18 20:55:49','We run regular workshops &amp; events.\r\nFor the latest information by email please join our newsletter below.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/secrets-self-hypnosis/\">Secrets Of Self Hypnosis Workshop - 21st April </a></strong>\r\n\r\n.\r\n\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-03-18 20:55:49','2018-03-18 20:55:49','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(400,1,'2018-03-18 21:18:43','2018-03-18 21:18:43','<iframe src=\"https://www.youtube.com/embed/QDixy8yh1Q0?rel=0&amp;controls=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2><span style=\"color: #008000;\"><strong>The Secrets Of Self Hypnosis Workshop\r\n<span style=\"color: #003300;\">Hosted by Newcastle Hypnotherapy</span></strong></span></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Only £99 for the whole workshop &amp; includes handouts &amp; notes.\r\n(<span style=\"color: #ff6600;\">£39 for Workshop Newsletter Members</span>)</strong>\r\n<strong>You can join the newsletter below today.</strong>\r\n\r\n<strong>Pay by Paypal at £99 here or join the Workshop Newsletter to pay just £39.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\r\nFor information on future events &amp; news please join our newsletter.\r\n\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-18 21:18:43','2018-03-18 21:18:43','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(404,1,'2018-03-19 21:12:41','2018-03-19 21:12:41','[embed]https://www.youtube.com/watch?v=QDixy8yh1Q0[/embed]\r\n\r\n<span style=\"color: #003300;\">Hosted by Newcastle Hypnotherapy</span>\r\n\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Only £99 for the whole workshop &amp; includes handouts &amp; notes.\r\n(<span style=\"color: #ff6600;\">£39 for Workshop Newsletter Members</span>)</strong>\r\n<strong>You can join the newsletter below today.</strong>\r\n\r\n<strong>Pay by Paypal at £99 here or join the Workshop Newsletter to pay just £39.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>For information on future events &amp; news please join our newsletter.\r\n\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-19 21:12:41','2018-03-19 21:12:41','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(403,1,'2018-03-19 21:11:23','2018-03-19 21:11:23','<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0&amp;controls=0\" width=\"560\" height=\"315\" frameborder=\"0\"></iframe>\r\n<h2><span style=\"color: #008000;\"><strong>The Secrets Of Self Hypnosis Workshop\r\n<span style=\"color: #003300;\">Hosted by Newcastle Hypnotherapy</span></strong></span></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Only £99 for the whole workshop &amp; includes handouts &amp; notes.\r\n(<span style=\"color: #ff6600;\">£39 for Workshop Newsletter Members</span>)</strong>\r\n<strong>You can join the newsletter below today.</strong>\r\n\r\n<strong>Pay by Paypal at £99 here or join the Workshop Newsletter to pay just £39.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>For information on future events &amp; news please join our newsletter.\r\n\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-19 21:11:23','2018-03-19 21:11:23','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(402,1,'2018-03-19 21:03:59','2018-03-19 21:03:59','&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Secrets Of Self Hypnosis Workshop\r\n<span style=\"color: #003300;\">Hosted by Newcastle Hypnotherapy</span></strong></span></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Only £99 for the whole workshop &amp; includes handouts &amp; notes.\r\n(<span style=\"color: #ff6600;\">£39 for Workshop Newsletter Members</span>)</strong>\r\n<strong>You can join the newsletter below today.</strong>\r\n\r\n<strong>Pay by Paypal at £99 here or join the Workshop Newsletter to pay just £39.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>For information on future events &amp; news please join our newsletter.\r\n\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-19 21:03:59','2018-03-19 21:03:59','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0);
INSERT INTO `wpqj_posts` VALUES (401,1,'2018-03-19 21:02:59','2018-03-19 21:02:59','<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/QDixy8yh1Q0?rel=0&amp;controls=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\r\n<h2><span style=\"color: #008000;\"><strong>The Secrets Of Self Hypnosis Workshop\r\n<span style=\"color: #003300;\">Hosted by Newcastle Hypnotherapy</span></strong></span></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Only £99 for the whole workshop &amp; includes handouts &amp; notes.\r\n(<span style=\"color: #ff6600;\">£39 for Workshop Newsletter Members</span>)</strong>\r\n<strong>You can join the newsletter below today.</strong>\r\n\r\n<strong>Pay by Paypal at £99 here or join the Workshop Newsletter to pay just £39.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>For information on future events &amp; news please join our newsletter.\r\n\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-19 21:02:59','2018-03-19 21:02:59','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(406,1,'2018-03-19 21:15:40','2018-03-19 21:15:40','<iframe src=\"https://www.youtube.com/embed/QDixy8yh1Q0?rel=0&amp;controls=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Only £99 for the whole workshop &amp; includes handouts &amp; notes.\r\n(<span style=\"color: #ff6600;\">£39 for Workshop Newsletter Members</span>)</strong>\r\n<strong>You can join the newsletter below today.</strong>\r\n\r\n<strong>Pay by Paypal at £99 here or join the Workshop Newsletter to pay just £39.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>For information on future events &amp; news please join our newsletter.\r\n\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-19 21:15:40','2018-03-19 21:15:40','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(407,1,'2018-03-19 21:28:33','2018-03-19 21:28:33','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/QDixy8yh1Q0\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Only £99 for the whole workshop &amp; includes handouts &amp; notes.\r\n(<span style=\"color: #ff6600;\">£39 for Workshop Newsletter Members</span>)</strong>\r\n<strong>You can join the newsletter below today.</strong>\r\n\r\n<strong>Pay by Paypal at £99 here or join the Workshop Newsletter to pay just £39.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>For information on future events &amp; news please join our newsletter.\r\n\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-19 21:28:33','2018-03-19 21:28:33','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(408,1,'2018-03-19 21:30:25','2018-03-19 21:30:25','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/QDixy8yh1Q0?rel=0&amp;controls=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Only £99 for the whole workshop &amp; includes handouts &amp; notes.\r\n(<span style=\"color: #ff6600;\">£39 for Workshop Newsletter Members</span>)</strong>\r\n<strong>You can join the newsletter below today.</strong>\r\n\r\n<strong>Pay by Paypal at £99 here or join the Workshop Newsletter to pay just £39.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>For information on future events &amp; news please join our newsletter.\r\n\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-19 21:30:25','2018-03-19 21:30:25','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(409,1,'2018-03-19 21:33:37','2018-03-19 21:33:37','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/QDixy8yh1Q0?rel=0&amp;controls=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<h2><strong>Self Hypnosis Workshop - Hosted by Newcastle Hypnotherapy\r\n</strong></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Only £99 for the whole workshop &amp; includes handouts &amp; notes.\r\n(<span style=\"color: #ff6600;\">£39 for Workshop Newsletter Members</span>)</strong>\r\n<strong>You can join the newsletter below today.</strong>\r\n\r\n<strong>Pay by Paypal at £99 here or join the Workshop Newsletter to pay just £39.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>For information on future events &amp; news please join our newsletter.\r\n\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-19 21:33:37','2018-03-19 21:33:37','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(420,0,'2018-03-31 20:17:58','0000-00-00 00:00:00','<p>\n<strong>Help us improve WPForms</strong><br />\nWe&#8217;re celebrating WPForms&#8217; 2nd birthday. Since the launch of WPForms two years ago, it is now being used by over 900,000 websites. As we plan for the next three years, we need your feedback &#8211; it&#8217;ll take less than 90 seconds.\n</p>\n<p><a href=\"https://wpforms.com/wpforms-nps-survey-2018/?utm_source=wpdashboard&#038;utm_medium=amnotification&#038;utm_campaign=npssurvey\" target=\"_blank\" class=\"button button-primary\">Share your feedback and help improve WPForms &raquo;</a> <a href=\"https://wpforms.com/wpforms-turns-2-years-old-whats-new-whats-coming-next/?utm_source=wpdashboard&#038;utm_medium=amnotification&#038;utm_campaign=npssurvey\" class=\"button button-secondary\" target=\"_blank\">Read our Annual Recap to See What&#8217;s New in WPForms</a></p>\n<p>Thanks as always for your continuous support of WPForms!<br />\nSyed Balkhi<br />\nFounder of WPForms<br />\nP.S. there&#8217;s a limited time 30% off coupon at the end of the survey :)</p>\n','','','draft','closed','closed','','','','','2018-03-31 20:17:58','0000-00-00 00:00:00','',0,'http://www.newcastle-hypnotherapy.com/?post_type=amn_wpforms-lite&p=420',0,'amn_wpforms-lite','',0),(411,1,'2018-03-21 10:30:53','2018-03-21 10:30:53','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/QDixy8yh1Q0?rel=0&amp;controls=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<h2><strong>Self Hypnosis Introduction Workshop\r\nHosted by Newcastle Hypnotherapy\r\n</strong></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Only £99 for the whole workshop &amp; includes handouts &amp; notes.\r\n(<span style=\"color: #ff6600;\">£39 for Workshop Newsletter Members</span>)</strong>\r\n<strong>You can join the newsletter below today.</strong>\r\n\r\n<strong>Pay by Paypal at £99 here or join the Workshop Newsletter to pay just £39.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>For information on future events &amp; news please join our newsletter.\r\n\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-21 10:30:53','2018-03-21 10:30:53','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(413,1,'2018-03-21 12:05:39','2018-03-21 12:05:39','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/QDixy8yh1Q0?rel=0&amp;controls=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<h2><strong>Self Hypnosis Introduction Workshop\r\nHosted by Newcastle Hypnotherapy\r\n</strong></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>This workshop is normally £99 for the whole workshop &amp; includes handouts &amp; notes.\r\n<span style=\"color: #ff6600;\"><em><span style=\"color: #000000;\">You can book</span></em> for just £39 <span style=\"color: #000000;\">when you</span> join the newsletter below today.</span></strong>\r\n\r\n<strong>Pay by Paypal at £99 here or join the Workshop Newsletter to pay just £39.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"QTK6ABZND8UMY\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal – The safer, easier way to pay online!\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-21 12:05:39','2018-03-21 12:05:39','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(412,1,'2018-03-21 11:36:55','2018-03-21 11:36:55','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/QDixy8yh1Q0?rel=0&amp;controls=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<h2><strong>Self Hypnosis Introduction Workshop\r\nHosted by Newcastle Hypnotherapy\r\n</strong></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>This workshop is normally £99 for the whole workshop &amp; includes handouts &amp; notes.\r\n<span style=\"color: #ff6600;\"><em><span style=\"color: #000000;\">You can book</span></em> for just £39 <span style=\"color: #000000;\">when you</span> join the newsletter below today.</span></strong>\r\n\r\n<strong>Pay by Paypal at £99 here or join the Workshop Newsletter to pay just £39.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>For information on future events &amp; news please join our newsletter.\r\n\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-21 11:36:55','2018-03-21 11:36:55','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(415,1,'2018-03-21 12:11:50','2018-03-21 12:11:50','&nbsp;\r\n<div class=\"embed-container\"></div>\r\n<h2><strong>Self Hypnosis Introduction Workshop\r\nHosted by Newcastle Hypnotherapy\r\n</strong></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>This workshop is normally £99 for the whole workshop &amp; includes handouts &amp; notes.\r\nThe price is reduced for those that book before the 15th Of April, while places are still available.</strong>\r\n\r\n<span style=\"color: #ff6600;\"><em><span style=\"color: #000000;\">You can book</span></em> for just £39 <span style=\"color: #000000;\">when you book today and further details will be sent to you shortly.</span></span>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form><script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-21 12:11:50','2018-03-21 12:11:50','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(414,1,'2018-03-21 12:08:36','2018-03-21 12:08:36','<style><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/QDixy8yh1Q0?rel=0&amp;controls=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<h2><strong>Self Hypnosis Introduction Workshop\r\nHosted by Newcastle Hypnotherapy\r\n</strong></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>This workshop is normally £99 for the whole workshop &amp; includes handouts &amp; notes.\r\nThe price is reduced for those that book before the 15th Of April, while places are still available.\r\n\r\n<span style=\"color: #ff6600;\"><em><span style=\"color: #000000;\">You can book</span></em> for just £39 <span style=\"color: #000000;\">when you book today and further details will be sent to you shortly.</span></span></strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form><script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-21 12:08:36','2018-03-21 12:08:36','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(416,1,'2018-03-21 12:14:16','2018-03-21 12:14:16','&nbsp;\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://www.youtube.com/embed/QDixy8yh1Q0\' frameborder=\'0\' allowfullscreen></iframe></div>\r\n<div class=\"embed-container\"></div>\r\n<h2><strong>Self Hypnosis Introduction Workshop\r\nHosted by Newcastle Hypnotherapy\r\n</strong></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>This workshop is normally £99 for the whole workshop &amp; includes handouts &amp; notes.\r\nThe price is reduced for those that book before the 15th Of April, while places are still available.</strong>\r\n\r\n<span style=\"color: #ff6600;\"><em><span style=\"color: #000000;\">You can book</span></em> for just £39 <span style=\"color: #000000;\">when you book today and further details will be sent to you shortly.</span></span>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form><script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-21 12:14:16','2018-03-21 12:14:16','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(417,1,'2018-03-21 12:15:47','2018-03-21 12:15:47','&nbsp;\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/QDixy8yh1Q0?rel=0&amp;controls=0&amp;showinfo=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe></div>\r\n<h2><strong>Self Hypnosis Introduction Workshop\r\nHosted by Newcastle Hypnotherapy\r\n</strong></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>This workshop is normally £99 for the whole workshop &amp; includes handouts &amp; notes.\r\nThe price is reduced for those that book before the 15th Of April, while places are still available.</strong>\r\n\r\n<span style=\"color: #ff6600;\"><em><span style=\"color: #000000;\">You can book</span></em> for just £39 <span style=\"color: #000000;\">when you book today and further details will be sent to you shortly.</span></span>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form><script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-21 12:15:47','2018-03-21 12:15:47','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(418,1,'2018-03-21 12:18:02','2018-03-21 12:18:02','&nbsp;\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/QDixy8yh1Q0?rel=0&amp;showinfo=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe></div>\r\n<h2><strong>Self Hypnosis Introduction Workshop\r\nHosted by Newcastle Hypnotherapy\r\n</strong></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>This workshop is normally £99 for the whole workshop &amp; includes handouts &amp; notes.\r\nThe price is reduced for those that book before the 15th Of April, while places are still available.</strong>\r\n\r\n<span style=\"color: #ff6600;\"><em><span style=\"color: #000000;\">You can book</span></em> for just £39 <span style=\"color: #000000;\">when you book today and further details will be sent to you shortly.</span></span>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form><script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-21 12:18:02','2018-03-21 12:18:02','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(419,1,'2018-03-23 14:15:14','2018-03-23 14:15:14','&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/QDixy8yh1Q0?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<h2><strong>Self Hypnosis Introduction Workshop\r\nHosted by Newcastle Hypnotherapy\r\n</strong></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.\r\n<span style=\"color: #ff6600;\">8 Spaces remaining</span></strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>This workshop is normally £99 for the whole workshop &amp; includes handouts &amp; notes.\r\nThe price is reduced for those that book before the 15th Of April, while places are still available.</strong>\r\n\r\n<span style=\"color: #ff6600;\"><em><span style=\"color: #000000;\">You can book</span></em> for just £39 <span style=\"color: #000000;\">when you book today and further details will be sent to you shortly.</span></span>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"QTK6ABZND8UMY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form><script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-03-23 14:15:14','2018-03-23 14:15:14','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(563,1,'2018-04-09 20:46:41','2018-04-09 20:46:41','&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/QDixy8yh1Q0?rel=0&amp;showinfo=0\" width=\"75%\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<h2><strong>Self Hypnosis Introduction Workshop\r\nHosted by Newcastle Hypnotherapy\r\n</strong></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.\r\n<span style=\"color: #ff6600;\">8 Spaces remaining</span></strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>This workshop is £99 for the whole workshop &amp; includes handouts &amp; notes.\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form><script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-04-09 20:46:41','2018-04-09 20:46:41','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(422,1,'2018-03-31 20:23:28','2018-03-31 20:23:28','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/CXB3uPmBR6Q?rel=0&amp;controls=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Self Hypnosis for Stress &amp; Anxiety</strong> - Introduction Workshop\r\n</span></h2>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.\r\n\r\n<span style=\"color: #ff0000;\">We will announce a new date shortly.</span>\r\n<span style=\"color: #ff0000;\">Complete the form below for an update as it happens</span></strong></span>\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<strong><span style=\"color: #008000;\">For more information or details of other Self-Hypnosis Workshops &amp; Events please join the events newsletter below</span></strong>.\r\n[contact-form-7 id=\"447\" title=\"Contact form 1\"]\r\n\r\nHypnosis is a wonderful, powerful, and natural ability of the mind, something we do many times each day. You can learn how to harness this power to help you feel how you want to feel and focus on what is important to you.\r\n\r\nYou can learn to use Self-Hypnosis and explore the many benefits through our workshops or one to one in a regular session.\r\n\r\nOnce you master self-hypnosis you can enable it very quickly, in a matter of seconds to change your state and switch your focus. You can quickly use it to relax, de-stress, remove anxiety or enter a calm, natural sleep.\r\n\r\nTake the next step and learn Self-hypnosis.\r\n\r\nCall us on 07568 455 809 to see how Self-Hypnosis can help you.','Self Hypnosis For Stress & Anxiety - 19th May','','publish','closed','closed','','self-hypnosis-stress-anxiety','','','2018-05-29 06:28:26','2018-05-29 06:28:26','',322,'http://www.newcastle-hypnotherapy.com/?page_id=422',5,'page','',0),(423,1,'2018-03-31 20:23:28','2018-03-31 20:23:28','<h2>Self Hypnosis for Stress &amp; Anxiety - Introduction Workshop</h2>\r\n<div></div>\r\n<div>Imagine the ability to learn Self-Hypnosis and take charge of your Anxiety and Stress.</div>\r\n<div></div>\r\n<div>Self-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. The benefits can be amazing and improve the more you use them.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<h2>In this enjoyable Self-Hypnosis workshop you will learn:</h2>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>','Self Hypnosis For Stress & Anxiety','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 20:23:28','2018-03-31 20:23:28','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(424,1,'2018-05-29 06:28:14','2018-05-29 06:28:14','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/CXB3uPmBR6Q?rel=0&amp;controls=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\n<h2></h2>\n<h2><span style=\"color: #008000;\"><strong>Self Hypnosis for Stress &amp; Anxiety</strong> - Introduction Workshop\n</span></h2>\n<div>\n\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\n\n</div>\n<div></div>\n<div>\n\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\n\n</div>\n<div></div>\n<div></div>\n<div></div>\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\n<ul>\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\n 	<li>how to reduce bad habits and behavior.</li>\n 	<li>how to program your unconscious to help you attain your goals.</li>\n 	<li>to improve your ability to concentrate and focus.</li>\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\n 	<li>how to build self-confidence.</li>\n 	<li>how to handle problems and challenges better.</li>\n 	<li>how to help others and yourself with anxiety and stress</li>\n</ul>\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.\n\nWe will announce a new date shortly.\nComplete the form below for an update as it happens</strong></span>\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\n\n<strong><span style=\"color: #008000;\">For more information or details of other Self-Hypnosis Workshops &amp; Events please join the events newsletter below</span></strong>.\n[contact-form-7 id=\"447\" title=\"Contact form 1\"]\n\nHypnosis is a wonderful, powerful, and natural ability of the mind, something we do many times each day. You can learn how to harness this power to help you feel how you want to feel and focus on what is important to you.\n\nYou can learn to use Self-Hypnosis and explore the many benefits through our workshops or one to one in a regular session.\n\nOnce you master self-hypnosis you can enable it very quickly, in a matter of seconds to change your state and switch your focus. You can quickly use it to relax, de-stress, remove anxiety or enter a calm, natural sleep.\n\nTake the next step and learn Self-hypnosis.\n\nCall us on 07568 455 809 to see how Self-Hypnosis can help you.','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-autosave-v1','','','2018-05-29 06:28:14','2018-05-29 06:28:14','',422,'http://www.newcastle-hypnotherapy.com/422-autosave-v1/',0,'revision','',0),(425,1,'2018-03-31 20:25:25','2018-03-31 20:25:25','<h2>Self Hypnosis for Stress &amp; Anxiety - Introduction Workshop</h2>\r\n<div></div>\r\n<div>Imagine the ability to learn Self-Hypnosis and take charge of your Anxiety and Stress.</div>\r\n<div></div>\r\n<div>Self-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. The benefits can be amazing and improve the more you use them.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<h2>In this enjoyable Self-Hypnosis workshop you will learn:</h2>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension05</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 20:25:25','2018-03-31 20:25:25','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(426,1,'2018-03-31 20:26:23','2018-03-31 20:26:23','<h2>Video\r\nSelf Hypnosis for Stress &amp; Anxiety - Introduction Workshop</h2>\r\n<div></div>\r\n<div>Imagine the ability to learn Self-Hypnosis and take charge of your Anxiety and Stress.</div>\r\n<div></div>\r\n<div>Self-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. The benefits can be amazing and improve the more you use them.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<h2>In this enjoyable Self-Hypnosis workshop you will learn:</h2>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension05</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 20:26:23','2018-03-31 20:26:23','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(427,1,'2018-03-31 20:27:20','2018-03-31 20:27:20','<h2>Video</h2>\r\nSelf Hypnosis for Stress &amp; Anxiety - Introduction Workshop\r\n<div></div>\r\n<div><strong>Imagine the ability to learn Self-Hypnosis and take charge of your Anxiety and Stress.</strong>\r\n\r\n</div>\r\n<div></div>\r\n<div>Self-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. The benefits can be amazing and improve the more you use them.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<h2>In this enjoyable Self-Hypnosis workshop you will learn:</h2>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension05</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 20:27:20','2018-03-31 20:27:20','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(428,1,'2018-03-31 20:29:22','2018-03-31 20:29:22','<h2>Video</h2>\r\nSelf Hypnosis for Stress &amp; Anxiety - Introduction Workshop  - 19th May\r\n<div></div>\r\n<div>\r\n\r\n<strong>Imagine the ability to learn Self-Hypnosis and take charge of your Anxiety and Stress.</strong>\r\n\r\n</div>\r\n<div></div>\r\n<div>Self-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. The benefits can be amazing and improve the more you use them.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<h2>In this enjoyable Self-Hypnosis workshop you will learn:</h2>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension05</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 20:29:22','2018-03-31 20:29:22','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(429,1,'2018-03-31 20:31:23','2018-03-31 20:31:23','<h2>Video</h2>\r\nSelf Hypnosis for Stress &amp; Anxiety - Introduction Workshop  - 19th May\r\n<div></div>\r\n<div>\r\n\r\n<strong>Imagine the ability to learn Self-Hypnosis and take charge of your Anxiety and Stress.</strong>\r\n\r\n</div>\r\n<div></div>\r\n<div>Self-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<h2>In this enjoyable Self-Hypnosis workshop you will learn:</h2>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension05</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 20:31:23','2018-03-31 20:31:23','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(431,1,'2018-03-31 20:33:46','2018-03-31 20:33:46','<h2>Video</h2>\r\nSelf Hypnosis for Stress &amp; Anxiety - Introduction Workshop  - 19th May\r\n<div></div>\r\n<div>\r\n\r\n<strong>Imagine the ability to learn Self-Hypnosis and take charge of your Anxiety and Stress.</strong>\r\n\r\n</div>\r\n<div></div>\r\n<div>Self-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\nIn this relaxed, enjoyable Self-Hypnosis workshop you will learn:\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension05</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 20:33:46','2018-03-31 20:33:46','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(430,1,'2018-03-31 20:33:21','2018-03-31 20:33:21','<h2>Video</h2>\r\nSelf Hypnosis for Stress &amp; Anxiety - Introduction Workshop  - 19th May\r\n<div></div>\r\n<div>\r\n\r\n<strong>Imagine the ability to learn Self-Hypnosis and take charge of your Anxiety and Stress.</strong>\r\n\r\n</div>\r\n<div></div>\r\n<div>Self-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<h2>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</h2>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension05</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 20:33:21','2018-03-31 20:33:21','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(432,1,'2018-03-31 20:34:33','2018-03-31 20:34:33','<h2>Video</h2>\r\nSelf Hypnosis for Stress &amp; Anxiety - Introduction Workshop  - 19th May\r\n<div></div>\r\n<div>\r\n\r\n<strong>Imagine the ability to learn Self-Hypnosis and take charge of your Anxiety and Stress.</strong>\r\n\r\n</div>\r\n<div></div>\r\n<div>Self-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension05</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 20:34:33','2018-03-31 20:34:33','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(433,1,'2018-03-31 20:35:47','2018-03-31 20:35:47','<h2>Video</h2>\r\nSelf Hypnosis for Stress &amp; Anxiety - Introduction Workshop  - 19th May\r\n<div></div>\r\n<div>\r\n\r\n<strong>Imagine the ability to learn Self-Hypnosis and take charge of your Anxiety and Stress.</strong>\r\n\r\n</div>\r\n<div></div>\r\n<div>Self-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.</div>\r\n<div>\r\n\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension05</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 20:35:47','2018-03-31 20:35:47','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(434,1,'2018-03-31 20:36:03','2018-03-31 20:36:03','<h2>Video</h2>\r\nSelf Hypnosis for Stress &amp; Anxiety - Introduction Workshop  - 19th May\r\n<div></div>\r\n<div>\r\n\r\n<strong>Imagine the ability to learn Self-Hypnosis and take charge of your Anxiety and Stress.</strong>\r\n\r\n</div>\r\n<div></div>\r\n<div>Self-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension05</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 20:36:03','2018-03-31 20:36:03','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(435,1,'2018-03-31 20:41:17','2018-03-31 20:41:17','<h2>Video</h2>\r\n<h2><span style=\"color: #008000;\">Self Hypnosis for Stress &amp; Anxiety - Introduction Workshop  - 19th May</span></h2>\r\n<div></div>\r\n<div>\r\n\r\n<strong>Imagine the ability to learn Self-Hypnosis and take charge of your Anxiety and Stress.</strong>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension05</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 20:41:17','2018-03-31 20:41:17','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(436,1,'2018-03-31 20:41:56','2018-03-31 20:41:56','<h2>Video</h2>\r\n<h2><span style=\"color: #008000;\">Self Hypnosis for Stress &amp; Anxiety - Introduction Workshop  - 19th May</span></h2>\r\n<div></div>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and take charge of your Anxiety and Stress.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension05</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 20:41:56','2018-03-31 20:41:56','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(437,1,'2018-03-31 20:42:26','2018-03-31 20:42:26','<h2>Video</h2>\r\n<h2><span style=\"color: #008000;\">Self Hypnosis for Stress &amp; Anxiety - Introduction Workshop  - 19th May</span></h2>\r\n<div></div>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension05</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 20:42:26','2018-03-31 20:42:26','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(438,1,'2018-03-31 20:48:02','2018-03-31 20:48:02','<h2>Video</h2>\r\n<h2><span style=\"color: #008000;\">Self Hypnosis for Stress &amp; Anxiety - Introduction Workshop  - 19th May</span></h2>\r\n<div></div>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 20:48:02','2018-03-31 20:48:02','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(439,1,'2018-03-31 21:04:59','2018-03-31 21:04:59','<h2>Video</h2>\r\n<h2><span style=\"color: #008000;\">Self Hypnosis for Stress &amp; Anxiety - Introduction Workshop  - 19th May</span></h2>\r\n<div></div>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by joining us for this workshop.</strong></span>\r\n<strong>This workshop is just £39 when you book your place before the 5th of May.</strong>\r\n<span style=\"color: #ff9900;\">The regular price of £99 will be charged after the 5th of May.</span>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"AXXBX8ZFANUEE\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>&nbsp;','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 21:04:59','2018-03-31 21:04:59','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(440,1,'2018-03-31 21:08:39','2018-03-31 21:08:39','<h2>Video</h2>\r\n<h2><span style=\"color: #008000;\">Self Hypnosis for Stress &amp; Anxiety - Introduction Workshop  - 19th May</span></h2>\r\n<div></div>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by joining us for this workshop.</strong></span>\r\n<strong>This workshop is just £39 when you book your place before the 5th of May.</strong>\r\n<span style=\"color: #ff9900;\">The regular price of £99 will be charged after the 5th of May.</span>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"HJ7TTJJJ9UAHN\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal – The safer, easier way to pay online!\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 21:08:39','2018-03-31 21:08:39','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(441,1,'2018-03-31 21:11:24','2018-03-31 21:11:24','<h2>Video</h2>\r\n<h2><span style=\"color: #008000;\">Self Hypnosis for Stress &amp; Anxiety - Introduction Workshop  - 19th May</span></h2>\r\n<div></div>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.</strong></span>\r\n<strong>This workshop is just £39 when you <em>book your place</em> before the 5th of May.</strong>\r\n<span style=\"color: #ff9900;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.\r\n</span><strong>Book your place now by clicking the button below.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"HJ7TTJJJ9UAHN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 21:11:24','2018-03-31 21:11:24','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(444,1,'2018-03-31 21:17:35','2018-03-31 21:17:35','<h2>Video</h2>\r\n<h2><span style=\"color: #008000;\"><strong>Self Hypnosis for Stress &amp; Anxiety</strong> - Introduction Workshop\r\n</span></h2>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.</strong></span>\r\n<strong>This workshop is just £39 when you <em>book your place</em> before the 5th of May.</strong>\r\n<span style=\"color: #ff9900;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.\r\n</span><strong>Book your place now by clicking the button below.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"HJ7TTJJJ9UAHN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /> </form>','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 21:17:35','2018-03-31 21:17:35','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(442,1,'2018-03-31 21:14:58','2018-03-31 21:14:58','<h2>Video</h2>\r\n<h2><span style=\"color: #008000;\"><strong>Self Hypnosis for Stress &amp; Anxiety</strong> - Introduction Workshop  - 19th May</span></h2>\r\n<div></div>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.</strong></span>\r\n<strong>This workshop is just £39 when you <em>book your place</em> before the 5th of May.</strong>\r\n<span style=\"color: #ff9900;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.\r\n</span><strong>Book your place now by clicking the button below.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"HJ7TTJJJ9UAHN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n&nbsp;\r\n\r\n</form>','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 21:14:58','2018-03-31 21:14:58','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(445,1,'2018-03-31 21:19:32','2018-03-31 21:19:32','<h2>Video</h2>\r\n<h2><span style=\"color: #008000;\"><strong>Self Hypnosis for Stress &amp; Anxiety</strong> - Introduction Workshop\r\n</span></h2>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.</strong></span>\r\n<strong>This workshop is just £39 when you <em>book your place</em> before the 5th of May.</strong>\r\n<span style=\"color: #ff9900;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.\r\n</span><strong>Book your place now by clicking the button below.\r\n</strong><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />19th May 1 pm to 4.30 @ The Vault, Wallsend. 12 Places only\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"HJ7TTJJJ9UAHN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 21:19:32','2018-03-31 21:19:32','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(443,1,'2018-03-31 21:16:43','2018-03-31 21:16:43','<h2>Video</h2>\r\n<h2><span style=\"color: #008000;\"><strong>Self Hypnosis for Stress &amp; Anxiety</strong> - Introduction Workshop\r\n</span>See dates below</h2>\r\n<div></div>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.</strong></span>\r\n<strong>This workshop is just £39 when you <em>book your place</em> before the 5th of May.</strong>\r\n<span style=\"color: #ff9900;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.\r\n</span><strong>Book your place now by clicking the button below.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"HJ7TTJJJ9UAHN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />&nbsp;\r\n\r\n</form>','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 21:16:43','2018-03-31 21:16:43','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(446,1,'2018-03-31 21:21:26','2018-03-31 21:21:26','<h2>Video</h2>\r\n<h2><span style=\"color: #008000;\"><strong>Self Hypnosis for Stress &amp; Anxiety</strong> - Introduction Workshop\r\n</span></h2>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.</strong></span>\r\n<strong>This workshop is just £39 when you <em>book your place</em> before the 5th of May.</strong>\r\n<span style=\"color: #ff9900;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.\r\n</span><strong>Book your place now by clicking the button below.\r\n</strong><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />19th May 1 pm to 4.30 @ The Vault, Wallsend. 12 Places only\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"HJ7TTJJJ9UAHN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\nFor details of other Self-Hypnosis Workshops &amp; Events please join the events newsletter below.\r\n\r\n&nbsp;','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 21:21:26','2018-03-31 21:21:26','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(447,1,'2018-03-31 22:15:26','2018-03-31 22:15:26','<label> Your Name (required)\r\n    [text* your-name] </label>\r\n\r\n<label> Your Email (required)\r\n    [email* your-email] </label>\r\n\r\n\r\n\r\n\r\n\r\n[submit \"Join Newsletter\"]\n1\nSTRESS EVENTS\n[your-name] <mark@newcastle-hypnotherapy.com>\nmark@newcastle-hypnotherapy.com\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Newcastle Hypnotherapy Tyneside &amp; Northumberland, (http://www.newcastle-hypnotherapy.com)\nReply-To: [your-email]\n\n\n\n\nNewcastle Hypnotherapy Tyneside & Northumberland, \"[your-subject]\"\nNewcastle Hypnotherapy Tyneside & Northumberland, <mark@newcastle-hypnotherapy.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Newcastle Hypnotherapy Tyneside &amp; Northumberland, (http://www.newcastle-hypnotherapy.com)\nReply-To: mark@newcastle-hypnotherapy.com\n\n\n\nThank you. You are now subscribed to the newsletter\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','SH anxiety stress events form','','publish','closed','closed','','contact-form-1','','','2018-07-22 17:36:24','2018-07-22 17:36:24','',0,'http://www.newcastle-hypnotherapy.com/?post_type=wpcf7_contact_form&#038;p=447',0,'wpcf7_contact_form','',0),(449,1,'2018-03-31 22:41:32','2018-03-31 22:41:32','<h2>Video</h2>\r\n<h2><span style=\"color: #008000;\"><strong>Self Hypnosis for Stress &amp; Anxiety</strong> - Introduction Workshop\r\n</span></h2>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.</strong></span>\r\n<strong>This workshop is just £39 when you <em>book your place</em> before the 5th of May.</strong>\r\n<span style=\"color: #ff9900;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.\r\n</span><strong>Book your place now by clicking the button below.\r\n</strong><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />19th May 1 pm to 4.30 @ The Vault, Wallsend. 12 Places only\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"HJ7TTJJJ9UAHN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\nFor more information or details of other Self-Hypnosis Workshops &amp; Events please join the events newsletter below.\r\n[contact-form-7 id=\"447\" title=\"Contact form 1\"]\r\n\r\n&nbsp;','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 22:41:32','2018-03-31 22:41:32','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(448,1,'2018-03-31 22:33:02','2018-03-31 22:33:02','<h2>Video</h2>\r\n<h2><span style=\"color: #008000;\"><strong>Self Hypnosis for Stress &amp; Anxiety</strong> - Introduction Workshop\r\n</span></h2>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.</strong></span>\r\n<strong>This workshop is just £39 when you <em>book your place</em> before the 5th of May.</strong>\r\n<span style=\"color: #ff9900;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.\r\n</span><strong>Book your place now by clicking the button below.\r\n</strong><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />19th May 1 pm to 4.30 @ The Vault, Wallsend. 12 Places only\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"HJ7TTJJJ9UAHN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\nFor details of other Self-Hypnosis Workshops &amp; Events please join the events newsletter below.\r\n[contact-form-7 id=\"447\" title=\"Contact form 1\"]\r\n\r\n&nbsp;','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 22:33:02','2018-03-31 22:33:02','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(450,1,'2018-03-31 22:42:06','2018-03-31 22:42:06','<h2>Video</h2>\r\n<h2><span style=\"color: #008000;\"><strong>Self Hypnosis for Stress &amp; Anxiety</strong> - Introduction Workshop\r\n</span></h2>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.</strong></span>\r\n<strong>This workshop is just £39 when you <em>book your place</em> before the 5th of May.</strong>\r\n<span style=\"color: #ff9900;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.\r\n</span><strong>Book your place now by clicking the button below.\r\n</strong><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />19th May 1 pm to 4.30 @ The Vault, Wallsend. 12 Places only\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"HJ7TTJJJ9UAHN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<strong><span style=\"color: #008000;\">For more information or details of other Self-Hypnosis Workshops &amp; Events please join the events newsletter below</span></strong>.\r\n[contact-form-7 id=\"447\" title=\"Contact form 1\"]\r\n\r\n&nbsp;','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-03-31 22:42:06','2018-03-31 22:42:06','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(451,1,'2018-04-01 12:17:46','2018-04-01 12:17:46','<h2>Video</h2>\r\n<h2><span style=\"color: #008000;\"><strong>Self Hypnosis for Stress &amp; Anxiety</strong> - Introduction Workshop\r\n</span></h2>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.</strong></span>\r\n<strong>This workshop is just £39 when you <em>book your place</em> before the 5th of May.</strong>\r\n<span style=\"color: #ff9900;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.\r\n</span><strong>Book your place now by clicking the button below.\r\n</strong><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />19th May 1 pm to 4.30 @ The Vault, Wallsend. 12 Places only\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"HJ7TTJJJ9UAHN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<strong><span style=\"color: #008000;\">For more information or details of other Self-Hypnosis Workshops &amp; Events please join the events newsletter below</span></strong>.\r\n[contact-form-7 id=\"447\" title=\"Contact form 1\"]\r\n\r\nHypnosis is a wonderful, powerful, and natural ability of the mind, something we do many times each day. You can learn how to harness this power to help you feel how you want to feel and focus on what is important to you.\r\n\r\nYou can learn to use Self-Hypnosis and explore the many benefits through our workshops or one to one in a regular session.\r\n\r\nOnce you master self-hypnosis you can enable it very quickly, in a matter of seconds to change your state and switch your focus. You can quickly use it to relax, de-stress, remove anxiety or enter a calm, natural sleep.\r\n\r\nTake the next step and learn Self-hypnosis.\r\n\r\nCall us on 07568 455 809 to see how Self-Hypnosis can help you.','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-04-01 12:17:46','2018-04-01 12:17:46','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(452,1,'2018-04-01 12:47:40','2018-04-01 12:47:40','<span style=\"color: #008000;\"><strong>Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Review by Kris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Client Feedback','','inherit','closed','closed','','200-revision-v1','','','2018-04-01 12:47:40','2018-04-01 12:47:40','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(454,1,'2018-04-01 13:05:27','2018-04-01 13:05:27','<strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong>\r\n\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.\r\nAs soon as you are ready we can work together to start you anxiety relief and then look to replace the feelings of anxiety to feeling calm, relaxed and in control.\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-01 13:05:27','2018-04-01 13:05:27','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(453,1,'2018-04-01 12:49:54','2018-04-01 12:49:54','<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>\r\n<span style=\"color: #008000;\"><strong><img class=\"size-thumbnail wp-image-104 alignleft\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-01 12:49:54','2018-04-01 12:49:54','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(455,1,'2018-04-01 13:15:13','2018-04-01 13:15:13','<strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong>\r\n\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.\r\nAs soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety to feeling calm, relaxed and in control.\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-01 13:15:13','2018-04-01 13:15:13','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(456,1,'2018-04-01 13:16:05','2018-04-01 13:16:05','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.\r\nAs soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety to feeling calm, relaxed and in control.\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-01 13:16:05','2018-04-01 13:16:05','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(457,1,'2018-04-01 13:19:56','2018-04-01 13:19:56','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.\r\nAs soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety to feeling calm, relaxed and in control.\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-01 13:19:56','2018-04-01 13:19:56','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(458,1,'2018-04-01 13:31:10','2018-04-01 13:31:10','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.\r\nAs soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety to feeling calm, relaxed and in control.\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-01 13:31:10','2018-04-01 13:31:10','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(459,1,'2018-04-01 13:33:09','2018-04-01 13:33:09','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.\r\nAs soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-01 13:33:09','2018-04-01 13:33:09','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(460,1,'2018-04-01 13:34:01','2018-04-01 13:34:01','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.\r\nAs soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<h2><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-01 13:34:01','2018-04-01 13:34:01','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(461,1,'2018-04-01 13:35:43','2018-04-01 13:35:43','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.\r\nAs soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\nCall us on 07568 455 809 to discuss which of these options is best for you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-01 13:35:43','2018-04-01 13:35:43','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(462,1,'2018-04-01 13:36:30','2018-04-01 13:36:30','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.\r\nAs soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\nCall us on 07568 455 809 to discuss which of these options is best for you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-01 13:36:30','2018-04-01 13:36:30','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(463,1,'2018-04-01 13:37:25','2018-04-01 13:37:25','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong>Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\nCall us on 07568 455 809 to discuss which of these options is best for you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-01 13:37:25','2018-04-01 13:37:25','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(464,1,'2018-04-01 22:41:32','2018-04-01 22:41:32','<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/CXB3uPmBR6Q?rel=0&amp;controls=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\r\n<h2><span style=\"color: #008000;\"><strong>Self Hypnosis for Stress &amp; Anxiety</strong> - Introduction Workshop\r\n</span></h2>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.</strong></span>\r\n<strong>This workshop is just £39 when you <em>book your place</em> before the 5th of May.</strong>\r\n<span style=\"color: #ff9900;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.\r\n</span><strong>Book your place now by clicking the button below.\r\n</strong><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />19th May 1 pm to 4.30 @ The Vault, Wallsend. 12 Places only\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"HJ7TTJJJ9UAHN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<strong><span style=\"color: #008000;\">For more information or details of other Self-Hypnosis Workshops &amp; Events please join the events newsletter below</span></strong>.\r\n[contact-form-7 id=\"447\" title=\"Contact form 1\"]\r\n\r\nHypnosis is a wonderful, powerful, and natural ability of the mind, something we do many times each day. You can learn how to harness this power to help you feel how you want to feel and focus on what is important to you.\r\n\r\nYou can learn to use Self-Hypnosis and explore the many benefits through our workshops or one to one in a regular session.\r\n\r\nOnce you master self-hypnosis you can enable it very quickly, in a matter of seconds to change your state and switch your focus. You can quickly use it to relax, de-stress, remove anxiety or enter a calm, natural sleep.\r\n\r\nTake the next step and learn Self-hypnosis.\r\n\r\nCall us on 07568 455 809 to see how Self-Hypnosis can help you.','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-04-01 22:41:32','2018-04-01 22:41:32','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(465,1,'2018-04-01 22:48:51','2018-04-01 22:48:51','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class=\'embed-container\'><iframe src=\'https://www.youtube.com/embed/undefined\' frameborder=\'0\' allowfullscreen></iframe></div\r\n<h2><span style=\"color: #008000;\"><strong>Self Hypnosis for Stress &amp; Anxiety</strong> - Introduction Workshop\r\n</span></h2>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.</strong></span>\r\n<strong>This workshop is just £39 when you <em>book your place</em> before the 5th of May.</strong>\r\n<span style=\"color: #ff9900;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.\r\n</span><strong>Book your place now by clicking the button below.\r\n</strong><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />19th May 1 pm to 4.30 @ The Vault, Wallsend. 12 Places only\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"HJ7TTJJJ9UAHN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<strong><span style=\"color: #008000;\">For more information or details of other Self-Hypnosis Workshops &amp; Events please join the events newsletter below</span></strong>.\r\n[contact-form-7 id=\"447\" title=\"Contact form 1\"]\r\n\r\nHypnosis is a wonderful, powerful, and natural ability of the mind, something we do many times each day. You can learn how to harness this power to help you feel how you want to feel and focus on what is important to you.\r\n\r\nYou can learn to use Self-Hypnosis and explore the many benefits through our workshops or one to one in a regular session.\r\n\r\nOnce you master self-hypnosis you can enable it very quickly, in a matter of seconds to change your state and switch your focus. You can quickly use it to relax, de-stress, remove anxiety or enter a calm, natural sleep.\r\n\r\nTake the next step and learn Self-hypnosis.\r\n\r\nCall us on 07568 455 809 to see how Self-Hypnosis can help you.','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-04-01 22:48:51','2018-04-01 22:48:51','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(466,1,'2018-04-01 22:58:50','2018-04-01 22:58:50','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/CXB3uPmBR6Q?rel=0&amp;controls=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<h2><span style=\"color: #008000;\"><strong>Self Hypnosis for Stress &amp; Anxiety</strong> - Introduction Workshop\r\n</span></h2>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.</strong></span>\r\n<strong>This workshop is just £39 when you <em>book your place</em> before the 5th of May.</strong>\r\n<span style=\"color: #ff9900;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.\r\n</span><strong>Book your place now by clicking the button below.\r\n</strong><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />19th May 1 pm to 4.30 @ The Vault, Wallsend. 12 Places only\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"HJ7TTJJJ9UAHN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<strong><span style=\"color: #008000;\">For more information or details of other Self-Hypnosis Workshops &amp; Events please join the events newsletter below</span></strong>.\r\n[contact-form-7 id=\"447\" title=\"Contact form 1\"]\r\n\r\nHypnosis is a wonderful, powerful, and natural ability of the mind, something we do many times each day. You can learn how to harness this power to help you feel how you want to feel and focus on what is important to you.\r\n\r\nYou can learn to use Self-Hypnosis and explore the many benefits through our workshops or one to one in a regular session.\r\n\r\nOnce you master self-hypnosis you can enable it very quickly, in a matter of seconds to change your state and switch your focus. You can quickly use it to relax, de-stress, remove anxiety or enter a calm, natural sleep.\r\n\r\nTake the next step and learn Self-hypnosis.\r\n\r\nCall us on 07568 455 809 to see how Self-Hypnosis can help you.','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-04-01 22:58:50','2018-04-01 22:58:50','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(467,1,'2018-04-01 23:05:49','2018-04-01 23:05:49','<h2>Thanks for joining our newsletter and your email will be with you shortly.</h2>\r\n&nbsp;\r\n\r\n[embed]https://youtu.be/CXB3uPmBR6Q[/embed]','Thank You','','inherit','closed','closed','','385-revision-v1','','','2018-04-01 23:05:49','2018-04-01 23:05:49','',385,'http://www.newcastle-hypnotherapy.com/385-revision-v1/',0,'revision','',0),(670,1,'2018-04-19 21:39:12','2018-04-19 21:39:12','<h2>We run regular workshops &amp; events.\r\nFor the latest information by email please join our newsletter below.</h2>\r\n<h2><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>S</strong></a><strong>elf Hypnosis for Stress &amp; Anxiety - 19th May</strong></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis for Weight Loss - 9th June 2018</strong></span></h2>\r\n.[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-04-19 21:39:12','2018-04-19 21:39:12','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(468,1,'2018-04-02 10:19:09','2018-04-02 10:19:09','<h2>We run regular workshops &amp; events.\r\nFor the latest information by email please join our newsletter below.\r\n\r\n<a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>Self Hypnosis for Stress &amp; Anxiety - 19th May</strong></a></h2>\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/secrets-self-hypnosis/\">Secrets Of Self Hypnosis Workshop - 21st April </a></strong>\r\n\r\n.\r\n\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-04-02 10:19:09','2018-04-02 10:19:09','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(469,1,'2018-04-02 11:47:04','2018-04-02 11:47:04','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/CXB3uPmBR6Q?rel=0&amp;controls=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<h2><span style=\"color: #008000;\"><strong>Self Hypnosis for Stress &amp; Anxiety</strong> - Introduction Workshop\r\n</span></h2>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.</strong></span>\r\n<strong>This workshop is just £39 when you <em>book your place</em> before the 5th of May.</strong>\r\n<span style=\"color: #ff9900;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.\r\n</span><strong>Book your place now by clicking the button below.\r\n</strong><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />19th May 1 pm to 4.30 @ The Vault, Wallsend. 12 Places only - <strong><span style=\"color: #ff0000;\">8 places remaining </span></strong>\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"HJ7TTJJJ9UAHN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<strong><span style=\"color: #008000;\">For more information or details of other Self-Hypnosis Workshops &amp; Events please join the events newsletter below</span></strong>.\r\n[contact-form-7 id=\"447\" title=\"Contact form 1\"]\r\n\r\nHypnosis is a wonderful, powerful, and natural ability of the mind, something we do many times each day. You can learn how to harness this power to help you feel how you want to feel and focus on what is important to you.\r\n\r\nYou can learn to use Self-Hypnosis and explore the many benefits through our workshops or one to one in a regular session.\r\n\r\nOnce you master self-hypnosis you can enable it very quickly, in a matter of seconds to change your state and switch your focus. You can quickly use it to relax, de-stress, remove anxiety or enter a calm, natural sleep.\r\n\r\nTake the next step and learn Self-hypnosis.\r\n\r\nCall us on 07568 455 809 to see how Self-Hypnosis can help you.','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-04-02 11:47:04','2018-04-02 11:47:04','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(471,1,'2018-04-02 18:03:14','2018-04-02 18:03:14','<h4>Here are some free tools you may find useful for anxiety, stress, relaxation, good mental health and so much more. New resources are added on a regular basis.\r\n\r\n<span style=\"color: #008000;\"><strong>Soothing Music For Anxiety &amp; Stress</strong></span></h4>\r\nSimply take some time for yourself, relax and allow your mind to wander.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/JRxni5AZ4lk?rel=0\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></div>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Relaxing Meditative Music To Aid Good Sleep.</strong></span></h4>\r\nRelax and enjoy this meditative music to give you a great nights sleep.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/qZ6xd25ADIM?rel=0\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></div>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>The Visualisation Meditation Excercise.</strong></span></h4>\r\nA simple meditation excercise to train your mind to create your perfect day.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/g7FwQXxt7wU?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>Relaxing Music To Melt Your Anxiety Away.</strong></span></h4>\r\nSimply get comfortable, breathe deeply at a pace comfortable for you and relax while listening to this anxiety melting music. You can find more resources to help with Anxiety &amp; Stress here - <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-hypnosis-program/\"><strong>Anxiety &amp; Stress Help.</strong></a>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/NBbm8fYLSjM?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep </strong>Relaxation<strong> Hypnosis Program</strong> </span></h4>\r\nFind a comfortable place to relax, breath nicely and let you subconcious mind guide you to relax while listening to this calming audio track.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply right click and save</strong>\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep Sleep Hypnosis Program</strong></span></h4>\r\nA simple way to relax and move towards natural sleep. Follow this track with your mind allowing your concious mind to drift away naturally.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\nYou can download the <a href=\"http://www.newcastle-hypnotherapy.com/downloads/sleep.mp3\"><strong>Deep Sleep Hypnosis Audio Program Here</strong></a>. Simply Right Click &amp; Save\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','FREE TOOLS & RESOURCES','','publish','closed','closed','','free-tools-resources','','','2019-01-28 17:37:21','2019-01-28 17:37:21','',0,'http://www.newcastle-hypnotherapy.com/?page_id=471',99,'page','',0),(472,1,'2018-04-02 18:03:14','2018-04-02 18:03:14','Here are some free tools you may find useful\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Free Tools & Resources','','inherit','closed','closed','','471-revision-v1','','','2018-04-02 18:03:14','2018-04-02 18:03:14','',471,'http://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(473,1,'2018-04-02 18:03:40','2018-04-02 18:03:40','30Here are some free tools you may find useful\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Free Tools & Resources','','inherit','closed','closed','','471-revision-v1','','','2018-04-02 18:03:40','2018-04-02 18:03:40','',471,'http://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(474,1,'2018-04-02 18:04:06','2018-04-02 18:04:06','9930Here are some free tools you may find useful\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Free Tools & Resources','','inherit','closed','closed','','471-revision-v1','','','2018-04-02 18:04:06','2018-04-02 18:04:06','',471,'http://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(475,1,'2019-01-28 17:36:49','2019-01-28 17:36:49','<h4>Here are some free tools you may find useful for anxiety, stress, relaxation, good mental health and so much more. New resources are added on a regular basis.\n\n<span style=\"color: #008000;\"><strong>Soothing Music For Anxiety &amp; Stress</strong></span></h4>\n&nbsp;\n\n&nbsp;\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/JRxni5AZ4lk?rel=0\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></div>\n&nbsp;\n<h4><span style=\"color: #008000;\"><strong>Relaxing Meditative Music To Aid Good Sleep.</strong></span></h4>\nRelax and enjoy this meditative music to give you a great nights sleep.\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/qZ6xd25ADIM?rel=0\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></div>\n&nbsp;\n<h4><span style=\"color: #008000;\"><strong>The Visualisation Meditation Excercise.</strong></span></h4>\nA simple meditation excercise to train your mind to create your perfect day.\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/g7FwQXxt7wU?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\n&nbsp;\n\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\n<h4><span style=\"color: #008000;\"><strong>Relaxing Music To Melt Your Anxiety Away.</strong></span></h4>\nSimply get comfortable, breathe deeply at a pace comfortable for you and relax while listening to this anxiety melting music. You can find more resources to help with Anxiety &amp; Stress here - <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-hypnosis-program/\"><strong>Anxiety &amp; Stress Help.</strong></a>\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/NBbm8fYLSjM?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></div>\n&nbsp;\n\n&nbsp;\n\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\n<h4><span style=\"color: #008000;\"><strong>The Deep </strong>Relaxation<strong> Hypnosis Program</strong> </span></h4>\nFind a comfortable place to relax, breath nicely and let you subconcious mind guide you to relax while listening to this calming audio track.\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\n<strong>\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply right click and save</strong>\n\n&nbsp;\n\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\n<h4><span style=\"color: #008000;\"><strong>The Deep Sleep Hypnosis Program</strong></span></h4>\nA simple way to relax and move towards natural sleep. Follow this track with your mind allowing your concious mind to drift away naturally.\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\nYou can download the <a href=\"http://www.newcastle-hypnotherapy.com/downloads/sleep.mp3\"><strong>Deep Sleep Hypnosis Audio Program Here</strong></a>. Simply Right Click &amp; Save\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','FREE TOOLS & RESOURCES','','inherit','closed','closed','','471-autosave-v1','','','2019-01-28 17:36:49','2019-01-28 17:36:49','',471,'http://www.newcastle-hypnotherapy.com/471-autosave-v1/',0,'revision','',0),(476,1,'2018-04-02 18:06:29','2018-04-02 18:06:29','9930Here are some free tools you may find useful\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>You can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here.</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Free Tools & Resources','','inherit','closed','closed','','471-revision-v1','','','2018-04-02 18:06:29','2018-04-02 18:06:29','',471,'http://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(477,1,'2018-04-02 18:06:51','2018-04-02 18:06:51','Here are some free tools you may find useful\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>You can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here.</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Free Tools & Resources','','inherit','closed','closed','','471-revision-v1','','','2018-04-02 18:06:51','2018-04-02 18:06:51','',471,'http://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(478,1,'2018-04-02 18:07:40','2018-04-02 18:07:40','Here are some free tools you may find useful\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here.</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Free Tools & Resources','','inherit','closed','closed','','471-revision-v1','','','2018-04-02 18:07:40','2018-04-02 18:07:40','',471,'http://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(479,1,'2018-04-02 18:14:38','2018-04-02 18:14:38','Here are some free tools you may find useful\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply rick click and save</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Free Tools & Resources','','inherit','closed','closed','','471-revision-v1','','','2018-04-02 18:14:38','2018-04-02 18:14:38','',471,'http://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(485,1,'2018-04-03 20:38:09','2018-04-03 20:38:09','Here are some free tools you may find useful\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply rick click and save\r\n\r\n\r\n\r\n\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Free Tools & Resources','','inherit','closed','closed','','471-revision-v1','','','2018-04-03 20:38:09','2018-04-03 20:38:09','',471,'http://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(480,1,'2018-04-03 20:28:36','2018-04-03 20:28:36','Here are some free tools you may find useful\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply rick click and save\r\n\r\n\r\n\r\nhttpv://www.youtube.com/watch?v=u5H27lt2uiI&t=21s\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Free Tools & Resources','','inherit','closed','closed','','471-revision-v1','','','2018-04-03 20:28:36','2018-04-03 20:28:36','',471,'http://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(481,1,'2018-04-03 20:32:51','2018-04-03 20:32:51','Here are some free tools you may find useful\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"httpv://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply rick click and save\r\n\r\n\r\n\r\nhttpv://www.youtube.com/watch?v=u5H27lt2uiI&t=21s\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Free Tools & Resources','','inherit','closed','closed','','471-revision-v1','','','2018-04-03 20:32:51','2018-04-03 20:32:51','',471,'http://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(482,1,'2018-04-03 20:34:42','2018-04-03 20:34:42','Here are some free tools you may find useful\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply rick click and save\r\n\r\n\r\n\r\nhttpv://www.youtube.com/watch?v=u5H27lt2uiI&t=21s\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Free Tools & Resources','','inherit','closed','closed','','471-revision-v1','','','2018-04-03 20:34:42','2018-04-03 20:34:42','',471,'http://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(484,1,'2018-04-03 20:37:07','2018-04-03 20:37:07','Here are some free tools you may find useful\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply rick click and save\r\n\r\n\r\n\r\nhttpv://www.youtube.com/watch?v=u5H27lt2uiI&t=21s\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Free Tools & Resources','','inherit','closed','closed','','471-revision-v1','','','2018-04-03 20:37:07','2018-04-03 20:37:07','',471,'http://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(483,1,'2018-04-03 20:35:20','2018-04-03 20:35:20','Here are some free tools you may find useful\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"httpsv://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply rick click and save\r\n\r\n\r\n\r\nhttpv://www.youtube.com/watch?v=u5H27lt2uiI&t=21s\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Free Tools & Resources','','inherit','closed','closed','','471-revision-v1','','','2018-04-03 20:35:20','2018-04-03 20:35:20','',471,'http://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(486,1,'2018-04-03 23:28:54','2018-04-03 23:28:54','<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"aefe7dc142\"}) })</script>\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/nW4U7CSngJY?rel=0&amp;controls=0\" width=\"300\" height=\"169\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<div></div>\r\n<h2><span style=\"color: #008000;\"><strong>\r\nImagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span></h2>\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Lean Self-Hypnosis\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosis Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Many clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How Effective Is Self Hypnosis For Weight Loss &amp; Weight Management?</strong></span></h2>\r\nSelf-Hypnosis is often very effective for weight loss, depending on the issues involved and most can be helped.\r\nWe can change our habits and beliefs when it comes to food and many of our eating patterns also.\r\nFood has become emotional for many of us and another way we change our states and feelings. Thankfully we can also change the emotions and feelings certain foods bring us to choose foods that are better for us and our weight management.\r\n<h2><strong><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></strong></h2>\r\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss how we can help you with self-hypnosis in many areas.</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>For more information to learn Self-Hypnosis and our regular events, <em>join the newsletter below</em></strong></span>\r\n\r\n[contact-form-7 id=\"447\" title=\"SH anxiety stress events form\"]\r\nA member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','LEARN SELF-HYPNOSIS','','publish','closed','closed','','learn-self-hypnosis','','','2019-01-06 18:49:18','2019-01-06 18:49:18','',0,'http://www.newcastle-hypnotherapy.com/?page_id=486',20,'page','',0),(487,1,'2018-04-03 22:18:22','2018-04-03 22:18:22','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.\r\n\r\n\r\n\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span></h2>\r\nMany clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others\r\n\r\n\r\n\r\n&nbsp;','Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-03 22:18:22','2018-04-03 22:18:22','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(488,1,'2018-04-03 22:24:26','2018-04-03 22:24:26','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\nMany clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\n\r\n\r\nLearning Self-Hypnosis Helps To Put You In Control Of Your Life.\r\n\r\n\r\n&nbsp;','Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-03 22:24:26','2018-04-03 22:24:26','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(489,1,'2018-04-03 22:39:19','2018-04-03 22:39:19','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\nMany clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our individual sessions.\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice you can see changes very quickly.','Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-03 22:39:19','2018-04-03 22:39:19','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(490,1,'2018-04-03 22:54:09','2018-04-03 22:54:09','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\nMany clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our individual sessions.\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session.\r\nCall us on 07568 455 809 today to discuss which option is better for you.','Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-03 22:54:09','2018-04-03 22:54:09','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(491,1,'2018-04-03 23:03:10','2018-04-03 23:03:10','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\nMany clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our individual sessions.\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session.\r\nCall us on 07568 455 809 today to discuss which option is better for you.\r\n\r\n<strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training?</span></strong>\r\n\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n\r\n&nbsp;','Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-03 23:03:10','2018-04-03 23:03:10','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(492,1,'2018-04-03 23:28:54','2018-04-03 23:28:54','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\nMany clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our individual sessions.\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session.\r\n<em>Call us on 07568 455 809</em> today to discuss which option is better for you.\r\n\r\n<strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training?</span></strong>\r\n\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n\r\n&nbsp;','Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-03 23:28:54','2018-04-03 23:28:54','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(493,1,'2018-04-03 23:29:57','2018-04-03 23:29:57','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\nMany clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our individual sessions.\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session.\r\n<em>Call us on 07568 455 809</em> today to discuss which option is better for you.\r\n\r\n<strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training?</span></strong>\r\n\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-03 23:29:57','2018-04-03 23:29:57','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(494,1,'2018-04-04 11:37:14','2018-04-04 11:37:14','<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"aefe7dc142\"}) })</script>\n<h2><strong><span style=\"color: #008000;\">Learn Self-Hypnosis with Newcastle Hypnotherapy.</span></strong></h2>\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/nW4U7CSngJY?rel=0&amp;controls=0\" width=\"300\" height=\"169\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\n<div></div>\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\n\n&nbsp;\n\n<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Lean Self-Hypnosis\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosis Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Many clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\n\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\n\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\n\n&nbsp;\n<h2><span style=\"color: #008000;\"><strong>How Effective Is Self Hypnosis For Weight Loss &amp; Weight Management?</strong></span></h2>\nSelf-Hypnosis is often very effective for weight loss, depending on the issues involved and most can be helped.\nWe can change our habits and beliefs when it comes to food and many of our eating patterns also.\nFood has become emotional for many of us and another way we change our states and feelings. Thankfully we can also change the emotions and feelings certain foods bring us to choose foods that are better for us and our weight management.\n<h2><strong><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></strong></h2>\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\n\n&nbsp;\n<h2><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss how we can help you with self-hypnosis in many areas.</strong></span></h2>\n<span style=\"color: #ff6600;\"><strong>For more information on Self-Hypnosis and our regular events, <em>join the newsletter below</em></strong></span>\n\n[contact-form-7 id=\"447\" title=\"SH anxiety stress events form\"]\nA member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\n\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-autosave-v1','','','2018-04-04 11:37:14','2018-04-04 11:37:14','',486,'http://www.newcastle-hypnotherapy.com/486-autosave-v1/',0,'revision','',0),(495,1,'2018-04-03 23:46:37','2018-04-03 23:46:37','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\nMany clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our individual sessions.\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session.\r\n<em>Call us on 07568 455 809</em> today to discuss which option is better for you.\r\n\r\n<strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training?</span></strong>\r\n\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-03 23:46:37','2018-04-03 23:46:37','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(496,1,'2018-04-03 23:49:16','2018-04-03 23:49:16','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\nMany clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-03 23:49:16','2018-04-03 23:49:16','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(497,1,'2018-04-03 23:50:28','2018-04-03 23:50:28','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\nMany clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-03 23:50:28','2018-04-03 23:50:28','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(498,1,'2018-04-04 00:04:06','2018-04-04 00:04:06','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\nMany clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-04 00:04:06','2018-04-04 00:04:06','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(499,1,'2018-04-04 00:04:53','2018-04-04 00:04:53','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\nMany clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-04 00:04:53','2018-04-04 00:04:53','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(500,1,'2018-04-04 00:16:47','2018-04-04 00:16:47','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\nMany clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\r\n<h2><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></h2>\r\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\r\nCall us on 07568 455 809 to discuss how we can help you or your children with self-hypnosis in many areas.\r\n\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-04 00:16:47','2018-04-04 00:16:47','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(501,1,'2018-04-04 00:26:28','2018-04-04 00:26:28','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\nMany clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\r\n\r\n&nbsp;\r\n<h2>\r\n\r\n<span style=\"color: #008000;\"><strong>How Effective Is Self Hypnosis For Weight Loss &amp; Weight Management?</strong></span></h2>\r\nSelf-Hypnosis is often very effective for weight loss, depending on the issues involved and most can be helped.\r\nWe can change our habits and beliefs when it comes to food and many of our eating patterns also.\r\nFood has become emotional for many of us and another way we change our states and feelings. Thankfully we can also change the emotions and feelings certain foods bring us to choose foods that are better for us and our weight management.\r\n<h2><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></h2>\r\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\r\nCall us on 07568 455 809 to discuss how we can help you or your children with self-hypnosis in many areas.\r\n\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-04 00:26:28','2018-04-04 00:26:28','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(502,1,'2018-04-04 00:27:33','2018-04-04 00:27:33','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\nMany clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How Effective Is Self Hypnosis For Weight Loss &amp; Weight Management?</strong></span></h2>\r\nSelf-Hypnosis is often very effective for weight loss, depending on the issues involved and most can be helped.\r\nWe can change our habits and beliefs when it comes to food and many of our eating patterns also.\r\nFood has become emotional for many of us and another way we change our states and feelings. Thankfully we can also change the emotions and feelings certain foods bring us to choose foods that are better for us and our weight management.\r\n<h2><strong><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></strong></h2>\r\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\r\nCall us on 07568 455 809 to discuss how we can help you or your children with self-hypnosis in many areas.\r\n\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-04 00:27:33','2018-04-04 00:27:33','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(503,1,'2018-04-04 00:29:12','2018-04-04 00:29:12','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\nMany clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How Effective Is Self Hypnosis For Weight Loss &amp; Weight Management?</strong></span></h2>\r\nSelf-Hypnosis is often very effective for weight loss, depending on the issues involved and most can be helped.\r\nWe can change our habits and beliefs when it comes to food and many of our eating patterns also.\r\nFood has become emotional for many of us and another way we change our states and feelings. Thankfully we can also change the emotions and feelings certain foods bring us to choose foods that are better for us and our weight management.\r\n<h2><strong><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></strong></h2>\r\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\r\n\r\n&nbsp;\r\n<h2>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss how we can help you with self-hypnosis in many areas.</strong></span></h2>\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-04 00:29:12','2018-04-04 00:29:12','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(504,1,'2018-04-04 00:31:46','2018-04-04 00:31:46','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\n<img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Many clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How Effective Is Self Hypnosis For Weight Loss &amp; Weight Management?</strong></span></h2>\r\nSelf-Hypnosis is often very effective for weight loss, depending on the issues involved and most can be helped.\r\nWe can change our habits and beliefs when it comes to food and many of our eating patterns also.\r\nFood has become emotional for many of us and another way we change our states and feelings. Thankfully we can also change the emotions and feelings certain foods bring us to choose foods that are better for us and our weight management.\r\n<h2><strong><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></strong></h2>\r\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss how we can help you with self-hypnosis in many areas.</strong></span></h2>\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-04 00:31:46','2018-04-04 00:31:46','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(505,1,'2018-04-04 00:33:56','2018-04-04 00:33:56','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Lean Self-Hypnosis\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Many clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How Effective Is Self Hypnosis For Weight Loss &amp; Weight Management?</strong></span></h2>\r\nSelf-Hypnosis is often very effective for weight loss, depending on the issues involved and most can be helped.\r\nWe can change our habits and beliefs when it comes to food and many of our eating patterns also.\r\nFood has become emotional for many of us and another way we change our states and feelings. Thankfully we can also change the emotions and feelings certain foods bring us to choose foods that are better for us and our weight management.\r\n<h2><strong><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></strong></h2>\r\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss how we can help you with self-hypnosis in many areas.</strong></span></h2>\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-04 00:33:56','2018-04-04 00:33:56','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(506,1,'2018-04-04 00:34:37','2018-04-04 00:34:37','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Lean Self-Hypnosis\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosis Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Many clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How Effective Is Self Hypnosis For Weight Loss &amp; Weight Management?</strong></span></h2>\r\nSelf-Hypnosis is often very effective for weight loss, depending on the issues involved and most can be helped.\r\nWe can change our habits and beliefs when it comes to food and many of our eating patterns also.\r\nFood has become emotional for many of us and another way we change our states and feelings. Thankfully we can also change the emotions and feelings certain foods bring us to choose foods that are better for us and our weight management.\r\n<h2><strong><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></strong></h2>\r\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss how we can help you with self-hypnosis in many areas.</strong></span></h2>\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-04 00:34:37','2018-04-04 00:34:37','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(507,1,'2018-04-04 00:36:13','2018-04-04 00:36:13','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Lean Self-Hypnosis\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosis Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Many clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How Effective Is Self Hypnosis For Weight Loss &amp; Weight Management?</strong></span></h2>\r\nSelf-Hypnosis is often very effective for weight loss, depending on the issues involved and most can be helped.\r\nWe can change our habits and beliefs when it comes to food and many of our eating patterns also.\r\nFood has become emotional for many of us and another way we change our states and feelings. Thankfully we can also change the emotions and feelings certain foods bring us to choose foods that are better for us and our weight management.\r\n<h2><strong><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></strong></h2>\r\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss how we can help you with self-hypnosis in many areas.</strong></span></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nA member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-04 00:36:13','2018-04-04 00:36:13','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(508,1,'2018-04-04 08:52:18','2018-04-04 08:52:18','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Lean Self-Hypnosis\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosis Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Many clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How Effective Is Self Hypnosis For Weight Loss &amp; Weight Management?</strong></span></h2>\r\nSelf-Hypnosis is often very effective for weight loss, depending on the issues involved and most can be helped.\r\nWe can change our habits and beliefs when it comes to food and many of our eating patterns also.\r\nFood has become emotional for many of us and another way we change our states and feelings. Thankfully we can also change the emotions and feelings certain foods bring us to choose foods that are better for us and our weight management.\r\n<h2><strong><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></strong></h2>\r\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss how we can help you with self-hypnosis in many areas.</strong></span></h2>\r\n[contact-form-7 id=\"447\" title=\"SH anxiety stress events form\"]\r\nA member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-04 08:52:18','2018-04-04 08:52:18','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(509,1,'2018-04-04 08:53:36','2018-04-04 08:53:36','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Lean Self-Hypnosis\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosis Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Many clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How Effective Is Self Hypnosis For Weight Loss &amp; Weight Management?</strong></span></h2>\r\nSelf-Hypnosis is often very effective for weight loss, depending on the issues involved and most can be helped.\r\nWe can change our habits and beliefs when it comes to food and many of our eating patterns also.\r\nFood has become emotional for many of us and another way we change our states and feelings. Thankfully we can also change the emotions and feelings certain foods bring us to choose foods that are better for us and our weight management.\r\n<h2><strong><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></strong></h2>\r\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss how we can help you with self-hypnosis in many areas.</strong></span></h2>\r\nFor more information on Self-Hypnosis and our regular events, join the newsletter below\r\n\r\n[contact-form-7 id=\"447\" title=\"SH anxiety stress events form\"]\r\nA member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-04 08:53:36','2018-04-04 08:53:36','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(510,1,'2018-04-04 08:54:05','2018-04-04 08:54:05','<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Lean Self-Hypnosis\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosis Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Many clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How Effective Is Self Hypnosis For Weight Loss &amp; Weight Management?</strong></span></h2>\r\nSelf-Hypnosis is often very effective for weight loss, depending on the issues involved and most can be helped.\r\nWe can change our habits and beliefs when it comes to food and many of our eating patterns also.\r\nFood has become emotional for many of us and another way we change our states and feelings. Thankfully we can also change the emotions and feelings certain foods bring us to choose foods that are better for us and our weight management.\r\n<h2><strong><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></strong></h2>\r\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss how we can help you with self-hypnosis in many areas.</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>For more information on Self-Hypnosis and our regular events, <em>join the newsletter below</em></strong></span>\r\n\r\n[contact-form-7 id=\"447\" title=\"SH anxiety stress events form\"]\r\nA member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-04 08:54:05','2018-04-04 08:54:05','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(511,1,'2018-04-04 09:07:40','2018-04-04 09:07:40','<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"aefe7dc142\"}) })</script>\r\n<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Lean Self-Hypnosis\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosis Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Many clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How Effective Is Self Hypnosis For Weight Loss &amp; Weight Management?</strong></span></h2>\r\nSelf-Hypnosis is often very effective for weight loss, depending on the issues involved and most can be helped.\r\nWe can change our habits and beliefs when it comes to food and many of our eating patterns also.\r\nFood has become emotional for many of us and another way we change our states and feelings. Thankfully we can also change the emotions and feelings certain foods bring us to choose foods that are better for us and our weight management.\r\n<h2><strong><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></strong></h2>\r\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss how we can help you with self-hypnosis in many areas.</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>For more information on Self-Hypnosis and our regular events, <em>join the newsletter below</em></strong></span>\r\n\r\n[contact-form-7 id=\"447\" title=\"SH anxiety stress events form\"]\r\nA member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-04 09:07:40','2018-04-04 09:07:40','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(512,1,'2018-04-04 11:26:42','2018-04-04 11:26:42','<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"aefe7dc142\"}) })</script>\r\n<h2>Learn Self-Hypnosis with Newcastle Hypnotherapy.</h2>\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/CXB3uPmBR6Q?rel=0&amp;controls=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Lean Self-Hypnosis\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosis Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Many clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How Effective Is Self Hypnosis For Weight Loss &amp; Weight Management?</strong></span></h2>\r\nSelf-Hypnosis is often very effective for weight loss, depending on the issues involved and most can be helped.\r\nWe can change our habits and beliefs when it comes to food and many of our eating patterns also.\r\nFood has become emotional for many of us and another way we change our states and feelings. Thankfully we can also change the emotions and feelings certain foods bring us to choose foods that are better for us and our weight management.\r\n<h2><strong><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></strong></h2>\r\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss how we can help you with self-hypnosis in many areas.</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>For more information on Self-Hypnosis and our regular events, <em>join the newsletter below</em></strong></span>\r\n\r\n[contact-form-7 id=\"447\" title=\"SH anxiety stress events form\"]\r\nA member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-04 11:26:42','2018-04-04 11:26:42','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(513,1,'2018-04-04 11:27:39','2018-04-04 11:27:39','<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"aefe7dc142\"}) })</script>\r\n<h2><strong><span style=\"color: #008000;\">Learn Self-Hypnosis with Newcastle Hypnotherapy.</span></strong></h2>\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/CXB3uPmBR6Q?rel=0&amp;controls=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Lean Self-Hypnosis\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosis Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Many clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How Effective Is Self Hypnosis For Weight Loss &amp; Weight Management?</strong></span></h2>\r\nSelf-Hypnosis is often very effective for weight loss, depending on the issues involved and most can be helped.\r\nWe can change our habits and beliefs when it comes to food and many of our eating patterns also.\r\nFood has become emotional for many of us and another way we change our states and feelings. Thankfully we can also change the emotions and feelings certain foods bring us to choose foods that are better for us and our weight management.\r\n<h2><strong><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></strong></h2>\r\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss how we can help you with self-hypnosis in many areas.</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>For more information on Self-Hypnosis and our regular events, <em>join the newsletter below</em></strong></span>\r\n\r\n[contact-form-7 id=\"447\" title=\"SH anxiety stress events form\"]\r\nA member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-04 11:27:39','2018-04-04 11:27:39','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(514,1,'2018-04-04 11:35:19','2018-04-04 11:35:19','<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"aefe7dc142\"}) })</script>\r\n<h2><strong><span style=\"color: #008000;\">Learn Self-Hypnosis with Newcastle Hypnotherapy.</span></strong></h2>\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe width=\"300\" height=\"169\" src=\"https://www.youtube.com/embed/nW4U7CSngJY?rel=0&amp;controls=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe></div>\r\n<span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Lean Self-Hypnosis\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosis Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Many clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How Effective Is Self Hypnosis For Weight Loss &amp; Weight Management?</strong></span></h2>\r\nSelf-Hypnosis is often very effective for weight loss, depending on the issues involved and most can be helped.\r\nWe can change our habits and beliefs when it comes to food and many of our eating patterns also.\r\nFood has become emotional for many of us and another way we change our states and feelings. Thankfully we can also change the emotions and feelings certain foods bring us to choose foods that are better for us and our weight management.\r\n<h2><strong><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></strong></h2>\r\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss how we can help you with self-hypnosis in many areas.</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>For more information on Self-Hypnosis and our regular events, <em>join the newsletter below</em></strong></span>\r\n\r\n[contact-form-7 id=\"447\" title=\"SH anxiety stress events form\"]\r\nA member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-04 11:35:19','2018-04-04 11:35:19','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(518,1,'2018-04-04 11:38:48','2018-04-04 11:38:48','<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"aefe7dc142\"}) })</script>\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/nW4U7CSngJY?rel=0&amp;controls=0\" width=\"300\" height=\"169\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<div></div>\r\n<h2><span style=\"color: #008000;\"><strong>\r\nImagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span></h2>\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Lean Self-Hypnosis\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosis Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Many clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How Effective Is Self Hypnosis For Weight Loss &amp; Weight Management?</strong></span></h2>\r\nSelf-Hypnosis is often very effective for weight loss, depending on the issues involved and most can be helped.\r\nWe can change our habits and beliefs when it comes to food and many of our eating patterns also.\r\nFood has become emotional for many of us and another way we change our states and feelings. Thankfully we can also change the emotions and feelings certain foods bring us to choose foods that are better for us and our weight management.\r\n<h2><strong><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></strong></h2>\r\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss how we can help you with self-hypnosis in many areas.</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>For more information on Self-Hypnosis and our regular events, <em>join the newsletter below</em></strong></span>\r\n\r\n[contact-form-7 id=\"447\" title=\"SH anxiety stress events form\"]\r\nA member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-04 11:38:48','2018-04-04 11:38:48','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(515,1,'2018-04-04 11:37:21','2018-04-04 11:37:21','<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"aefe7dc142\"}) })</script>\r\n<h2><strong><span style=\"color: #008000;\">Learn Self-Hypnosis with Newcastle Hypnotherapy.</span></strong></h2>\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/nW4U7CSngJY?rel=0&amp;controls=0\" width=\"300\" height=\"169\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<div></div>\r\n<h2><span style=\"color: #008000;\"><strong>Imagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span></h2>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Lean Self-Hypnosis\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosis Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Many clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How Effective Is Self Hypnosis For Weight Loss &amp; Weight Management?</strong></span></h2>\r\nSelf-Hypnosis is often very effective for weight loss, depending on the issues involved and most can be helped.\r\nWe can change our habits and beliefs when it comes to food and many of our eating patterns also.\r\nFood has become emotional for many of us and another way we change our states and feelings. Thankfully we can also change the emotions and feelings certain foods bring us to choose foods that are better for us and our weight management.\r\n<h2><strong><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></strong></h2>\r\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss how we can help you with self-hypnosis in many areas.</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>For more information on Self-Hypnosis and our regular events, <em>join the newsletter below</em></strong></span>\r\n\r\n[contact-form-7 id=\"447\" title=\"SH anxiety stress events form\"]\r\nA member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-04 11:37:21','2018-04-04 11:37:21','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(517,1,'2018-04-04 11:38:04','2018-04-04 11:38:04','<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"aefe7dc142\"}) })</script>\r\n<h2><strong><span style=\"color: #008000;\">Learn Self-Hypnosis with Newcastle Hypnotherapy.</span></strong></h2>\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/nW4U7CSngJY?rel=0&amp;controls=0\" width=\"300\" height=\"169\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<div></div>\r\n<h2><span style=\"color: #008000;\"><strong>\r\nImagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span></h2>\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Lean Self-Hypnosis\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosis Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Many clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How Effective Is Self Hypnosis For Weight Loss &amp; Weight Management?</strong></span></h2>\r\nSelf-Hypnosis is often very effective for weight loss, depending on the issues involved and most can be helped.\r\nWe can change our habits and beliefs when it comes to food and many of our eating patterns also.\r\nFood has become emotional for many of us and another way we change our states and feelings. Thankfully we can also change the emotions and feelings certain foods bring us to choose foods that are better for us and our weight management.\r\n<h2><strong><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></strong></h2>\r\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss how we can help you with self-hypnosis in many areas.</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>For more information on Self-Hypnosis and our regular events, <em>join the newsletter below</em></strong></span>\r\n\r\n[contact-form-7 id=\"447\" title=\"SH anxiety stress events form\"]\r\nA member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-04 11:38:04','2018-04-04 11:38:04','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(516,1,'2018-04-04 11:37:43','2018-04-04 11:37:43','<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"aefe7dc142\"}) })</script>\r\n<h2><strong><span style=\"color: #008000;\">Learn Self-Hypnosis with Newcastle Hypnotherapy.</span></strong></h2>\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/nW4U7CSngJY?rel=0&amp;controls=0\" width=\"300\" height=\"169\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<div></div>\r\n<h2><span style=\"color: #008000;\"><strong>\r\nImagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span></h2>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Lean Self-Hypnosis\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosis Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Many clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How Effective Is Self Hypnosis For Weight Loss &amp; Weight Management?</strong></span></h2>\r\nSelf-Hypnosis is often very effective for weight loss, depending on the issues involved and most can be helped.\r\nWe can change our habits and beliefs when it comes to food and many of our eating patterns also.\r\nFood has become emotional for many of us and another way we change our states and feelings. Thankfully we can also change the emotions and feelings certain foods bring us to choose foods that are better for us and our weight management.\r\n<h2><strong><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></strong></h2>\r\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss how we can help you with self-hypnosis in many areas.</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>For more information on Self-Hypnosis and our regular events, <em>join the newsletter below</em></strong></span>\r\n\r\n[contact-form-7 id=\"447\" title=\"SH anxiety stress events form\"]\r\nA member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-04 11:37:43','2018-04-04 11:37:43','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(519,1,'2018-04-04 11:40:01','2018-04-04 11:40:01','<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"aefe7dc142\"}) })</script>\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/nW4U7CSngJY?rel=0&amp;controls=0\" width=\"300\" height=\"169\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<div></div>\r\n<h2><span style=\"color: #008000;\"><strong>\r\nImagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span></h2>\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Lean Self-Hypnosis\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosis Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Many clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How Effective Is Self Hypnosis For Weight Loss &amp; Weight Management?</strong></span></h2>\r\nSelf-Hypnosis is often very effective for weight loss, depending on the issues involved and most can be helped.\r\nWe can change our habits and beliefs when it comes to food and many of our eating patterns also.\r\nFood has become emotional for many of us and another way we change our states and feelings. Thankfully we can also change the emotions and feelings certain foods bring us to choose foods that are better for us and our weight management.\r\n<h2><strong><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></strong></h2>\r\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss how we can help you with self-hypnosis in many areas.</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>For more information to learn Self-Hypnosis and our regular events, <em>join the newsletter below</em></strong></span>\r\n\r\n[contact-form-7 id=\"447\" title=\"SH anxiety stress events form\"]\r\nA member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','Learn Self-Hypnosis','','inherit','closed','closed','','486-revision-v1','','','2018-04-04 11:40:01','2018-04-04 11:40:01','',486,'http://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(520,1,'2018-04-04 11:44:17','2018-04-04 11:44:17','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\nCall us on 07568 455 809 to discuss which of these options is best for you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 11:44:17','2018-04-04 11:44:17','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(524,1,'2018-04-04 11:55:59','2018-04-04 11:55:59','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n<h2><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 11:55:59','2018-04-04 11:55:59','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(522,1,'2018-04-04 11:53:39','2018-04-04 11:53:39','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\nCall us on 07568 455 809 to discuss which of these options is best for you.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 11:53:39','2018-04-04 11:53:39','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(521,1,'2018-04-04 11:52:42','2018-04-04 11:52:42','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\nCall us on 07568 455 809 to discuss which of these options is best for you.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 11:52:42','2018-04-04 11:52:42','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(523,1,'2018-04-04 11:54:38','2018-04-04 11:54:38','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 11:54:38','2018-04-04 11:54:38','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(525,1,'2018-04-04 12:16:16','2018-04-04 12:16:16','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n<h2><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 12:16:16','2018-04-04 12:16:16','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(526,1,'2018-04-04 12:18:00','2018-04-04 12:18:00','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n<h2><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 12:18:00','2018-04-04 12:18:00','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(527,1,'2018-04-04 16:28:58','2018-04-04 16:28:58','<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>\r\n<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n<h2><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 16:28:58','2018-04-04 16:28:58','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(528,1,'2018-04-04 16:40:19','2018-04-04 16:40:19','<fieldset>\r\n	<legend>Your Details</legend>\r\n	<ol>\r\n		<li> Name [text cf7s-name] </li>\r\n		<li> Email [email* cf7s-email] </li>\r\n		\r\n	</ol>\r\n	[submit \"Submit\"]\r\n	<p>* Required</p>\r\n</fieldset>\n1\nNH Anxiety Page\n[your-name] <mark@newcastle-hypnotherapy.com>\n<mark@newcastle-hypnotherapy.com>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject] subject test\r\n\r\nMessage Body: HI Test text\r\n[your-message]\nReply-To: <mark@newcastle-hypnotherapy.com>\n\n\n\n\nNewcastle Hypnotherapy Tyneside & Northumberland, \"[your-subject]\"\nNewcastle Hypnotherapy Tyneside & Northumberland, <mark@newcastle-hypnotherapy.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Newcastle Hypnotherapy Tyneside &amp; Northumberland, (http://www.newcastle-hypnotherapy.com)\nReply-To: mark@newcastle-hypnotherapy.com\n\n\n\nThank you. You have been added to the Anxiety Relief newsletter\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Anxiety','','publish','closed','closed','','anxiety','','','2018-09-29 14:43:10','2018-09-29 14:43:10','',0,'http://www.newcastle-hypnotherapy.com/?post_type=wpcf7_contact_form&#038;p=528',0,'wpcf7_contact_form','',0),(529,1,'2018-04-04 16:41:34','2018-04-04 16:41:34','<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>\r\n<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n<h2><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 16:41:34','2018-04-04 16:41:34','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(530,1,'2018-04-04 16:51:04','2018-04-04 16:51:04','Anxiety Relief','anxiety','','inherit','open','closed','','anxiety-2','','','2018-04-04 16:51:34','2018-04-04 16:51:34','',68,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/anxiety.jpg',0,'attachment','image/jpeg',0),(535,1,'2018-04-04 17:02:07','2018-04-04 17:02:07','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 17:02:07','2018-04-04 17:02:07','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(533,1,'2018-04-04 16:59:21','2018-04-04 16:59:21','Anxiety Relief','Anxiety Relief 2','','inherit','open','closed','','anxiety-relief-2','','','2018-04-04 16:59:41','2018-04-04 16:59:41','',68,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2.jpg',0,'attachment','image/jpeg',0),(531,1,'2018-04-04 16:52:24','2018-04-04 16:52:24','<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>\r\n<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-thumbnail wp-image-530\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/anxiety-150x150.jpg\" alt=\"Anxiety Relief\" width=\"150\" height=\"150\" />\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 16:52:24','2018-04-04 16:52:24','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(532,1,'2018-04-04 16:53:04','2018-04-04 16:53:04','<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>\r\n<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-530 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/anxiety-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 16:53:04','2018-04-04 16:53:04','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(534,1,'2018-04-04 17:00:00','2018-04-04 17:00:00','<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>\r\n<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 17:00:00','2018-04-04 17:00:00','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(536,1,'2018-04-04 17:03:57','2018-04-04 17:03:57','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><span style=\"color: #008000;\">\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n\r\n\r\nAnxiety Relief Made Easy.</span></strong>\r\n\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 17:03:57','2018-04-04 17:03:57','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(537,1,'2018-04-04 17:04:31','2018-04-04 17:04:31','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a></strong>\r\n\r\nAnxiety Relief Made Easy.\r\n\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 17:04:31','2018-04-04 17:04:31','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(538,1,'2018-04-04 17:06:04','2018-04-04 17:06:04','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a></strong>\r\n<h2><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 17:06:04','2018-04-04 17:06:04','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(539,1,'2018-04-04 17:06:22','2018-04-04 17:06:22','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 17:06:22','2018-04-04 17:06:22','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(544,1,'2018-04-04 17:13:10','2018-04-04 17:13:10','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n\r\nHow\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 17:13:10','2018-04-04 17:13:10','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(540,1,'2018-04-04 17:07:14','2018-04-04 17:07:14','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 17:07:14','2018-04-04 17:07:14','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(541,1,'2018-04-04 17:12:03','2018-04-04 17:12:03','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nHow\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 17:12:03','2018-04-04 17:12:03','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(542,1,'2018-04-04 17:12:28','2018-04-04 17:12:28','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nHow\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 17:12:28','2018-04-04 17:12:28','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(543,1,'2018-04-04 17:12:50','2018-04-04 17:12:50','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n\r\n&nbsp;\r\n\r\nHow\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 17:12:50','2018-04-04 17:12:50','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(545,1,'2018-04-04 17:18:08','2018-04-04 17:18:08','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><span style=\"color: #008000;\">How does the Anxiety Relief Program Work?</span></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 17:18:08','2018-04-04 17:18:08','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(547,1,'2018-04-04 17:28:50','2018-04-04 17:28:50','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How does the Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety.</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 17:28:50','2018-04-04 17:28:50','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(546,1,'2018-04-04 17:22:46','2018-04-04 17:22:46','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How does the Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Thankfully there are a number of proven techniques to quickly reduce and banish anxiety.</span></strong></p>\r\nComplete the form below or call us today to take your first steps to take charge of your anxiety\r\nTel <span style=\"color: #008000;\">07568 455 809</span>\r\n[wpforms id=\"35\"]\r\n\r\n<span style=\"color: #008000;\"><strong>Is anxiety making your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 17:22:46','2018-04-04 17:22:46','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(548,1,'2018-04-04 17:33:49','2018-04-04 17:33:49','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety.</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?\r\n</strong></span>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 17:33:49','2018-04-04 17:33:49','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(549,1,'2018-04-04 17:38:14','2018-04-04 17:38:14','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 17:38:14','2018-04-04 17:38:14','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(550,1,'2018-04-04 17:51:35','2018-04-04 17:51:35','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.\r\n<h2><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n\r\n\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 17:51:35','2018-04-04 17:51:35','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(551,1,'2018-04-04 17:54:31','2018-04-04 17:54:31','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.\r\n<h2><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 17:54:31','2018-04-04 17:54:31','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(552,1,'2018-04-04 18:03:11','2018-04-04 18:03:11','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.\r\n<h2><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chose outcomes and it is better to feel relaxed and calm to help you achieve your goals.\r\n\r\nAre you now ready to take charge of your Anxiety today?\r\nCall 07568 455 809 Today, For Your Free, Confidential Phone Consultation\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 18:03:11','2018-04-04 18:03:11','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(553,1,'2018-04-04 18:04:19','2018-04-04 18:04:19','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.\r\n<h2><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chose outcomes and it is better to feel relaxed and calm to help you achieve your goals.\r\n\r\nAre you now ready to take charge of your Anxiety today and discover a life without anxiety?\r\nCall 07568 455 809 Today, For Your Free, Confidential Phone Consultation\r\n\r\n&nbsp;\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 18:04:19','2018-04-04 18:04:19','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(554,1,'2018-04-04 18:07:27','2018-04-04 18:07:27','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.\r\n<h2><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chose outcomes and it is better to feel relaxed and calm to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 18:07:27','2018-04-04 18:07:27','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(555,1,'2018-04-04 18:08:16','2018-04-04 18:08:16','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chose outcomes and it is better to feel relaxed and calm to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-04 18:08:16','2018-04-04 18:08:16','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(556,1,'2018-04-07 18:27:54','2018-04-07 18:27:54','<img class=\"alignleft size-medium wp-image-1119\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/cereal-898073_1280-300x200.jpg\" alt=\"Lose Weight With Hypnosis\" width=\"300\" height=\"200\" /><strong>Who else is is ready to Lose Weight &amp; Feel Great?</strong>\r\nThe \"Lose Weight With Hypnosis\" program will help you to feel good, look better and increase your energy.\r\nThis program will show you the tricks to maintaining a healthy weight while still enjoying your favourite foods and taking control of those food cravings.\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong><strong>sugar-free</strong></em><strong><em>’ for over two weeks”</em> </strong>\r\n<h2><span style=\"color: #008000;\"><strong>Lose Weight With Hypnosis.</strong></span></h2>\r\nHypnosis is a powerful tool that puts you back in control while also taking control of emotional eating and beating those food cravings. Hypnotherapy will help you:\r\n<ul>\r\n 	<li>Learn when hunger is real or emotional</li>\r\n 	<li>Give you control over your cravings</li>\r\n 	<li>Give you the willpower you need</li>\r\n 	<li>Choose the right foods to eat</li>\r\n 	<li>Make you aware of unconscious eating</li>\r\n 	<li>Eliminate unwanted behaviours &amp; bad habits</li>\r\n 	<li>Control stress or anxiety that may make things worse</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to get started and lose weight with hypnosis?</strong></span></h2>\r\nYour first step is to arrange your free phone consultation. This is where we can discuss any issues that may have held you back in the past, decide how you want to move forward and see if hypnotherapy is right for you.\r\n<strong>To get started simply call Mark on 07568 455 809 to arrange your free consultation.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Joyce</span> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Lose Weight With Hypnosis - Questions &amp; Answers.</span>\r\n</strong></h2>\r\n<strong>Will I have to go hungry?</strong>\r\nNo. When you are hungry you need to eat. This program will help you recognise when you are really hungry and when you are eating out of habit or emotion.\r\n\r\n<strong>Is the Weight Loss With Hypnosis Program the same for everyone?</strong>\r\nNo. We tailor the program to your individual needs as everyone is different and we all have a different history.\r\n\r\n<strong>How does anxiety &amp; stress affect weight loss?</strong>\r\nEveryone experiences anxiety &amp; stress on a daily basis and most people handle these naturally.\r\nIf you handle anxiety &amp; stress badly, we need to work on these together as this really increases your weight loss results.\r\n\r\n<strong>Is the Weight Loss With Hypnosis program the same as the Hypnotic Gastric Band?</strong>\r\nNo. The hypnotic gastric band program has been very successful, for many people. However, it is not suitable for everyone.  You may have health issues or suffer from anxiety, stress or depression. We need to evaluate these and tailor the program to suit your needs.\r\n\r\n<strong>How long does this program take?</strong>\r\nUsually, the Weight Loss With Hypnosis program takes 3 to 4 sessions of about 1 hour, depending on your needs.\r\n\r\n<strong>How fast will I lose weight?</strong>\r\nYour weight loss should always be at a speed that is comfortable for you and we prefer to work on healthy weight loss for long-term results.\r\n\r\n<strong>How does hypnosis help with weight loss?</strong>\r\nHypnosis is a powerful way to change your behaviours and habits that may be causing your weight gain.\r\nHypnotherapy will make you aware of these behaviours and give you self-control.\r\n\r\n<strong>What is my next step?</strong>\r\nYour next step is to arrange your free phone consultation with Mark, to look at the best way forward for you and answer your questions. <strong>Call 07568 455 809 today or complete the form below.</strong>\r\n\r\n[wpforms id=\"35\"]\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"color: #008000;\"><strong>Why is obesity and being overweight loss becoming such a big issue?</strong></span></h2>\r\nFirstly we are being pushed repeatedly to buy more and more products, including food.\r\nMany adverts now link emotion to food and as a result, many of us use food to change our emotions. This means we eat at the wrong times or when we feel unhappy.\r\n\r\nAnother issue is our modern busy lives. Time is often short and very often we eat unconsciously without recognising how much and exactly what we are eating. As a result, we become less aware of when we are full and often eat food despite being full.\r\n<h2><span style=\"color: #008000;\"><strong>Why Do Slimming Clubs Not Work?</strong></span></h2>\r\nMany people turn to slimming clubs when they need help with weight loss. Statistically, most of those people end up gaining more weight long-term, than when they started.\r\nOne of the issues with these clubs is the constant magazines and messages about food. Rather than focus on being healthy, fit and energetic the focus is on food, food and more food. Very often these foods are those being sold by the clubs themselves.\r\n\r\nAnother big issue is changing peoples self-image. A big part of what we do is to allow clients to see themselves as a healthier, fitter, slimmer person. If a person has a negative self-image or always believes they will be overweight, unfit and unhealthy, they will most likely revert back to that old behaviour.\r\n<h2><strong><span style=\"color: #008000;\">How can hypnosis make things easier?</span></strong></h2>\r\nHypnosis and hypnotherapy are so wonderful as we can change how a person sees themselves. Once this new belief has been created, changing beliefs, habits and behaviours are so much easier and results are seen so much faster.\r\n\r\nIf you are now ready to also change your life, lose weight with hypnosis, increase your energy and feel so much better, give Mark a call on 07568 455 809 and we can arrange your free consultation.','LOSE WEIGHT WITH HYPNOSIS','','publish','closed','closed','','lose-weight-with-hypnosis','','','2019-01-06 18:35:13','2019-01-06 18:35:13','',1451,'http://www.newcastle-hypnotherapy.com/?page_id=556',8,'page','',0),(557,1,'2018-04-07 18:26:37','2018-04-07 18:26:37','','Weight Loss With Hypnosis','','inherit','closed','closed','','556-revision-v1','','','2018-04-07 18:26:37','2018-04-07 18:26:37','',556,'http://www.newcastle-hypnotherapy.com/556-revision-v1/',0,'revision','',0),(558,1,'2018-08-02 20:56:00','2018-08-02 20:56:00','<img class=\"alignleft size-medium wp-image-1119\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/cereal-898073_1280-300x200.jpg\" alt=\"Lose Weight With Hypnosis\" width=\"300\" height=\"200\" /><strong>Who else is is ready to Lose Weight &amp; Feel Great?</strong>\nThe \"Lose Weight With Hypnosis\" program will help you to feel good, look better and increase your energy.\nThis program will show you the tricks to maintaining a healthy weight while still enjoying your favourite foods and taking control of those food cravings.\n\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong><strong>sugar-free</strong></em><strong><em>’ for over two weeks”</em> </strong>\n<h2><span style=\"color: #008000;\"><strong>Lose Weight With Hypnosis.</strong></span></h2>\nHypnosis is a powerful tool that puts you back in control while also taking control of emotional eating and beating those food cravings. Hypnotherapy will help you:\n<ul>\n 	<li>Learn when hunger is real or emotional</li>\n 	<li>Give you control over your cravings</li>\n 	<li>Give you the willpower you need</li>\n 	<li>Choose the right foods to eat</li>\n 	<li>Make you aware of unconscious eating</li>\n 	<li>Eliminate unwanted behaviours &amp; bad habits</li>\n 	<li>Control stress or anxiety that may make things worse</li>\n</ul>\n<h2><span style=\"color: #008000;\"><strong>Are you ready to get started and lose weight with hypnosis?</strong></span></h2>\nYour first step is to arrange your free phone consultation. This is where we can discuss any issues that may have held you back in the past, decide how you want to move forward and see if hypnotherapy is right for you.\n<strong>To get started simply call Mark on 07568 455 809 to arrange your free consultation.</strong>\n\n<strong><span style=\"color: #008000;\">Client Feedback by Joyce</span> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\n<h2><strong><span style=\"color: #008000;\">Lose Weight With Hypnosis - Questions &amp; Answers.</span>\n</strong></h2>\n<strong>Will I have to go hungry?</strong>\nNo. When you are hungry you need to eat. This program will help you recognise when you are really hungry and when you are eating out of habit or emotion.\n\n<strong>Is the Weight Loss With Hypnosis Program the same for everyone?</strong>\nNo. We tailor the program to your individual needs as everyone is different and we all have a different history.\n\n<strong>How does anxiety &amp; stress affect weight loss?</strong>\nEveryone experiences anxiety &amp; stress on a daily basis and most people handle these naturally.\nIf you handle anxiety &amp; stress badly, we need to work on these together as this really increases your weight loss results.\n\n<strong>Is the Weight Loss With Hypnosis program the same as the Hypnotic Gastric Band?</strong>\nNo. The hypnotic gastric band program has been very successful, for many people. However, it is not suitable for everyone.  You may have health issues or suffer from anxiety, stress or depression. We need to evaluate these and tailor the program to suit your needs.\n\n<strong>How long does this program take?</strong>\nUsually, the Weight Loss With Hypnosis program takes 3 to 4 sessions of about 1 hour, depending on your needs.\n\n<strong>How fast will I lose weight?</strong>\nYour weight loss should always be at a speed that is comfortable for you and we prefer to work on healthy weight loss for long-term results.\n\n<strong>How does hypnosis help with weight loss?</strong>\nHypnosis is a powerful way to change your behaviours and habits that may be causing your weight gain.\nHypnotherapy will make you aware of these behaviours and give you self-control.\n\n<strong>What is my next step?</strong>\nYour next step is to arrange your free phone consultation with Mark, to look at the best way forward for you and answer your questions. <strong>Call 07568 455 809 today or complete the form below.</strong>\n\n[wpforms id=\"35\"]\n<div>\n\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\n\n</div>\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\n<h2><span style=\"color: #008000;\"><strong>Why is obesity and being overweight loss becoming such a big issue?</strong></span></h2>\nFirstly we are being pushed repeatedly to buy more and more products, including food.\nMany adverts now link emotion to food and as a result, many of us use food to change our emotions. This means we eat at the wrong times or when we feel unhappy.\n\nAnother issue is our modern busy lives. Time is often short and very often we eat unconsciously without recognising how much and exactly what we are eating. As a result, we become less aware of when we are full and often eat food despite being full.\n<h2><span style=\"color: #008000;\"><strong>Why Do Slimming Clubs Not Work?</strong></span></h2>\nMany people turn to slimming clubs when they need help with weight loss. Statistically, most of those people end up gaining more weight long-term, than when they started.\nOne of the issues with these clubs is the constant magazines and messages about food. Rather than focus on being healthy, fit and energetic the focus is on food, food and more food. Very often these foods are those being sold by the clubs themselves.\n\nAnother big issue is changing peoples self-image. A big part of what we do is to allow clients to see themselves as a healthier, fitter, slimmer person. If a person has a negative self-image or always believes they will be overweight, unfit and unhealthy, they will most likely revert back to that old behaviour.\n\nHow can hypnosis make things\n\nHypnosis and hypnotherapy are so wonderful as we can change how a person sees themselves. Once this new belief has been created, changing beliefs, habits and behaviours are so much easier and results are seen so much faster.\n\nIf you are now ready to also change your life, lose weight with hypnosis, increase your energy and feel so much better, give Mark a call on 07568 455 809 and we can arrange your free consultation.','Lose Weight With Hypnosis','','inherit','closed','closed','','556-autosave-v1','','','2018-08-02 20:56:00','2018-08-02 20:56:00','',556,'http://www.newcastle-hypnotherapy.com/556-autosave-v1/',0,'revision','',0),(559,1,'2018-04-07 18:31:04','2018-04-07 18:31:04','Are you ready to lose weight and keep it off?','Weight Loss With Hypnosis','','inherit','closed','closed','','556-revision-v1','','','2018-04-07 18:31:04','2018-04-07 18:31:04','',556,'http://www.newcastle-hypnotherapy.com/556-revision-v1/',0,'revision','',0),(560,1,'2018-04-07 18:33:03','2018-04-07 18:33:03','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nThe Healing Pool &amp; The Mental Message\r\n</span></strong>\r\n\r\nWednesday 24th July\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\n£12.50 Early Bird (£20 after)\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - July\r\n</strong></span></h4>\r\nDuring this months practice group, we will focus on two self-hypnosis techniques to quickly promote self-healing and mental relaxation.\r\nBoth are easy to learn for fast, relaxation and creating calm, stress-free states.\r\nWe will take you through this step by step and then practice this, ensuring you can use this induction well.\r\n\r\n<strong>Suitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practising and strengthening your skills</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Why Learn Self-Hypnosis Skills?</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\n<h4>As part of this workshop, you will</h4>\r\n<ul>\r\n 	<li>learn what is self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions, and behaviour</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\n<strong>This self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.</strong>\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can learn about our other events by joining the newsletter</strong>\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n<strong>You can unsubscribe from the newsletter at any time using the link in every email.</strong>','The Healing Pool & The Mental Message','','publish','closed','closed','','self-hypnosis-practice-group-newcastle','','','2019-07-17 12:41:04','2019-07-17 12:41:04','',322,'http://www.newcastle-hypnotherapy.com/?page_id=560',6,'page','',0),(2680,1,'2019-03-27 10:08:26','2019-03-27 10:08:26','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n27th March. 7.30 pm to 9.3o\r\nThe Vault, Wallsend.\r\n£15 each (£10 Early Bird)\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - March\r\n</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\nSuitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practising and strengthening your skills.\r\n<ul>\r\n 	<li>learn self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions and behaviour</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\nThis self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can learn about our other events by joining the newsletter\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYou can unsubscribe from the newsletter at any time using the link in every email.','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-03-27 10:08:26','2019-03-27 10:08:26','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(561,1,'2018-04-07 18:32:45','2018-04-07 18:32:45','','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-07 18:32:45','2018-04-07 18:32:45','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(562,1,'2018-04-07 18:45:45','2018-04-07 18:45:45','Imagine\r\n\r\nLearn Self-Hypnosis To Manage Your Weight.\r\n\r\nSelf-hypnosis is a powerful tool that can really help to change eating habits, manage cravings and help you make better choices.\r\n\r\n<strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong>\r\n<ul>\r\n 	<li>how to control food cravings</li>\r\n 	<li>how make better food choices</li>\r\n 	<li>how to use portion control</li>\r\n</ul>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-07 18:45:45','2018-04-07 18:45:45','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(564,1,'2018-04-09 20:47:11','2018-04-09 20:47:11','&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/QDixy8yh1Q0?rel=0&amp;showinfo=0\" width=\"100%\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<h2><strong>Self Hypnosis Introduction Workshop\r\nHosted by Newcastle Hypnotherapy\r\n</strong></h2>\r\n<strong>Saturday, 21st </strong><strong><span class=\"\">April</span></strong> <strong>2018. 1 pm to 4.30 pm.\r\nThe Vault</strong>, Wallsend, Newcastle upon Tyne.\r\n<strong><span style=\"color: #ff0000;\">Limited Availability: </span></strong><strong>Spaces are limited to just 12 people &amp; booking in advance is required.\r\n<span style=\"color: #ff6600;\">8 Spaces remaining</span></strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>This workshop is £99 for the whole workshop &amp; includes handouts &amp; notes.\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form><script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-04-09 20:47:11','2018-04-09 20:47:11','',347,'http://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(566,1,'2018-04-09 20:56:50','2018-04-09 20:56:50','<span style=\"color: #008000;\"><strong>Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Review by Kris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Client Feedback','','inherit','closed','closed','','200-revision-v1','','','2018-04-09 20:56:50','2018-04-09 20:56:50','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(567,1,'2018-04-09 20:58:50','2018-04-09 20:58:50','<span style=\"color: #008000;\"><strong>Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Review by Kris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','Client Feedback','','inherit','closed','closed','','200-revision-v1','','','2018-04-09 20:58:50','2018-04-09 20:58:50','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(568,1,'2018-04-09 21:00:11','2018-04-09 21:00:11','<span style=\"color: #008000;\"><strong>Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','Client Feedback','','inherit','closed','closed','','200-revision-v1','','','2018-04-09 21:00:11','2018-04-09 21:00:11','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(569,1,'2018-04-09 21:01:29','2018-04-09 21:01:29','<span style=\"color: #008000;\"><strong>Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft size-thumbnail wp-image-315\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedbacl\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;','Client Feedback','','inherit','closed','closed','','200-revision-v1','','','2018-04-09 21:01:29','2018-04-09 21:01:29','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(570,1,'2018-04-09 21:02:26','2018-04-09 21:02:26','<span style=\"color: #008000;\"><strong>Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;','Client Feedback','','inherit','closed','closed','','200-revision-v1','','','2018-04-09 21:02:26','2018-04-09 21:02:26','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(571,1,'2018-04-09 21:06:11','2018-04-09 21:06:11','<span style=\"color: #008000;\"><strong>Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;','Client Feedback','','inherit','closed','closed','','200-revision-v1','','','2018-04-09 21:06:11','2018-04-09 21:06:11','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(572,1,'2018-04-09 21:07:00','2018-04-09 21:07:00','<span style=\"color: #008000;\"><strong>Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;','Client Feedback','','inherit','closed','closed','','200-revision-v1','','','2018-04-09 21:07:00','2018-04-09 21:07:00','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(574,1,'2018-04-09 21:10:41','2018-04-09 21:10:41','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nThe Life Unlimited Group are specialists in \"Change Work\". This means we help our clients to make major changes in their lives, for the better.\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of the people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Stress & Stress Management','','inherit','closed','closed','','106-revision-v1','','','2018-04-09 21:10:41','2018-04-09 21:10:41','',106,'http://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(576,1,'2018-04-10 07:33:07','2018-04-10 07:33:07','You certainly can. The mind is very powerful and when using hypnosis to really make some changes.\r\nThe mind becomes almost supercharged when we focus on what we want. You may be away of the many outside influences that cause us to gain weight, such as TV advertising, constant recipes in magazines, promotion of foods in supermarkets etc. There are many hypnotic techniques we can use to put ourselves back in control of our eating habits to help with healthy weight loss.\r\n<strong>Enjoy this article on weight loss with hypnosis.</strong>\r\nIf you would like to discuss options of how you can benefit from hypnosis, simply give us a call on <strong>07568 455 809.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Think yourself slim with hypnosis</span></strong></h2>\r\n<iframe src=\"https://www.dailymail.co.uk/femail/article-5584345/Can-think-slim-Expert-says-hypnotic-lap-band-surgery-help-drop-kilos-fast.html\" width=\"700\" height=\"2000\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h2>How can you use Hypnosis &amp; Hypnotherapy for Weight Loss?</h2>\r\nThere are a number of options when dealing with weight loss.\r\nOne of the biggest causes of overeating is that we have become emotionally attached to our food. Many people use food to change their emotions as we are programmed to do this by the media. As an example, a certain soft drinks company often shows their product with people looking happy, living life to the full or even enjoying Christmas.\r\nAs a result, we try to change our feelings by buying and consuming certain products.\r\n\r\nIn order to change this behavior, we need to need to use something else to feel good, satisfied and loved.\r\nThis is where self-hypnosis is very useful as once you have mastered the simple skills, we can turn on \"good feelings\" on demand. This can be instant and used anytime, anywhere.\r\n\r\n<strong>Having a choice over what we eat?</strong>\r\nHealthy food choices are everywhere and most convenience stores now stock health fruits, snacks, nuts and seeds.\r\nIt is amazing how most people will grab a bag of crisps, chocolate or a meal deal, loaded with fats, and sugars when needing food in a hurry. This is often done without thought to the compounding effect on our health and weight.\r\n\r\nHypnosis can introduce a new habit of thinking about the food we pick up and giving us a choice to pick up that bad food or to choose the healthier options. This allows us to feel better emotionally and puts us back in control.\r\n<h2><span style=\"color: #008000;\">Are you ready to train your mind for healthy weight loss?</span></h2>\r\nGive us a call to discuss what may help you and what is holding you back with your weight loss.\r\nWe have weight loss programs that we tailor to your needs and look to lose the weight at a speed comfortable for you.\r\n\r\nCall 07568 455 809 Today, For Your Free, Confidential Phone Consultation\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-thumbnail wp-image-315\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedbacl\" width=\"150\" height=\"150\" />Proud members of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>','Can you think yourself slim with Hypnosis?','','publish','open','open','','think-yourself-slim-with-hypnosis','','','2018-11-19 15:57:17','2018-11-19 15:57:17','',0,'http://www.newcastle-hypnotherapy.com/?p=576',0,'post','',0),(577,1,'2018-04-10 07:33:07','2018-04-10 07:33:07','&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<iframe src=\"http://www.dailymail.co.uk/femail/article-5584345/Can-think-slim-Expert-says-hypnotic-lap-band-surgery-help-drop-kilos-fast.html\" height=\"200\" width=\"300\"></iframe>','','','inherit','closed','closed','','576-revision-v1','','','2018-04-10 07:33:07','2018-04-10 07:33:07','',576,'http://www.newcastle-hypnotherapy.com/576-revision-v1/',0,'revision','',0),(578,1,'2018-04-10 08:16:42','2018-04-10 08:16:42','You certainly can. The mind is very powerful and when using hypnosis to really make some changes.\nThe mind becomes almost supercharged when we focus on what we want. You may be away of the many outside influences that cause us to gain weight, such as TV advertising, constant recipes in magazines, promotion of foods in supermarkets etc.\nThere are many hypnotic techniques we can use to put ourselves back in control of our eating habits to help with healthy weight loss.\nEnjoy this article on weight loss with hypnosis.\nIf you would like to discuss options of how you can benefit from hypnosis, simply give us a call on 07568 455 809.\n\n&nbsp;\n<h2><strong><span style=\"color: #008000;\">Think yourself slim with hypnosis</span></strong></h2>\n<iframe src=\"http://www.dailymail.co.uk/femail/article-5584345/Can-think-slim-Expert-says-hypnotic-lap-band-surgery-help-drop-kilos-fast.html\" width=\"700\" height=\"2000\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\n<h2>How can you use Hypnosis &amp; Hypnotherapy for Weight Loss?</h2>\nThere are a number of options when dealing with weight loss.\nOne of the biggest causes of overeating is that we have become emotionally attached to our food. Many people use food to change their emotions as we are programmed to do this by the media. As an example, a certain soft drinks company often shows their product with people looking happy, living life to the full or even enjoying Christmas.\nAs a result, we try to change our feelings by buying and consuming certain products.\n\nIn order to change this behavior, we need to need to use something else to feel good, satisfied and loved.\nThis is where self-hypnosis is very useful as once you have mastered the simple skills, we can turn on \"good feelings\" on demand. This can be instant and used anytime, anywhere.\n\n<strong>Having a choice over what we eat?</strong>\nHealthy food choices are everywhere and most convenience stores now stock health fruits, snacks, nuts and seeds.\nIt is amazing how most people will grab a bag of crisps, chocolate or a meal deal, loaded with fats, and sugars when needing food in a hurry. This is often done without thought to the compounding effect on our health and weight.\n\nHypnosis can introduce a new habit of thinking about the food we pick up and giving us a choice to pick up that bad food or to choose the healthier options. This allows us to feel better emotionally and puts us back in control.\n<h2><span style=\"color: #008000;\">Are you ready to train your mind for healthy weight loss?</span></h2>\nGive us a call to discuss what may help you and what is holding you back with your weight loss.\nWe have weight loss programs that we tailor to your needs and look to lose the weight at a speed comfortable for you.\n\nCall 07568 455 809 Today, For Your Free, Confidential Phone Consultation\n\n&nbsp;\n\n\n<img class=\"alignleft size-thumbnail wp-image-315\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedbacl\" width=\"150\" height=\"150\" />Proud members of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>','Can you think yourself slim with Hypnosis?','','inherit','closed','closed','','576-autosave-v1','','','2018-04-10 08:16:42','2018-04-10 08:16:42','',576,'http://www.newcastle-hypnotherapy.com/576-autosave-v1/',0,'revision','',0),(579,1,'2018-04-10 07:36:25','2018-04-10 07:36:25','You certainly can. The mind is very powerful and when using hypnosis you can really make some changes.\r\nEnjoy the article\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"http://www.dailymail.co.uk/femail/article-5584345/Can-think-slim-Expert-says-hypnotic-lap-band-surgery-help-drop-kilos-fast.html\" width=\"700\" height=\"500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>','Can you think yourself slim with Hypnosis?','','inherit','closed','closed','','576-revision-v1','','','2018-04-10 07:36:25','2018-04-10 07:36:25','',576,'http://www.newcastle-hypnotherapy.com/576-revision-v1/',0,'revision','',0),(580,1,'2018-04-10 07:38:38','2018-04-10 07:38:38','You certainly can. The mind is very powerful and when using hypnosis you can really make some changes.\r\nEnjoy this article on weight loss with hypnosis\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"http://www.dailymail.co.uk/femail/article-5584345/Can-think-slim-Expert-says-hypnotic-lap-band-surgery-help-drop-kilos-fast.html\" width=\"700\" height=\"500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>','Can you think yourself slim with Hypnosis?','','inherit','closed','closed','','576-revision-v1','','','2018-04-10 07:38:38','2018-04-10 07:38:38','',576,'http://www.newcastle-hypnotherapy.com/576-revision-v1/',0,'revision','',0),(581,1,'2018-04-10 07:39:01','2018-04-10 07:39:01','You certainly can. The mind is very powerful and when using hypnosis you can really make some changes.\r\nEnjoy this article on weight loss with hypnosis\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"http://www.dailymail.co.uk/femail/article-5584345/Can-think-slim-Expert-says-hypnotic-lap-band-surgery-help-drop-kilos-fast.html\" width=\"700\" height=\"1000\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>','Can you think yourself slim with Hypnosis?','','inherit','closed','closed','','576-revision-v1','','','2018-04-10 07:39:01','2018-04-10 07:39:01','',576,'http://www.newcastle-hypnotherapy.com/576-revision-v1/',0,'revision','',0),(582,1,'2018-04-10 07:39:29','2018-04-10 07:39:29','You certainly can. The mind is very powerful and when using hypnosis you can really make some changes.\r\nEnjoy this article on weight loss with hypnosis\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"http://www.dailymail.co.uk/femail/article-5584345/Can-think-slim-Expert-says-hypnotic-lap-band-surgery-help-drop-kilos-fast.html\" width=\"700\" height=\"2000\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>','Can you think yourself slim with Hypnosis?','','inherit','closed','closed','','576-revision-v1','','','2018-04-10 07:39:29','2018-04-10 07:39:29','',576,'http://www.newcastle-hypnotherapy.com/576-revision-v1/',0,'revision','',0),(583,1,'2018-04-10 07:51:39','2018-04-10 07:51:39','You certainly can. The mind is very powerful and when using hypnosis to really make some changes.\r\nThe mind becomes almost supercharged when we focus on what we want. You may be away of the many outside influences that cause us to gain weight, such as TV advertising, constant recipes in magazines, promotion of foods in supermarkets etc.\r\nThere are many hypnotic techniques we can use to put ourselves back in control of our eating habits to help with healthy weight loss.\r\nEnjoy this article on weight loss with hypnosis.\r\nIf you would like to discuss options of how you can benefit from hypnosis, simply give us a call on 07568 455 809.\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"http://www.dailymail.co.uk/femail/article-5584345/Can-think-slim-Expert-says-hypnotic-lap-band-surgery-help-drop-kilos-fast.html\" width=\"700\" height=\"2000\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>','Can you think yourself slim with Hypnosis?','','inherit','closed','closed','','576-revision-v1','','','2018-04-10 07:51:39','2018-04-10 07:51:39','',576,'http://www.newcastle-hypnotherapy.com/576-revision-v1/',0,'revision','',0),(584,1,'2018-04-10 07:53:24','2018-04-10 07:53:24','You certainly can. The mind is very powerful and when using hypnosis to really make some changes.\r\nThe mind becomes almost supercharged when we focus on what we want. You may be away of the many outside influences that cause us to gain weight, such as TV advertising, constant recipes in magazines, promotion of foods in supermarkets etc.\r\nThere are many hypnotic techniques we can use to put ourselves back in control of our eating habits to help with healthy weight loss.\r\nEnjoy this article on weight loss with hypnosis.\r\nIf you would like to discuss options of how you can benefit from hypnosis, simply give us a call on 07568 455 809.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"http://www.dailymail.co.uk/femail/article-5584345/Can-think-slim-Expert-says-hypnotic-lap-band-surgery-help-drop-kilos-fast.html\" width=\"700\" height=\"2000\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n&nbsp;','Can you think yourself slim with Hypnosis?','','inherit','closed','closed','','576-revision-v1','','','2018-04-10 07:53:24','2018-04-10 07:53:24','',576,'http://www.newcastle-hypnotherapy.com/576-revision-v1/',0,'revision','',0),(585,1,'2018-04-10 08:10:49','2018-04-10 08:10:49','You certainly can. The mind is very powerful and when using hypnosis to really make some changes.\r\nThe mind becomes almost supercharged when we focus on what we want. You may be away of the many outside influences that cause us to gain weight, such as TV advertising, constant recipes in magazines, promotion of foods in supermarkets etc.\r\nThere are many hypnotic techniques we can use to put ourselves back in control of our eating habits to help with healthy weight loss.\r\nEnjoy this article on weight loss with hypnosis.\r\nIf you would like to discuss options of how you can benefit from hypnosis, simply give us a call on 07568 455 809.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"http://www.dailymail.co.uk/femail/article-5584345/Can-think-slim-Expert-says-hypnotic-lap-band-surgery-help-drop-kilos-fast.html\" width=\"700\" height=\"2000\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h2>How can you use Hypnosis &amp; Hypnotherapy for Weight Loss?</h2>\r\nThere are a number of options when dealing with weight loss.\r\nOne of the biggest causes of overeating is that we have become emotionally attached to our food. Many people use food to change their emotions as we are programmed to do this by the media. As an example, a certain soft drinks company often shows their product with people looking happy, living life to the full or even enjoying Christmas.\r\nAs a result, we try to change our feelings by buying and consuming certain products.\r\n\r\nIn order to change this behavior, we need to need to use something else to feel good, satisfied and loved.\r\nThis is where self-hypnosis is very useful as once you have mastered the simple skills, we can turn on \"good feelings\" on demand. This can be instant and used anytime, anywhere.\r\n\r\n<strong>Having a choice over what we eat?</strong>\r\nHealthy food choices are everywhere and most convenience stores now stock health fruits, snacks, nuts and seeds.\r\nIt is amazing how most people will grab a bag of crisps, chocolate or a meal deal, loaded with fats, and sugars when needing food in a hurry. This is often done without thought to the compounding effect on our health and weight.\r\n\r\nHypnosis can introduce a new habit of thinking about the food we pick up and giving us a choice to pick up that bad food or to choose the healthier options. This allows us to feel better emotionally and puts us back in control.\r\n<h2>\r\n<span style=\"color: #008000;\">Are you ready to train your mind for healthy weight loss?</span></h2>\r\nGive us a call to discuss what may help you and what is holding you back with your weight loss.\r\nWe have weight loss programs that we tailor to your needs and look to lose the weight at a speed comfortable for you.\r\n\r\nCall 07568 455 809 Today, For Your Free, Confidential Phone Consultation','Can you think yourself slim with Hypnosis?','','inherit','closed','closed','','576-revision-v1','','','2018-04-10 08:10:49','2018-04-10 08:10:49','',576,'http://www.newcastle-hypnotherapy.com/576-revision-v1/',0,'revision','',0),(586,1,'2018-04-10 08:12:25','2018-04-10 08:12:25','You certainly can. The mind is very powerful and when using hypnosis to really make some changes.\r\nThe mind becomes almost supercharged when we focus on what we want. You may be away of the many outside influences that cause us to gain weight, such as TV advertising, constant recipes in magazines, promotion of foods in supermarkets etc.\r\nThere are many hypnotic techniques we can use to put ourselves back in control of our eating habits to help with healthy weight loss.\r\nEnjoy this article on weight loss with hypnosis.\r\nIf you would like to discuss options of how you can benefit from hypnosis, simply give us a call on 07568 455 809.\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Think yourself slim with hypnosis</span></strong></h2>\r\n<iframe src=\"http://www.dailymail.co.uk/femail/article-5584345/Can-think-slim-Expert-says-hypnotic-lap-band-surgery-help-drop-kilos-fast.html\" width=\"700\" height=\"2000\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h2>How can you use Hypnosis &amp; Hypnotherapy for Weight Loss?</h2>\r\nThere are a number of options when dealing with weight loss.\r\nOne of the biggest causes of overeating is that we have become emotionally attached to our food. Many people use food to change their emotions as we are programmed to do this by the media. As an example, a certain soft drinks company often shows their product with people looking happy, living life to the full or even enjoying Christmas.\r\nAs a result, we try to change our feelings by buying and consuming certain products.\r\n\r\nIn order to change this behavior, we need to need to use something else to feel good, satisfied and loved.\r\nThis is where self-hypnosis is very useful as once you have mastered the simple skills, we can turn on \"good feelings\" on demand. This can be instant and used anytime, anywhere.\r\n\r\n<strong>Having a choice over what we eat?</strong>\r\nHealthy food choices are everywhere and most convenience stores now stock health fruits, snacks, nuts and seeds.\r\nIt is amazing how most people will grab a bag of crisps, chocolate or a meal deal, loaded with fats, and sugars when needing food in a hurry. This is often done without thought to the compounding effect on our health and weight.\r\n\r\nHypnosis can introduce a new habit of thinking about the food we pick up and giving us a choice to pick up that bad food or to choose the healthier options. This allows us to feel better emotionally and puts us back in control.\r\n<h2><span style=\"color: #008000;\">Are you ready to train your mind for healthy weight loss?</span></h2>\r\nGive us a call to discuss what may help you and what is holding you back with your weight loss.\r\nWe have weight loss programs that we tailor to your needs and look to lose the weight at a speed comfortable for you.\r\n\r\nCall 07568 455 809 Today, For Your Free, Confidential Phone Consultation','Can you think yourself slim with Hypnosis?','','inherit','closed','closed','','576-revision-v1','','','2018-04-10 08:12:25','2018-04-10 08:12:25','',576,'http://www.newcastle-hypnotherapy.com/576-revision-v1/',0,'revision','',0),(587,1,'2018-04-10 08:16:49','2018-04-10 08:16:49','You certainly can. The mind is very powerful and when using hypnosis to really make some changes.\r\nThe mind becomes almost supercharged when we focus on what we want. You may be away of the many outside influences that cause us to gain weight, such as TV advertising, constant recipes in magazines, promotion of foods in supermarkets etc.\r\nThere are many hypnotic techniques we can use to put ourselves back in control of our eating habits to help with healthy weight loss.\r\nEnjoy this article on weight loss with hypnosis.\r\nIf you would like to discuss options of how you can benefit from hypnosis, simply give us a call on 07568 455 809.\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Think yourself slim with hypnosis</span></strong></h2>\r\n<iframe src=\"http://www.dailymail.co.uk/femail/article-5584345/Can-think-slim-Expert-says-hypnotic-lap-band-surgery-help-drop-kilos-fast.html\" width=\"700\" height=\"2000\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h2>How can you use Hypnosis &amp; Hypnotherapy for Weight Loss?</h2>\r\nThere are a number of options when dealing with weight loss.\r\nOne of the biggest causes of overeating is that we have become emotionally attached to our food. Many people use food to change their emotions as we are programmed to do this by the media. As an example, a certain soft drinks company often shows their product with people looking happy, living life to the full or even enjoying Christmas.\r\nAs a result, we try to change our feelings by buying and consuming certain products.\r\n\r\nIn order to change this behavior, we need to need to use something else to feel good, satisfied and loved.\r\nThis is where self-hypnosis is very useful as once you have mastered the simple skills, we can turn on \"good feelings\" on demand. This can be instant and used anytime, anywhere.\r\n\r\n<strong>Having a choice over what we eat?</strong>\r\nHealthy food choices are everywhere and most convenience stores now stock health fruits, snacks, nuts and seeds.\r\nIt is amazing how most people will grab a bag of crisps, chocolate or a meal deal, loaded with fats, and sugars when needing food in a hurry. This is often done without thought to the compounding effect on our health and weight.\r\n\r\nHypnosis can introduce a new habit of thinking about the food we pick up and giving us a choice to pick up that bad food or to choose the healthier options. This allows us to feel better emotionally and puts us back in control.\r\n<h2><span style=\"color: #008000;\">Are you ready to train your mind for healthy weight loss?</span></h2>\r\nGive us a call to discuss what may help you and what is holding you back with your weight loss.\r\nWe have weight loss programs that we tailor to your needs and look to lose the weight at a speed comfortable for you.\r\n\r\nCall 07568 455 809 Today, For Your Free, Confidential Phone Consultation\r\n\r\n&nbsp;\r\n\r\n\r\n<img class=\"alignleft size-thumbnail wp-image-315\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedbacl\" width=\"150\" height=\"150\" />Proud members of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>','Can you think yourself slim with Hypnosis?','','inherit','closed','closed','','576-revision-v1','','','2018-04-10 08:16:49','2018-04-10 08:16:49','',576,'http://www.newcastle-hypnotherapy.com/576-revision-v1/',0,'revision','',0),(588,1,'2018-04-10 08:18:30','2018-04-10 08:18:30','You certainly can. The mind is very powerful and when using hypnosis to really make some changes.\r\nThe mind becomes almost supercharged when we focus on what we want. You may be away of the many outside influences that cause us to gain weight, such as TV advertising, constant recipes in magazines, promotion of foods in supermarkets etc. There are many hypnotic techniques we can use to put ourselves back in control of our eating habits to help with healthy weight loss.\r\n<strong>Enjoy this article on weight loss with hypnosis.</strong>\r\nIf you would like to discuss options of how you can benefit from hypnosis, simply give us a call on <strong>07568 455 809.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Think yourself slim with hypnosis</span></strong></h2>\r\n<iframe src=\"http://www.dailymail.co.uk/femail/article-5584345/Can-think-slim-Expert-says-hypnotic-lap-band-surgery-help-drop-kilos-fast.html\" width=\"700\" height=\"2000\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h2>How can you use Hypnosis &amp; Hypnotherapy for Weight Loss?</h2>\r\nThere are a number of options when dealing with weight loss.\r\nOne of the biggest causes of overeating is that we have become emotionally attached to our food. Many people use food to change their emotions as we are programmed to do this by the media. As an example, a certain soft drinks company often shows their product with people looking happy, living life to the full or even enjoying Christmas.\r\nAs a result, we try to change our feelings by buying and consuming certain products.\r\n\r\nIn order to change this behavior, we need to need to use something else to feel good, satisfied and loved.\r\nThis is where self-hypnosis is very useful as once you have mastered the simple skills, we can turn on \"good feelings\" on demand. This can be instant and used anytime, anywhere.\r\n\r\n<strong>Having a choice over what we eat?</strong>\r\nHealthy food choices are everywhere and most convenience stores now stock health fruits, snacks, nuts and seeds.\r\nIt is amazing how most people will grab a bag of crisps, chocolate or a meal deal, loaded with fats, and sugars when needing food in a hurry. This is often done without thought to the compounding effect on our health and weight.\r\n\r\nHypnosis can introduce a new habit of thinking about the food we pick up and giving us a choice to pick up that bad food or to choose the healthier options. This allows us to feel better emotionally and puts us back in control.\r\n<h2><span style=\"color: #008000;\">Are you ready to train your mind for healthy weight loss?</span></h2>\r\nGive us a call to discuss what may help you and what is holding you back with your weight loss.\r\nWe have weight loss programs that we tailor to your needs and look to lose the weight at a speed comfortable for you.\r\n\r\nCall 07568 455 809 Today, For Your Free, Confidential Phone Consultation\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-thumbnail wp-image-315\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedbacl\" width=\"150\" height=\"150\" />Proud members of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>','Can you think yourself slim with Hypnosis?','','inherit','closed','closed','','576-revision-v1','','','2018-04-10 08:18:30','2018-04-10 08:18:30','',576,'http://www.newcastle-hypnotherapy.com/576-revision-v1/',0,'revision','',0),(589,1,'2018-04-11 11:29:18','2018-04-11 11:29:18','<img class=\"alignleft size-thumbnail wp-image-598\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/sol-3070188_1280-150x150.jpg\" alt=\"hypnosis for sleep improvement\" width=\"150\" height=\"150\" />Hypnosis for sleep improvement can be a great solution for sleep problems as described in this article.\r\nIf you would like to discuss the options available to you regarding hypnosis for sleep improvement then give us a call on 07568 455 809.\r\n\r\nEnjoy this article about hypnosis for sleep improvement\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.dailymail.co.uk/health/article-5596195/Hypnotherapy-helping-beat-chronic-insomnia.html\" width=\"700\" height=\"2000\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Self-Hy</span></strong><span style=\"color: #008000;\"><strong>pnosis and Hypnosis For Sleep Improvement</strong>\r\n</span></h2>\r\nSleep is very important for good health and sadly many people experience sleep problems.\r\nLife can be very busy with plenty of stimulation and even when ready for sleep our minds can still be busy with all sorts of things.\r\nThe secret to a good nights sleep is to train your mind to switch off when sleep is required.\r\nHypnotherapy is very useful for sleep improvement and learning self-hypnosis can also help you to master a good nights sleep yourself.\r\n\r\nTo discuss how hypnosis can help you improve your sleep give us a call on 07568 455 809 today','Hypnosis For Sleep Improvement.','','publish','open','open','','hypnosis-for-sleep-improvement','','','2018-11-19 15:54:36','2018-11-19 15:54:36','',0,'http://www.newcastle-hypnotherapy.com/?p=589',0,'post','',0),(591,1,'2018-04-11 11:29:18','2018-04-11 11:29:18','&nbsp;\r\n\r\nHypnosis is attracting attention lately as it is very useful\r\n\r\n&lt;iframe src=\"<a href=\"http://www.dailymail.co.uk/health/article-5596195/Hypnotherapy-helping-beat-chronic-insomnia.html\">demo_iframe.htm</a>\" style=\"height:1000px;width:700px;\"&gt;&lt;/iframe&gt;\r\n\r\n&nbsp;','Hypnosis For Sleep Improvement.','','inherit','closed','closed','','589-revision-v1','','','2018-04-11 11:29:18','2018-04-11 11:29:18','',589,'http://www.newcastle-hypnotherapy.com/589-revision-v1/',0,'revision','',0),(592,1,'2018-04-11 11:31:03','2018-04-11 11:31:03','&nbsp;\r\n\r\nHypnosis is attracting attention lately as it is very useful\r\n\r\n<iframe src=”http://www.dailymail.co.uk/health/article-5596195/Hypnotherapy-helping-beat-chronic-insomnia.html” style=”height:1000px;width:700px;”></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnosis For Sleep Improvement.','','inherit','closed','closed','','589-revision-v1','','','2018-04-11 11:31:03','2018-04-11 11:31:03','',589,'http://www.newcastle-hypnotherapy.com/589-revision-v1/',0,'revision','',0),(593,1,'2018-11-19 15:53:43','2018-11-19 15:53:43','<img class=\"alignleft size-thumbnail wp-image-598\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/sol-3070188_1280-150x150.jpg\" alt=\"hypnosis for sleep improvement\" width=\"150\" height=\"150\" />Hypnosis for sleep  can be a great solution for sleep problems as described in this article.\nIf you would like to discuss the options available to you regarding hypnosis for sleep improvement then give us a call on 07568 455 809.\n\nEnjoy this article about hypnosis for sleep improvement\n\n&nbsp;\n\n<iframe src=\"https://www.dailymail.co.uk/health/article-5596195/Hypnotherapy-helping-beat-chronic-insomnia.html\" width=\"700\" height=\"2000\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\n<h2><strong><span style=\"color: #008000;\">Self-Hy</span></strong><span style=\"color: #008000;\"><strong>pnosis and Hypnosis For Sleep Improvement</strong>\n</span></h2>\nSleep is very important for good health and sadly many people experience sleep problems.\nLife can be very busy with plenty of stimulation and even when ready for sleep our minds can still be busy with all sorts of things.\nThe secret to a good nights sleep is to train your mind to switch off when sleep is required.\nHypnotherapy is very useful for sleep improvement and learning self-hypnosis can also help you to master a good nights sleep yourself.\n\nTo discuss how hypnosis can help you improve your sleep give us a call on 07568 455 809 today','Hypnosis For Sleep Improvement.','','inherit','closed','closed','','589-autosave-v1','','','2018-11-19 15:53:43','2018-11-19 15:53:43','',589,'http://www.newcastle-hypnotherapy.com/589-autosave-v1/',0,'revision','',0),(594,1,'2018-04-11 11:32:41','2018-04-11 11:32:41','&nbsp;\r\n\r\nHypnosis is attracting attention lately as it is very useful\r\n\r\n<iframe src=\"http://www.dailymail.co.uk/health/article-5596195/Hypnotherapy-helping-beat-chronic-insomnia.html\" height=\"1000\" width=\"700\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnosis For Sleep Improvement.','','inherit','closed','closed','','589-revision-v1','','','2018-04-11 11:32:41','2018-04-11 11:32:41','',589,'http://www.newcastle-hypnotherapy.com/589-revision-v1/',0,'revision','',0),(595,1,'2018-04-11 11:33:19','2018-04-11 11:33:19','&nbsp;\r\n\r\nHypnosis is attracting attention lately as it is very useful\r\n\r\n<iframe src=\"http://www.dailymail.co.uk/health/article-5596195/Hypnotherapy-helping-beat-chronic-insomnia.html\" height=\"2000\" width=\"700\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnosis For Sleep Improvement.','','inherit','closed','closed','','589-revision-v1','','','2018-04-11 11:33:19','2018-04-11 11:33:19','',589,'http://www.newcastle-hypnotherapy.com/589-revision-v1/',0,'revision','',0),(596,1,'2018-04-11 11:36:01','2018-04-11 11:36:01','Hypnosis can be a great solution for sleep problems as described in this article,\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"http://www.dailymail.co.uk/health/article-5596195/Hypnotherapy-helping-beat-chronic-insomnia.html\" width=\"700\" height=\"2000\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnosis For Sleep Improvement.','','inherit','closed','closed','','589-revision-v1','','','2018-04-11 11:36:01','2018-04-11 11:36:01','',589,'http://www.newcastle-hypnotherapy.com/589-revision-v1/',0,'revision','',0),(597,1,'2018-04-11 11:38:02','2018-04-11 11:38:02','Hypnosis can be a great solution for sleep problems as described in this article.\r\nIf you would like to discuss the options available to you regarding hypnosis  for sleep improvement then give us a call on 07568 455 809.\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"http://www.dailymail.co.uk/health/article-5596195/Hypnotherapy-helping-beat-chronic-insomnia.html\" width=\"700\" height=\"2000\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnosis For Sleep Improvement.','','inherit','closed','closed','','589-revision-v1','','','2018-04-11 11:38:02','2018-04-11 11:38:02','',589,'http://www.newcastle-hypnotherapy.com/589-revision-v1/',0,'revision','',0),(598,1,'2018-04-11 11:38:30','2018-04-11 11:38:30','hypnosis for sleep improvement','hypnosis for sleep improvement','','inherit','open','closed','','sol-3070188_1280','','','2018-04-11 11:39:04','2018-04-11 11:39:04','',589,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/sol-3070188_1280.jpg',0,'attachment','image/jpeg',0),(599,1,'2018-04-11 11:46:19','2018-04-11 11:46:19','Hypnosis can be a great solution for sleep problems as described in this article.\r\nIf you would like to discuss the options available to you regarding hypnosis for sleep improvement then give us a call on 07568 455 809.\r\n\r\nEnjoy this article about hypnosis for sleep improvement\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"http://www.dailymail.co.uk/health/article-5596195/Hypnotherapy-helping-beat-chronic-insomnia.html\" width=\"700\" height=\"2000\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnosis For Sleep Improvement.','','inherit','closed','closed','','589-revision-v1','','','2018-04-11 11:46:19','2018-04-11 11:46:19','',589,'http://www.newcastle-hypnotherapy.com/589-revision-v1/',0,'revision','',0),(600,1,'2018-04-11 11:48:43','2018-04-11 11:48:43','<img class=\"alignleft size-thumbnail wp-image-598\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/sol-3070188_1280-150x150.jpg\" alt=\"hypnosis for sleep improvement\" width=\"150\" height=\"150\" />Hypnosis can be a great solution for sleep problems as described in this article.\r\nIf you would like to discuss the options available to you regarding hypnosis for sleep improvement then give us a call on 07568 455 809.\r\n\r\nEnjoy this article about hypnosis for sleep improvement\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"http://www.dailymail.co.uk/health/article-5596195/Hypnotherapy-helping-beat-chronic-insomnia.html\" width=\"700\" height=\"2000\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnosis For Sleep Improvement.','','inherit','closed','closed','','589-revision-v1','','','2018-04-11 11:48:43','2018-04-11 11:48:43','',589,'http://www.newcastle-hypnotherapy.com/589-revision-v1/',0,'revision','',0),(601,1,'2018-04-11 12:00:29','2018-04-11 12:00:29','<img class=\"alignleft size-thumbnail wp-image-598\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/sol-3070188_1280-150x150.jpg\" alt=\"hypnosis for sleep improvement\" width=\"150\" height=\"150\" />Hypnosis can be a great solution for sleep problems as described in this article.\r\nIf you would like to discuss the options available to you regarding hypnosis for sleep improvement then give us a call on 07568 455 809.\r\n\r\nEnjoy this article about hypnosis for sleep improvement\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"http://www.dailymail.co.uk/health/article-5596195/Hypnotherapy-helping-beat-chronic-insomnia.html\" width=\"700\" height=\"2000\"></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Self-Hy</span></strong><span style=\"color: #008000;\"><strong>pnosis and Hypnosis For Sleep Improvement</strong>\r\n</span></h2>\r\nSleep is very important for good health and sadly many people experience sleep problems.\r\nLife can be very busy with plenty of stimulation and even when ready for sleep our minds can still be busy with all sorts of things.\r\nThe secret to a good nights sleep is to train your mind to switch off when sleep is required.\r\nHypnotherapy is very useful for sleep improvement and learning self-hypnosis','Hypnosis For Sleep Improvement.','','inherit','closed','closed','','589-revision-v1','','','2018-04-11 12:00:29','2018-04-11 12:00:29','',589,'http://www.newcastle-hypnotherapy.com/589-revision-v1/',0,'revision','',0),(602,1,'2018-04-11 12:01:41','2018-04-11 12:01:41','<img class=\"alignleft size-thumbnail wp-image-598\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/sol-3070188_1280-150x150.jpg\" alt=\"hypnosis for sleep improvement\" width=\"150\" height=\"150\" />Hypnosis can be a great solution for sleep problems as described in this article.\r\nIf you would like to discuss the options available to you regarding hypnosis for sleep improvement then give us a call on 07568 455 809.\r\n\r\nEnjoy this article about hypnosis for sleep improvement\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"http://www.dailymail.co.uk/health/article-5596195/Hypnotherapy-helping-beat-chronic-insomnia.html\" width=\"700\" height=\"2000\"></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Self-Hy</span></strong><span style=\"color: #008000;\"><strong>pnosis and Hypnosis For Sleep Improvement</strong>\r\n</span></h2>\r\nSleep is very important for good health and sadly many people experience sleep problems.\r\nLife can be very busy with plenty of stimulation and even when ready for sleep our minds can still be busy with all sorts of things.\r\nThe secret to a good nights sleep is to train your mind to switch off when sleep is required.\r\nHypnotherapy is very useful for sleep improvement and learning self-hypnosis can also help you to master a good nights sleep yourself.','Hypnosis For Sleep Improvement.','','inherit','closed','closed','','589-revision-v1','','','2018-04-11 12:01:41','2018-04-11 12:01:41','',589,'http://www.newcastle-hypnotherapy.com/589-revision-v1/',0,'revision','',0),(603,1,'2018-04-11 12:04:55','2018-04-11 12:04:55','<img class=\"alignleft size-thumbnail wp-image-598\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/sol-3070188_1280-150x150.jpg\" alt=\"hypnosis for sleep improvement\" width=\"150\" height=\"150\" />Hypnosis can be a great solution for sleep problems as described in this article.\r\nIf you would like to discuss the options available to you regarding hypnosis for sleep improvement then give us a call on 07568 455 809.\r\n\r\nEnjoy this article about hypnosis for sleep improvement\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"http://www.dailymail.co.uk/health/article-5596195/Hypnotherapy-helping-beat-chronic-insomnia.html\" width=\"700\" height=\"2000\"></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Self-Hy</span></strong><span style=\"color: #008000;\"><strong>pnosis and Hypnosis For Sleep Improvement</strong>\r\n</span></h2>\r\nSleep is very important for good health and sadly many people experience sleep problems.\r\nLife can be very busy with plenty of stimulation and even when ready for sleep our minds can still be busy with all sorts of things.\r\nThe secret to a good nights sleep is to train your mind to switch off when sleep is required.\r\nHypnotherapy is very useful for sleep improvement and learning self-hypnosis can also help you to master a good nights sleep yourself.\r\n\r\nTo discuss how hypnosis can help you improve your sleep give us a call on 07568 455 809 today','Hypnosis For Sleep Improvement.','','inherit','closed','closed','','589-revision-v1','','','2018-04-11 12:04:55','2018-04-11 12:04:55','',589,'http://www.newcastle-hypnotherapy.com/589-revision-v1/',0,'revision','',0),(667,1,'2018-04-19 20:56:55','2018-04-19 20:56:55','<fieldset>\r\n	<legend>Enter your details below to learn about the latest events</legend>\r\n	<ol>\r\n		<li> Name [text* cf7s-name] </li>\r\n		<li> Email [email* cf7s-email] </li>\r\n		\r\n	</ol>\r\n	[submit \"Submit\"]\r\n	<p>* Required</p>\r\n</fieldset>\n1\nNH - New Subscriber EVENTS\nEVENTS ML <mark@newcastle-hypnotherapy.com>\nmark@newcastle-hypnotherapy.com\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Newcastle Hypnotherapy Tyneside &amp; Northumberland, (http://www.newcastle-hypnotherapy.com)\nReply-To: <mark@newcastle-hypnotherapy.com>\n\n\n\n\nNewcastle Hypnotherapy Tyneside & Northumberland, \"[your-subject]\"\nNewcastle Hypnotherapy Tyneside & Northumberland, <mark@newcastle-hypnotherapy.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Newcastle Hypnotherapy Tyneside &amp; Northumberland, (http://www.newcastle-hypnotherapy.com)\nReply-To: mark@newcastle-hypnotherapy.com\n\n\n\nThank you. You have been added to the events newsletter\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Events - Newcastle Hypnotherapy','','publish','closed','closed','','events-newcastle-hypnotherapy','','','2018-07-22 17:35:40','2018-07-22 17:35:40','',0,'http://www.newcastle-hypnotherapy.com/?post_type=wpcf7_contact_form&#038;p=667',0,'wpcf7_contact_form','',0),(605,1,'2018-04-12 09:03:29','2018-04-12 09:03:29','<strong><span style=\"color: #008000;\">Hypnosis for Anxiety Relief</span></strong>\r\n\r\n<img class=\"alignleft wp-image-609 size-thumbnail\" title=\"hypnosis for anxiety relief\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/person-1627693_960_720-150x150.jpg\" alt=\"hypnosis for anxiety relief\" width=\"150\" height=\"150\" />Here is a neat article regarding the benefits of Hypnotherapy for Anxiety.\r\nIf you would like more information on how Hypnotherapy can help you, give me a call today or look at the <strong><a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety Relief Section.</a></strong>\r\n\r\n<iframe src=\"https://www.chronogram.com/hudsonvalley/the-therapeutic-powers-of-hypnosis/Content?oid=4498550\" width=\"700\" height=\"1500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>','Hypnosis for Anxiety Relief','','publish','open','open','','hypnosis-for-anxiety-relief','','','2018-04-12 09:15:37','2018-04-12 09:15:37','',0,'http://www.newcastle-hypnotherapy.com/?p=605',0,'post','',0),(606,1,'2018-04-12 09:03:29','2018-04-12 09:03:29','&nbsp;\r\n\r\n<iframe src=\"https://www.chronogram.com/hudsonvalley/the-therapeutic-powers-of-hypnosis/Content?oid=4498550\" width=\"700\" height=\"1500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>','Hypnosis for Anxiety Relief','','inherit','closed','closed','','605-revision-v1','','','2018-04-12 09:03:29','2018-04-12 09:03:29','',605,'http://www.newcastle-hypnotherapy.com/605-revision-v1/',0,'revision','',0),(607,1,'2018-04-12 09:09:07','2018-04-12 09:09:07','<strong><span style=\"color: #008000;\">Hypnosis for Anxiety Relief\n\n</span></strong>Here is a neat article regarding the benefits of Hypnotherapy for Anxiety.\nIf you would like more information on how Hypnotherapy can help you, give me a call today or look at the <strong><a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety Relief Section.</a></strong>\n\n<iframe src=\"https://www.chronogram.com/hudsonvalley/the-therapeutic-powers-of-hypnosis/Content?oid=4498550\" width=\"700\" height=\"1500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>','Hypnosis for Anxiety Relief','','inherit','closed','closed','','605-autosave-v1','','','2018-04-12 09:09:07','2018-04-12 09:09:07','',605,'http://www.newcastle-hypnotherapy.com/605-autosave-v1/',0,'revision','',0),(608,1,'2018-04-12 09:12:00','2018-04-12 09:12:00','<strong><span style=\"color: #008000;\">Hypnosis for Anxiety Relief\r\n\r\n</span></strong>Here is a neat article regarding the benefits of Hypnotherapy for Anxiety.\r\nIf you would like more information on how Hypnotherapy can help you, give me a call today or look at the <strong><a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety Relief Section.</a></strong>\r\n\r\n<iframe src=\"https://www.chronogram.com/hudsonvalley/the-therapeutic-powers-of-hypnosis/Content?oid=4498550\" width=\"700\" height=\"1500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>','Hypnosis for Anxiety Relief','','inherit','closed','closed','','605-revision-v1','','','2018-04-12 09:12:00','2018-04-12 09:12:00','',605,'http://www.newcastle-hypnotherapy.com/605-revision-v1/',0,'revision','',0),(609,1,'2018-04-12 09:14:40','2018-04-12 09:14:40','','hypnosis for anxiety relief','','inherit','open','closed','','person-1627693_960_720','','','2018-04-12 09:15:04','2018-04-12 09:15:04','',605,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/person-1627693_960_720.jpg',0,'attachment','image/jpeg',0),(610,1,'2018-04-12 09:15:14','2018-04-12 09:15:14','<strong><span style=\"color: #008000;\">Hypnosis for Anxiety Relief</span></strong>\r\n\r\n<img class=\"alignleft size-thumbnail wp-image-609\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/person-1627693_960_720-150x150.jpg\" alt=\"hypnosis for anxiety relief\" width=\"150\" height=\"150\" />Here is a neat article regarding the benefits of Hypnotherapy for Anxiety.\r\nIf you would like more information on how Hypnotherapy can help you, give me a call today or look at the <strong><a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety Relief Section.</a></strong>\r\n\r\n<iframe src=\"https://www.chronogram.com/hudsonvalley/the-therapeutic-powers-of-hypnosis/Content?oid=4498550\" width=\"700\" height=\"1500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>','Hypnosis for Anxiety Relief','','inherit','closed','closed','','605-revision-v1','','','2018-04-12 09:15:14','2018-04-12 09:15:14','',605,'http://www.newcastle-hypnotherapy.com/605-revision-v1/',0,'revision','',0),(611,1,'2018-04-12 09:15:37','2018-04-12 09:15:37','<strong><span style=\"color: #008000;\">Hypnosis for Anxiety Relief</span></strong>\r\n\r\n<img class=\"alignleft wp-image-609 size-thumbnail\" title=\"hypnosis for anxiety relief\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/person-1627693_960_720-150x150.jpg\" alt=\"hypnosis for anxiety relief\" width=\"150\" height=\"150\" />Here is a neat article regarding the benefits of Hypnotherapy for Anxiety.\r\nIf you would like more information on how Hypnotherapy can help you, give me a call today or look at the <strong><a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety Relief Section.</a></strong>\r\n\r\n<iframe src=\"https://www.chronogram.com/hudsonvalley/the-therapeutic-powers-of-hypnosis/Content?oid=4498550\" width=\"700\" height=\"1500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>','Hypnosis for Anxiety Relief','','inherit','closed','closed','','605-revision-v1','','','2018-04-12 09:15:37','2018-04-12 09:15:37','',605,'http://www.newcastle-hypnotherapy.com/605-revision-v1/',0,'revision','',0),(938,1,'2018-05-29 06:28:26','2018-05-29 06:28:26','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/CXB3uPmBR6Q?rel=0&amp;controls=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Self Hypnosis for Stress &amp; Anxiety</strong> - Introduction Workshop\r\n</span></h2>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.\r\n\r\n<span style=\"color: #ff0000;\">We will announce a new date shortly.</span>\r\n<span style=\"color: #ff0000;\">Complete the form below for an update as it happens</span></strong></span>\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n<strong><span style=\"color: #008000;\">For more information or details of other Self-Hypnosis Workshops &amp; Events please join the events newsletter below</span></strong>.\r\n[contact-form-7 id=\"447\" title=\"Contact form 1\"]\r\n\r\nHypnosis is a wonderful, powerful, and natural ability of the mind, something we do many times each day. You can learn how to harness this power to help you feel how you want to feel and focus on what is important to you.\r\n\r\nYou can learn to use Self-Hypnosis and explore the many benefits through our workshops or one to one in a regular session.\r\n\r\nOnce you master self-hypnosis you can enable it very quickly, in a matter of seconds to change your state and switch your focus. You can quickly use it to relax, de-stress, remove anxiety or enter a calm, natural sleep.\r\n\r\nTake the next step and learn Self-hypnosis.\r\n\r\nCall us on 07568 455 809 to see how Self-Hypnosis can help you.','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-05-29 06:28:26','2018-05-29 06:28:26','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(820,1,'2018-05-09 19:29:50','2018-05-09 19:29:50','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/CXB3uPmBR6Q?rel=0&amp;controls=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Self Hypnosis for Stress &amp; Anxiety</strong> - Introduction Workshop\r\n</span></h2>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.</strong></span>\r\n<strong>This workshop is just £39 including course materials.</strong>\r\n<span style=\"color: #ff9900;\">\r\n</span><strong>Book your place now by clicking the button below.\r\n</strong><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />19th May 1 pm to 4.30 @ The Vault, Wallsend. 12 Places only - <strong><span style=\"color: #ff0000;\">4</span><span style=\"color: #ff0000;\"> places remaining </span></strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"HJ7TTJJJ9UAHN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form><strong><span style=\"color: #008000;\">For more information or details of other Self-Hypnosis Workshops &amp; Events please join the events newsletter below</span></strong>.\r\n[contact-form-7 id=\"447\" title=\"Contact form 1\"]\r\n\r\nHypnosis is a wonderful, powerful, and natural ability of the mind, something we do many times each day. You can learn how to harness this power to help you feel how you want to feel and focus on what is important to you.\r\n\r\nYou can learn to use Self-Hypnosis and explore the many benefits through our workshops or one to one in a regular session.\r\n\r\nOnce you master self-hypnosis you can enable it very quickly, in a matter of seconds to change your state and switch your focus. You can quickly use it to relax, de-stress, remove anxiety or enter a calm, natural sleep.\r\n\r\nTake the next step and learn Self-hypnosis.\r\n\r\nCall us on 07568 455 809 to see how Self-Hypnosis can help you.','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-05-09 19:29:50','2018-05-09 19:29:50','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(612,1,'2018-04-15 14:18:12','2018-04-15 14:18:12','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/CXB3uPmBR6Q?rel=0&amp;controls=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<h2><span style=\"color: #008000;\"><strong>Self Hypnosis for Stress &amp; Anxiety</strong> - Introduction Workshop\r\n</span></h2>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.</strong></span>\r\n<strong>This workshop is just £39 when you <em>book your place</em> before the 5th of May.</strong>\r\n<span style=\"color: #ff9900;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.\r\n</span><strong>Book your place now by clicking the button below.\r\n</strong><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />19th May 1 pm to 4.30 @ The Vault, Wallsend. 12 Places only - <strong><span style=\"color: #ff0000;\">8 places remaining </span></strong>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"HJ7TTJJJ9UAHN\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal – The safer, easier way to pay online!\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n\r\n<strong><span style=\"color: #008000;\">For more information or details of other Self-Hypnosis Workshops &amp; Events please join the events newsletter below</span></strong>.\r\n[contact-form-7 id=\"447\" title=\"Contact form 1\"]\r\n\r\nHypnosis is a wonderful, powerful, and natural ability of the mind, something we do many times each day. You can learn how to harness this power to help you feel how you want to feel and focus on what is important to you.\r\n\r\nYou can learn to use Self-Hypnosis and explore the many benefits through our workshops or one to one in a regular session.\r\n\r\nOnce you master self-hypnosis you can enable it very quickly, in a matter of seconds to change your state and switch your focus. You can quickly use it to relax, de-stress, remove anxiety or enter a calm, natural sleep.\r\n\r\nTake the next step and learn Self-hypnosis.\r\n\r\nCall us on 07568 455 809 to see how Self-Hypnosis can help you.','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-04-15 14:18:12','2018-04-15 14:18:12','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(613,1,'2018-04-15 14:40:11','2018-04-15 14:40:11','Link straight from youtube\r\n\r\n<iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\ntest 2\r\n\r\n<style>\r\n.embed-container {<br />\r\n   position: relative;<br />\r\n   padding-bottom: 39.25%;<br />\r\n   height: 0;<br />\r\n   overflow: visible;<br />\r\n   max-width: 100%;<br />\r\n   width: 70%;<br />\r\n   margin: 0 auto;<br />\r\n}<br />\r\n.embed-container iframe,<br />\r\n.embed-container object,<br />\r\n.embed-container embed {<br />\r\n   position: absolute;<br />\r\n   top: 0;<br />\r\n   left: 0;<br />\r\n   width: 100%;<br />\r\n   height: 100%;<br />\r\n}<br />\r\n</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','test page','','draft','closed','closed','','test-page','','','2018-04-17 20:52:39','2018-04-17 20:52:39','',0,'http://www.newcastle-hypnotherapy.com/?page_id=613',300,'page','',0),(614,1,'2018-04-15 14:40:11','2018-04-15 14:40:11','Link straight from youtube\r\n\r\n&lt;iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/n6p6yGpvc7M\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen&gt;&lt;/iframe&gt;','test page','','inherit','closed','closed','','613-revision-v1','','','2018-04-15 14:40:11','2018-04-15 14:40:11','',613,'http://www.newcastle-hypnotherapy.com/613-revision-v1/',0,'revision','',0),(615,1,'2018-04-15 14:40:36','2018-04-15 14:40:36','Link straight from youtube\r\n\r\n<iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','test page','','inherit','closed','closed','','613-revision-v1','','','2018-04-15 14:40:36','2018-04-15 14:40:36','',613,'http://www.newcastle-hypnotherapy.com/613-revision-v1/',0,'revision','',0),(616,1,'2018-04-15 16:41:43','2018-04-15 16:41:43','Link straight from youtube\n\n<iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n\n&nbsp;\n\ntest 2\n\nhttps://www.youtube.com/watch?v=n6p6yGpvc7M','test page','','inherit','closed','closed','','613-autosave-v1','','','2018-04-15 16:41:43','2018-04-15 16:41:43','',613,'http://www.newcastle-hypnotherapy.com/613-autosave-v1/',0,'revision','',0),(618,1,'2018-04-15 14:46:44','2018-04-15 14:46:44','Link straight from youtube\r\n\r\n<iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\nLink using Youtube plugin\r\n\r\n','test page','','inherit','closed','closed','','613-revision-v1','','','2018-04-15 14:46:44','2018-04-15 14:46:44','',613,'http://www.newcastle-hypnotherapy.com/613-revision-v1/',0,'revision','',0),(617,1,'2018-04-15 14:44:02','2018-04-15 14:44:02','Link straight from youtube\r\n\r\n<iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\nLink using Youtube plugin\r\n\r\n<iframe width=\"560\" height=\"315\" src=\"httpv://www.youtube.com/embed/n6p6yGpvc7M\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>','test page','','inherit','closed','closed','','613-revision-v1','','','2018-04-15 14:44:02','2018-04-15 14:44:02','',613,'http://www.newcastle-hypnotherapy.com/613-revision-v1/',0,'revision','',0),(619,1,'2018-04-15 16:25:15','2018-04-15 16:25:15','Link straight from youtube\r\n\r\n<iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\ntest 2\r\n\r\nhttv://www.youtube.com/watch?v=n6p6yGpvc7M','test page','','inherit','closed','closed','','613-revision-v1','','','2018-04-15 16:25:15','2018-04-15 16:25:15','',613,'http://www.newcastle-hypnotherapy.com/613-revision-v1/',0,'revision','',0),(620,1,'2018-04-15 16:41:02','2018-04-15 16:41:02','Imagine\r\n\r\nLearn Self-Hypnosis To Manage Your Weight.\r\n\r\nSelf-hypnosis is a powerful tool that can really help to change eating habits, manage cravings and help you make better choices.\r\n\r\n<strong>In this relaxed, enjoyable workshop you will learn Self-Hypnosis Techniques:\r\n</strong>\r\n<ul>\r\n 	<li>to help you control Food Cravings</li>\r\n 	<li>to make Better Food Choices</li>\r\n 	<li>to control Stress &amp; Anxiety related to food</li>\r\n 	<li>to help Control Your Appitite</li>\r\n 	<li>to use the power of Mindfulness &amp; Mediatation over food</li>\r\n 	<li>to use you Mind to Enjoy Excercise</li>\r\n 	<li>to explore and add a Variety Of New Foods to your diet</li>\r\n</ul>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 16:41:02','2018-04-15 16:41:02','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(621,1,'2018-04-15 16:41:50','2018-04-15 16:41:50','Link straight from youtube\r\n\r\n<iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\ntest 2\r\n\r\nhttps://www.youtube.com/watch?v=n6p6yGpvc7M','test page','','inherit','closed','closed','','613-revision-v1','','','2018-04-15 16:41:50','2018-04-15 16:41:50','',613,'http://www.newcastle-hypnotherapy.com/613-revision-v1/',0,'revision','',0),(622,1,'2018-04-15 16:42:20','2018-04-15 16:42:20','Link straight from youtube\r\n\r\n<iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\ntest 2\r\n\r\nhttv://www.youtube.com/watch?v=n6p6yGpvc7M','test page','','inherit','closed','closed','','613-revision-v1','','','2018-04-15 16:42:20','2018-04-15 16:42:20','',613,'http://www.newcastle-hypnotherapy.com/613-revision-v1/',0,'revision','',0),(623,1,'2018-04-15 17:22:26','2018-04-15 17:22:26','Imagine\r\n\r\nLearn Self-Hypnosis To Manage Your Weight.\r\n\r\nSelf-hypnosis is a powerful tool that can really help to change eating habits, manage cravings and help you make better choices.\r\n\r\n<strong>In this relaxed, enjoyable workshop you will learn Self-Hypnosis Techniques:\r\n</strong>\r\n<ul>\r\n 	<li>to help you control Food Cravings</li>\r\n 	<li>to make Better Food Choices</li>\r\n 	<li>to control Stress &amp; Anxiety related to food</li>\r\n 	<li>to help you Control Your Appitite</li>\r\n 	<li>to use the power of Mindfulness &amp; Mediatation over food</li>\r\n 	<li>to use you Mind to Enjoy Excercise</li>\r\n 	<li>to explore and add a Variety Of New Foods to your diet</li>\r\n 	<li>to develope a Healthy Mindset</li>\r\n 	<li>to control Emotional Eating</li>\r\n</ul>\r\n<strong>You will also learn:</strong>\r\n<ul>\r\n 	<li>why Calorie Counting will often not work</li>\r\n 	<li>the surprising Foods That Cause The Biggest Weight Gain</li>\r\n 	<li>the Foods That Increase Cravings</li>\r\n 	<li>about the many Myths Of Weight Loss</li>\r\n 	<li>why most Diets Do Not Work</li>\r\n</ul>\r\n&nbsp;','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 17:22:26','2018-04-15 17:22:26','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(624,1,'2018-04-15 17:52:17','2018-04-15 17:52:17','Imagine\r\n\r\nLearn Self-Hypnosis For Weight Loss.\r\nSaturday 9th June 1pm to 4.30 at The Vault, Wallsend, Newcastle upon Tyne.\r\nYou can book your place below.\r\n\r\n<strong>In this relaxed, enjoyable workshop you will learn Self-Hypnosis Techniques:\r\n</strong>\r\n<ul>\r\n 	<li>to help you control your Food Cravings</li>\r\n 	<li>to make Better Food Choices</li>\r\n 	<li>to control Stress &amp; Anxiety related to food</li>\r\n 	<li>to help you Control Your Appitite</li>\r\n 	<li>to use the power of Mindfulness &amp; Mediatation over food</li>\r\n 	<li>to use you Mind to Enjoy Excercise</li>\r\n 	<li>to explore and add a Variety Of New Foods to your diet</li>\r\n 	<li>to develope a Healthy Mindset</li>\r\n 	<li>to control Emotional Eating</li>\r\n</ul>\r\n<strong>You will also learn:</strong>\r\n<ul>\r\n 	<li>why Calorie Counting will often not work</li>\r\n 	<li>the surprising Foods That Cause The Biggest Weight Gain</li>\r\n 	<li>the Foods That Increase Cravings</li>\r\n 	<li>about the many Myths Of Weight Loss</li>\r\n 	<li>why most Diets Do Not Work</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Also included are:</strong>\r\n<ul>\r\n 	<li>workshop handouts</li>\r\n 	<li>a hypnotic audio program for home use</li>\r\n 	<li>access to our private facebook support goup to help you achieve your go</li>\r\n</ul>\r\nBooking in advance is required for this event and spaces are limited.\r\n\r\n3 Questions to answer now\r\n\r\n1. Are you serious about losing weight?\r\n2. Are you serious about maintaining a healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 17:52:17','2018-04-15 17:52:17','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(625,1,'2018-04-15 18:01:46','2018-04-15 18:01:46','Imagine\r\n\r\nLearn Self-Hypnosis For Weight Loss.\r\nSaturday 9th June 1pm to 4.30 at The Vault, Wallsend, Newcastle upon Tyne.\r\nYou can book your place below.\r\n\r\n<strong>In this relaxed, enjoyable workshop you will learn Self-Hypnosis Techniques:\r\n</strong>\r\n<ul>\r\n 	<li>to help you control your Food Cravings</li>\r\n 	<li>to make Better Food Choices</li>\r\n 	<li>to control Stress &amp; Anxiety related to food</li>\r\n 	<li>to help you Control Your Appitite</li>\r\n 	<li>to use the power of Mindfulness &amp; Mediatation over food</li>\r\n 	<li>to use you Mind to Enjoy Excercise</li>\r\n 	<li>to explore and add a Variety Of New Foods to your diet</li>\r\n 	<li>to develope a Healthy Mindset</li>\r\n 	<li>to control Emotional Eating</li>\r\n</ul>\r\n<strong>You will also learn:</strong>\r\n<ul>\r\n 	<li>why Calorie Counting will often not work</li>\r\n 	<li>the surprising Foods That Cause The Biggest Weight Gain</li>\r\n 	<li>the Foods That Increase Cravings</li>\r\n 	<li>about the many Myths Of Weight Loss</li>\r\n 	<li>why most Diets Do Not Work</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Also included are:</strong>\r\n<ul>\r\n 	<li>workshop handouts</li>\r\n 	<li>a hypnotic audio program for home use</li>\r\n 	<li>access to our private facebook support goup to help you achieve your go</li>\r\n</ul>\r\nBooking in advance is required for this event and spaces are limited.\r\n\r\n3 Questions to answer now\r\n\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\nNow, if your answer is YES to all 3 then book your place by clicking below.','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 18:01:46','2018-04-15 18:01:46','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(626,1,'2018-04-15 18:16:30','2018-04-15 18:16:30','Imagine\r\n\r\nLearn Self-Hypnosis For Weight Loss.\r\nSaturday 9th June 1pm to 4.30 at The Vault, Wallsend, Newcastle upon Tyne.\r\nYou can book your place below.\r\n\r\n<strong>In this relaxed, enjoyable workshop you will learn Self-Hypnosis Techniques:\r\n</strong>\r\n<ul>\r\n 	<li>to help you control your Food Cravings</li>\r\n 	<li>to make Better Food Choices</li>\r\n 	<li>to control Stress &amp; Anxiety related to food</li>\r\n 	<li>to help you Control Your Appitite</li>\r\n 	<li>to use the power of Mindfulness &amp; Mediatation over food</li>\r\n 	<li>to use you Mind to Enjoy Excercise</li>\r\n 	<li>to explore and add a Variety Of New Foods to your diet</li>\r\n 	<li>to develope a Healthy Mindset</li>\r\n 	<li>to control Emotional Eating</li>\r\n</ul>\r\n<strong>You will also learn:</strong>\r\n<ul>\r\n 	<li>why Calorie Counting will often not work</li>\r\n 	<li>the surprising Foods That Cause The Biggest Weight Gain</li>\r\n 	<li>the Foods That Increase Cravings</li>\r\n 	<li>about the many Myths Of Weight Loss</li>\r\n 	<li>why most Diets Do Not Work</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Also included are:</strong>\r\n<ul>\r\n 	<li>workshop handouts</li>\r\n 	<li>a hypnotic audio program for home use</li>\r\n 	<li>access to our private facebook support goup to help you achieve your go</li>\r\n</ul>\r\nBooking in advance is required for this event and spaces are limited.\r\n\r\n3 Questions to answer now\r\n\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\nNow, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or paypal.\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 18:16:30','2018-04-15 18:16:30','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(627,1,'2018-04-15 18:22:19','2018-04-15 18:22:19','self-hypnosis for weight loss','self-hypnosis for weight loss','','inherit','open','closed','','woman-2827333_1280','','','2018-04-15 18:22:48','2018-04-15 18:22:48','',560,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280.jpg',0,'attachment','image/jpeg',0),(632,1,'2018-04-15 18:26:16','2018-04-15 18:26:16','<h2>Taking Control Of Your Weight For Good.</h2>\r\n<h2><img class=\"alignleft wp-image-627 size-medium\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-300x200.jpg\" alt=\"self-hypnosis for weight loss\" width=\"300\" height=\"200\" /></h2>\r\nSaturday 9th June 1pm to 4.30 at The Vault, Wallsend, Newcastle upon Tyne.\r\nYou can book your place below.\r\n\r\n<strong>In this relaxed, enjoyable workshop you will learn Self-Hypnosis Techniques:\r\n</strong>\r\n<ul>\r\n 	<li>to help you control your Food Cravings</li>\r\n 	<li>to make Better Food Choices</li>\r\n 	<li>to control Stress &amp; Anxiety related to food</li>\r\n 	<li>to help you Control Your Appitite</li>\r\n 	<li>to use the power of Mindfulness &amp; Mediatation over food</li>\r\n 	<li>to use you Mind to Enjoy Excercise</li>\r\n 	<li>to explore and add a Variety Of New Foods to your diet</li>\r\n 	<li>to develope a Healthy Mindset</li>\r\n 	<li>to control Emotional Eating</li>\r\n</ul>\r\n<strong>You will also learn:</strong>\r\n<ul>\r\n 	<li>why Calorie Counting will often not work</li>\r\n 	<li>the surprising Foods That Cause The Biggest Weight Gain</li>\r\n 	<li>the Foods That Increase Cravings</li>\r\n 	<li>about the many Myths Of Weight Loss</li>\r\n 	<li>why most Diets Do Not Work</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Also included are:</strong>\r\n<ul>\r\n 	<li>workshop handouts</li>\r\n 	<li>a hypnotic audio program for home use</li>\r\n 	<li>access to our private facebook support goup to help you achieve your go</li>\r\n</ul>\r\nBooking in advance is required for this event and spaces are limited.\r\n\r\n3 Questions to answer now\r\n\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\nNow, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or paypal.\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /><strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 18:26:16','2018-04-15 18:26:16','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(628,1,'2018-04-15 18:23:56','2018-04-15 18:23:56','Imagine\r\n<h2>Learn Self-Hypnosis For Weight Loss - Take Control Of Your Weight For Good.<img class=\"alignleft wp-image-627 size-medium\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-300x200.jpg\" alt=\"self-hypnosis for weight loss\" width=\"300\" height=\"200\" /></h2>\r\nSaturday 9th June 1pm to 4.30 at The Vault, Wallsend, Newcastle upon Tyne.\r\nYou can book your place below.\r\n\r\n<strong>In this relaxed, enjoyable workshop you will learn Self-Hypnosis Techniques:\r\n</strong>\r\n<ul>\r\n 	<li>to help you control your Food Cravings</li>\r\n 	<li>to make Better Food Choices</li>\r\n 	<li>to control Stress &amp; Anxiety related to food</li>\r\n 	<li>to help you Control Your Appitite</li>\r\n 	<li>to use the power of Mindfulness &amp; Mediatation over food</li>\r\n 	<li>to use you Mind to Enjoy Excercise</li>\r\n 	<li>to explore and add a Variety Of New Foods to your diet</li>\r\n 	<li>to develope a Healthy Mindset</li>\r\n 	<li>to control Emotional Eating</li>\r\n</ul>\r\n<strong>You will also learn:</strong>\r\n<ul>\r\n 	<li>why Calorie Counting will often not work</li>\r\n 	<li>the surprising Foods That Cause The Biggest Weight Gain</li>\r\n 	<li>the Foods That Increase Cravings</li>\r\n 	<li>about the many Myths Of Weight Loss</li>\r\n 	<li>why most Diets Do Not Work</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Also included are:</strong>\r\n<ul>\r\n 	<li>workshop handouts</li>\r\n 	<li>a hypnotic audio program for home use</li>\r\n 	<li>access to our private facebook support goup to help you achieve your go</li>\r\n</ul>\r\nBooking in advance is required for this event and spaces are limited.\r\n\r\n3 Questions to answer now\r\n\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\nNow, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or paypal.\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />&nbsp;\r\n\r\n<strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 18:23:56','2018-04-15 18:23:56','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(629,1,'2018-04-15 18:24:08','2018-04-15 18:24:08','Imagine\r\n<h2>Learn Self-Hypnosis For Weight Loss - Take Control Of Your Weight For Good.<img class=\"alignleft wp-image-627 size-medium\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-300x200.jpg\" alt=\"self-hypnosis for weight loss\" width=\"300\" height=\"200\" /></h2>\r\nSaturday 9th June 1pm to 4.30 at The Vault, Wallsend, Newcastle upon Tyne.\r\nYou can book your place below.\r\n\r\n<strong>In this relaxed, enjoyable workshop you will learn Self-Hypnosis Techniques:\r\n</strong>\r\n<ul>\r\n 	<li>to help you control your Food Cravings</li>\r\n 	<li>to make Better Food Choices</li>\r\n 	<li>to control Stress &amp; Anxiety related to food</li>\r\n 	<li>to help you Control Your Appitite</li>\r\n 	<li>to use the power of Mindfulness &amp; Mediatation over food</li>\r\n 	<li>to use you Mind to Enjoy Excercise</li>\r\n 	<li>to explore and add a Variety Of New Foods to your diet</li>\r\n 	<li>to develope a Healthy Mindset</li>\r\n 	<li>to control Emotional Eating</li>\r\n</ul>\r\n<strong>You will also learn:</strong>\r\n<ul>\r\n 	<li>why Calorie Counting will often not work</li>\r\n 	<li>the surprising Foods That Cause The Biggest Weight Gain</li>\r\n 	<li>the Foods That Increase Cravings</li>\r\n 	<li>about the many Myths Of Weight Loss</li>\r\n 	<li>why most Diets Do Not Work</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Also included are:</strong>\r\n<ul>\r\n 	<li>workshop handouts</li>\r\n 	<li>a hypnotic audio program for home use</li>\r\n 	<li>access to our private facebook support goup to help you achieve your go</li>\r\n</ul>\r\nBooking in advance is required for this event and spaces are limited.\r\n\r\n3 Questions to answer now\r\n\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\nNow, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or paypal.\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /><strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 18:24:08','2018-04-15 18:24:08','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(630,1,'2018-04-15 18:24:42','2018-04-15 18:24:42','<h2>Learn Self-Hypnosis For Weight Loss  &amp; Take Control Of Your Weight For Good.<img class=\"alignleft wp-image-627 size-medium\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-300x200.jpg\" alt=\"self-hypnosis for weight loss\" width=\"300\" height=\"200\" /></h2>\r\nSaturday 9th June 1pm to 4.30 at The Vault, Wallsend, Newcastle upon Tyne.\r\nYou can book your place below.\r\n\r\n<strong>In this relaxed, enjoyable workshop you will learn Self-Hypnosis Techniques:\r\n</strong>\r\n<ul>\r\n 	<li>to help you control your Food Cravings</li>\r\n 	<li>to make Better Food Choices</li>\r\n 	<li>to control Stress &amp; Anxiety related to food</li>\r\n 	<li>to help you Control Your Appitite</li>\r\n 	<li>to use the power of Mindfulness &amp; Mediatation over food</li>\r\n 	<li>to use you Mind to Enjoy Excercise</li>\r\n 	<li>to explore and add a Variety Of New Foods to your diet</li>\r\n 	<li>to develope a Healthy Mindset</li>\r\n 	<li>to control Emotional Eating</li>\r\n</ul>\r\n<strong>You will also learn:</strong>\r\n<ul>\r\n 	<li>why Calorie Counting will often not work</li>\r\n 	<li>the surprising Foods That Cause The Biggest Weight Gain</li>\r\n 	<li>the Foods That Increase Cravings</li>\r\n 	<li>about the many Myths Of Weight Loss</li>\r\n 	<li>why most Diets Do Not Work</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Also included are:</strong>\r\n<ul>\r\n 	<li>workshop handouts</li>\r\n 	<li>a hypnotic audio program for home use</li>\r\n 	<li>access to our private facebook support goup to help you achieve your go</li>\r\n</ul>\r\nBooking in advance is required for this event and spaces are limited.\r\n\r\n3 Questions to answer now\r\n\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\nNow, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or paypal.\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /><strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 18:24:42','2018-04-15 18:24:42','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(631,1,'2018-04-15 18:25:20','2018-04-15 18:25:20','<h2>Learn Self-Hypnosis For Weight Loss  &amp; Take Control Of Your Weight For Good.</h2>\r\n<h2><img class=\"alignleft wp-image-627 size-medium\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-300x200.jpg\" alt=\"self-hypnosis for weight loss\" width=\"300\" height=\"200\" /></h2>\r\nSaturday 9th June 1pm to 4.30 at The Vault, Wallsend, Newcastle upon Tyne.\r\nYou can book your place below.\r\n\r\n<strong>In this relaxed, enjoyable workshop you will learn Self-Hypnosis Techniques:\r\n</strong>\r\n<ul>\r\n 	<li>to help you control your Food Cravings</li>\r\n 	<li>to make Better Food Choices</li>\r\n 	<li>to control Stress &amp; Anxiety related to food</li>\r\n 	<li>to help you Control Your Appitite</li>\r\n 	<li>to use the power of Mindfulness &amp; Mediatation over food</li>\r\n 	<li>to use you Mind to Enjoy Excercise</li>\r\n 	<li>to explore and add a Variety Of New Foods to your diet</li>\r\n 	<li>to develope a Healthy Mindset</li>\r\n 	<li>to control Emotional Eating</li>\r\n</ul>\r\n<strong>You will also learn:</strong>\r\n<ul>\r\n 	<li>why Calorie Counting will often not work</li>\r\n 	<li>the surprising Foods That Cause The Biggest Weight Gain</li>\r\n 	<li>the Foods That Increase Cravings</li>\r\n 	<li>about the many Myths Of Weight Loss</li>\r\n 	<li>why most Diets Do Not Work</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Also included are:</strong>\r\n<ul>\r\n 	<li>workshop handouts</li>\r\n 	<li>a hypnotic audio program for home use</li>\r\n 	<li>access to our private facebook support goup to help you achieve your go</li>\r\n</ul>\r\nBooking in advance is required for this event and spaces are limited.\r\n\r\n3 Questions to answer now\r\n\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\nNow, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or paypal.\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /><strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 18:25:20','2018-04-15 18:25:20','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(633,1,'2018-04-15 18:28:43','2018-04-15 18:28:43','<h2>Taking Control Of Your Weight For Good.</h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June 1pm to 4.30 at The Vault, Wallsend, Newcastle upon Tyne.\r\nYou can book your place below.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>In this relaxed, enjoyable workshop you will learn Self-Hypnosis Techniques:\r\n</strong>\r\n<ul>\r\n 	<li>to help you control your Food Cravings</li>\r\n 	<li>to make Better Food Choices</li>\r\n 	<li>to control Stress &amp; Anxiety related to food</li>\r\n 	<li>to help you Control Your Appitite</li>\r\n 	<li>to use the power of Mindfulness &amp; Mediatation over food</li>\r\n 	<li>to use you Mind to Enjoy Excercise</li>\r\n 	<li>to explore and add a Variety Of New Foods to your diet</li>\r\n 	<li>to develope a Healthy Mindset</li>\r\n 	<li>to control Emotional Eating</li>\r\n</ul>\r\n<strong>You will also learn:</strong>\r\n<ul>\r\n 	<li>why Calorie Counting will often not work</li>\r\n 	<li>the surprising Foods That Cause The Biggest Weight Gain</li>\r\n 	<li>the Foods That Increase Cravings</li>\r\n 	<li>about the many Myths Of Weight Loss</li>\r\n 	<li>why most Diets Do Not Work</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Also included are:</strong>\r\n<ul>\r\n 	<li>workshop handouts</li>\r\n 	<li>a hypnotic audio program for home use</li>\r\n 	<li>access to our private facebook support goup to help you achieve your go</li>\r\n</ul>\r\nBooking in advance is required for this event and spaces are limited.\r\n\r\n3 Questions to answer now\r\n\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\nNow, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or paypal.\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /><strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 18:28:43','2018-04-15 18:28:43','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(634,1,'2018-04-15 18:30:00','2018-04-15 18:30:00','<h2>Taking Control Of Your Weight For Good.</h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June\r\n1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\nBook your place below &amp; join the newsletter for future events\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>In this relaxed, enjoyable workshop you will learn Self-Hypnosis Techniques:\r\n</strong>\r\n<ul>\r\n 	<li>to help you control your Food Cravings</li>\r\n 	<li>to make Better Food Choices</li>\r\n 	<li>to control Stress &amp; Anxiety related to food</li>\r\n 	<li>to help you Control Your Appitite</li>\r\n 	<li>to use the power of Mindfulness &amp; Mediatation over food</li>\r\n 	<li>to use you Mind to Enjoy Excercise</li>\r\n 	<li>to explore and add a Variety Of New Foods to your diet</li>\r\n 	<li>to develope a Healthy Mindset</li>\r\n 	<li>to control Emotional Eating</li>\r\n</ul>\r\n<strong>You will also learn:</strong>\r\n<ul>\r\n 	<li>why Calorie Counting will often not work</li>\r\n 	<li>the surprising Foods That Cause The Biggest Weight Gain</li>\r\n 	<li>the Foods That Increase Cravings</li>\r\n 	<li>about the many Myths Of Weight Loss</li>\r\n 	<li>why most Diets Do Not Work</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Also included are:</strong>\r\n<ul>\r\n 	<li>workshop handouts</li>\r\n 	<li>a hypnotic audio program for home use</li>\r\n 	<li>access to our private facebook support goup to help you achieve your go</li>\r\n</ul>\r\nBooking in advance is required for this event and spaces are limited.\r\n\r\n3 Questions to answer now\r\n\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\nNow, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or paypal.\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /><strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 18:30:00','2018-04-15 18:30:00','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(635,1,'2018-04-15 18:30:32','2018-04-15 18:30:32','<h2>Taking Control Of Your Weight For Good.</h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\nBook your place below &amp; join the newsletter for future events\r\n\r\n&nbsp;\r\n\r\n<strong>In this relaxed, enjoyable workshop you will learn Self-Hypnosis Techniques:\r\n</strong>\r\n<ul>\r\n 	<li>to help you control your Food Cravings</li>\r\n 	<li>to make Better Food Choices</li>\r\n 	<li>to control Stress &amp; Anxiety related to food</li>\r\n 	<li>to help you Control Your Appitite</li>\r\n 	<li>to use the power of Mindfulness &amp; Mediatation over food</li>\r\n 	<li>to use you Mind to Enjoy Excercise</li>\r\n 	<li>to explore and add a Variety Of New Foods to your diet</li>\r\n 	<li>to develope a Healthy Mindset</li>\r\n 	<li>to control Emotional Eating</li>\r\n</ul>\r\n<strong>You will also learn:</strong>\r\n<ul>\r\n 	<li>why Calorie Counting will often not work</li>\r\n 	<li>the surprising Foods That Cause The Biggest Weight Gain</li>\r\n 	<li>the Foods That Increase Cravings</li>\r\n 	<li>about the many Myths Of Weight Loss</li>\r\n 	<li>why most Diets Do Not Work</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Also included are:</strong>\r\n<ul>\r\n 	<li>workshop handouts</li>\r\n 	<li>a hypnotic audio program for home use</li>\r\n 	<li>access to our private facebook support goup to help you achieve your go</li>\r\n</ul>\r\nBooking in advance is required for this event and spaces are limited.\r\n\r\n3 Questions to answer now\r\n\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\nNow, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or paypal.\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /><strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 18:30:32','2018-04-15 18:30:32','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(637,1,'2018-04-15 18:32:01','2018-04-15 18:32:01','<h2>Taking Control Of Your Weight For Good.</h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\nBook your place below &amp; join the newsletter for future events\r\n\r\n&nbsp;\r\n<h2><strong>In this relaxed, enjoyable workshop you will learn:\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your Food Cravings</li>\r\n 	<li>to make Better Food Choices</li>\r\n 	<li>to control Stress &amp; Anxiety related to food</li>\r\n 	<li>to help you Control Your Appitite</li>\r\n 	<li>to use the power of Mindfulness &amp; Mediatation over food</li>\r\n 	<li>to use you Mind to Enjoy Excercise</li>\r\n 	<li>to explore and add a Variety Of New Foods to your diet</li>\r\n 	<li>to develope a Healthy Mindset</li>\r\n 	<li>to control Emotional Eating</li>\r\n</ul>\r\n<h2><strong>You will also learn:</strong></h2>\r\n<ul>\r\n 	<li>why Calorie Counting will often not work</li>\r\n 	<li>the surprising Foods That Cause The Biggest Weight Gain</li>\r\n 	<li>the Foods That Increase Cravings</li>\r\n 	<li>about the many Myths Of Weight Loss</li>\r\n 	<li>why most Diets Do Not Work</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Also included are:</strong>\r\n<ul>\r\n 	<li>workshop handouts</li>\r\n 	<li>a hypnotic audio program for home use</li>\r\n 	<li>access to our private facebook support goup to help you achieve your go</li>\r\n</ul>\r\nBooking in advance is required for this event and spaces are limited.\r\n\r\n3 Questions to answer now\r\n\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\nNow, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or paypal.\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /><strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 18:32:01','2018-04-15 18:32:01','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(636,1,'2018-04-15 18:31:21','2018-04-15 18:31:21','<h2>Taking Control Of Your Weight For Good.</h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\nBook your place below &amp; join the newsletter for future events\r\n\r\n&nbsp;\r\n<h2><strong>In this relaxed, enjoyable workshop you will learn Self-Hypnosis Techniques:\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your Food Cravings</li>\r\n 	<li>to make Better Food Choices</li>\r\n 	<li>to control Stress &amp; Anxiety related to food</li>\r\n 	<li>to help you Control Your Appitite</li>\r\n 	<li>to use the power of Mindfulness &amp; Mediatation over food</li>\r\n 	<li>to use you Mind to Enjoy Excercise</li>\r\n 	<li>to explore and add a Variety Of New Foods to your diet</li>\r\n 	<li>to develope a Healthy Mindset</li>\r\n 	<li>to control Emotional Eating</li>\r\n</ul>\r\n<h2><strong>You will also learn:</strong></h2>\r\n<ul>\r\n 	<li>why Calorie Counting will often not work</li>\r\n 	<li>the surprising Foods That Cause The Biggest Weight Gain</li>\r\n 	<li>the Foods That Increase Cravings</li>\r\n 	<li>about the many Myths Of Weight Loss</li>\r\n 	<li>why most Diets Do Not Work</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Also included are:</strong>\r\n<ul>\r\n 	<li>workshop handouts</li>\r\n 	<li>a hypnotic audio program for home use</li>\r\n 	<li>access to our private facebook support goup to help you achieve your go</li>\r\n</ul>\r\nBooking in advance is required for this event and spaces are limited.\r\n\r\n3 Questions to answer now\r\n\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\nNow, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or paypal.\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /><strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 18:31:21','2018-04-15 18:31:21','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(638,1,'2018-04-15 18:32:58','2018-04-15 18:32:58','<h2><span style=\"color: #008000;\">Taking Control Of Your Weight For Good.</span></h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\nBook your place below &amp; join the newsletter for future events\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your Food Cravings</li>\r\n 	<li>to make Better Food Choices</li>\r\n 	<li>to control Stress &amp; Anxiety related to food</li>\r\n 	<li>to help you Control Your Appitite</li>\r\n 	<li>to use the power of Mindfulness &amp; Mediatation over food</li>\r\n 	<li>to use you Mind to Enjoy Excercise</li>\r\n 	<li>to explore and add a Variety Of New Foods to your diet</li>\r\n 	<li>to develope a Healthy Mindset</li>\r\n 	<li>to control Emotional Eating</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why Calorie Counting will often not work</li>\r\n 	<li>the surprising Foods That Cause The Biggest Weight Gain</li>\r\n 	<li>the Foods That Increase Cravings</li>\r\n 	<li>about the many Myths Of Weight Loss</li>\r\n 	<li>why most Diets Do Not Work</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>workshop handouts</li>\r\n 	<li>a hypnotic audio program for home use</li>\r\n 	<li>access to our private facebook support goup to help you achieve your go</li>\r\n</ul>\r\nBooking in advance is required for this event and spaces are limited.\r\n\r\n3 Questions to answer now\r\n\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\nNow, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or paypal.\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /><strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 18:32:58','2018-04-15 18:32:58','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(639,1,'2018-04-15 18:33:55','2018-04-15 18:33:56','<h2><span style=\"color: #008000;\">Taking Control Of Your Weight For Good.</span></h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\nBook your place below &amp; join the newsletter for future events\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your Food Cravings</li>\r\n 	<li>to make Better Food Choices</li>\r\n 	<li>to control Stress &amp; Anxiety related to food</li>\r\n 	<li>to help you Control Your Appitite</li>\r\n 	<li>to use the power of Mindfulness &amp; Mediatation over food</li>\r\n 	<li>to use you Mind to Enjoy Excercise</li>\r\n 	<li>to explore and add a Variety Of New Foods to your diet</li>\r\n 	<li>to develope a Healthy Mindset</li>\r\n 	<li>to control Emotional Eating</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why Calorie Counting will often not work</li>\r\n 	<li>the surprising Foods That Cause The Biggest Weight Gain</li>\r\n 	<li>the Foods That Increase Cravings</li>\r\n 	<li>about the many Myths Of Weight Loss</li>\r\n 	<li>why most Diets Do Not Work</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>workshop handouts</li>\r\n 	<li>a hypnotic audio program for home use</li>\r\n 	<li>access to our private facebook support goup to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n<h2><span style=\"color: #008000;\">3 Questions to answer now</span></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or </strong>paypal<strong>.</strong>\r\n<strong>Terms an conditions can be found at the bottom of this page.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /><strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 18:33:55','2018-04-15 18:33:56','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(640,1,'2018-04-15 18:35:01','2018-04-15 18:35:01','<h2><strong><span style=\"color: #008000;\">Take Control Of Your Weight For Good &amp; Feel Amazing\r\n</span></strong></h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\nBook your place below &amp; join the newsletter for future events\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your Food Cravings</li>\r\n 	<li>to make Better Food Choices</li>\r\n 	<li>to control Stress &amp; Anxiety related to food</li>\r\n 	<li>to help you Control Your Appitite</li>\r\n 	<li>to use the power of Mindfulness &amp; Mediatation over food</li>\r\n 	<li>to use you Mind to Enjoy Excercise</li>\r\n 	<li>to explore and add a Variety Of New Foods to your diet</li>\r\n 	<li>to develope a Healthy Mindset</li>\r\n 	<li>to control Emotional Eating</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why Calorie Counting will often not work</li>\r\n 	<li>the surprising Foods That Cause The Biggest Weight Gain</li>\r\n 	<li>the Foods That Increase Cravings</li>\r\n 	<li>about the many Myths Of Weight Loss</li>\r\n 	<li>why most Diets Do Not Work</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>workshop handouts</li>\r\n 	<li>a hypnotic audio program for home use</li>\r\n 	<li>access to our private facebook support goup to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n<h2><span style=\"color: #008000;\">3 Questions to answer now</span></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or </strong>paypal<strong>.</strong>\r\n<strong>Terms an conditions can be found at the bottom of this page.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /><strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 18:35:01','2018-04-15 18:35:01','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(641,1,'2018-04-15 18:35:41','2018-04-15 18:35:41','<h2><strong><span style=\"color: #008000;\">Take Control Of Your Weight For Good &amp; Feel Amazing\r\n</span></strong></h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your Food Cravings</li>\r\n 	<li>to make Better Food Choices</li>\r\n 	<li>to control Stress &amp; Anxiety related to food</li>\r\n 	<li>to help you Control Your Appitite</li>\r\n 	<li>to use the power of Mindfulness &amp; Mediatation over food</li>\r\n 	<li>to use you Mind to Enjoy Excercise</li>\r\n 	<li>to explore and add a Variety Of New Foods to your diet</li>\r\n 	<li>to develope a Healthy Mindset</li>\r\n 	<li>to control Emotional Eating</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why Calorie Counting will often not work</li>\r\n 	<li>the surprising Foods That Cause The Biggest Weight Gain</li>\r\n 	<li>the Foods That Increase Cravings</li>\r\n 	<li>about the many Myths Of Weight Loss</li>\r\n 	<li>why most Diets Do Not Work</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>workshop handouts</li>\r\n 	<li>a hypnotic audio program for home use</li>\r\n 	<li>access to our private facebook support goup to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n<h2><span style=\"color: #008000;\">3 Questions to answer now</span></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or </strong>paypal<strong>.</strong>\r\n<strong>Terms an conditions can be found at the bottom of this page.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /><strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 18:35:41','2018-04-15 18:35:41','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(642,1,'2018-04-15 18:36:30','2018-04-15 18:36:30','<h2><strong><span style=\"color: #008000;\">Take Control Of Your Weight For Good &amp; Feel Amazing\r\n</span></strong></h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your Food Cravings</li>\r\n 	<li>to make Better Food Choices</li>\r\n 	<li>to control Stress &amp; Anxiety related to food</li>\r\n 	<li>to help you Control Your Appitite</li>\r\n 	<li>to use the power of Mindfulness &amp; Mediatation over food</li>\r\n 	<li>to use you Mind to Enjoy Excercise</li>\r\n 	<li>to explore and add a Variety Of New Foods to your diet</li>\r\n 	<li>to develope a Healthy Mindset</li>\r\n 	<li>to control Emotional Eating</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why Calorie Counting will often not work</li>\r\n 	<li>the surprising Foods That Cause The Biggest Weight Gain</li>\r\n 	<li>the Foods That Increase Cravings</li>\r\n 	<li>about the many Myths Of Weight Loss</li>\r\n 	<li>why most Diets Do Not Work</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>workshop handouts</li>\r\n 	<li>a hypnotic audio program for home use</li>\r\n 	<li>access to our private facebook support goup to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to answer now</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or </strong>paypal<strong>.</strong>\r\n<strong>Terms an conditions can be found at the bottom of this page.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /><strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 18:36:30','2018-04-15 18:36:30','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(643,1,'2018-04-15 18:44:16','2018-04-15 18:44:16','<h2><strong><span style=\"color: #008000;\">Take Control Of Your Weight For Good &amp; Feel Amazing\r\n</span></strong></h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li><strong>Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to answer now</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or </strong>paypal<strong>.</strong>\r\n<strong>Terms an conditions can be found at the bottom of this page.</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /><strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 18:44:16','2018-04-15 18:44:16','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(644,1,'2018-04-15 18:57:42','2018-04-15 18:57:42','<label> Your Name (required)\r\n    [text* your-name] </label>\r\n\r\n<label> Your Email (required)\r\n    [email* your-email] </label>\r\n\r\n\r\n[submit \"Join Today\"]\n1\nWEIGHT LOSS\n[your-name] <mark@newcastle-hypnotherapy.com>\nmark@newcastle-hypnotherapy.com\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Newcastle Hypnotherapy Tyneside &amp; Northumberland, (http://www.newcastle-hypnotherapy.com)\nReply-To: [your-email]\n\n\n\n\nNewcastle Hypnotherapy Tyneside & Northumberland, \"[your-subject]\"\nNewcastle Hypnotherapy Tyneside & Northumberland, <mark@newcastle-hypnotherapy.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Newcastle Hypnotherapy Tyneside &amp; Northumberland, (http://www.newcastle-hypnotherapy.com)\nReply-To: mark@newcastle-hypnotherapy.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Weight Loss Events Newsletter','','publish','closed','closed','','weight-loss-events-newsletter','','','2018-07-22 17:59:32','2018-07-22 17:59:32','',0,'http://www.newcastle-hypnotherapy.com/?post_type=wpcf7_contact_form&#038;p=644',0,'wpcf7_contact_form','',0),(1034,1,'2018-07-22 18:00:53','2018-07-22 18:00:53','<h2>We run regular workshops &amp; events.\r\nFor the latest information by email please join our newsletter below.</h2>\r\n<h2><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>S</strong></a><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>elf Hypnosis for Stress &amp; Anxiety </strong></a></h2>\r\n<h2><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-for-weight-loss/\"><span style=\"color: #008000;\"><strong>Self-Hypnosis for Weight Loss </strong></span></a></h2>\r\n.[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-07-22 18:00:53','2018-07-22 18:00:53','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(645,1,'2018-04-15 18:58:18','2018-04-15 18:58:18','<h2><strong><span style=\"color: #008000;\">Take Control Of Your Weight For Good &amp; Feel Amazing\r\n</span></strong></h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li><strong>Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to answer now</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or </strong>paypal<strong>.</strong>\r\n<strong>Terms an conditions can be found at the bottom of this page.</strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 18:58:18','2018-04-15 18:58:18','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(646,1,'2018-04-15 19:00:46','2018-04-15 19:00:46','<h2><strong><span style=\"color: #008000;\">Take Control Of Your Weight For Good &amp; Feel Amazing\r\n</span></strong></h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li><strong>Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to answer now</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or </strong>paypal<strong>.</strong>\r\n<strong>Terms an conditions can be found at the bottom of this page.</strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Free Resources &amp; Future Events - Join the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 19:00:46','2018-04-15 19:00:46','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(647,1,'2018-04-15 19:04:03','2018-04-15 19:04:03','<h2><strong><span style=\"color: #008000;\">Take Control Of Your Weight For Good &amp; Feel Amazing\r\n</span></strong></h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li><strong>Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to answer now</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or </strong>paypal<strong>.</strong>\r\n<strong>Terms an conditions can be found at the bottom of this page.</strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 19:04:03','2018-04-15 19:04:03','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(648,1,'2019-06-29 16:57:51','2019-06-29 16:57:51','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\n\n<strong><span style=\"color: #008000;\">\nNewcastle Self-Hypnosis Practice Group\n</span></strong>\n\nWednesday 24th July\n7.30 pm to 9.30 pm\nThe Vault, Wallsend.\n£12.5o Early Bird (£20 after)\n<span style=\"color: #ff6600;\"><strong>Advance booking required\nBook below – Limited Spaces</strong></span>\n\n&nbsp;\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - July\n</strong></span></h4>\nDuring this months practice group, we will focus on two self-hypnosis techniques to quickly promote self-healing and mental relaxation.\nBoth are easy to learn for fast, relaxation and creating calm, stress-free states.\nWe will take you through this step by step and then practice this, ensuring you can use this induction well.\n\n<strong>Suitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practicing and strengthening your skills</strong>\n<h4><span style=\"color: #008000;\"><strong>Why Learn Self-Hypnosis Skills?</strong></span></h4>\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\n<h4>As part of this workshop, you will</h4>\n<ul>\n 	<li>learn what is self-hypnosis</li>\n 	<li>practice inductions on others</li>\n 	<li>learn new induction techniques</li>\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\n 	<li>improve your meditation results &amp; calm your mind</li>\n 	<li>learn to control your feelings, emotions, and behavior</li>\n 	<li>take control of cravings and reactions</li>\n</ul>\n<strong>This self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.</strong>\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\n\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<strong>You can learn about our other events by joining the newsletter</strong>\n\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\n\n<strong>You can unsubscribe from the newsletter at any time using the link in every email.</strong>','The Healing Pool & The Mental Message','','inherit','closed','closed','','560-autosave-v1','','','2019-06-29 16:57:51','2019-06-29 16:57:51','',560,'http://www.newcastle-hypnotherapy.com/560-autosave-v1/',0,'revision','',0),(2648,1,'2019-02-24 17:52:45','2019-02-24 17:52:45','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n27th March. 7.30 pm to 9.3o\r\nThe Vault, Wallsend.\r\n£15 each (£10 Early Bird)\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Montly Practice Group - March\r\n</strong></span></h4>\r\nSelf-Hypnosis is always one of our most poplular workshops and gives us a great skill set for a better life.\r\nSuitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practising and strengthening your skills.\r\n<ul>\r\n 	<li>learn self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions and behaviour</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\nThis self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\nJoin us by booking your place below now.\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</form>','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-02-24 17:52:45','2019-02-24 17:52:45','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(649,1,'2018-04-15 19:05:58','2018-04-15 19:05:58','<h2><strong><span style=\"color: #008000;\">Take Control Of Your Weight For Good &amp; Feel Amazing\r\n</span></strong></h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li><strong>Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or </strong>paypal<strong>.</strong>\r\n<strong>Terms an conditions can be found at the bottom of this page.</strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 19:05:58','2018-04-15 19:05:58','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(669,1,'2018-04-19 21:38:27','2018-04-19 21:38:27','<h2>We run regular workshops &amp; events.\r\nFor the latest information by email please join our newsletter below.</h2>\r\n<h2><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>S</strong></a><strong>elf Hypnosis for Stress &amp; Anxiety - 19th May</strong></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis for Weight Loss - 9th June 2018</strong></span></h2>\r\n.\r\n\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-04-19 21:38:27','2018-04-19 21:38:27','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(650,1,'2018-04-15 19:07:48','2018-04-15 19:07:48','<h2>We run regular workshops &amp; events.\r\nFor the latest information by email please join our newsletter below.</h2>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>Self Hypnosis for Stress &amp; Anxiety - 19th May</strong></a>\r\n\r\n<span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-weight-loss/\"><strong>Self-Hypnosis for Weight Loss - 9th June 2018</strong></a></span>\r\n\r\n.\r\n\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-04-15 19:07:48','2018-04-15 19:07:48','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(999,1,'2018-06-09 18:40:13','2018-06-09 18:40:13','<h2><strong><span style=\"color: #008000;\">Look Great For The Summer\r\n</span></strong></h2>\r\n<img class=\"wp-image-939 size-full aligncenter\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1.jpg\" alt=\"\" width=\"552\" height=\"369\" />\r\n<h2><strong><span style=\"color: #008000;\">Self Hypnosis for Weight Loss Workshop - Saturday 9th June.</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><strong>Our next event is coming soon. Sign up for the newsletter below for full info of next events.\r\n</strong></span>\r\n\r\nIn this relaxed, enjoyable workshop you will learn:\r\n<ul>\r\n 	<li><strong> </strong>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>You can book your place below today.</strong>\r\n</span></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-06-09 18:40:13','2018-06-09 18:40:13','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(651,1,'2018-04-15 19:17:03','2018-04-15 19:17:03','<h2><strong><span style=\"color: #008000;\">Take Control Of Your Weight For Good &amp; Feel Amazing\r\n</span></strong></h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li><strong>Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n</strong>\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or </strong>paypal<strong>.</strong>\r\n<strong>Terms an conditions can be found at the bottom of this page.</strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 19:17:03','2018-04-15 19:17:03','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(652,1,'2018-04-15 19:19:50','2018-04-15 19:19:50','<h2><strong><span style=\"color: #008000;\">Take Control Of Your Weight For Good &amp; Feel Amazing\r\n</span></strong></h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to Save Money while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or </strong>paypal<strong>.</strong>\r\n<strong>Terms an conditions can be found at the bottom of this page.</strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 19:19:50','2018-04-15 19:19:50','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(653,1,'2018-04-15 19:20:16','2018-04-15 19:20:16','<h2><strong><span style=\"color: #008000;\">Take Control Of Your Weight For Good &amp; Feel Amazing\r\n</span></strong></h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or </strong>paypal<strong>.</strong>\r\n<strong>Terms an conditions can be found at the bottom of this page.</strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 19:20:16','2018-04-15 19:20:16','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(654,1,'2018-04-15 19:24:36','2018-04-15 19:24:36','<h2><strong><span style=\"color: #008000;\">Take Control Of Your Weight For Good &amp; Feel Amazing\r\n</span></strong></h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 19:24:36','2018-04-15 19:24:36','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(655,1,'2018-04-15 19:25:45','2018-04-15 19:25:45','<h2><strong><span style=\"color: #008000;\">Take Control Of Your Weight For Good &amp; Feel Amazing\r\n</span></strong></h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why for SERIOUS MOTIVATION\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 19:25:45','2018-04-15 19:25:45','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(656,1,'2018-04-15 19:26:21','2018-04-15 19:26:21','<h2><strong><span style=\"color: #008000;\">Take Control Of Your Weight For Good &amp; Feel Amazing\r\n</span></strong></h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 19:26:21','2018-04-15 19:26:21','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(657,1,'2018-04-15 19:32:55','2018-04-15 19:32:55','<h2><strong><span style=\"color: #008000;\">Take Control Of Your Weight For Good &amp; Feel Amazing\r\n</span></strong></h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss</span></strong></h2>\r\n&nbsp;\r\n\r\n<strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 19:32:55','2018-04-15 19:32:55','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(658,1,'2018-04-15 19:34:14','2018-04-15 19:34:14','<h2><strong><span style=\"color: #008000;\">Take Control Of Your Weight For Good &amp; Feel Amazing\r\n</span></strong></h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss</span></strong></h2>\r\n&nbsp;\r\n\r\n<strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 19:34:14','2018-04-15 19:34:14','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(941,1,'2018-06-02 07:26:38','2018-06-02 07:26:38','<h2><strong><span style=\"color: #008000;\">Look Great For The Summer\r\n</span></strong></h2>\r\n<img class=\"alignleft size-medium wp-image-939\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />\r\n\r\n&nbsp;\r\n\r\n\r\n\r\nIn this relaxed, enjoyable workshop you will learn:\r\n<h2><strong> </strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>To book your place fill in the form above while places are still remaining.</strong>\r\n</span></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-06-02 07:26:38','2018-06-02 07:26:38','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(659,1,'2018-04-15 19:40:56','2018-04-15 19:40:56','<h2><strong><span style=\"color: #008000;\">Take Control Of Your Weight For Good &amp; Feel Amazing\r\n</span></strong></h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSelf-Hypnosis For Weight Loss Workshop\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<strong>Terms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 19:40:56','2018-04-15 19:40:56','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(660,1,'2018-04-15 19:43:05','2018-04-15 19:43:05','<h2><strong><span style=\"color: #008000;\">Take Control Of Your Weight For Good &amp; Feel Amazing\r\n</span></strong></h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSelf-Hypnosis For Weight Loss Workshop\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a><strong>\r\n\r\nTerms &amp; Conditions.\r\n</strong>\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the provate facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 19:43:05','2018-04-15 19:43:05','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(661,1,'2018-04-15 20:23:02','2018-04-15 20:23:02','<h2><strong><span style=\"color: #008000;\">Take Control Of Your Weight For Good &amp; Feel Amazing\r\n</span></strong></h2>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSelf-Hypnosis For Weight Loss Workshop\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-04-15 20:23:02','2018-04-15 20:23:02','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(663,1,'2018-04-17 11:12:17','2018-04-17 11:12:17','Here are some free tools you may find useful\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply rick click and save</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Free Tools & Resources','','inherit','closed','closed','','471-revision-v1','','','2018-04-17 11:12:17','2018-04-17 11:12:17','',471,'http://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(662,1,'2018-04-17 11:11:48','2018-04-17 11:11:48','Here are some free tools you may find useful\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply rick click and save</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n\r\n<style>\r\n.embed-container {\r\n   position: relative;\r\n   padding-bottom: 39.25%;\r\n   height: 0;\r\n   overflow: visible;\r\n   max-width: 100%;\r\n   width: 70%;\r\n   margin: 0 auto;\r\n}\r\n.embed-container iframe,\r\n.embed-container object,\r\n.embed-container embed {\r\n   position: absolute;\r\n   top: 0;\r\n   left: 0;\r\n   width: 100%;\r\n   height: 100%;\r\n}\r\n</style>\r\n\r\n<div class=\'embed-container\'>\r\n<iframe src=\'https://www.youtube.com/embed/n6p6yGpvc7M\' frameborder=\'0\' allowfullscreen></iframe>\r\n</div>','Free Tools & Resources','','inherit','closed','closed','','471-revision-v1','','','2018-04-17 11:11:48','2018-04-17 11:11:48','',471,'http://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(664,1,'2018-04-17 11:13:16','2018-04-17 11:13:16','Link straight from youtube\r\n\r\n<iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\ntest 2\r\n<style>\r\n.embed-container {\r\n   position: relative;\r\n   padding-bottom: 39.25%;\r\n   height: 0;\r\n   overflow: visible;\r\n   max-width: 100%;\r\n   width: 70%;\r\n   margin: 0 auto;\r\n}\r\n.embed-container iframe,\r\n.embed-container object,\r\n.embed-container embed {\r\n   position: absolute;\r\n   top: 0;\r\n   left: 0;\r\n   width: 100%;\r\n   height: 100%;\r\n}\r\n</style>\r\n\r\n<div class=\'embed-container\'>\r\n<iframe src=\'https://www.youtube.com/embed/n6p6yGpvc7M\' frameborder=\'0\' allowfullscreen></iframe>\r\n</div>','test page','','inherit','closed','closed','','613-revision-v1','','','2018-04-17 11:13:16','2018-04-17 11:13:16','',613,'http://www.newcastle-hypnotherapy.com/613-revision-v1/',0,'revision','',0),(665,1,'2018-04-17 20:52:39','2018-04-17 20:52:39','Link straight from youtube\r\n\r\n<iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\ntest 2\r\n\r\n<style>\r\n.embed-container {<br />\r\n   position: relative;<br />\r\n   padding-bottom: 39.25%;<br />\r\n   height: 0;<br />\r\n   overflow: visible;<br />\r\n   max-width: 100%;<br />\r\n   width: 70%;<br />\r\n   margin: 0 auto;<br />\r\n}<br />\r\n.embed-container iframe,<br />\r\n.embed-container object,<br />\r\n.embed-container embed {<br />\r\n   position: absolute;<br />\r\n   top: 0;<br />\r\n   left: 0;<br />\r\n   width: 100%;<br />\r\n   height: 100%;<br />\r\n}<br />\r\n</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','test page','','inherit','closed','closed','','613-revision-v1','','','2018-04-17 20:52:39','2018-04-17 20:52:39','',613,'http://www.newcastle-hypnotherapy.com/613-revision-v1/',0,'revision','',0),(668,1,'2018-04-19 20:58:55','2018-04-19 20:58:55','<h2>We run regular workshops &amp; events.\r\nFor the latest information by email please join our newsletter below.</h2>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>Self Hypnosis for Stress &amp; Anxiety - 19th May</strong></a>\r\n\r\n<span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-for-weight-loss/\"><strong>Self-Hypnosis for Weight Loss - 9th June 2018</strong></a></span>\r\n\r\n.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-04-19 20:58:55','2018-04-19 20:58:55','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(666,1,'2018-04-17 20:53:30','2018-04-17 20:53:30','<h2>We run regular workshops &amp; events.\r\nFor the latest information by email please join our newsletter below.</h2>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>Self Hypnosis for Stress &amp; Anxiety - 19th May</strong></a>\r\n\r\n<span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-for-weight-loss/\"><strong>Self-Hypnosis for Weight Loss - 9th June 2018</strong></a></span>\r\n\r\n.\r\n\r\n<script type=\"text/javascript\" src=\"https://app.getresponse.com/view_webform_v2.js?u=SiIIV&webforms_id=BzYFD\"></script>','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-04-17 20:53:30','2018-04-17 20:53:30','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(671,1,'2018-04-19 21:40:39','2018-04-19 21:40:39','<h2>We run regular workshops &amp; events.\r\nFor the latest information by email please join our newsletter below.</h2>\r\n<h2><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>S</strong></a><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>elf Hypnosis for Stress &amp; Anxiety - 19th May</strong></a></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis for Weight Loss - 9th June 2018</strong></span></h2>\r\n.[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-04-19 21:40:39','2018-04-19 21:40:39','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(672,1,'2018-04-19 21:41:13','2018-04-19 21:41:13','<h2>We run regular workshops &amp; events.\r\nFor the latest information by email please join our newsletter below.</h2>\r\n<h2><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>S</strong></a><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>elf Hypnosis for Stress &amp; Anxiety - 19th May</strong></a></h2>\r\n<h2><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-for-weight-loss/\"><span style=\"color: #008000;\"><strong>Self-Hypnosis for Weight Loss - 9th June 2018</strong></span></a></h2>\r\n.[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-04-19 21:41:13','2018-04-19 21:41:13','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(674,1,'2018-04-19 22:01:07','2018-04-19 22:01:07','<span style=\"color: #008000;\"><strong>Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback  by Gary </strong></span>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar free\' for over two weeks\"\r\n\r\nClient Feedback by Kris. <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;','Client Feedback','','inherit','closed','closed','','200-revision-v1','','','2018-04-19 22:01:07','2018-04-19 22:01:07','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(673,1,'2018-04-19 21:59:10','2018-04-19 21:59:10','<span style=\"color: #008000;\"><strong>Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback  by Gary </strong></span>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar free\' for over two weeks\"<span style=\"color: #008000;\"><strong>\r\n\r\nClient Feedback by Kris.</strong></span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;','Client Feedback','','inherit','closed','closed','','200-revision-v1','','','2018-04-19 21:59:10','2018-04-19 21:59:10','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(675,1,'2018-04-19 22:02:15','2018-04-19 22:02:15','<span style=\"color: #008000;\"><strong>Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback  by Gary </strong></span>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;','Client Feedback','','inherit','closed','closed','','200-revision-v1','','','2018-04-19 22:02:15','2018-04-19 22:02:15','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(676,1,'2018-04-19 22:15:25','2018-04-19 22:15:25','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chose outcomes and it is better to feel relaxed and calm to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-19 22:15:25','2018-04-19 22:15:25','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(678,1,'2018-04-19 22:29:10','2018-04-19 22:29:10','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-533 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2.jpg\" alt=\"Anxiety Relief\" width=\"626\" height=\"391\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chose outcomes and it is better to feel relaxed and calm to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-19 22:29:10','2018-04-19 22:29:10','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(677,1,'2018-04-19 22:28:14','2018-04-19 22:28:14','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"wp-image-533 size-medium aligncenter\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chose outcomes and it is better to feel relaxed and calm to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-19 22:28:14','2018-04-19 22:28:14','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(679,1,'2018-04-19 22:30:12','2018-04-19 22:30:12','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chose outcomes and it is better to feel relaxed and calm to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-19 22:30:12','2018-04-19 22:30:12','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(680,1,'2018-04-23 18:27:25','2018-04-23 18:27:25','Here are some free tools you may find useful\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply rick click and save</strong>\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Free Tools & Resources','','inherit','closed','closed','','471-revision-v1','','','2018-04-23 18:27:25','2018-04-23 18:27:25','',471,'http://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(681,1,'2018-04-23 18:38:28','2018-04-23 18:38:28','Here are some free tools you may find useful\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply right click and save</strong>\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\nYou can download the <a href=\"/newcastle-hypnotherapy.com/downloads\"><strong>Deep Sleep Hypnosis Audio Program Here</strong></a>. Simply Right Click &amp; Save\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Free Tools & Resources','','inherit','closed','closed','','471-revision-v1','','','2018-04-23 18:38:28','2018-04-23 18:38:28','',471,'http://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(682,1,'2018-04-23 18:41:32','2018-04-23 18:41:32','Here are some free tools you may find useful\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply right click and save</strong>\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\nYou can download the <a href=\"/newcastle-hypnotherapy.com/downloads/sleep.mp3\"><strong>Deep Sleep Hypnosis Audio Program Here</strong></a>. Simply Right Click &amp; Save\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Free Tools & Resources','','inherit','closed','closed','','471-revision-v1','','','2018-04-23 18:41:32','2018-04-23 18:41:32','',471,'http://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(683,1,'2018-04-23 18:42:21','2018-04-23 18:42:21','Here are some free tools you may find useful\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply right click and save</strong>\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\nYou can download the <a href=\"http://www.newcastle-hypnotherapy.com/downloads/sleep.mp3\"><strong>Deep Sleep Hypnosis Audio Program Here</strong></a>. Simply Right Click &amp; Save\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Free Tools & Resources','','inherit','closed','closed','','471-revision-v1','','','2018-04-23 18:42:21','2018-04-23 18:42:21','',471,'http://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(684,1,'2018-04-24 14:39:03','2018-04-24 14:39:03','','fb logo','','inherit','open','closed','','fb-logo','','','2018-04-24 14:39:03','2018-04-24 14:39:03','',0,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/fb-logo.jpg',0,'attachment','image/jpeg',0),(1161,1,'2018-08-06 18:53:21','2018-08-06 18:53:21','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast</strong>\n<strong>As soon as you are ready we can work together to start your anxiety relief program.  We work to replace the anxiety feelings with new feelings of calm, relaxation and self- control.</strong>\n\nAnxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\n\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong>\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\n<ul>\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\n</ul>\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief With Hypnosis Program Tailored To Your Needs</span></strong></h2>\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\nWe also teach you some great skills to put you back in control and take charge of anxiety.\n\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\n\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\n\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\nAnxiety can have many symptoms including:\n<ul>\n 	<li>Sleep problems</li>\n 	<li>Switching off at night</li>\n 	<li>Unable to relax</li>\n 	<li>Being afraid of the wrong things</li>\n 	<li>Becoming stressed easily</li>\n 	<li>Rapid breathing</li>\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\n 	<li>Digestive problems</li>\n 	<li>Panic Attacks</li>\n 	<li>Bruxism and muscle clenching</li>\n 	<li>Reduced immune system</li>\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\n 	<li>Heart palpitations</li>\n 	<li>Dry mouth</li>\n 	<li>Nausea</li>\n</ul>\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors and habits are unwanted and replace them with new ones.\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chose outcomes and it is better to feel relaxed and calm to help you achieve your goals.\n\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\n\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\n\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\n\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\n\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-08-06 18:53:21','2018-08-06 18:53:21','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(686,1,'2018-04-26 13:02:47','2018-04-26 13:02:47','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosisNewcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety.</strong>\r\n<strong>As soon as you are ready we can work together to start your anxiety relief.  We then look to replace the feelings of anxiety with a feeling of calm, relaxed and in control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the sessions to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief With Hypnosis Program Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of anxiety.\r\n\r\n<strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chose outcomes and it is better to feel relaxed and calm to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n\r\nDiscover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"fe9511afe5\"}) })</script>','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-04-26 13:02:47','2018-04-26 13:02:47','',68,'http://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(687,1,'2018-04-26 13:59:50','2018-04-26 13:59:50','testst','','','private','closed','closed','','687-2','','','2018-04-26 14:01:19','2018-04-26 14:01:19','',0,'http://www.newcastle-hypnotherapy.com/?page_id=687',2000,'page','',0),(688,1,'2018-04-26 13:59:50','2018-04-26 13:59:50','testst','','','inherit','closed','closed','','687-revision-v1','','','2018-04-26 13:59:50','2018-04-26 13:59:50','',687,'http://www.newcastle-hypnotherapy.com/687-revision-v1/',0,'revision','',0),(693,2,'2018-04-30 12:21:33','2018-04-30 12:21:33','','Page With No Menu','','draft','closed','closed','','page-no-menu','','','2018-05-01 20:47:49','2018-05-01 20:47:49','',0,'http://www.newcastle-hypnotherapy.com/?page_id=693',0,'page','',0),(694,2,'2018-04-30 12:21:33','2018-04-30 12:21:33','','Page With No Menu','','inherit','closed','closed','','693-revision-v1','','','2018-04-30 12:21:33','2018-04-30 12:21:33','',693,'http://www.newcastle-hypnotherapy.com/693-revision-v1/',0,'revision','',0),(695,1,'2018-04-30 12:52:18','2018-04-30 12:52:18','Test page\r\n<pre><code>[ssa_booking type=free-15-minute-phone-strategy-session]</code></pre>','test P','','publish','closed','closed','','695-2','','','2018-09-25 12:32:22','2018-09-25 12:32:22','',0,'http://www.newcastle-hypnotherapy.com/?page_id=695',0,'page','',0),(696,1,'2018-04-30 12:52:18','2018-04-30 12:52:18','Test page','','','inherit','closed','closed','','695-revision-v1','','','2018-04-30 12:52:18','2018-04-30 12:52:18','',695,'http://www.newcastle-hypnotherapy.com/695-revision-v1/',0,'revision','',0),(697,2,'2018-05-01 05:57:17','0000-00-00 00:00:00','','Page With Only Header','','draft','closed','closed','','','','','2018-05-01 05:57:17','2018-05-01 05:57:17','',0,'http://www.newcastle-hypnotherapy.com/?page_id=697',0,'page','',0),(698,2,'2018-05-01 05:57:17','2018-05-01 05:57:17','','Page With Only Header','','inherit','closed','closed','','697-revision-v1','','','2018-05-01 05:57:17','2018-05-01 05:57:17','',697,'http://www.newcastle-hypnotherapy.com/697-revision-v1/',0,'revision','',0),(699,2,'2018-05-01 06:31:51','0000-00-00 00:00:00','','Page With Only Header','','draft','closed','closed','','','','','2018-05-01 06:31:51','2018-05-01 06:31:51','',0,'http://www.newcastle-hypnotherapy.com/?post_type=elementor_library&#038;p=699',0,'elementor_library','',0),(995,1,'2018-06-05 11:19:33','2018-06-05 11:19:33','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with the Stop Smoking Hypnosis Guaranteed program.\r\nInterestingly, smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed.</strong><b>\r\n</b></span></h2>\r\nAre you ready to stop smoking? The Stop Smoking Hypnotherapy Program includes a lifetime guarantee. If you ever smoke again or have cravings to smoke, simply get in touch and I will see you again for free.\r\n<span style=\"color: #ff6600;\"><strong>How can I afford to do this?</strong></span> This program is so successful that less than 8% of my stop smoking clients need to see me again once you have completed the program. <strong>Look at this research below</strong>\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\r\n</li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\r\n</li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\r\n</li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\r\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in an email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed - Your First Steps.</strong></span><b>\r\n</b></h2>\r\nYour first step is to arrange a free phone consultation to see if this stop smoking program is right for you.\r\nCall me today on 07568 455 809 or complete the form below to arrange your consultation and explore how Stop Smoking Guaranteed can work for you.\r\nDuring this relaxed consultation, I will explain how your stop smoking hypnosis sessions will work and evaluate exactly what you would like from this program. Hypnosis is a wonderful experience that will leave you feeling relaxed, calm and confident with the ability to take control.\r\n\r\nUsually, I work with clients from our locations in Newcastle upon Tyne, Northumberland and even Online.\r\n\r\n&nbsp;\r\n\r\nCall me today on 07568 455 809 or complete the form below and please let me know the best time to call you back.\r\n\r\n[wpforms id=\"35\"]\r\n\r\nNewcastle Hypnotherapy offer a range of Hypnsosis &amp; NLP services throughout the North East and can help with a wide range of issues, problems and challenges including Stop Smoking Hypnosis Guaranteed.\r\n\r\nWe are proud members of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>.','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-05 11:19:33','2018-06-05 11:19:33','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(733,1,'2018-05-01 18:53:01','2018-05-01 18:53:01','','food for thought','','inherit','open','closed','','food-for-though','','','2018-05-01 18:53:20','2018-05-01 18:53:20','',0,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/food-for-though.png',0,'attachment','image/png',0),(734,1,'2018-05-01 19:01:32','2018-05-01 19:01:32','','the vault wallsend','','inherit','open','closed','','the-vault-wallsend','','','2018-05-01 19:01:40','2018-05-01 19:01:40','',0,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/the-vault-wallsend.jpg',0,'attachment','image/jpeg',0),(819,1,'2018-05-09 19:28:26','2018-05-09 19:28:26','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/CXB3uPmBR6Q?rel=0&amp;controls=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Self Hypnosis for Stress &amp; Anxiety</strong> - Introduction Workshop\r\n</span></h2>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.</strong></span>\r\n<strong>This workshop is just £39 including course materials.</strong>\r\n<span style=\"color: #ff9900;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.\r\n</span><strong>Book your place now by clicking the button below.\r\n</strong><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />19th May 1 pm to 4.30 @ The Vault, Wallsend. 12 Places only - <strong><span style=\"color: #ff0000;\">5 places remaining </span></strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"HJ7TTJJJ9UAHN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form><strong><span style=\"color: #008000;\">For more information or details of other Self-Hypnosis Workshops &amp; Events please join the events newsletter below</span></strong>.\r\n[contact-form-7 id=\"447\" title=\"Contact form 1\"]\r\n\r\nHypnosis is a wonderful, powerful, and natural ability of the mind, something we do many times each day. You can learn how to harness this power to help you feel how you want to feel and focus on what is important to you.\r\n\r\nYou can learn to use Self-Hypnosis and explore the many benefits through our workshops or one to one in a regular session.\r\n\r\nOnce you master self-hypnosis you can enable it very quickly, in a matter of seconds to change your state and switch your focus. You can quickly use it to relax, de-stress, remove anxiety or enter a calm, natural sleep.\r\n\r\nTake the next step and learn Self-hypnosis.\r\n\r\nCall us on 07568 455 809 to see how Self-Hypnosis can help you.','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-05-09 19:28:26','2018-05-09 19:28:26','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(750,1,'2018-05-01 19:34:26','2018-05-01 19:34:26','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/CXB3uPmBR6Q?rel=0&amp;controls=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<h2><span style=\"color: #008000;\"><strong>Self Hypnosis for Stress &amp; Anxiety</strong> - Introduction Workshop\r\n</span></h2>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.</strong></span>\r\n<strong>This workshop is just £39 when you <em>book your place</em> before the 5th of May.</strong>\r\n<span style=\"color: #ff9900;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.\r\n</span><strong>Book your place now by clicking the button below.\r\n</strong><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />19th May 1 pm to 4.30 @ The Vault, Wallsend. 12 Places only - <strong><span style=\"color: #ff0000;\">5 places remaining </span></strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"HJ7TTJJJ9UAHN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form><strong><span style=\"color: #008000;\">For more information or details of other Self-Hypnosis Workshops &amp; Events please join the events newsletter below</span></strong>.\r\n[contact-form-7 id=\"447\" title=\"Contact form 1\"]\r\n\r\nHypnosis is a wonderful, powerful, and natural ability of the mind, something we do many times each day. You can learn how to harness this power to help you feel how you want to feel and focus on what is important to you.\r\n\r\nYou can learn to use Self-Hypnosis and explore the many benefits through our workshops or one to one in a regular session.\r\n\r\nOnce you master self-hypnosis you can enable it very quickly, in a matter of seconds to change your state and switch your focus. You can quickly use it to relax, de-stress, remove anxiety or enter a calm, natural sleep.\r\n\r\nTake the next step and learn Self-hypnosis.\r\n\r\nCall us on 07568 455 809 to see how Self-Hypnosis can help you.','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-05-01 19:34:26','2018-05-01 19:34:26','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(751,1,'2018-05-01 20:43:40','2018-05-01 20:43:40','test page 01 text','Test Page 01','','draft','closed','closed','','test-page-01','','','2018-05-01 20:44:12','2018-05-01 20:44:12','',0,'http://www.newcastle-hypnotherapy.com/?page_id=751',0,'page','',0),(752,1,'2018-05-01 20:43:40','2018-05-01 20:43:40','test page 01 text','Test Page 01','','inherit','closed','closed','','751-revision-v1','','','2018-05-01 20:43:40','2018-05-01 20:43:40','',751,'http://www.newcastle-hypnotherapy.com/751-revision-v1/',0,'revision','',0),(994,1,'2018-06-05 11:19:11','2018-06-05 11:19:11','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with the Stop Smoking Hypnosis Huaranteed program.\r\nInterestingly, smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed.</strong><b>\r\n</b></span></h2>\r\nAre you ready to stop smoking? The Stop Smoking Hypnotherapy Program includes a lifetime guarantee. If you ever smoke again or have cravings to smoke, simply get in touch and I will see you again for free.\r\n<span style=\"color: #ff6600;\"><strong>How can I afford to do this?</strong></span> This program is so successful that less than 8% of my stop smoking clients need to see me again once you have completed the program. <strong>Look at this research below</strong>\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\r\n</li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\r\n</li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\r\n</li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\r\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in an email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed - Your First Steps.</strong></span><b>\r\n</b></h2>\r\nYour first step is to arrange a free phone consultation to see if this stop smoking program is right for you.\r\nCall me today on 07568 455 809 or complete the form below to arrange your consultation and explore how Stop Smoking Guaranteed can work for you.\r\nDuring this relaxed consultation, I will explain how your stop smoking hypnosis sessions will work and evaluate exactly what you would like from this program. Hypnosis is a wonderful experience that will leave you feeling relaxed, calm and confident with the ability to take control.\r\n\r\nUsually, I work with clients from our locations in Newcastle upon Tyne, Northumberland and even Online.\r\n\r\n&nbsp;\r\n\r\nCall me today on 07568 455 809 or complete the form below and please let me know the best time to call you back.\r\n\r\n[wpforms id=\"35\"]\r\n\r\nNewcastle Hypnotherapy offer a range of Hypnsosis &amp; NLP services throughout the North East and can help with a wide range of issues, problems and challenges including Stop Smoking Hypnosis Guaranteed.\r\n\r\nWe are proud members of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>.','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-05 11:19:11','2018-06-05 11:19:11','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(796,2,'2018-05-02 06:17:39','2018-05-02 06:17:39','','Home','','publish','closed','closed','','home','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'http://www.newcastle-hypnotherapy.com/?p=796',1,'nav_menu_item','',0),(797,2,'2018-05-02 06:17:39','2018-05-02 06:17:39','','REVIEWS','','publish','closed','closed','','797','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'http://www.newcastle-hypnotherapy.com/?p=797',14,'nav_menu_item','',0),(802,2,'2018-05-02 06:17:39','2018-05-02 06:17:39',' ','','','publish','closed','closed','','802','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'http://www.newcastle-hypnotherapy.com/?p=802',15,'nav_menu_item','',0),(804,2,'2018-05-02 06:17:39','2018-05-02 06:17:39','','EVENTS','','publish','closed','closed','','804','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'http://www.newcastle-hypnotherapy.com/?p=804',16,'nav_menu_item','',0),(808,2,'2018-05-02 06:17:39','2018-05-02 06:17:39',' ','','','publish','closed','closed','','808','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'http://www.newcastle-hypnotherapy.com/?p=808',35,'nav_menu_item','',0),(811,1,'2018-05-02 19:09:55','2018-05-02 19:09:55','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/CXB3uPmBR6Q?rel=0&amp;controls=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Self Hypnosis for Stress &amp; Anxiety</strong> - Introduction Workshop\r\n</span></h2>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.</strong></span>\r\n<strong>This workshop is just £39 when you <em>book your place</em> before the 5th of May.</strong>\r\n<span style=\"color: #ff9900;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.\r\n</span><strong>Book your place now by clicking the button below.\r\n</strong><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />19th May 1 pm to 4.30 @ The Vault, Wallsend. 12 Places only - <strong><span style=\"color: #ff0000;\">5 places remaining </span></strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"HJ7TTJJJ9UAHN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form><strong><span style=\"color: #008000;\">For more information or details of other Self-Hypnosis Workshops &amp; Events please join the events newsletter below</span></strong>.\r\n[contact-form-7 id=\"447\" title=\"Contact form 1\"]\r\n\r\nHypnosis is a wonderful, powerful, and natural ability of the mind, something we do many times each day. You can learn how to harness this power to help you feel how you want to feel and focus on what is important to you.\r\n\r\nYou can learn to use Self-Hypnosis and explore the many benefits through our workshops or one to one in a regular session.\r\n\r\nOnce you master self-hypnosis you can enable it very quickly, in a matter of seconds to change your state and switch your focus. You can quickly use it to relax, de-stress, remove anxiety or enter a calm, natural sleep.\r\n\r\nTake the next step and learn Self-hypnosis.\r\n\r\nCall us on 07568 455 809 to see how Self-Hypnosis can help you.','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-05-02 19:09:55','2018-05-02 19:09:55','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(1459,1,'2018-09-19 12:38:26','2018-09-19 12:38:26','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Join us for regular events &amp; workshops <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> &amp; <a href=\"http://You toohttps://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshops.</a>\r\n</strong>\r\n\r\nLearn Life Enhancing Skills &amp; Improve Your Life.\r\nHandle Problems &amp; Challenges Better.\r\nBuild Confidence &amp; Make New Friends\r\n<h2></h2>\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.</strong></span>\r\n<h2><span style=\"color: #ff6600;\"><strong>\r\n<span style=\"color: #008000;\">Upcoming Events You Can Book Now</span>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/meditate-deeper-faster-using-self-hypnosis/\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis - 5th September</strong></a></span>\r\n\r\n<span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/events-workshops/past-life-regression-workshop/\"><strong>Past Life Regression Workshop - 19th September</strong></a></span>\r\n\r\n<span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/events-workshops/pain-management-workshop/\"><strong>The Pain Management Workshop - 3rd October</strong></a></span>\r\n<h2><strong><span style=\"color: #ff6600;\">\r\n</span><span style=\"color: #008000;\">Events Coming Soon</span></strong></h2>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong><span style=\"color: #ff6600;\">S</span></strong></a><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></a></span>\r\n\r\n<a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-for-weight-loss/\"><span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span></a>\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy Facebook Group.</strong></span></h2>\r\nYou can learn even more about events and take part in the discussion,\r\n<strong><a href=\"http://You toohttps://www.facebook.com/groups/NHwednesdayworkshop/\">here on our Facebook Group.</a></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy</strong></span></h2>\r\nThese events are designed to share skills to improve life and help people handle problems better.\r\nWe share valuable skills such as Self-Hypnosis, Tapping, Emotional Freedom Technique, Neuro-Linguistic Programming, Meditation, Mindfulness and other modern techniques.\r\n\r\nThese events are organised by Mark at <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> and usually held at <a href=\"http://www.the-vault.org/\">The Vault Creative Wellbeing Centre</a>, Newcastle upon Tyne.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-09-19 12:38:26','2018-09-19 12:38:26','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(824,1,'2018-05-21 10:00:33','2018-05-21 10:00:33','<h2><strong><span style=\"color: #008000;\">\r\n<img class=\"alignleft size-medium wp-image-874\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/belly-3186730_1280-300x200.jpg\" alt=\"Hypnosis for Candida Relief\" width=\"300\" height=\"200\" />Do you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida, also known as a Yeast Infection, is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work well and can be very hard to follow.\r\nCandida Drugs often have no benefits leaving people frustrated and confused.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work why some people never beat Candida despite it being linked to many other health issues.\r\nThere are many possible causes of Candida because of our current lifestyles, food production methods and prescribed medications.\r\nThe good news is that you can beat Candida, with a little help from the Hypnosis for Candida Relief Program.\r\n\r\n<img class=\"alignleft wp-image-877 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/candid-hypnosis-relief-300x229.jpg\" alt=\"candida hypnosis relief\" width=\"300\" height=\"229\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #ff6600;\"><strong>Get 3 FREE Fast Tips for Candida Relief and even more Candida Help when you join the Candida Relief Newsletter below.</strong></span>\r\n\r\nYour data is always safe with us and we are GDPR Compliant.\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"875\" title=\"Candida Tips Newsletter\"]\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save your money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\"><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Hypnosis for Candida Relief\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Hypnosis for Candida Relief \" width=\"150\" height=\"150\" />My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida because of a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>Worked on those I managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>Creating a Stress Relief routine, I practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\nNewcastle Hypnotherapy operates from a number of locations in Newcastle upon Tyne, Northumberland and Online.\r\nWe most commonly work from <a href=\"http://www.the-vault.org/\">The Vault</a>, &amp; <a href=\"http://www.food-for-thought-uk.co.uk/\">Food For Thought  </a>and other locations across the North East\r\nWe can also work with you Online or through our regular Workshops &amp; Events.\r\nContact us to find out more.','CANDIDA RELIEF PROGRAM','','publish','closed','closed','','hypnosis-for-candida-relief','','','2019-01-06 18:36:00','2019-01-06 18:36:00','',1451,'http://www.newcastle-hypnotherapy.com/?page_id=824',9,'page','',0),(812,1,'2018-05-07 15:40:16','2018-05-07 15:40:16','<span style=\"color: #008000;\"><strong>Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong><span style=\"color: #000000;\">\"<span class=\"Linkify\">Thankyou for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce\"</span></span>\r\n<strong>\r\nClient Feedback  by Gary</strong></span>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;','Client Feedback','','inherit','closed','closed','','200-revision-v1','','','2018-05-07 15:40:16','2018-05-07 15:40:16','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(813,1,'2018-05-07 15:44:18','2018-05-07 15:44:18','','Cleint feedback','','inherit','open','closed','','cleint-feedback','','','2018-05-07 15:44:35','2018-05-07 15:44:35','',200,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/Cleint-feedback.jpg',0,'attachment','image/jpeg',0),(814,1,'2018-05-07 15:44:49','2018-05-07 15:44:49','<span style=\"color: #008000;\"><strong><img class=\"alignleft size-thumbnail wp-image-813\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/Cleint-feedback-150x150.jpg\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong><span style=\"color: #000000;\">\"<span class=\"Linkify\">Thankyou for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce\"</span></span>\r\n<strong>\r\nClient Feedback  by Gary</strong></span>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;','Client Feedback','','inherit','closed','closed','','200-revision-v1','','','2018-05-07 15:44:49','2018-05-07 15:44:49','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(816,1,'2018-05-07 15:46:16','2018-05-07 15:46:16','<h2><span style=\"color: #008000;\"><strong><img class=\"alignleft size-thumbnail wp-image-813\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/Cleint-feedback-150x150.jpg\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming.\r\n</strong></span></h2>\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong><span style=\"color: #000000;\">\"<span class=\"Linkify\">Thankyou for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce\"</span></span>\r\n<strong>\r\nClient Feedback  by Gary</strong></span>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;','Client Feedback','','inherit','closed','closed','','200-revision-v1','','','2018-05-07 15:46:16','2018-05-07 15:46:16','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(815,1,'2018-05-07 15:45:28','2018-05-07 15:45:28','<h2><span style=\"color: #008000;\"><strong><img class=\"alignleft size-thumbnail wp-image-813\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/Cleint-feedback-150x150.jpg\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming. Here is a selection of them.</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong><span style=\"color: #000000;\">\"<span class=\"Linkify\">Thankyou for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce\"</span></span>\r\n<strong>\r\nClient Feedback  by Gary</strong></span>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;','Client Feedback','','inherit','closed','closed','','200-revision-v1','','','2018-05-07 15:45:28','2018-05-07 15:45:28','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0);
INSERT INTO `wpqj_posts` VALUES (817,1,'2018-05-08 10:51:47','2018-05-08 10:51:47','<h2><span style=\"color: #008000;\"><strong><img class=\"alignleft size-thumbnail wp-image-813\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/Cleint-feedback-150x150.jpg\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming.\r\n</strong></span></h2>\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong><span style=\"color: #000000;\">\"<span class=\"Linkify\">Thankyou for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce\"</span></span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\nClient Feedback  by Gary</strong></span>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;','Client Feedback','','inherit','closed','closed','','200-revision-v1','','','2018-05-08 10:51:47','2018-05-08 10:51:47','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(818,1,'2018-05-08 10:52:17','2018-05-08 10:52:17','<h2><span style=\"color: #008000;\"><strong><img class=\"alignleft size-thumbnail wp-image-813\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/Cleint-feedback-150x150.jpg\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming.\r\n</strong></span></h2>\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong><span style=\"color: #000000;\">\"<span class=\"Linkify\">Thankyou for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce\"</span></span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback  by Gary</span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;','Client Feedback','','inherit','closed','closed','','200-revision-v1','','','2018-05-08 10:52:17','2018-05-08 10:52:17','',200,'http://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(822,1,'2018-05-18 10:28:55','2018-05-18 10:28:55','','Newcastle Hypnotherapy','','inherit','open','closed','','smiley-2979107_1280','','','2018-09-07 13:56:41','2018-09-07 13:56:41','',422,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/smiley-2979107_1280.jpg',0,'attachment','image/jpeg',0),(823,1,'2018-05-18 10:29:11','2018-05-18 10:29:11','<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/CXB3uPmBR6Q?rel=0&amp;controls=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Self Hypnosis for Stress &amp; Anxiety</strong> - Introduction Workshop\r\n</span></h2>\r\n<div>\r\n\r\n<span style=\"color: #ff9900;\"><strong>Imagine the ability to learn Self-Hypnosis and finally take charge of your Anxiety and Stress for good.</strong></span>\r\n\r\n</div>\r\n<div></div>\r\n<div>\r\n\r\nSelf-Hypnosis is a very powerful tool that you can learn to effectively control anxiety and stress, to help yourself and others. Most people find the benefits can be amazing and they improve the more you use them.\r\n\r\n</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n<span style=\"color: #008000;\"><strong>In this relaxed, enjoyable Self-Hypnosis workshop you will learn:</strong></span>\r\n<ul>\r\n 	<li>easy self-hypnosis methods to improve your ability to relax deeply, anytime, anywhere</li>\r\n 	<li>how to direct your mind to ease stress, anxiety, pain, and tension</li>\r\n 	<li>how to reduce bad habits and behavior.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate and focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>how to help others and yourself with anxiety and stress</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Learn Self-Hypnosis to take control of your Anxiety and Stress by<em> joining us for this workshop</em>.</strong></span>\r\n<strong>This workshop is just £39 including course materials.</strong>\r\n<span style=\"color: #ff9900;\">\r\n</span><strong>Book your place now by clicking the button below.\r\n</strong><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />19th May 1 pm to 4.30 @ The Vault, Wallsend. 12 Places only - <strong><span style=\"color: #ff0000;\">2</span><span style=\"color: #ff0000;\"> places remaining </span></strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"HJ7TTJJJ9UAHN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form><strong><span style=\"color: #008000;\">For more information or details of other Self-Hypnosis Workshops &amp; Events please join the events newsletter below</span></strong>.\r\n[contact-form-7 id=\"447\" title=\"Contact form 1\"]\r\n\r\nHypnosis is a wonderful, powerful, and natural ability of the mind, something we do many times each day. You can learn how to harness this power to help you feel how you want to feel and focus on what is important to you.\r\n\r\nYou can learn to use Self-Hypnosis and explore the many benefits through our workshops or one to one in a regular session.\r\n\r\nOnce you master self-hypnosis you can enable it very quickly, in a matter of seconds to change your state and switch your focus. You can quickly use it to relax, de-stress, remove anxiety or enter a calm, natural sleep.\r\n\r\nTake the next step and learn Self-hypnosis.\r\n\r\nCall us on 07568 455 809 to see how Self-Hypnosis can help you.','Self Hypnosis For Stress & Anxiety - 19th May','','inherit','closed','closed','','422-revision-v1','','','2018-05-18 10:29:11','2018-05-18 10:29:11','',422,'http://www.newcastle-hypnotherapy.com/422-revision-v1/',0,'revision','',0),(825,1,'2018-05-21 08:05:30','2018-05-21 08:05:30','','Candida','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 08:05:30','2018-05-21 08:05:30','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(826,1,'2018-05-21 08:33:59','2018-05-21 08:33:59','','Candida Relief','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 08:33:59','2018-05-21 08:33:59','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(827,1,'2018-05-21 08:51:49','2018-05-21 08:51:49','<h2>Do you find Candida confusing?</h2>\r\nYou are probably aware that Candida is on the rise and that the many expert\r\n\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 08:51:49','2018-05-21 08:51:49','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(2503,1,'2019-01-06 18:38:27','2019-01-06 18:38:27','<h4><img class=\"alignnone wp-image-103 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-300x291.jpg\" alt=\"\" width=\"300\" height=\"291\" />  <span style=\"color: #008000;\"><strong>We help people with depression to take control and make their lives better.\r\n</strong></span></h4>\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n<h2><strong><span style=\"color: #008000;\">The good news is,  we can help with your depression.</span></strong></h2>\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n<h2><span style=\"color: #008000;\"><strong>Jenny’s experience.</strong></span></h2>\r\n<em><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to make that call. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span></em>\r\n\r\n<em><span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span></em>\r\n<h2><strong><span style=\"color: #008000;\">Depression You Have The Choice &amp; We Have The Skills.</span></strong></h2>\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n<h2><strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?\r\n</span></strong></h2>\r\nWorking with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n<h2><span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How can Depression affect you &amp; What are the symptoms?\r\n</strong></span></h2>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms. Depression can give us a very distorted view of the world and our lives.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\nSome studies and research show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\nThe good news is that there are many techniques and therapies we use to help you with your depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','DEPRESSION','','inherit','closed','closed','','122-revision-v1','','','2019-01-06 18:38:27','2019-01-06 18:38:27','',122,'https://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(829,1,'2018-05-21 09:01:58','2018-05-21 09:01:58','<h2>Do you find Candida confusing?</h2>\r\nYou are probably aware that Candida is on the rise and that there are many conflicting ideas on how to treat it.\r\nYou may also have seen many people report that Candida diets don\'t work, the Candida drugs made little difference, the doctors are unsure what to do or that people spent a small fortune on natural supplements that really didn\'t help?\r\n\r\n\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 09:01:58','2018-05-21 09:01:58','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(830,1,'2018-05-21 09:03:23','2018-05-21 09:03:23','<h2>Do you find Candida confusing?</h2>\r\nYou are probably aware that Candida is on the rise and that there are many conflicting ideas on how to treat it.\r\nYou may also have seen many people report that Candida diets don\'t work, the Candida drugs made little difference, the doctors are unsure what to do or that people spent a small fortune on natural supplements that really didn\'t help?\r\n\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications.','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 09:03:23','2018-05-21 09:03:23','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(831,1,'2018-05-21 09:04:14','2018-05-21 09:04:14','<h2>Do you find Candida confusing?</h2>\r\nYou are probably aware that Candida is on the rise and that there are many conflicting ideas on how to treat it.\r\nYou may also have seen many people report that Candida diets really don\'t work, the Candida drugs made little difference, the doctors are unsure what to do or that people spent a small fortune on natural supplements that really didn\'t help?\r\n\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications.','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 09:04:14','2018-05-21 09:04:14','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(832,1,'2018-05-21 09:09:54','2018-05-21 09:09:54','<h2>Do you find Candida Confusing?</h2>\r\nYou may be aware that:\r\n<ul>\r\n 	<li>Candida is on the rise</li>\r\n 	<li>There are many conflicting ideas on how to treat it</li>\r\n 	<li>Candida Diets often don\'t work</li>\r\n 	<li>Candida Drugs often make no difference</li>\r\n 	<li>Medical Professionals are often confused by Candida</li>\r\n 	<li>Expensive Supplements often don\'t work</li>\r\n 	<li>Some people never beat Candida</li>\r\n</ul>\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications.','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 09:09:54','2018-05-21 09:09:54','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(833,1,'2018-05-21 09:14:43','2018-05-21 09:14:43','<h2>Do you find Candida Confusing?</h2>\r\nYou may be aware that:\r\n<ul>\r\n 	<li>Candida is on the rise</li>\r\n 	<li>There are many conflicting ideas on how to treat it</li>\r\n 	<li>Candida Diets often don\'t work</li>\r\n 	<li>Candida Drugs often make no difference</li>\r\n 	<li>Medical Professionals are often confused by Candida</li>\r\n 	<li>Expensive Supplements often don\'t work</li>\r\n 	<li>Some people never beat Candida</li>\r\n 	<li>Candida is often linked to other health issues</li>\r\n</ul>\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2>Hypnosis For Candida Relief - The Program</h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 09:14:43','2018-05-21 09:14:43','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(834,1,'2018-05-21 09:20:15','2018-05-21 09:20:15','<h2>Do you find Candida Confusing?</h2>\r\nYou may be aware that:\r\n<ul>\r\n 	<li>Candida is on the rise</li>\r\n 	<li>There are many conflicting ideas on how to treat it</li>\r\n 	<li>Candida Diets often don\'t work</li>\r\n 	<li>Candida Drugs often make no difference</li>\r\n 	<li>Medical Professionals are often confused by Candida</li>\r\n 	<li>Expensive Supplements often don\'t work</li>\r\n 	<li>Some people never beat Candida</li>\r\n 	<li>Candida is often linked to other health issues</li>\r\n</ul>\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2>Hypnosis For Candida Relief - The Program</h2>\r\nIn order to successfully treat Candida we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment and your Stress &amp; Anxiety levels.\r\nCandida problems can be made worse and Candida recovery can really be slowed slowed down if all of these factors are not assessed and addressed quickly.\r\n\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 09:20:15','2018-05-21 09:20:15','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(835,1,'2018-05-21 09:40:28','2018-05-21 09:40:28','<h2>Do you find Candida Confusing?</h2>\r\nYou may be aware that:\r\n<ul>\r\n 	<li>Candida is on the rise</li>\r\n 	<li>There are many conflicting ideas on how to treat it</li>\r\n 	<li>Candida Diets often don\'t work</li>\r\n 	<li>Candida Drugs often make no difference</li>\r\n 	<li>Medical Professionals are often confused by Candida</li>\r\n 	<li>Expensive Supplements often don\'t work</li>\r\n 	<li>Some people never beat Candida</li>\r\n 	<li>Candida is often linked to other health issues</li>\r\n</ul>\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2>Hypnosis For Candida Relief - The Program</h2>\r\nIn order to successfully treat Candida we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels.\r\n\r\nHypnosis for Candida Relief\r\n<ul>\r\n 	<li>Speeds up recovery time</li>\r\n 	<li>Quickly reduces Candida Symptoms</li>\r\n 	<li>Helps to improve Digestive Issues</li>\r\n 	<li>Reduces your Stress &amp; Anxiety</li>\r\n 	<li>Gives you a Clear Plan of action</li>\r\n 	<li>Saves You Money on Expensive Foods, Supplements &amp; Drugs</li>\r\n 	<li>Shows you Fast &amp; Continuing Results</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 09:40:28','2018-05-21 09:40:28','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(836,1,'2018-05-21 09:44:46','2018-05-21 09:44:46','<h2>Do you find Candida Confusing?</h2>\r\nYou may be aware that:\r\n<ul>\r\n 	<li>Candida is on the rise</li>\r\n 	<li>There are many conflicting ideas on how to treat it</li>\r\n 	<li>Candida Diets often don\'t work</li>\r\n 	<li>Candida Drugs often make no difference</li>\r\n 	<li>Medical Professionals are often confused by Candida</li>\r\n 	<li>Expensive Supplements often don\'t work</li>\r\n 	<li>Some people never beat Candida</li>\r\n 	<li>Candida is often linked to other health issues</li>\r\n</ul>\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2>Hypnosis For Candida Relief - The Program</h2>\r\nIn order to successfully treat Candida issues and symptoms we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels.\r\n\r\nHypnosis for Candida Relief\r\n<ul>\r\n 	<li>Speeds up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Helps to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety</li>\r\n 	<li>Gives you a clear plan of action</li>\r\n 	<li>Saves you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Shows you fast &amp; continuing results</li>\r\n 	<li>Puts you back in control of your health</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 09:44:46','2018-05-21 09:44:46','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(837,1,'2018-05-21 09:47:51','2018-05-21 09:47:51','<h2>Do you find Candida Confusing?</h2>\r\nYou may be aware that:\r\n<ul>\r\n 	<li>Candida is on the rise</li>\r\n 	<li>There are many conflicting ideas on how to treat it</li>\r\n 	<li>Candida Diets often don\'t work</li>\r\n 	<li>Candida Drugs often make no difference</li>\r\n 	<li>Medical Professionals are often confused by Candida</li>\r\n 	<li>Expensive Supplements often don\'t work</li>\r\n 	<li>Some people never beat Candida</li>\r\n 	<li>Candida is often linked to other health issues</li>\r\n</ul>\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2>Hypnosis For Candida Relief - The Program</h2>\r\nIn order to successfully treat Candida issues and symptoms we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\nThe Hypnosis for Candida Relief Program can\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 09:47:51','2018-05-21 09:47:51','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(838,1,'2018-05-21 09:58:54','2018-05-21 09:58:54','<h2>Do you find Candida Confusing?</h2>\r\nYou may be aware that:\r\n<ul>\r\n 	<li>Candida is on the rise</li>\r\n 	<li>There are many conflicting ideas on how to treat it</li>\r\n 	<li>Candida Diets often don\'t work</li>\r\n 	<li>Candida Drugs often make no difference</li>\r\n 	<li>Medical Professionals are often confused by Candida</li>\r\n 	<li>Expensive Supplements often don\'t work</li>\r\n 	<li>Some people never beat Candida</li>\r\n 	<li>Candida is often linked to other health issues</li>\r\n</ul>\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2>Hypnosis For Candida Relief - The Program</h2>\r\nIn order to successfully treat Candida issues and symptoms we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\nThe Hypnosis for Candida Relief Program can\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2>Are you ready to take control of your Candida and start feeling better?</h2>\r\nThe best way forward is to arrange your free phone consultation. This will allow us to discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\nCall me on 07568 455 809 today to book in your free consultation. Alternatively fill in this form and please let me know the best time to call you.\r\n\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 09:58:54','2018-05-21 09:58:54','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(839,1,'2018-05-21 09:59:34','2018-05-21 09:59:34','<h2>Do you find Candida Confusing?</h2>\r\nYou may be aware that:\r\n<ul>\r\n 	<li>Candida is on the rise</li>\r\n 	<li>There are many conflicting ideas on how to treat it</li>\r\n 	<li>Candida Diets often don\'t work</li>\r\n 	<li>Candida Drugs often make no difference</li>\r\n 	<li>Medical Professionals are often confused by Candida</li>\r\n 	<li>Expensive Supplements often don\'t work</li>\r\n 	<li>Some people never beat Candida</li>\r\n 	<li>Candida is often linked to other health issues</li>\r\n</ul>\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2>Hypnosis For Candida Relief - The Program</h2>\r\nIn order to successfully treat Candida issues and symptoms we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\nThe Hypnosis for Candida Relief Program can\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2>Are you ready to take control of your Candida and start feeling better?</h2>\r\nThe best way forward is to arrange your free phone consultation. This will allow us to discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\nCall me on 07568 455 809 today to book in your free consultation. Alternatively fill in this form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 09:59:34','2018-05-21 09:59:34','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(840,1,'2018-05-21 10:00:33','2018-05-21 10:00:33','<h2>Do you find Candida Confusing?</h2>\r\nYou may be aware that:\r\n<ul>\r\n 	<li>Candida is on the rise</li>\r\n 	<li>There are many conflicting ideas on how to treat it</li>\r\n 	<li>Candida Diets often don\'t work</li>\r\n 	<li>Candida Drugs often make no difference</li>\r\n 	<li>Medical Professionals are often confused by Candida</li>\r\n 	<li>Expensive Supplements often don\'t work</li>\r\n 	<li>Some people never beat Candida</li>\r\n 	<li>Candida is often linked to other health issues</li>\r\n</ul>\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2>Hypnosis For Candida Relief - The Program</h2>\r\nIn order to successfully treat Candida issues and symptoms we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\nThe Hypnosis for Candida Relief Program can\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation. This will allow us to discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\nCall me on 07568 455 809 today to book in your free consultation. Alternatively fill in this form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 10:00:33','2018-05-21 10:00:33','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(841,1,'2018-05-21 18:57:32','2018-05-21 18:57:32','<h2><strong><span style=\"color: #008000;\">\n<img class=\"alignleft size-medium wp-image-874\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/belly-3186730_1280-300x200.jpg\" alt=\"Hypnosis for Candida Relief\" width=\"300\" height=\"200\" />Do you find Candida Confusing?</span></strong></h2>\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida, also known as a Yeast Infection, is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work well and can be very hard to follow.\nCandida Drugs often have no benefits leaving people frustrated and confused.\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\nExpensive Supplements often don\'t work why some people never beat Candida despite it being linked to many other health issues.\nThere are many possible causes of Candida because of our current lifestyles, food production methods and prescribed medications.\nThe good news is that you can beat Candida, with a little help from the Hypnosis for Candida Relief Program.\n\n<img class=\"alignleft wp-image-877 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/candid-hypnosis-relief-300x229.jpg\" alt=\"candida hypnosis relief\" width=\"300\" height=\"229\" />\n\n&nbsp;\n\n<span style=\"color: #ff6600;\"><strong>Get 3 FREE Fast Tips for Candida Relief and even more Candida Help when you join the Candida Relief Newsletter below.</strong></span>\n\nYour data is always safe with us and we are GDPR Compliant.\n\n&nbsp;\n\n[contact-form-7 id=\"875\" title=\"Candida Tips Newsletter\"]\n\n&nbsp;\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\n\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\n<ul>\n 	<li>Speed up recovery time</li>\n 	<li>Quickly reduces candida symptoms</li>\n 	<li>Help to improve digestive issues</li>\n 	<li>Reduces your stress &amp; anxiety levels</li>\n 	<li>Give you a clear plan of action</li>\n 	<li>Save your money on expensive foods, supplements &amp; drugs</li>\n 	<li>Show you fast &amp; continuing results</li>\n 	<li>Put you back in control of your health</li>\n</ul>\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\n<h2><strong><span style=\"color: #008000;\"><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Hypnosis for Candida Relief\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Hypnosis for Candida Relief \" width=\"150\" height=\"150\" />My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\nSeveral years ago I discovered I had Candida because of a new year health program.\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\n\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\n\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\n\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\nI was also catching colds every few days and the supplements were clearly not helping.\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\nEven worse, many had got worse and the health problems had accelerated into something else.\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\n\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\n<ul>\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\n 	<li>Worked on those I managed to slowly reintroduce the problematic foods step by step.</li>\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\n 	<li>Creating a Stress Relief routine, I practised this twice per day as part of a Self-Hypnosis Program.</li>\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\n</ul>\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\nAlternatively, fill in this contact form and please let me know the best time to call you.\n<h2>[wpforms id=\"35\"]</h2>\nNewcastle Hypnotherapy operates from a number of locations in Newcastle upon Tyne, Northumberland and Online.\nWe most commonly work from <a href=\"http://www.the-vault.org/\">The Vault</a>, &amp; <a href=\"http://www.food-for-thought-uk.co.uk/\">Food For Thought  </a>and other locations across the North East\nWe can also work with you Online or through our regular Workshops &amp; Events.\nContact us to find out more.','Candida Relief Program','','inherit','closed','closed','','824-autosave-v1','','','2018-05-21 18:57:32','2018-05-21 18:57:32','',824,'http://www.newcastle-hypnotherapy.com/824-autosave-v1/',0,'revision','',0),(842,1,'2018-05-21 10:04:11','2018-05-21 10:04:11','<h2>Do you find Candida Confusing?</h2>\r\nYou may be aware that:\r\n<ul>\r\n 	<li>Candida is on the rise</li>\r\n 	<li>There are many conflicting ideas on how to treat it</li>\r\n 	<li>Candida Diets often don\'t work</li>\r\n 	<li>Candida Drugs often make no difference</li>\r\n 	<li>Medical Professionals are often confused by Candida</li>\r\n 	<li>Expensive Supplements often don\'t work</li>\r\n 	<li>Some people never beat Candida</li>\r\n 	<li>Candida is often linked to other health issues</li>\r\n</ul>\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2>Hypnosis For Candida Relief - The Program</h2>\r\nIn order to successfully treat Candida issues and symptoms we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\nThe Hypnosis for Candida Relief Program can\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation. This will allow us to discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\nCall me on 07568 455 809 today to book in your free consultation. Alternatively fill in this form and please let me know the best time to call you. (All of our forms are GDPR compliant. )\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 10:04:11','2018-05-21 10:04:11','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(843,1,'2018-05-21 10:07:38','2018-05-21 10:07:38','<h2><strong><span style=\"color: #008000;\">Do you find Candida Confusing?</span></strong></h2>\r\n<strong>You may be aware that:</strong>\r\n<ul>\r\n 	<li>Candida is on the rise</li>\r\n 	<li>There are many conflicting ideas on how to treat it</li>\r\n 	<li>Candida Diets often don\'t work</li>\r\n 	<li>Candida Drugs often make no difference</li>\r\n 	<li>Medical Professionals are often confused by Candida</li>\r\n 	<li>Expensive Supplements often don\'t work</li>\r\n 	<li>Some people never beat Candida</li>\r\n 	<li>Candida is often linked to other health issues</li>\r\n</ul>\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<strong>The Hypnosis for Candida Relief Program can</strong>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation. This will allow us to discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\nCall me on 07568 455 809 today to book in your free consultation. Alternatively fill in this form and please let me know the best time to call you. (All of our forms are GDPR compliant. )\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 10:07:38','2018-05-21 10:07:38','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(844,1,'2018-05-21 10:08:25','2018-05-21 10:08:25','<h2><strong><span style=\"color: #008000;\">Do you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><strong>You may be aware that:</strong></span>\r\n<ul>\r\n 	<li>Candida is on the rise</li>\r\n 	<li>There are many conflicting ideas on how to treat it</li>\r\n 	<li>Candida Diets often don\'t work</li>\r\n 	<li>Candida Drugs often make no difference</li>\r\n 	<li>Medical Professionals are often confused by Candida</li>\r\n 	<li>Expensive Supplements often don\'t work</li>\r\n 	<li>Some people never beat Candida</li>\r\n 	<li>Candida is often linked to other health issues</li>\r\n</ul>\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation. This will allow us to discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\nCall me on 07568 455 809 today to book in your free consultation. Alternatively fill in this form and please let me know the best time to call you. (All of our forms are GDPR compliant. )\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 10:08:25','2018-05-21 10:08:25','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(845,1,'2018-05-21 10:22:37','2018-05-21 10:22:37','<h2><strong><span style=\"color: #008000;\">Do you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><strong>You may be aware that:</strong></span>\r\n<ul>\r\n 	<li>Candida is on the rise</li>\r\n 	<li>There are many conflicting ideas on how to treat it</li>\r\n 	<li>Candida Diets often don\'t work</li>\r\n 	<li>Candida Drugs often make no difference</li>\r\n 	<li>Medical Professionals are often confused by Candida</li>\r\n 	<li>Expensive Supplements often don\'t work</li>\r\n 	<li>Some people never beat Candida</li>\r\n 	<li>Candida is often linked to other health issues</li>\r\n</ul>\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\n<h2>The best way forward is to arrange your free phone consultation. This will allow us to discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\nCall me on 07568 455 809 today to book in your free consultation. Alternatively fill in the contact form below and please let me know the best time to call you.\r\n\r\n<strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual I was flushing out those toxins nicely. Then I noticed the itching that increased every time I consumed fruit juices. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t explode as usual, my digestive system was all over the place and the brain fog was really awful.\r\nI expected this all to pass over the week but instead it appeared to be getting stronger and stronger.\r\n\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 10:22:37','2018-05-21 10:22:37','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(846,1,'2018-05-21 10:22:56','2018-05-21 10:22:56','<h2><strong><span style=\"color: #008000;\">Do you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><strong>You may be aware that:</strong></span>\r\n<ul>\r\n 	<li>Candida is on the rise</li>\r\n 	<li>There are many conflicting ideas on how to treat it</li>\r\n 	<li>Candida Diets often don\'t work</li>\r\n 	<li>Candida Drugs often make no difference</li>\r\n 	<li>Medical Professionals are often confused by Candida</li>\r\n 	<li>Expensive Supplements often don\'t work</li>\r\n 	<li>Some people never beat Candida</li>\r\n 	<li>Candida is often linked to other health issues</li>\r\n</ul>\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\n<h2>The best way forward is to arrange your free phone consultation. This will allow us to discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\nCall me on 07568 455 809 today to book in your free consultation. Alternatively fill in the contact form below and please let me know the best time to call you.</h2>\r\n<strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong>\r\n\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual I was flushing out those toxins nicely. Then I noticed the itching that increased every time I consumed fruit juices. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t explode as usual, my digestive system was all over the place and the brain fog was really awful.\r\nI expected this all to pass over the week but instead it appeared to be getting stronger and stronger.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 10:22:56','2018-05-21 10:22:56','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(847,1,'2018-05-21 10:37:32','2018-05-21 10:37:32','<h2><strong><span style=\"color: #008000;\">Do you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><strong>You may be aware that:</strong></span>\r\n<ul>\r\n 	<li>Candida is on the rise</li>\r\n 	<li>There are many conflicting ideas on how to treat it</li>\r\n 	<li>Candida Diets often don\'t work</li>\r\n 	<li>Candida Drugs often make no difference</li>\r\n 	<li>Medical Professionals are often confused by Candida</li>\r\n 	<li>Expensive Supplements often don\'t work</li>\r\n 	<li>Some people never beat Candida</li>\r\n 	<li>Candida is often linked to other health issues</li>\r\n</ul>\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation. This will allow us to discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\nCall me on 07568 455 809 today to book in your free consultation. Alternatively fill in the contact form below and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed fruit juices. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t explode as usual, my digestive system was all over the place and the brain fog was really awful.\r\nI expected this all to pass over the week but instead it appeared to be getting stronger each day.\r\n\r\nOn contacting a friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the opinions of the many doctors, nutritionists, dietitians and other experts very confusing as almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortunes worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n\r\nI started to feel a little better within a few days and the itching had reduced but was still very noticeable.\r\n\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 10:37:32','2018-05-21 10:37:32','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(848,1,'2018-05-21 10:41:33','2018-05-21 10:41:33','<h2><strong><span style=\"color: #008000;\">Do you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><strong>You may be aware that:</strong></span>\r\n<ul>\r\n 	<li>Candida is on the rise</li>\r\n 	<li>There are many conflicting ideas on how to treat it</li>\r\n 	<li>Candida Diets often don\'t work</li>\r\n 	<li>Candida Drugs often make no difference</li>\r\n 	<li>Medical Professionals are often confused by Candida</li>\r\n 	<li>Expensive Supplements often don\'t work</li>\r\n 	<li>Some people never beat Candida</li>\r\n 	<li>Candida is often linked to other health issues</li>\r\n</ul>\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation. This will allow us to discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\nCall me on 07568 455 809 today to book in your free consultation. Alternatively fill in the contact form below and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed fruit juices. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t explode as usual, my digestive system was all over the place and the brain fog was really awful.\r\nI expected this all to pass over the week but instead it appeared to be getting stronger each day.\r\n\r\nOn contacting a friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the opinions of the many doctors, nutritionists, dietitians and other experts very confusing as almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortunes worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 10:41:33','2018-05-21 10:41:33','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(849,1,'2018-05-21 11:22:39','2018-05-21 11:22:39','<h2><strong><span style=\"color: #008000;\">Do you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><strong>You may be aware that:</strong></span>\r\n<ul>\r\n 	<li>Candida is on the rise</li>\r\n 	<li>There are many conflicting ideas on how to treat it</li>\r\n 	<li>Candida Diets often don\'t work</li>\r\n 	<li>Candida Drugs often make no difference</li>\r\n 	<li>Medical Professionals are often confused by Candida</li>\r\n 	<li>Expensive Supplements often don\'t work</li>\r\n 	<li>Some people never beat Candida</li>\r\n 	<li>Candida is often linked to other health issues</li>\r\n</ul>\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation. This will allow us to discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\nCall me on 07568 455 809 today to book in your free consultation. Alternatively fill in the contact form below and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed fruit juices. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t explode as usual, my digestive system was all over the place and the brain fog was really awful.\r\nI expected this all to pass over the week but instead it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualifed friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the opinions of the many doctors, nutritionists, dietitians and other experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortunes worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nThis continued for almost six months and I went back to my research to find exactly the same story for hundreds of other people, across the world all trying various different Candida diets.\r\nSome of them made great progress, some made no progress at all but many found as soon as they went back to their regular food, the Candida issues started again and they had to start from scratch.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n\r\nTo cut this story short I eventually found a few dozen people who stated they had beaten Candida and most of them had done so in a short period of time, whilst still eating many of the foods that caused issues. It appeared the various Candida diets did not work, as the same \"Bad Candida Foods\" are not the same for everyone.\r\nStress &amp; Anxiety appeared to make progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\nI tried it an it worked by doing the following.\r\nI added back in my favourite foods and quickly figured out which foods would cause the Candida flare ups.\r\nI worked on those and manged to slowly reintroduce the problematic foods step by step.\r\nI put together a Stress Relief routine and practised this twice per day as part of a Self-Hypnosis Program.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 11:22:39','2018-05-21 11:22:39','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(850,1,'2018-05-21 11:25:04','2018-05-21 11:25:04','<h2><strong><span style=\"color: #008000;\">Do you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><strong>You may be aware that:</strong></span>\r\n<ul>\r\n 	<li>Candida is on the rise</li>\r\n 	<li>There are many conflicting ideas on how to treat it</li>\r\n 	<li>Candida Diets often don\'t work</li>\r\n 	<li>Candida Drugs often make no difference</li>\r\n 	<li>Medical Professionals are often confused by Candida</li>\r\n 	<li>Expensive Supplements often don\'t work</li>\r\n 	<li>Some people never beat Candida</li>\r\n 	<li>Candida is often linked to other health issues</li>\r\n</ul>\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation. This will allow us to discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\nCall me on 07568 455 809 today to book in your free consultation. Alternatively fill in the contact form below and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed fruit juices. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t explode as usual, my digestive system was all over the place and the brain fog was really awful.\r\nI expected this all to pass over the week but instead it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualifed friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the opinions of the many doctors, nutritionists, dietitians and other experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortunes worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nThis continued for almost six months and I went back to my research to find exactly the same story for hundreds of other people, across the world all trying various different Candida diets.\r\nSome of them made great progress, some made no progress at all but many found as soon as they went back to their regular food, the Candida issues started again and they had to start from scratch.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n\r\nTo cut this story short I eventually found a few dozen people who stated they had beaten Candida and most of them had done so in a short period of time, whilst still eating many of the foods that caused issues. It appeared the various Candida diets did not work, as the same \"Bad Candida Foods\" are not the same for everyone.\r\nStress &amp; Anxiety appeared to make progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\nI tried it an it worked by doing the following.\r\n\r\nI added back in my favourite foods and quickly figured out which foods would cause the Candida flare ups.\r\nI worked on those and manged to slowly reintroduce the problematic foods step by step.\r\nI put together a Stress Relief routine and practised this twice per day as part of a Self-Hypnosis Program.\r\nI changed the way I ate to a conscious process, allowing me to enjoy foods more\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 11:25:04','2018-05-21 11:25:04','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(851,1,'2018-05-21 11:46:25','2018-05-21 11:46:25','<h2><strong><span style=\"color: #008000;\">Do you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><strong>You may be aware that:</strong></span>\r\n<ul>\r\n 	<li>Candida is on the rise</li>\r\n 	<li>There are many conflicting ideas on how to treat it</li>\r\n 	<li>Candida Diets often don\'t work</li>\r\n 	<li>Candida Drugs often make no difference</li>\r\n 	<li>Medical Professionals are often confused by Candida</li>\r\n 	<li>Expensive Supplements often don\'t work</li>\r\n 	<li>Some people never beat Candida</li>\r\n 	<li>Candida is often linked to other health issues</li>\r\n</ul>\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation. This will allow us to discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\nCall me on 07568 455 809 today to book in your free consultation. Alternatively fill in the contact form below and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed fruit juices. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t explode as usual, my digestive system was all over the place and the brain fog was really awful.\r\nI expected this all to pass over the week but instead it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualifed friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortunes worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nThis continued for almost six months and I went back to my research to find exactly the same story for hundreds of other people, across the world all trying various different Candida diets.\r\nSome of them made great progress, some made no progress at all but many found as soon as they went back to their regular food, the Candida issues started again and they had to start from scratch.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n\r\nTo cut this story short I eventually found a few dozen people who stated they had beaten Candida and most of them had done so in a short period of time, whilst still eating many of the foods that caused issues. It appeared the various Candida diets did not work, as the same \"Bad Candida Foods\" are not the same for everyone.\r\nStress &amp; Anxiety appeared to make progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\nI tried it an it worked by doing the following.\r\n\r\nI added back in my favourite foods and quickly figured out which foods would cause the Candida flare ups.\r\nI worked on those and manged to slowly reintroduce the problematic foods step by step.\r\nI put together a Stress Relief routine and practised this twice per day as part of a Self-Hypnosis Program.\r\nI changed the way I ate to a conscious process, allowing me to enjoy foods more\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 11:46:25','2018-05-21 11:46:25','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(852,1,'2018-05-21 12:07:03','2018-05-21 12:07:03','<h2><strong><span style=\"color: #008000;\">Do you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health probelm and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work and one of the reasons why some people never beat Candida despite it being linked to many other health issues.\r\n\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book in your free phone consultation. Alternatively fill in the contact form below and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualifed friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortunes worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nThis continued for almost six months and I went back to my research to find exactly the same story for hundreds of other people, all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all but many found as soon as they went back to their regular food, the Candida issues started again and they had to start from scratch.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\">The Answer To Candida Problems - <strong>Hypnosis For Candida Relief</strong></span></h2>\r\nTo cut this long story short I eventually found a few dozen people who stated they had beaten Candida and most of them had done so in a short period of time, whilst still eating many of the foods that caused issues. It appeared the various Candida diets did not work, as the same \"Bad Candida Foods\" are not the same for everyone.\r\nStress &amp; Anxiety appeared to make progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">I tried it an it worked by doing the following.</span></strong>\r\n\r\nI added back in my favourite foods and used my bodies feedback to see which caused the Candida flare ups.\r\nI worked on those and manged to slowly reintroduce the problematic foods step by step.\r\nI worked on my gut health and restored the natural gut flora.\r\nI put together a Stress Relief routine and practised this twice per day as part of a Self-Hypnosis Program.\r\nI changed the way I ate to a conscious process, allowing me to enjoy my foods and to be more aware of what I ate.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 12:07:03','2018-05-21 12:07:03','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(863,1,'2018-05-21 12:32:13','2018-05-21 12:32:13','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work and one of the reasons why some people never beat Candida despite it being linked to many other health issues.\r\n\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people who stated they had beaten Candida.\r\nMost in a short period of time whilst still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">I tried it and it worked by doing the following.</span></strong>\r\n\r\nI added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.\r\nI worked on those and managed to slowly reintroduce the problematic foods step by step.\r\nI worked on my gut health and restored the natural gut flora.\r\nI put together a Stress Relief routine and practised this twice per day as part of a Self-Hypnosis Program.\r\nI changed the way I ate to a conscious process, allowing me to enjoy my foods more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 12:32:13','2018-05-21 12:32:13','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(861,1,'2018-05-21 12:30:15','2018-05-21 12:30:15','<h2><strong><span style=\"color: #008000;\">Do you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work and one of the reasons why some people never beat Candida despite it being linked to many other health issues.\r\n\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nTo cut this long story short I eventually found a few dozen people who stated they had beaten Candida. Most in a short period of time whilst still eating many of the bad Candida foods.\r\nStress &amp; Anxiety appeared to make progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">I tried it and it worked by doing the following.</span></strong>\r\n\r\nI added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.\r\nI worked on those and managed to slowly reintroduce the problematic foods step by step.\r\nI worked on my gut health and restored the natural gut flora.\r\nI put together a Stress Relief routine and practised this twice per day as part of a Self-Hypnosis Program.\r\nI changed the way I ate to a conscious process, allowing me to enjoy my foods more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 12:30:15','2018-05-21 12:30:15','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(859,1,'2018-05-21 12:27:41','2018-05-21 12:27:41','<h2><strong><span style=\"color: #008000;\">Do you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work and one of the reasons why some people never beat Candida despite it being linked to many other health issues.\r\n\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nThis continued for almost six months and I went back to my research to find exactly the same story for hundreds of other people, all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all but many found as soon as they went back to their regular food, the Candida issues started again and they had to start from scratch.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nTo cut this long story short I eventually found a few dozen people who stated they had beaten Candida. Most in a short period of time whilst still eating many of the bad Candida foods.\r\nStress &amp; Anxiety appeared to make progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">I tried it and it worked by doing the following.</span></strong>\r\n\r\nI added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.\r\nI worked on those and managed to slowly reintroduce the problematic foods step by step.\r\nI worked on my gut health and restored the natural gut flora.\r\nI put together a Stress Relief routine and practised this twice per day as part of a Self-Hypnosis Program.\r\nI changed the way I ate to a conscious process, allowing me to enjoy my foods more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 12:27:41','2018-05-21 12:27:41','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(853,1,'2018-05-21 12:17:06','2018-05-21 12:17:06','<h2><strong><span style=\"color: #008000;\">Do you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work and one of the reasons why some people never beat Candida despite it being linked to many other health issues.\r\n\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nThis continued for almost six months and I went back to my research to find exactly the same story for hundreds of other people, all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all but many found as soon as they went back to their regular food, the Candida issues started again and they had to start from scratch.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nTo cut this long story short I eventually found a few dozen people who stated they had beaten Candida and most of them had done so in a short period of time, whilst still eating many of the foods that experts claimed to cause Candida issues. It appeared the various Candida diets did not work, as the same \"Bad Candida Food\" is not the same for everyone.\r\nStress &amp; Anxiety appeared to make progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">I tried it and it worked by doing the following.</span></strong>\r\n\r\nI added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.\r\nI worked on those and manged to slowly reintroduce the problematic foods step by step.\r\nI worked on my gut health and restored the natural gut flora.\r\nI put together a Stress Relief routine and practised this twice per day as part of a Self-Hypnosis Program.\r\nI changed the way I ate to a conscious process, allowing me to enjoy my foods more and to be more aware of what I ate.\r\n\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 12:17:06','2018-05-21 12:17:06','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(858,1,'2018-05-21 12:25:43','2018-05-21 12:25:43','<h2><strong><span style=\"color: #008000;\">Do you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work and one of the reasons why some people never beat Candida despite it being linked to many other health issues.\r\n\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nThis continued for almost six months and I went back to my research to find exactly the same story for hundreds of other people, all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all but many found as soon as they went back to their regular food, the Candida issues started again and they had to start from scratch.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nTo cut this long story short I eventually found a few dozen people who stated they had beaten Candida. Most in a short period of time whilst still eating many of the bad Candida foods.\r\nIt appeared the various Candida diets did not work, as the same \"Bad Candida Food\" is not the same for everyone.\r\nStress &amp; Anxiety appeared to make progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">I tried it and it worked by doing the following.</span></strong>\r\n\r\nI added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.\r\nI worked on those and managed to slowly reintroduce the problematic foods step by step.\r\nI worked on my gut health and restored the natural gut flora.\r\nI put together a Stress Relief routine and practised this twice per day as part of a Self-Hypnosis Program.\r\nI changed the way I ate to a conscious process, allowing me to enjoy my foods more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 12:25:43','2018-05-21 12:25:43','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(857,1,'2018-05-21 12:24:45','2018-05-21 12:24:45','<h2><strong><span style=\"color: #008000;\">Do you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work and one of the reasons why some people never beat Candida despite it being linked to many other health issues.\r\n\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nThis continued for almost six months and I went back to my research to find exactly the same story for hundreds of other people, all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all but many found as soon as they went back to their regular food, the Candida issues started again and they had to start from scratch.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nTo cut this long story short I eventually found a few dozen people who stated they had beaten Candida. Most of them had done so in a short period of time whilst still eating many of the bad Candida foods.\r\nIt appeared the various Candida diets did not work, as the same \"Bad Candida Food\" is not the same for everyone.\r\nStress &amp; Anxiety appeared to make progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">I tried it and it worked by doing the following.</span></strong>\r\n\r\nI added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.\r\nI worked on those and managed to slowly reintroduce the problematic foods step by step.\r\nI worked on my gut health and restored the natural gut flora.\r\nI put together a Stress Relief routine and practised this twice per day as part of a Self-Hypnosis Program.\r\nI changed the way I ate to a conscious process, allowing me to enjoy my foods more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 12:24:45','2018-05-21 12:24:45','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(854,1,'2018-05-21 12:21:27','2018-05-21 12:21:27','<h2><strong><span style=\"color: #008000;\">Do you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work and one of the reasons why some people never beat Candida despite it being linked to many other health issues.\r\n\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2>\r\n<strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nThis continued for almost six months and I went back to my research to find exactly the same story for hundreds of other people, all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all but many found as soon as they went back to their regular food, the Candida issues started again and they had to start from scratch.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nTo cut this long story short I eventually found a few dozen people who stated they had beaten Candida and most of them had done so in a short period of time, whilst still eating many of the foods that experts claimed to cause Candida issues. It appeared the various Candida diets did not work, as the same \"Bad Candida Food\" is not the same for everyone.\r\nStress &amp; Anxiety appeared to make progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">I tried it and it worked by doing the following.</span></strong>\r\n\r\nI added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.\r\nI worked on those and manged to slowly reintroduce the problematic foods step by step.\r\nI worked on my gut health and restored the natural gut flora.\r\nI put together a Stress Relief routine and practised this twice per day as part of a Self-Hypnosis Program.\r\nI changed the way I ate to a conscious process, allowing me to enjoy my foods more and to be more aware of what I ate.\r\n\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 12:21:27','2018-05-21 12:21:27','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(856,1,'2018-05-21 12:23:39','2018-05-21 12:23:39','<h2><strong><span style=\"color: #008000;\">Do you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work and one of the reasons why some people never beat Candida despite it being linked to many other health issues.\r\n\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nThis continued for almost six months and I went back to my research to find exactly the same story for hundreds of other people, all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all but many found as soon as they went back to their regular food, the Candida issues started again and they had to start from scratch.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nTo cut this long story short I eventually found a few dozen people who stated they had beaten Candida and most of them had done so in a short period of time. They whilst still eating many of the foods that experts claimed to cause Candida issues.\r\nIt appeared the various Candida diets did not work, as the same \"Bad Candida Food\" is not the same for everyone.\r\nStress &amp; Anxiety appeared to make progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">I tried it and it worked by doing the following.</span></strong>\r\n\r\nI added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.\r\nI worked on those and managed to slowly reintroduce the problematic foods step by step.\r\nI worked on my gut health and restored the natural gut flora.\r\nI put together a Stress Relief routine and practised this twice per day as part of a Self-Hypnosis Program.\r\nI changed the way I ate to a conscious process, allowing me to enjoy my foods more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 12:23:39','2018-05-21 12:23:39','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(855,1,'2018-05-21 12:22:51','2018-05-21 12:22:51','<h2><strong><span style=\"color: #008000;\">Do you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work and one of the reasons why some people never beat Candida despite it being linked to many other health issues.\r\n\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nThis continued for almost six months and I went back to my research to find exactly the same story for hundreds of other people, all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all but many found as soon as they went back to their regular food, the Candida issues started again and they had to start from scratch.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nTo cut this long story short I eventually found a few dozen people who stated they had beaten Candida and most of them had done so in a short period of time. They whilst still eating many of the foods that experts claimed to cause Candida issues.\r\nIt appeared the various Candida diets did not work, as the same \"Bad Candida Food\" is not the same for everyone.\r\nStress &amp; Anxiety appeared to make progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">I tried it and it worked by doing the following.</span></strong>\r\n\r\nI added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.\r\nI worked on those and managed to slowly reintroduce the problematic foods step by step.\r\nI worked on my gut health and restored the natural gut flora.\r\nI put together a Stress Relief routine and practised this twice per day as part of a Self-Hypnosis Program.\r\nI changed the way I ate to a conscious process, allowing me to enjoy my foods more and to be more aware of what I ate.\r\n\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 12:22:51','2018-05-21 12:22:51','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(860,1,'2018-05-21 12:29:35','2018-05-21 12:29:35','<h2><strong><span style=\"color: #008000;\">Do you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work and one of the reasons why some people never beat Candida despite it being linked to many other health issues.\r\n\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of other people. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nTo cut this long story short I eventually found a few dozen people who stated they had beaten Candida. Most in a short period of time whilst still eating many of the bad Candida foods.\r\nStress &amp; Anxiety appeared to make progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">I tried it and it worked by doing the following.</span></strong>\r\n\r\nI added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.\r\nI worked on those and managed to slowly reintroduce the problematic foods step by step.\r\nI worked on my gut health and restored the natural gut flora.\r\nI put together a Stress Relief routine and practised this twice per day as part of a Self-Hypnosis Program.\r\nI changed the way I ate to a conscious process, allowing me to enjoy my foods more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 12:29:35','2018-05-21 12:29:35','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(862,1,'2018-05-21 12:31:09','2018-05-21 12:31:09','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work and one of the reasons why some people never beat Candida despite it being linked to many other health issues.\r\n\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nTo cut this long story short I eventually found a few dozen people who stated they had beaten Candida.\r\nMost in a short period of time whilst still eating many of the bad Candida foods.\r\nStress &amp; Anxiety appeared to make progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">I tried it and it worked by doing the following.</span></strong>\r\n\r\nI added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.\r\nI worked on those and managed to slowly reintroduce the problematic foods step by step.\r\nI worked on my gut health and restored the natural gut flora.\r\nI put together a Stress Relief routine and practised this twice per day as part of a Self-Hypnosis Program.\r\nI changed the way I ate to a conscious process, allowing me to enjoy my foods more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 12:31:09','2018-05-21 12:31:09','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(864,1,'2018-05-21 12:35:24','2018-05-21 12:35:24','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work and one of the reasons why some people never beat Candida despite it being linked to many other health issues.\r\n\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people and they stated they had beaten Candida.\r\nMost in a short period of time whilst still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">I tried it and it worked by doing the following.</span></strong>\r\n\r\nI added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.\r\nI worked on those and managed to slowly reintroduce the problematic foods step by step.\r\nI worked on my gut health and restored the natural gut flora.\r\nI put together a Stress Relief routine and practised this twice per day as part of a Self-Hypnosis Program.\r\nI changed the way I ate to a conscious process, allowing me to enjoy my foods more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 12:35:24','2018-05-21 12:35:24','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(865,1,'2018-05-21 12:36:31','2018-05-21 12:36:31','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work and one of the reasons why some people never beat Candida despite it being linked to many other health issues.\r\n\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">I tried it and it worked by doing the following.</span></strong>\r\n\r\nI added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.\r\nI worked on those and managed to slowly reintroduce the problematic foods step by step.\r\nI worked on my gut health and restored the natural gut flora.\r\nI put together a Stress Relief routine and practised this twice per day as part of a Self-Hypnosis Program.\r\nI changed the way I ate to a conscious process, allowing me to enjoy my foods more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 12:36:31','2018-05-21 12:36:31','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(866,1,'2018-05-21 12:37:30','2018-05-21 12:37:30','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work and one of the reasons why some people never beat Candida despite it being linked to many other health issues.\r\n\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>I worked on those and managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>I put together a Stress Relief routine and practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 12:37:30','2018-05-21 12:37:30','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(869,1,'2018-05-21 12:45:07','2018-05-21 12:45:07','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work and one of the reasons why some people never beat Candida despite it being linked to many other health issues.\r\n\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida because of a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>Worked on those I managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>Creating a Stress Relief routine, I practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 12:45:07','2018-05-21 12:45:07','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(867,1,'2018-05-21 12:38:44','2018-05-21 12:38:44','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work and one of the reasons why some people never beat Candida despite it being linked to many other health issues.\r\n\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>I worked on those and managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>I put together a Stress Relief routine and practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 12:38:44','2018-05-21 12:38:44','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(868,1,'2018-05-21 12:40:10','2018-05-21 12:40:10','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work and one of the reasons why some people never beat Candida despite it being linked to many other health issues.\r\n\r\nThere are many possible causes of Candida due to our current lifestyles, food production methods and prescribed medications. The good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save you money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida during a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>Worked on those I managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>Creating a Stress Relief routine, I practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 12:40:10','2018-05-21 12:40:10','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(870,1,'2018-05-21 12:49:37','2018-05-21 12:49:37','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work why some people never beat Candida despite it being linked to many other health issues.\r\n\r\nThere are many possible causes of Candida because of our current lifestyles, food production methods and prescribed medications.\r\nThe good news is that you can beat Candida, with a little help.\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save your money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida because of a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>Worked on those I managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>Creating a Stress Relief routine, I practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 12:49:37','2018-05-21 12:49:37','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(871,1,'2018-05-21 12:51:35','2018-05-21 12:51:35','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work why some people never beat Candida despite it being linked to many other health issues.\r\nThere are many possible causes of Candida because of our current lifestyles, food production methods and prescribed medications.\r\nThe good news is that you can beat Candida, with a little help from the Hypnosis for Candida Relief Program\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save your money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\">My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida because of a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>Worked on those I managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>Creating a Stress Relief routine, I practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\n&nbsp;','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 12:51:35','2018-05-21 12:51:35','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(872,1,'2018-05-21 12:58:29','2018-05-21 12:58:29','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work why some people never beat Candida despite it being linked to many other health issues.\r\nThere are many possible causes of Candida because of our current lifestyles, food production methods and prescribed medications.\r\nThe good news is that you can beat Candida, with a little help from the Hypnosis for Candida Relief Program\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save your money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\"><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Hypnosis for Candida Relief\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Hypnosis for Candida Relief \" width=\"150\" height=\"150\" />My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida because of a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>Worked on those I managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>Creating a Stress Relief routine, I practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\nNewcastle Hypnotherapy operates from a number of locations in Newcastle upon Tyne &amp; Northumberland.\r\nWe most commonly work from <a href=\"http://www.the-vault.org/\">The Vault</a>, &amp; <a href=\"http://www.food-for-thought-uk.co.uk/\">Food For Thought</a>. We can also work with you Online or through our regular <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Workshops &amp; Events.</a>','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 12:58:29','2018-05-21 12:58:29','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(874,1,'2018-05-21 13:22:57','2018-05-21 13:22:57','Hypnosis for Candida Relief','Hypnosis for Candida Relief','','inherit','open','closed','','belly-3186730_1280','','','2018-05-21 13:23:20','2018-05-21 13:23:20','',824,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/belly-3186730_1280.jpg',0,'attachment','image/jpeg',0),(875,1,'2018-05-21 15:19:48','2018-05-21 15:19:48','<label> Your Name (required)\r\n    [text* your-name] </label>\r\n\r\n<label> Your Email (required)\r\n    [email* your-email] </label>\r\n\r\n\r\n\r\n[submit \"Send\"]\n1\nNH Candida Signup\n[your-name] <mark@newcastle-hypnotherapy.com>\nmark@newcastle-hypnotherapy.com\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Newcastle Hypnotherapy - Hypnosis Tyneside, Northumberland, Newcastle &amp; Online (http://www.newcastle-hypnotherapy.com)\nReply-To: [your-email]\n\n\n\n\nNewcastle Hypnotherapy - Hypnosis Tyneside, Northumberland, Newcastle & Online \"[your-subject]\"\nNewcastle Hypnotherapy - Hypnosis Tyneside, Northumberland, Newcastle & Online <mark@newcastle-hypnotherapy.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Newcastle Hypnotherapy - Hypnosis Tyneside, Northumberland, Newcastle &amp; Online (http://www.newcastle-hypnotherapy.com)\nReply-To: mark@newcastle-hypnotherapy.com\n\n\n\nThank you. You have been added to the Candida Tips Newsletter. Please check your email\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Candida Tips Newsletter','','publish','closed','closed','','candida-tips-newsletter','','','2018-05-21 15:27:20','2018-05-21 15:27:20','',0,'http://www.newcastle-hypnotherapy.com/?post_type=wpcf7_contact_form&#038;p=875',0,'wpcf7_contact_form','',0),(876,1,'2018-05-21 15:27:54','2018-05-21 15:27:54','Test page\r\n\r\n\r\n[contact-form-7 id=\"875\" title=\"Candida Tips Newsletter\"]','test P','','inherit','closed','closed','','695-revision-v1','','','2018-05-21 15:27:54','2018-05-21 15:27:54','',695,'http://www.newcastle-hypnotherapy.com/695-revision-v1/',0,'revision','',0),(877,1,'2018-05-21 15:40:17','2018-05-21 15:40:17','candida hypnosis relief','candida hypnosis relief','','inherit','open','closed','','candid-hypnosis-relief','','','2018-05-21 15:40:43','2018-05-21 15:40:43','',824,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/candid-hypnosis-relief.jpg',0,'attachment','image/jpeg',0),(878,1,'2018-05-21 15:41:32','2018-05-21 15:41:32','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work why some people never beat Candida despite it being linked to many other health issues.\r\nThere are many possible causes of Candida because of our current lifestyles, food production methods and prescribed medications.\r\nThe good news is that you can beat Candida, with a little help from the Hypnosis for Candida Relief Program.\r\n\r\n<img class=\"alignleft size-medium wp-image-877\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/candid-hypnosis-relief-300x229.jpg\" alt=\"candida hypnosis relief\" width=\"300\" height=\"229\" />\r\n[contact-form-7 id=\"875\" title=\"Candida Tips Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save your money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\"><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Hypnosis for Candida Relief\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Hypnosis for Candida Relief \" width=\"150\" height=\"150\" />My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida because of a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>Worked on those I managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>Creating a Stress Relief routine, I practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\nNewcastle Hypnotherapy operates from a number of locations in Newcastle upon Tyne &amp; Northumberland.\r\nWe most commonly work from <a href=\"http://www.the-vault.org/\">The Vault</a>, &amp; <a href=\"http://www.food-for-thought-uk.co.uk/\">Food For Thought</a>. We can also work with you Online or through our regular <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Workshops &amp; Events.</a>','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 15:41:32','2018-05-21 15:41:32','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(879,1,'2018-05-21 15:42:42','2018-05-21 15:42:42','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work why some people never beat Candida despite it being linked to many other health issues.\r\nThere are many possible causes of Candida because of our current lifestyles, food production methods and prescribed medications.\r\nThe good news is that you can beat Candida, with a little help from the Hypnosis for Candida Relief Program.\r\n\r\n<img class=\"alignleft wp-image-877 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/candid-hypnosis-relief-300x229.jpg\" alt=\"candida hypnosis relief\" width=\"300\" height=\"229\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"875\" title=\"Candida Tips Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save your money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\"><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Hypnosis for Candida Relief\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Hypnosis for Candida Relief \" width=\"150\" height=\"150\" />My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida because of a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>Worked on those I managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>Creating a Stress Relief routine, I practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\nNewcastle Hypnotherapy operates from a number of locations in Newcastle upon Tyne &amp; Northumberland.\r\nWe most commonly work from <a href=\"http://www.the-vault.org/\">The Vault</a>, &amp; <a href=\"http://www.food-for-thought-uk.co.uk/\">Food For Thought</a>. We can also work with you Online or through our regular <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Workshops &amp; Events.</a>','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 15:42:42','2018-05-21 15:42:42','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(880,1,'2018-05-21 15:42:57','2018-05-21 15:42:57','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work why some people never beat Candida despite it being linked to many other health issues.\r\nThere are many possible causes of Candida because of our current lifestyles, food production methods and prescribed medications.\r\nThe good news is that you can beat Candida, with a little help from the Hypnosis for Candida Relief Program.\r\n\r\n<img class=\"alignleft wp-image-877 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/candid-hypnosis-relief-300x229.jpg\" alt=\"candida hypnosis relief\" width=\"300\" height=\"229\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"875\" title=\"Candida Tips Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save your money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\"><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Hypnosis for Candida Relief\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Hypnosis for Candida Relief \" width=\"150\" height=\"150\" />My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida because of a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>Worked on those I managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>Creating a Stress Relief routine, I practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\nNewcastle Hypnotherapy operates from a number of locations in Newcastle upon Tyne &amp; Northumberland.\r\nWe most commonly work from <a href=\"http://www.the-vault.org/\">The Vault</a>, &amp; <a href=\"http://www.food-for-thought-uk.co.uk/\">Food For Thought</a>. We can also work with you Online or through our regular <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Workshops &amp; Events.</a>','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 15:42:57','2018-05-21 15:42:57','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(881,1,'2018-05-21 15:45:50','2018-05-21 15:45:50','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work why some people never beat Candida despite it being linked to many other health issues.\r\nThere are many possible causes of Candida because of our current lifestyles, food production methods and prescribed medications.\r\nThe good news is that you can beat Candida, with a little help from the Hypnosis for Candida Relief Program.\r\n\r\n<img class=\"alignleft wp-image-877 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/candid-hypnosis-relief-300x229.jpg\" alt=\"candida hypnosis relief\" width=\"300\" height=\"229\" />\r\n\r\n&nbsp;\r\n\r\nGet 3 FREE Fast Tips for Candida Relief and even more Candida Help when you join the Candida Relief Newsletter\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"875\" title=\"Candida Tips Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save your money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\"><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Hypnosis for Candida Relief\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Hypnosis for Candida Relief \" width=\"150\" height=\"150\" />My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida because of a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>Worked on those I managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>Creating a Stress Relief routine, I practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\nNewcastle Hypnotherapy operates from a number of locations in Newcastle upon Tyne &amp; Northumberland.\r\nWe most commonly work from <a href=\"http://www.the-vault.org/\">The Vault</a>, &amp; <a href=\"http://www.food-for-thought-uk.co.uk/\">Food For Thought</a>. We can also work with you Online or through our regular <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Workshops &amp; Events.</a>','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 15:45:50','2018-05-21 15:45:50','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(882,1,'2018-05-21 15:46:18','2018-05-21 15:46:18','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work why some people never beat Candida despite it being linked to many other health issues.\r\nThere are many possible causes of Candida because of our current lifestyles, food production methods and prescribed medications.\r\nThe good news is that you can beat Candida, with a little help from the Hypnosis for Candida Relief Program.\r\n\r\n<img class=\"alignleft wp-image-877 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/candid-hypnosis-relief-300x229.jpg\" alt=\"candida hypnosis relief\" width=\"300\" height=\"229\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #ff6600;\"><strong>Get 3 FREE Fast Tips for Candida Relief and even more Candida Help when you join the Candida Relief Newsletter</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"875\" title=\"Candida Tips Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save your money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\"><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Hypnosis for Candida Relief\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Hypnosis for Candida Relief \" width=\"150\" height=\"150\" />My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida because of a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>Worked on those I managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>Creating a Stress Relief routine, I practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\nNewcastle Hypnotherapy operates from a number of locations in Newcastle upon Tyne &amp; Northumberland.\r\nWe most commonly work from <a href=\"http://www.the-vault.org/\">The Vault</a>, &amp; <a href=\"http://www.food-for-thought-uk.co.uk/\">Food For Thought</a>. We can also work with you Online or through our regular <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Workshops &amp; Events.</a>','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 15:46:18','2018-05-21 15:46:18','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(883,1,'2018-05-21 15:46:39','2018-05-21 15:46:39','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work why some people never beat Candida despite it being linked to many other health issues.\r\nThere are many possible causes of Candida because of our current lifestyles, food production methods and prescribed medications.\r\nThe good news is that you can beat Candida, with a little help from the Hypnosis for Candida Relief Program.\r\n\r\n<img class=\"alignleft wp-image-877 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/candid-hypnosis-relief-300x229.jpg\" alt=\"candida hypnosis relief\" width=\"300\" height=\"229\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #ff6600;\"><strong>Get 3 FREE Fast Tips for Candida Relief and even more Candida Help when you join the Candida Relief Newsletter</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"875\" title=\"Candida Tips Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save your money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\"><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Hypnosis for Candida Relief\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Hypnosis for Candida Relief \" width=\"150\" height=\"150\" />My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida because of a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>Worked on those I managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>Creating a Stress Relief routine, I practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\nNewcastle Hypnotherapy operates from a number of locations in Newcastle upon Tyne &amp; Northumberland.\r\nWe most commonly work from <a href=\"http://www.the-vault.org/\">The Vault</a>, &amp; <a href=\"http://www.food-for-thought-uk.co.uk/\">Food For Thought</a>. We can also work with you Online or through our regular <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Workshops &amp; Events.</a>','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 15:46:39','2018-05-21 15:46:39','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(886,1,'2018-05-21 15:49:51','2018-05-21 15:49:51','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work why some people never beat Candida despite it being linked to many other health issues.\r\nThere are many possible causes of Candida because of our current lifestyles, food production methods and prescribed medications.\r\nThe good news is that you can beat Candida, with a little help from the Hypnosis for Candida Relief Program.\r\n\r\n<img class=\"alignleft wp-image-877 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/candid-hypnosis-relief-300x229.jpg\" alt=\"candida hypnosis relief\" width=\"300\" height=\"229\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #ff6600;\"><strong>Get 3 FREE Fast Tips for Candida Relief and even more Candida Help when you join the Candida Relief Newsletter below.</strong></span>\r\n\r\nYour data is always safe with us and we are GDPR Compliant.\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"875\" title=\"Candida Tips Newsletter\"]\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save your money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\"><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Hypnosis for Candida Relief\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Hypnosis for Candida Relief \" width=\"150\" height=\"150\" />My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida because of a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>Worked on those I managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>Creating a Stress Relief routine, I practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\nNewcastle Hypnotherapy operates from a number of locations in Newcastle upon Tyne, Northumberland and Online.\r\n\r\nWe most commonly work from <a href=\"http://www.the-vault.org/\">The Vault</a>, &amp; <a href=\"http://www.food-for-thought-uk.co.uk/\">Food For Thought</a>.\r\nWe can also work with you Online or through our regular Workshops &amp; Events.\r\nContact us to find out more.','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 15:49:51','2018-05-21 15:49:51','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(885,1,'2018-05-21 15:48:31','2018-05-21 15:48:31','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work why some people never beat Candida despite it being linked to many other health issues.\r\nThere are many possible causes of Candida because of our current lifestyles, food production methods and prescribed medications.\r\nThe good news is that you can beat Candida, with a little help from the Hypnosis for Candida Relief Program.\r\n\r\n<img class=\"alignleft wp-image-877 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/candid-hypnosis-relief-300x229.jpg\" alt=\"candida hypnosis relief\" width=\"300\" height=\"229\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #ff6600;\"><strong>Get 3 FREE Fast Tips for Candida Relief and even more Candida Help when you join the Candida Relief Newsletter below.</strong></span>\r\n\r\nYour data is always safe with us and we are GDPR Compliant.\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"875\" title=\"Candida Tips Newsletter\"]\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save your money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\"><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Hypnosis for Candida Relief\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Hypnosis for Candida Relief \" width=\"150\" height=\"150\" />My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida because of a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>Worked on those I managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>Creating a Stress Relief routine, I practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\nNewcastle Hypnotherapy operates from a number of locations in Newcastle upon Tyne &amp; Northumberland.\r\nWe most commonly work from <a href=\"http://www.the-vault.org/\">The Vault</a>, &amp; <a href=\"http://www.food-for-thought-uk.co.uk/\">Food For Thought</a>. We can also work with you Online or through our regular <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Workshops &amp; Events.</a>','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 15:48:31','2018-05-21 15:48:31','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(884,1,'2018-05-21 15:47:59','2018-05-21 15:47:59','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work why some people never beat Candida despite it being linked to many other health issues.\r\nThere are many possible causes of Candida because of our current lifestyles, food production methods and prescribed medications.\r\nThe good news is that you can beat Candida, with a little help from the Hypnosis for Candida Relief Program.\r\n\r\n<img class=\"alignleft wp-image-877 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/candid-hypnosis-relief-300x229.jpg\" alt=\"candida hypnosis relief\" width=\"300\" height=\"229\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #ff6600;\"><strong>Get 3 FREE Fast Tips for Candida Relief and even more Candida Help when you join the Candida Relief Newsletter below.\r\n\r\nYour data is always safe with us and we are GDPR Compliant.</strong></span>\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"875\" title=\"Candida Tips Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save your money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\"><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Hypnosis for Candida Relief\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Hypnosis for Candida Relief \" width=\"150\" height=\"150\" />My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida because of a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>Worked on those I managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>Creating a Stress Relief routine, I practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\nNewcastle Hypnotherapy operates from a number of locations in Newcastle upon Tyne &amp; Northumberland.\r\nWe most commonly work from <a href=\"http://www.the-vault.org/\">The Vault</a>, &amp; <a href=\"http://www.food-for-thought-uk.co.uk/\">Food For Thought</a>. We can also work with you Online or through our regular <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Workshops &amp; Events.</a>','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 15:47:59','2018-05-21 15:47:59','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(887,1,'2018-05-21 15:51:05','2018-05-21 15:51:05','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work and can be very hard to follow plus Candida Drugs often have no benefits.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work why some people never beat Candida despite it being linked to many other health issues.\r\nThere are many possible causes of Candida because of our current lifestyles, food production methods and prescribed medications.\r\nThe good news is that you can beat Candida, with a little help from the Hypnosis for Candida Relief Program.\r\n\r\n<img class=\"alignleft wp-image-877 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/candid-hypnosis-relief-300x229.jpg\" alt=\"candida hypnosis relief\" width=\"300\" height=\"229\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #ff6600;\"><strong>Get 3 FREE Fast Tips for Candida Relief and even more Candida Help when you join the Candida Relief Newsletter below.</strong></span>\r\n\r\nYour data is always safe with us and we are GDPR Compliant.\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"875\" title=\"Candida Tips Newsletter\"]\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save your money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\"><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Hypnosis for Candida Relief\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Hypnosis for Candida Relief \" width=\"150\" height=\"150\" />My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida because of a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>Worked on those I managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>Creating a Stress Relief routine, I practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\nNewcastle Hypnotherapy operates from a number of locations in Newcastle upon Tyne, Northumberland and Online.\r\nWe most commonly work from <a href=\"http://www.the-vault.org/\">The Vault</a>, &amp; <a href=\"http://www.food-for-thought-uk.co.uk/\">Food For Thought  </a>and other locations across the North East\r\nWe can also work with you Online or through our regular Workshops &amp; Events.\r\nContact us to find out more.','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 15:51:05','2018-05-21 15:51:05','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(888,1,'2018-05-21 15:54:19','2018-05-21 15:54:19','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida, also known as a Yest Infection, is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work well and can be very hard to follow.\r\nCandida Drugs often have no benefits leaving people frustrated and confused.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work why some people never beat Candida despite it being linked to many other health issues.\r\nThere are many possible causes of Candida because of our current lifestyles, food production methods and prescribed medications.\r\nThe good news is that you can beat Candida, with a little help from the Hypnosis for Candida Relief Program.\r\n\r\n<img class=\"alignleft wp-image-877 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/candid-hypnosis-relief-300x229.jpg\" alt=\"candida hypnosis relief\" width=\"300\" height=\"229\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #ff6600;\"><strong>Get 3 FREE Fast Tips for Candida Relief and even more Candida Help when you join the Candida Relief Newsletter below.</strong></span>\r\n\r\nYour data is always safe with us and we are GDPR Compliant.\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"875\" title=\"Candida Tips Newsletter\"]\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save your money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\"><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Hypnosis for Candida Relief\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Hypnosis for Candida Relief \" width=\"150\" height=\"150\" />My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida because of a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>Worked on those I managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>Creating a Stress Relief routine, I practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\nNewcastle Hypnotherapy operates from a number of locations in Newcastle upon Tyne, Northumberland and Online.\r\nWe most commonly work from <a href=\"http://www.the-vault.org/\">The Vault</a>, &amp; <a href=\"http://www.food-for-thought-uk.co.uk/\">Food For Thought  </a>and other locations across the North East\r\nWe can also work with you Online or through our regular Workshops &amp; Events.\r\nContact us to find out more.','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 15:54:19','2018-05-21 15:54:19','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(889,1,'2018-05-21 17:29:01','2018-05-21 17:29:01','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida, also known as a Yeast Infection, is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work well and can be very hard to follow.\r\nCandida Drugs often have no benefits leaving people frustrated and confused.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work why some people never beat Candida despite it being linked to many other health issues.\r\nThere are many possible causes of Candida because of our current lifestyles, food production methods and prescribed medications.\r\nThe good news is that you can beat Candida, with a little help from the Hypnosis for Candida Relief Program.\r\n\r\n<img class=\"alignleft wp-image-877 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/candid-hypnosis-relief-300x229.jpg\" alt=\"candida hypnosis relief\" width=\"300\" height=\"229\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #ff6600;\"><strong>Get 3 FREE Fast Tips for Candida Relief and even more Candida Help when you join the Candida Relief Newsletter below.</strong></span>\r\n\r\nYour data is always safe with us and we are GDPR Compliant.\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"875\" title=\"Candida Tips Newsletter\"]\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save your money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\"><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Hypnosis for Candida Relief\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Hypnosis for Candida Relief \" width=\"150\" height=\"150\" />My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida because of a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>Worked on those I managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>Creating a Stress Relief routine, I practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\nNewcastle Hypnotherapy operates from a number of locations in Newcastle upon Tyne, Northumberland and Online.\r\nWe most commonly work from <a href=\"http://www.the-vault.org/\">The Vault</a>, &amp; <a href=\"http://www.food-for-thought-uk.co.uk/\">Food For Thought  </a>and other locations across the North East\r\nWe can also work with you Online or through our regular Workshops &amp; Events.\r\nContact us to find out more.','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 17:29:01','2018-05-21 17:29:01','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(890,1,'2018-05-21 17:30:59','2018-05-21 17:30:59','<h2><strong><span style=\"color: #008000;\">\r\nDo you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida, also known as a Yeast Infection, is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work well and can be very hard to follow.\r\nCandida Drugs often have no benefits leaving people frustrated and confused.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work why some people never beat Candida despite it being linked to many other health issues.\r\nThere are many possible causes of Candida because of our current lifestyles, food production methods and prescribed medications.\r\nThe good news is that you can beat Candida, with a little help from the Hypnosis for Candida Relief Program.\r\n\r\n<img class=\"alignleft wp-image-877 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/candid-hypnosis-relief-300x229.jpg\" alt=\"candida hypnosis relief\" width=\"300\" height=\"229\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #ff6600;\"><strong>Get 3 FREE Fast Tips for Candida Relief and even more Candida Help when you join the Candida Relief Newsletter below.</strong></span>\r\n\r\nYour data is always safe with us and we are GDPR Compliant.\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"875\" title=\"Candida Tips Newsletter\"]\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save your money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\"><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Hypnosis for Candida Relief\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Hypnosis for Candida Relief \" width=\"150\" height=\"150\" />My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida because of a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>Worked on those I managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>Creating a Stress Relief routine, I practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\nNewcastle Hypnotherapy operates from a number of locations in Newcastle upon Tyne, Northumberland and Online.\r\nWe most commonly work from <a href=\"http://www.the-vault.org/\">The Vault</a>, &amp; <a href=\"http://www.food-for-thought-uk.co.uk/\">Food For Thought  </a>and other locations across the North East\r\nWe can also work with you Online or through our regular <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Workshops &amp; Events.</a>\r\nContact us to find out more.','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 17:30:59','2018-05-21 17:30:59','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(891,1,'2018-05-21 18:57:34','2018-05-21 18:57:34','<h2><strong><span style=\"color: #008000;\">\r\n<img class=\"alignleft size-medium wp-image-874\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/belly-3186730_1280-300x200.jpg\" alt=\"Hypnosis for Candida Relief\" width=\"300\" height=\"200\" />Do you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida, also known as a Yeast Infection, is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work well and can be very hard to follow.\r\nCandida Drugs often have no benefits leaving people frustrated and confused.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work why some people never beat Candida despite it being linked to many other health issues.\r\nThere are many possible causes of Candida because of our current lifestyles, food production methods and prescribed medications.\r\nThe good news is that you can beat Candida, with a little help from the Hypnosis for Candida Relief Program.\r\n\r\n<img class=\"alignleft wp-image-877 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/candid-hypnosis-relief-300x229.jpg\" alt=\"candida hypnosis relief\" width=\"300\" height=\"229\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #ff6600;\"><strong>Get 3 FREE Fast Tips for Candida Relief and even more Candida Help when you join the Candida Relief Newsletter below.</strong></span>\r\n\r\nYour data is always safe with us and we are GDPR Compliant.\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"875\" title=\"Candida Tips Newsletter\"]\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save your money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\"><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Hypnosis for Candida Relief\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Hypnosis for Candida Relief \" width=\"150\" height=\"150\" />My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida because of a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>Worked on those I managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>Creating a Stress Relief routine, I practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\nNewcastle Hypnotherapy operates from a number of locations in Newcastle upon Tyne, Northumberland and Online.\r\nWe most commonly work from <a href=\"http://www.the-vault.org/\">The Vault</a>, &amp; <a href=\"http://www.food-for-thought-uk.co.uk/\">Food For Thought  </a>and other locations across the North East\r\nWe can also work with you Online or through our regular Workshops &amp; Events.\r\nContact us to find out more.','Candida Relief Program','','inherit','closed','closed','','824-revision-v1','','','2018-05-21 18:57:34','2018-05-21 18:57:34','',824,'http://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(892,1,'2018-05-22 08:42:52','2018-05-22 08:42:52','<article class=\"page type-page entry\"><header class=\"entry-header\">\r\n<h1 class=\"entry-title\"> <img class=\"alignleft size-medium wp-image-896\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/relax-newcastle-hypnotherapy-300x225.jpg\" alt=\"relax newcastle hypnotherapy\" width=\"300\" height=\"225\" />Relax.\r\nWe are looking after you &amp; your privacy.</h1>\r\n</header>\r\n<div class=\"entry-content\">\r\n\r\nYour privacy is very important to us. We do not store any sensitive data online and we want you to feel comfortable in all respects when using our services.\r\n\r\n&nbsp;\r\n\r\nHere at Newcastle Hypnotherapy we have a few fundamental principles that we follow:\r\n<ul>\r\n 	<li>We don’t ask you for personal information unless we truly need it.</li>\r\n 	<li>We don’t share your personal information with anyone.</li>\r\n 	<li>We don’t store personal information on our website or server unless you sign up for one of our newsletters and then we only store your name and your emaill address. This is for our use only.</li>\r\n</ul>\r\n<strong>Website Visitors</strong>\r\n\r\nLike most website operators, Newcastle Hypnotherapy collects non-personally-identifying information of the sort that web browsers and servers typically make available, such as the browser type, language preference, referring site, and the date and time of each visitor request. Newcastle Hypnotherapy’s purpose in collecting non-personally identifying information is to better understand how Newcastle Hypnotherapy’s visitors use its website. From time to time, Newcastle Hypnotherapy may release non-personally-identifying information in the aggregate, e.g., by publishing a report on trends in the usage of its website.\r\n\r\nNewcastle Hypnotherapy also collects potentially personally-identifying information like Internet Protocol (IP) addresses for logged in users and for users leaving comments on our blogs. Newcastle Hypnotherapy only discloses logged in user and commenter IP addresses under the same circumstances that it uses and discloses personally-identifying information as described below, except that blog commenter IP addresses are visible and disclosed to the administrators of the blog where the comment was left.\r\n\r\n<strong>Gathering of Personally-Identifying Information</strong>\r\n\r\nCertain visitors to Newcastle Hypnotherapy’s websites choose to interact with us in ways that require us to gather personally-identifying information. The amount and type of information that we gather depends on the nature of the interaction. For example, we ask visitors who comment on our blog to provide a username and email address. Those who wish to receive updates via email, we collect their emails. In each case, Newcastle Hypnotherapy collects such information only insofar as is necessary or appropriate to fulfill the purpose of the visitor’s interaction with us. Newcastle Hypnotherapy does not disclose personally-identifying information other than as described below. And visitors can always refuse to supply personally-identifying information, with the caveat that it may prevent them from engaging in certain website-related activities.\r\n\r\n<strong>Aggregated Statistics</strong>\r\n\r\nNewcastle Hypnotherapy may collect statistics about the behavior of visitors to its websites. For instance, we may monitor the most popular pages on the list25.com site or use spam screened by the Akismet service to help identify spam. We may display this information publicly or provide it to others. However, Newcastle Hypnotherapy does not disclose personally-identifying information other than as described below.\r\n\r\n<strong>Protection of Certain Personally-Identifying Information</strong>\r\n\r\nNewcastle Hypnotherapy discloses potentially personally-identifying and personally-identifying information only to those of its employees, contractors and affiliated organizations that (i) need to know that information in order to process it on Newcastle Hypnotherapy’s behalf or to provide services available at Newcastle Hypnotherapys websites, and (ii) that have agreed not to disclose it to others. Some of those employees, contractors and affiliated organizations may be located outside of your home country; by using Newcastle Hypnotherapy’s websites, you consent to the transfer of such information to them. Newcastle Hypnotherapy will not rent or sell potentially personally-identifying and personally-identifying information to anyone. Other than to its employees, contractors and affiliated organizations, as described above, Newcastle Hypnotherapy discloses potentially personally-identifying and personally-identifying information only in response to a court order or other governmental request, or when Newcastle Hypnotherapy believes in good faith that disclosure is reasonably necessary to protect the property or rights of Newcastle Hypnotherapy, third parties or the public at large. If you are a registered user of an Newcastle Hypnotherapy website and have supplied your email address, Newcastle Hypnotherapy may occasionally send you an email to tell you about new features, solicit your feedback, or just keep you up to date with what’s going on with Newcastle Hypnotherapy and our products. We primarily use our various product blogs to communicate this type of information, so we expect to keep this type of email to a minimum. If you send us a request (for example via a support email or via one of our feedback mechanisms), we reserve the right to publish it in order to help us clarify or respond to your request or to help us support other users. Newcastle Hypnotherapy takes all measures reasonably necessary to protect against the unauthorized access, use, alteration or destruction of potentially personally-identifying and personally-identifying information.\r\n\r\n<strong>Cookies</strong>\r\n\r\nA cookie is a string of information that a website stores on a visitor’s computer, and that the visitor’s browser provides to the website each time the visitor returns. Newcastle Hypnotherapy uses cookies to help us identify and track visitors, their usage of the website, and their website access preferences. Newcastle Hypnotherapy visitors who do not wish to have cookies placed on their computers should set their browsers to refuse cookies before using websites, with the drawback that certain features of these websites may not function properly without the aid of cookies.\r\n\r\n<strong>Business Transfers</strong>\r\n\r\nIf Awesome Motive, or substantially all of its assets were acquired, or in the unlikely event that Newcastle Hypnotherapy goes out of business, user information would be one of the assets that is transferred or acquired by a third party. You acknowledge that such transfers may occur, and that any acquirer of Newcastle Hypnotherapy may continue to use your personal information as set forth in this policy.\r\n\r\n<strong>Ads</strong>\r\n\r\nAds appearing on any of our websites may be delivered to users by advertising partners, who may set cookies. These cookies allow the ad server to recognize your computer each time they send you an online advertisement to compile information about you or others who use your computer. This information allows ad networks to, among other things, deliver targeted advertisements that they believe will be of most interest to you. This Privacy Policy covers the use of cookies by Newcastle Hypnotherapy and does not cover the use of cookies by any advertisers.\r\n\r\n<strong>Comments</strong>\r\n\r\nComments and other content submitted to Akismet anti-spam service are not saved on our servers unless they were marked as false positives, in which case we store them long enough to use them to improve the service to avoid future false positives.\r\n\r\n<strong>Privacy Policy Changes</strong>\r\n\r\nAlthough most changes are likely to be minor, Newcastle Hypnotherapy may change its Privacy Policy from time to time, We encourage visitors to frequently check this page for any changes to its Privacy Policy. Your continued use of this site after any change in this Privacy Policy will constitute your acceptance of such change.\r\n\r\n</div>\r\n</article>','PRIVACY POLICY','','publish','closed','closed','','privacy-policy','','','2018-09-02 16:29:33','2018-09-02 16:29:33','',0,'http://www.newcastle-hypnotherapy.com/?page_id=892',300,'page','',0),(893,1,'2018-05-22 08:42:52','2018-05-22 08:42:52','<article class=\"page type-page entry\"><header class=\"entry-header\">\r\n<h1 class=\"entry-title\">Privacy Policy</h1>\r\n</header>\r\n<div class=\"entry-content\">\r\n\r\nYour privacy is very important to us. We do not store any sensitive data online and we want you to feel comfortable in all respects when using our services.\r\n\r\nHere at Newcastle Hypnotherapy we have a few fundamental principles that we follow:\r\n<ul>\r\n 	<li>We don’t ask you for personal information unless we truly need it.</li>\r\n 	<li>We don’t share your personal information with anyone.</li>\r\n 	<li>We don’t store personal information on our website or server unless you sign up for one of our newsletters and then we only store your name and your emaill address. This is for our use only.</li>\r\n</ul>\r\n<strong>Website Visitors</strong>\r\n\r\nLike most website operators, Newcastle Hypnotherapy collects non-personally-identifying information of the sort that web browsers and servers typically make available, such as the browser type, language preference, referring site, and the date and time of each visitor request. Newcastle Hypnotherapy’s purpose in collecting non-personally identifying information is to better understand how Newcastle Hypnotherapy’s visitors use its website. From time to time, Newcastle Hypnotherapy may release non-personally-identifying information in the aggregate, e.g., by publishing a report on trends in the usage of its website.\r\n\r\nNewcastle Hypnotherapy also collects potentially personally-identifying information like Internet Protocol (IP) addresses for logged in users and for users leaving comments on our blogs. Newcastle Hypnotherapy only discloses logged in user and commenter IP addresses under the same circumstances that it uses and discloses personally-identifying information as described below, except that blog commenter IP addresses are visible and disclosed to the administrators of the blog where the comment was left.\r\n\r\n<strong>Gathering of Personally-Identifying Information</strong>\r\n\r\nCertain visitors to Newcastle Hypnotherapy’s websites choose to interact with us in ways that require us to gather personally-identifying information. The amount and type of information that we gather depends on the nature of the interaction. For example, we ask visitors who comment on our blog to provide a username and email address. Those who wish to receive updates via email, we collect their emails. In each case, Newcastle Hypnotherapy collects such information only insofar as is necessary or appropriate to fulfill the purpose of the visitor’s interaction with us. Newcastle Hypnotherapy does not disclose personally-identifying information other than as described below. And visitors can always refuse to supply personally-identifying information, with the caveat that it may prevent them from engaging in certain website-related activities.\r\n\r\n<strong>Aggregated Statistics</strong>\r\n\r\nNewcastle Hypnotherapy may collect statistics about the behavior of visitors to its websites. For instance, we may monitor the most popular pages on the list25.com site or use spam screened by the Akismet service to help identify spam. We may display this information publicly or provide it to others. However, Newcastle Hypnotherapye does not disclose personally-identifying information other than as described below.\r\n\r\n<strong>Protection of Certain Personally-Identifying Information</strong>\r\n\r\nNewcastle Hypnotherapy discloses potentially personally-identifying and personally-identifying information only to those of its employees, contractors and affiliated organizations that (i) need to know that information in order to process it on Newcastle Hypnotherapy’s behalf or to provide services available at Newcastle Hypnotherapys websites, and (ii) that have agreed not to disclose it to others. Some of those employees, contractors and affiliated organizations may be located outside of your home country; by using Newcastle Hypnotherapy’s websites, you consent to the transfer of such information to them. Newcastle Hypnotherapy will not rent or sell potentially personally-identifying and personally-identifying information to anyone. Other than to its employees, contractors and affiliated organizations, as described above, Newcastle Hypnotherapy discloses potentially personally-identifying and personally-identifying information only in response to a court order or other governmental request, or when Newcastle Hypnotherapy believes in good faith that disclosure is reasonably necessary to protect the property or rights of Newcastle Hypnotherapy, third parties or the public at large. If you are a registered user of an Newcastle Hypnotherapy website and have supplied your email address, Newcastle Hypnotherapy may occasionally send you an email to tell you about new features, solicit your feedback, or just keep you up to date with what’s going on with Newcastle Hypnotherapy and our products. We primarily use our various product blogs to communicate this type of information, so we expect to keep this type of email to a minimum. If you send us a request (for example via a support email or via one of our feedback mechanisms), we reserve the right to publish it in order to help us clarify or respond to your request or to help us support other users. Newcastle Hypnotherapy takes all measures reasonably necessary to protect against the unauthorized access, use, alteration or destruction of potentially personally-identifying and personally-identifying information.\r\n\r\n<strong>Cookies</strong>\r\n\r\nA cookie is a string of information that a website stores on a visitor’s computer, and that the visitor’s browser provides to the website each time the visitor returns. Newcastle Hypnotherapy uses cookies to help us identify and track visitors, their usage of the website, and their website access preferences. Newcastle Hypnotherapy visitors who do not wish to have cookies placed on their computers should set their browsers to refuse cookies before using websites, with the drawback that certain features of these websites may not function properly without the aid of cookies.\r\n\r\n<strong>Business Transfers</strong>\r\n\r\nIf Awesome Motive, or substantially all of its assets were acquired, or in the unlikely event that Newcastle Hypnotherapy goes out of business, user information would be one of the assets that is transferred or acquired by a third party. You acknowledge that such transfers may occur, and that any acquirer of Newcastle Hypnotherapy may continue to use your personal information as set forth in this policy.\r\n\r\n<strong>Ads</strong>\r\n\r\nAds appearing on any of our websites may be delivered to users by advertising partners, who may set cookies. These cookies allow the ad server to recognize your computer each time they send you an online advertisement to compile information about you or others who use your computer. This information allows ad networks to, among other things, deliver targeted advertisements that they believe will be of most interest to you. This Privacy Policy covers the use of cookies by Newcastle Hypnotherapy and does not cover the use of cookies by any advertisers.\r\n\r\n<strong>Comments</strong>\r\n\r\nComments and other content submitted to Akismet anti-spam service are not saved on our servers unless they were marked as false positives, in which case we store them long enough to use them to improve the service to avoid future false positives.\r\n\r\n<strong>Privacy Policy Changes</strong>\r\n\r\nAlthough most changes are likely to be minor, Newcastle Hypnotherapy may change its Privacy Policy from time to time, We encourage visitors to frequently check this page for any changes to its Privacy Policy. Your continued use of this site after any change in this Privacy Policy will constitute your acceptance of such change.\r\n\r\n</div>\r\n</article>','Privacy Policy','','inherit','closed','closed','','892-revision-v1','','','2018-05-22 08:42:52','2018-05-22 08:42:52','',892,'http://www.newcastle-hypnotherapy.com/892-revision-v1/',0,'revision','',0),(895,1,'2018-05-22 08:44:13','2018-05-22 08:44:13','<article class=\"page type-page entry\"><header class=\"entry-header\">\r\n<h1 class=\"entry-title\"></h1>\r\n</header>\r\n<div class=\"entry-content\">\r\n\r\nYour privacy is very important to us. We do not store any sensitive data online and we want you to feel comfortable in all respects when using our services.\r\n\r\nHere at Newcastle Hypnotherapy we have a few fundamental principles that we follow:\r\n<ul>\r\n 	<li>We don’t ask you for personal information unless we truly need it.</li>\r\n 	<li>We don’t share your personal information with anyone.</li>\r\n 	<li>We don’t store personal information on our website or server unless you sign up for one of our newsletters and then we only store your name and your emaill address. This is for our use only.</li>\r\n</ul>\r\n<strong>Website Visitors</strong>\r\n\r\nLike most website operators, Newcastle Hypnotherapy collects non-personally-identifying information of the sort that web browsers and servers typically make available, such as the browser type, language preference, referring site, and the date and time of each visitor request. Newcastle Hypnotherapy’s purpose in collecting non-personally identifying information is to better understand how Newcastle Hypnotherapy’s visitors use its website. From time to time, Newcastle Hypnotherapy may release non-personally-identifying information in the aggregate, e.g., by publishing a report on trends in the usage of its website.\r\n\r\nNewcastle Hypnotherapy also collects potentially personally-identifying information like Internet Protocol (IP) addresses for logged in users and for users leaving comments on our blogs. Newcastle Hypnotherapy only discloses logged in user and commenter IP addresses under the same circumstances that it uses and discloses personally-identifying information as described below, except that blog commenter IP addresses are visible and disclosed to the administrators of the blog where the comment was left.\r\n\r\n<strong>Gathering of Personally-Identifying Information</strong>\r\n\r\nCertain visitors to Newcastle Hypnotherapy’s websites choose to interact with us in ways that require us to gather personally-identifying information. The amount and type of information that we gather depends on the nature of the interaction. For example, we ask visitors who comment on our blog to provide a username and email address. Those who wish to receive updates via email, we collect their emails. In each case, Newcastle Hypnotherapy collects such information only insofar as is necessary or appropriate to fulfill the purpose of the visitor’s interaction with us. Newcastle Hypnotherapy does not disclose personally-identifying information other than as described below. And visitors can always refuse to supply personally-identifying information, with the caveat that it may prevent them from engaging in certain website-related activities.\r\n\r\n<strong>Aggregated Statistics</strong>\r\n\r\nNewcastle Hypnotherapy may collect statistics about the behavior of visitors to its websites. For instance, we may monitor the most popular pages on the list25.com site or use spam screened by the Akismet service to help identify spam. We may display this information publicly or provide it to others. However, Newcastle Hypnotherapye does not disclose personally-identifying information other than as described below.\r\n\r\n<strong>Protection of Certain Personally-Identifying Information</strong>\r\n\r\nNewcastle Hypnotherapy discloses potentially personally-identifying and personally-identifying information only to those of its employees, contractors and affiliated organizations that (i) need to know that information in order to process it on Newcastle Hypnotherapy’s behalf or to provide services available at Newcastle Hypnotherapys websites, and (ii) that have agreed not to disclose it to others. Some of those employees, contractors and affiliated organizations may be located outside of your home country; by using Newcastle Hypnotherapy’s websites, you consent to the transfer of such information to them. Newcastle Hypnotherapy will not rent or sell potentially personally-identifying and personally-identifying information to anyone. Other than to its employees, contractors and affiliated organizations, as described above, Newcastle Hypnotherapy discloses potentially personally-identifying and personally-identifying information only in response to a court order or other governmental request, or when Newcastle Hypnotherapy believes in good faith that disclosure is reasonably necessary to protect the property or rights of Newcastle Hypnotherapy, third parties or the public at large. If you are a registered user of an Newcastle Hypnotherapy website and have supplied your email address, Newcastle Hypnotherapy may occasionally send you an email to tell you about new features, solicit your feedback, or just keep you up to date with what’s going on with Newcastle Hypnotherapy and our products. We primarily use our various product blogs to communicate this type of information, so we expect to keep this type of email to a minimum. If you send us a request (for example via a support email or via one of our feedback mechanisms), we reserve the right to publish it in order to help us clarify or respond to your request or to help us support other users. Newcastle Hypnotherapy takes all measures reasonably necessary to protect against the unauthorized access, use, alteration or destruction of potentially personally-identifying and personally-identifying information.\r\n\r\n<strong>Cookies</strong>\r\n\r\nA cookie is a string of information that a website stores on a visitor’s computer, and that the visitor’s browser provides to the website each time the visitor returns. Newcastle Hypnotherapy uses cookies to help us identify and track visitors, their usage of the website, and their website access preferences. Newcastle Hypnotherapy visitors who do not wish to have cookies placed on their computers should set their browsers to refuse cookies before using websites, with the drawback that certain features of these websites may not function properly without the aid of cookies.\r\n\r\n<strong>Business Transfers</strong>\r\n\r\nIf Awesome Motive, or substantially all of its assets were acquired, or in the unlikely event that Newcastle Hypnotherapy goes out of business, user information would be one of the assets that is transferred or acquired by a third party. You acknowledge that such transfers may occur, and that any acquirer of Newcastle Hypnotherapy may continue to use your personal information as set forth in this policy.\r\n\r\n<strong>Ads</strong>\r\n\r\nAds appearing on any of our websites may be delivered to users by advertising partners, who may set cookies. These cookies allow the ad server to recognize your computer each time they send you an online advertisement to compile information about you or others who use your computer. This information allows ad networks to, among other things, deliver targeted advertisements that they believe will be of most interest to you. This Privacy Policy covers the use of cookies by Newcastle Hypnotherapy and does not cover the use of cookies by any advertisers.\r\n\r\n<strong>Comments</strong>\r\n\r\nComments and other content submitted to Akismet anti-spam service are not saved on our servers unless they were marked as false positives, in which case we store them long enough to use them to improve the service to avoid future false positives.\r\n\r\n<strong>Privacy Policy Changes</strong>\r\n\r\nAlthough most changes are likely to be minor, Newcastle Hypnotherapy may change its Privacy Policy from time to time, We encourage visitors to frequently check this page for any changes to its Privacy Policy. Your continued use of this site after any change in this Privacy Policy will constitute your acceptance of such change.\r\n\r\n</div>\r\n</article>','Privacy Policy','','inherit','closed','closed','','892-revision-v1','','','2018-05-22 08:44:13','2018-05-22 08:44:13','',892,'http://www.newcastle-hypnotherapy.com/892-revision-v1/',0,'revision','',0),(896,1,'2018-05-22 08:51:27','2018-05-22 08:51:27','relax newcastle hypnotherapy','relax newcastle hypnotherapy','','inherit','open','closed','','relax-newcastle-hypnotherapy','','','2018-05-22 08:51:49','2018-05-22 08:51:49','',892,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/relax-newcastle-hypnotherapy.jpg',0,'attachment','image/jpeg',0),(897,1,'2018-05-22 08:51:54','2018-05-22 08:51:54','<article class=\"page type-page entry\"><header class=\"entry-header\">\n<h1 class=\"entry-title\"> <img class=\"alignleft size-medium wp-image-896\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/relax-newcastle-hypnotherapy-300x225.jpg\" alt=\"relax newcastle hypnotherapy\" width=\"300\" height=\"225\" /></h1>\n</header>\n<div class=\"entry-content\">\n\nYour privacy is very important to us. We do not store any sensitive data online and we want you to feel comfortable in all respects when using our services.\n\nHere at Newcastle Hypnotherapy we have a few fundamental principles that we follow:\n<ul>\n 	<li>We don’t ask you for personal information unless we truly need it.</li>\n 	<li>We don’t share your personal information with anyone.</li>\n 	<li>We don’t store personal information on our website or server unless you sign up for one of our newsletters and then we only store your name and your emaill address. This is for our use only.</li>\n</ul>\n<strong>Website Visitors</strong>\n\nLike most website operators, Newcastle Hypnotherapy collects non-personally-identifying information of the sort that web browsers and servers typically make available, such as the browser type, language preference, referring site, and the date and time of each visitor request. Newcastle Hypnotherapy’s purpose in collecting non-personally identifying information is to better understand how Newcastle Hypnotherapy’s visitors use its website. From time to time, Newcastle Hypnotherapy may release non-personally-identifying information in the aggregate, e.g., by publishing a report on trends in the usage of its website.\n\nNewcastle Hypnotherapy also collects potentially personally-identifying information like Internet Protocol (IP) addresses for logged in users and for users leaving comments on our blogs. Newcastle Hypnotherapy only discloses logged in user and commenter IP addresses under the same circumstances that it uses and discloses personally-identifying information as described below, except that blog commenter IP addresses are visible and disclosed to the administrators of the blog where the comment was left.\n\n<strong>Gathering of Personally-Identifying Information</strong>\n\nCertain visitors to Newcastle Hypnotherapy’s websites choose to interact with us in ways that require us to gather personally-identifying information. The amount and type of information that we gather depends on the nature of the interaction. For example, we ask visitors who comment on our blog to provide a username and email address. Those who wish to receive updates via email, we collect their emails. In each case, Newcastle Hypnotherapy collects such information only insofar as is necessary or appropriate to fulfill the purpose of the visitor’s interaction with us. Newcastle Hypnotherapy does not disclose personally-identifying information other than as described below. And visitors can always refuse to supply personally-identifying information, with the caveat that it may prevent them from engaging in certain website-related activities.\n\n<strong>Aggregated Statistics</strong>\n\nNewcastle Hypnotherapy may collect statistics about the behavior of visitors to its websites. For instance, we may monitor the most popular pages on the list25.com site or use spam screened by the Akismet service to help identify spam. We may display this information publicly or provide it to others. However, Newcastle Hypnotherapye does not disclose personally-identifying information other than as described below.\n\n<strong>Protection of Certain Personally-Identifying Information</strong>\n\nNewcastle Hypnotherapy discloses potentially personally-identifying and personally-identifying information only to those of its employees, contractors and affiliated organizations that (i) need to know that information in order to process it on Newcastle Hypnotherapy’s behalf or to provide services available at Newcastle Hypnotherapys websites, and (ii) that have agreed not to disclose it to others. Some of those employees, contractors and affiliated organizations may be located outside of your home country; by using Newcastle Hypnotherapy’s websites, you consent to the transfer of such information to them. Newcastle Hypnotherapy will not rent or sell potentially personally-identifying and personally-identifying information to anyone. Other than to its employees, contractors and affiliated organizations, as described above, Newcastle Hypnotherapy discloses potentially personally-identifying and personally-identifying information only in response to a court order or other governmental request, or when Newcastle Hypnotherapy believes in good faith that disclosure is reasonably necessary to protect the property or rights of Newcastle Hypnotherapy, third parties or the public at large. If you are a registered user of an Newcastle Hypnotherapy website and have supplied your email address, Newcastle Hypnotherapy may occasionally send you an email to tell you about new features, solicit your feedback, or just keep you up to date with what’s going on with Newcastle Hypnotherapy and our products. We primarily use our various product blogs to communicate this type of information, so we expect to keep this type of email to a minimum. If you send us a request (for example via a support email or via one of our feedback mechanisms), we reserve the right to publish it in order to help us clarify or respond to your request or to help us support other users. Newcastle Hypnotherapy takes all measures reasonably necessary to protect against the unauthorized access, use, alteration or destruction of potentially personally-identifying and personally-identifying information.\n\n<strong>Cookies</strong>\n\nA cookie is a string of information that a website stores on a visitor’s computer, and that the visitor’s browser provides to the website each time the visitor returns. Newcastle Hypnotherapy uses cookies to help us identify and track visitors, their usage of the website, and their website access preferences. Newcastle Hypnotherapy visitors who do not wish to have cookies placed on their computers should set their browsers to refuse cookies before using websites, with the drawback that certain features of these websites may not function properly without the aid of cookies.\n\n<strong>Business Transfers</strong>\n\nIf Awesome Motive, or substantially all of its assets were acquired, or in the unlikely event that Newcastle Hypnotherapy goes out of business, user information would be one of the assets that is transferred or acquired by a third party. You acknowledge that such transfers may occur, and that any acquirer of Newcastle Hypnotherapy may continue to use your personal information as set forth in this policy.\n\n<strong>Ads</strong>\n\nAds appearing on any of our websites may be delivered to users by advertising partners, who may set cookies. These cookies allow the ad server to recognize your computer each time they send you an online advertisement to compile information about you or others who use your computer. This information allows ad networks to, among other things, deliver targeted advertisements that they believe will be of most interest to you. This Privacy Policy covers the use of cookies by Newcastle Hypnotherapy and does not cover the use of cookies by any advertisers.\n\n<strong>Comments</strong>\n\nComments and other content submitted to Akismet anti-spam service are not saved on our servers unless they were marked as false positives, in which case we store them long enough to use them to improve the service to avoid future false positives.\n\n<strong>Privacy Policy Changes</strong>\n\nAlthough most changes are likely to be minor, Newcastle Hypnotherapy may change its Privacy Policy from time to time, We encourage visitors to frequently check this page for any changes to its Privacy Policy. Your continued use of this site after any change in this Privacy Policy will constitute your acceptance of such change.\n\n</div>\n</article>','Privacy Policy','','inherit','closed','closed','','892-autosave-v1','','','2018-05-22 08:51:54','2018-05-22 08:51:54','',892,'http://www.newcastle-hypnotherapy.com/892-autosave-v1/',0,'revision','',0),(898,1,'2018-05-22 08:52:37','2018-05-22 08:52:37','<article class=\"page type-page entry\"><header class=\"entry-header\">\r\n<h1 class=\"entry-title\"> <img class=\"alignleft size-medium wp-image-896\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/relax-newcastle-hypnotherapy-300x225.jpg\" alt=\"relax newcastle hypnotherapy\" width=\"300\" height=\"225\" />Relax. We are looking after you &amp; your privacy.</h1>\r\n</header>\r\n<div class=\"entry-content\">\r\n\r\nYour privacy is very important to us. We do not store any sensitive data online and we want you to feel comfortable in all respects when using our services.\r\n\r\nHere at Newcastle Hypnotherapy we have a few fundamental principles that we follow:\r\n<ul>\r\n 	<li>We don’t ask you for personal information unless we truly need it.</li>\r\n 	<li>We don’t share your personal information with anyone.</li>\r\n 	<li>We don’t store personal information on our website or server unless you sign up for one of our newsletters and then we only store your name and your emaill address. This is for our use only.</li>\r\n</ul>\r\n<strong>Website Visitors</strong>\r\n\r\nLike most website operators, Newcastle Hypnotherapy collects non-personally-identifying information of the sort that web browsers and servers typically make available, such as the browser type, language preference, referring site, and the date and time of each visitor request. Newcastle Hypnotherapy’s purpose in collecting non-personally identifying information is to better understand how Newcastle Hypnotherapy’s visitors use its website. From time to time, Newcastle Hypnotherapy may release non-personally-identifying information in the aggregate, e.g., by publishing a report on trends in the usage of its website.\r\n\r\nNewcastle Hypnotherapy also collects potentially personally-identifying information like Internet Protocol (IP) addresses for logged in users and for users leaving comments on our blogs. Newcastle Hypnotherapy only discloses logged in user and commenter IP addresses under the same circumstances that it uses and discloses personally-identifying information as described below, except that blog commenter IP addresses are visible and disclosed to the administrators of the blog where the comment was left.\r\n\r\n<strong>Gathering of Personally-Identifying Information</strong>\r\n\r\nCertain visitors to Newcastle Hypnotherapy’s websites choose to interact with us in ways that require us to gather personally-identifying information. The amount and type of information that we gather depends on the nature of the interaction. For example, we ask visitors who comment on our blog to provide a username and email address. Those who wish to receive updates via email, we collect their emails. In each case, Newcastle Hypnotherapy collects such information only insofar as is necessary or appropriate to fulfill the purpose of the visitor’s interaction with us. Newcastle Hypnotherapy does not disclose personally-identifying information other than as described below. And visitors can always refuse to supply personally-identifying information, with the caveat that it may prevent them from engaging in certain website-related activities.\r\n\r\n<strong>Aggregated Statistics</strong>\r\n\r\nNewcastle Hypnotherapy may collect statistics about the behavior of visitors to its websites. For instance, we may monitor the most popular pages on the list25.com site or use spam screened by the Akismet service to help identify spam. We may display this information publicly or provide it to others. However, Newcastle Hypnotherapye does not disclose personally-identifying information other than as described below.\r\n\r\n<strong>Protection of Certain Personally-Identifying Information</strong>\r\n\r\nNewcastle Hypnotherapy discloses potentially personally-identifying and personally-identifying information only to those of its employees, contractors and affiliated organizations that (i) need to know that information in order to process it on Newcastle Hypnotherapy’s behalf or to provide services available at Newcastle Hypnotherapys websites, and (ii) that have agreed not to disclose it to others. Some of those employees, contractors and affiliated organizations may be located outside of your home country; by using Newcastle Hypnotherapy’s websites, you consent to the transfer of such information to them. Newcastle Hypnotherapy will not rent or sell potentially personally-identifying and personally-identifying information to anyone. Other than to its employees, contractors and affiliated organizations, as described above, Newcastle Hypnotherapy discloses potentially personally-identifying and personally-identifying information only in response to a court order or other governmental request, or when Newcastle Hypnotherapy believes in good faith that disclosure is reasonably necessary to protect the property or rights of Newcastle Hypnotherapy, third parties or the public at large. If you are a registered user of an Newcastle Hypnotherapy website and have supplied your email address, Newcastle Hypnotherapy may occasionally send you an email to tell you about new features, solicit your feedback, or just keep you up to date with what’s going on with Newcastle Hypnotherapy and our products. We primarily use our various product blogs to communicate this type of information, so we expect to keep this type of email to a minimum. If you send us a request (for example via a support email or via one of our feedback mechanisms), we reserve the right to publish it in order to help us clarify or respond to your request or to help us support other users. Newcastle Hypnotherapy takes all measures reasonably necessary to protect against the unauthorized access, use, alteration or destruction of potentially personally-identifying and personally-identifying information.\r\n\r\n<strong>Cookies</strong>\r\n\r\nA cookie is a string of information that a website stores on a visitor’s computer, and that the visitor’s browser provides to the website each time the visitor returns. Newcastle Hypnotherapy uses cookies to help us identify and track visitors, their usage of the website, and their website access preferences. Newcastle Hypnotherapy visitors who do not wish to have cookies placed on their computers should set their browsers to refuse cookies before using websites, with the drawback that certain features of these websites may not function properly without the aid of cookies.\r\n\r\n<strong>Business Transfers</strong>\r\n\r\nIf Awesome Motive, or substantially all of its assets were acquired, or in the unlikely event that Newcastle Hypnotherapy goes out of business, user information would be one of the assets that is transferred or acquired by a third party. You acknowledge that such transfers may occur, and that any acquirer of Newcastle Hypnotherapy may continue to use your personal information as set forth in this policy.\r\n\r\n<strong>Ads</strong>\r\n\r\nAds appearing on any of our websites may be delivered to users by advertising partners, who may set cookies. These cookies allow the ad server to recognize your computer each time they send you an online advertisement to compile information about you or others who use your computer. This information allows ad networks to, among other things, deliver targeted advertisements that they believe will be of most interest to you. This Privacy Policy covers the use of cookies by Newcastle Hypnotherapy and does not cover the use of cookies by any advertisers.\r\n\r\n<strong>Comments</strong>\r\n\r\nComments and other content submitted to Akismet anti-spam service are not saved on our servers unless they were marked as false positives, in which case we store them long enough to use them to improve the service to avoid future false positives.\r\n\r\n<strong>Privacy Policy Changes</strong>\r\n\r\nAlthough most changes are likely to be minor, Newcastle Hypnotherapy may change its Privacy Policy from time to time, We encourage visitors to frequently check this page for any changes to its Privacy Policy. Your continued use of this site after any change in this Privacy Policy will constitute your acceptance of such change.\r\n\r\n</div>\r\n</article>','Privacy Policy','','inherit','closed','closed','','892-revision-v1','','','2018-05-22 08:52:37','2018-05-22 08:52:37','',892,'http://www.newcastle-hypnotherapy.com/892-revision-v1/',0,'revision','',0),(899,1,'2018-05-22 08:53:46','2018-05-22 08:53:46','<article class=\"page type-page entry\"><header class=\"entry-header\">\r\n<h1 class=\"entry-title\"> <img class=\"alignleft size-medium wp-image-896\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/relax-newcastle-hypnotherapy-300x225.jpg\" alt=\"relax newcastle hypnotherapy\" width=\"300\" height=\"225\" />Relax. We are looking after you &amp; your privacy.</h1>\r\n</header>\r\n<div class=\"entry-content\">\r\n\r\nYour privacy is very important to us. We do not store any sensitive data online and we want you to feel comfortable in all respects when using our services.\r\n\r\n&nbsp;\r\n\r\nHere at Newcastle Hypnotherapy we have a few fundamental principles that we follow:\r\n<ul>\r\n 	<li>We don’t ask you for personal information unless we truly need it.</li>\r\n 	<li>We don’t share your personal information with anyone.</li>\r\n 	<li>We don’t store personal information on our website or server unless you sign up for one of our newsletters and then we only store your name and your emaill address. This is for our use only.</li>\r\n</ul>\r\n<strong>Website Visitors</strong>\r\n\r\nLike most website operators, Newcastle Hypnotherapy collects non-personally-identifying information of the sort that web browsers and servers typically make available, such as the browser type, language preference, referring site, and the date and time of each visitor request. Newcastle Hypnotherapy’s purpose in collecting non-personally identifying information is to better understand how Newcastle Hypnotherapy’s visitors use its website. From time to time, Newcastle Hypnotherapy may release non-personally-identifying information in the aggregate, e.g., by publishing a report on trends in the usage of its website.\r\n\r\nNewcastle Hypnotherapy also collects potentially personally-identifying information like Internet Protocol (IP) addresses for logged in users and for users leaving comments on our blogs. Newcastle Hypnotherapy only discloses logged in user and commenter IP addresses under the same circumstances that it uses and discloses personally-identifying information as described below, except that blog commenter IP addresses are visible and disclosed to the administrators of the blog where the comment was left.\r\n\r\n<strong>Gathering of Personally-Identifying Information</strong>\r\n\r\nCertain visitors to Newcastle Hypnotherapy’s websites choose to interact with us in ways that require us to gather personally-identifying information. The amount and type of information that we gather depends on the nature of the interaction. For example, we ask visitors who comment on our blog to provide a username and email address. Those who wish to receive updates via email, we collect their emails. In each case, Newcastle Hypnotherapy collects such information only insofar as is necessary or appropriate to fulfill the purpose of the visitor’s interaction with us. Newcastle Hypnotherapy does not disclose personally-identifying information other than as described below. And visitors can always refuse to supply personally-identifying information, with the caveat that it may prevent them from engaging in certain website-related activities.\r\n\r\n<strong>Aggregated Statistics</strong>\r\n\r\nNewcastle Hypnotherapy may collect statistics about the behavior of visitors to its websites. For instance, we may monitor the most popular pages on the list25.com site or use spam screened by the Akismet service to help identify spam. We may display this information publicly or provide it to others. However, Newcastle Hypnotherapye does not disclose personally-identifying information other than as described below.\r\n\r\n<strong>Protection of Certain Personally-Identifying Information</strong>\r\n\r\nNewcastle Hypnotherapy discloses potentially personally-identifying and personally-identifying information only to those of its employees, contractors and affiliated organizations that (i) need to know that information in order to process it on Newcastle Hypnotherapy’s behalf or to provide services available at Newcastle Hypnotherapys websites, and (ii) that have agreed not to disclose it to others. Some of those employees, contractors and affiliated organizations may be located outside of your home country; by using Newcastle Hypnotherapy’s websites, you consent to the transfer of such information to them. Newcastle Hypnotherapy will not rent or sell potentially personally-identifying and personally-identifying information to anyone. Other than to its employees, contractors and affiliated organizations, as described above, Newcastle Hypnotherapy discloses potentially personally-identifying and personally-identifying information only in response to a court order or other governmental request, or when Newcastle Hypnotherapy believes in good faith that disclosure is reasonably necessary to protect the property or rights of Newcastle Hypnotherapy, third parties or the public at large. If you are a registered user of an Newcastle Hypnotherapy website and have supplied your email address, Newcastle Hypnotherapy may occasionally send you an email to tell you about new features, solicit your feedback, or just keep you up to date with what’s going on with Newcastle Hypnotherapy and our products. We primarily use our various product blogs to communicate this type of information, so we expect to keep this type of email to a minimum. If you send us a request (for example via a support email or via one of our feedback mechanisms), we reserve the right to publish it in order to help us clarify or respond to your request or to help us support other users. Newcastle Hypnotherapy takes all measures reasonably necessary to protect against the unauthorized access, use, alteration or destruction of potentially personally-identifying and personally-identifying information.\r\n\r\n<strong>Cookies</strong>\r\n\r\nA cookie is a string of information that a website stores on a visitor’s computer, and that the visitor’s browser provides to the website each time the visitor returns. Newcastle Hypnotherapy uses cookies to help us identify and track visitors, their usage of the website, and their website access preferences. Newcastle Hypnotherapy visitors who do not wish to have cookies placed on their computers should set their browsers to refuse cookies before using websites, with the drawback that certain features of these websites may not function properly without the aid of cookies.\r\n\r\n<strong>Business Transfers</strong>\r\n\r\nIf Awesome Motive, or substantially all of its assets were acquired, or in the unlikely event that Newcastle Hypnotherapy goes out of business, user information would be one of the assets that is transferred or acquired by a third party. You acknowledge that such transfers may occur, and that any acquirer of Newcastle Hypnotherapy may continue to use your personal information as set forth in this policy.\r\n\r\n<strong>Ads</strong>\r\n\r\nAds appearing on any of our websites may be delivered to users by advertising partners, who may set cookies. These cookies allow the ad server to recognize your computer each time they send you an online advertisement to compile information about you or others who use your computer. This information allows ad networks to, among other things, deliver targeted advertisements that they believe will be of most interest to you. This Privacy Policy covers the use of cookies by Newcastle Hypnotherapy and does not cover the use of cookies by any advertisers.\r\n\r\n<strong>Comments</strong>\r\n\r\nComments and other content submitted to Akismet anti-spam service are not saved on our servers unless they were marked as false positives, in which case we store them long enough to use them to improve the service to avoid future false positives.\r\n\r\n<strong>Privacy Policy Changes</strong>\r\n\r\nAlthough most changes are likely to be minor, Newcastle Hypnotherapy may change its Privacy Policy from time to time, We encourage visitors to frequently check this page for any changes to its Privacy Policy. Your continued use of this site after any change in this Privacy Policy will constitute your acceptance of such change.\r\n\r\n</div>\r\n</article>','Privacy Policy','','inherit','closed','closed','','892-revision-v1','','','2018-05-22 08:53:46','2018-05-22 08:53:46','',892,'http://www.newcastle-hypnotherapy.com/892-revision-v1/',0,'revision','',0),(900,1,'2018-05-22 09:01:48','2018-05-22 09:01:48','<article class=\"page type-page entry\"><header class=\"entry-header\">\r\n<h1 class=\"entry-title\"> <img class=\"alignleft size-medium wp-image-896\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/relax-newcastle-hypnotherapy-300x225.jpg\" alt=\"relax newcastle hypnotherapy\" width=\"300\" height=\"225\" />Relax.\r\nWe are looking after you &amp; your privacy.</h1>\r\n</header>\r\n<div class=\"entry-content\">\r\n\r\nYour privacy is very important to us. We do not store any sensitive data online and we want you to feel comfortable in all respects when using our services.\r\n\r\n&nbsp;\r\n\r\nHere at Newcastle Hypnotherapy we have a few fundamental principles that we follow:\r\n<ul>\r\n 	<li>We don’t ask you for personal information unless we truly need it.</li>\r\n 	<li>We don’t share your personal information with anyone.</li>\r\n 	<li>We don’t store personal information on our website or server unless you sign up for one of our newsletters and then we only store your name and your emaill address. This is for our use only.</li>\r\n</ul>\r\n<strong>Website Visitors</strong>\r\n\r\nLike most website operators, Newcastle Hypnotherapy collects non-personally-identifying information of the sort that web browsers and servers typically make available, such as the browser type, language preference, referring site, and the date and time of each visitor request. Newcastle Hypnotherapy’s purpose in collecting non-personally identifying information is to better understand how Newcastle Hypnotherapy’s visitors use its website. From time to time, Newcastle Hypnotherapy may release non-personally-identifying information in the aggregate, e.g., by publishing a report on trends in the usage of its website.\r\n\r\nNewcastle Hypnotherapy also collects potentially personally-identifying information like Internet Protocol (IP) addresses for logged in users and for users leaving comments on our blogs. Newcastle Hypnotherapy only discloses logged in user and commenter IP addresses under the same circumstances that it uses and discloses personally-identifying information as described below, except that blog commenter IP addresses are visible and disclosed to the administrators of the blog where the comment was left.\r\n\r\n<strong>Gathering of Personally-Identifying Information</strong>\r\n\r\nCertain visitors to Newcastle Hypnotherapy’s websites choose to interact with us in ways that require us to gather personally-identifying information. The amount and type of information that we gather depends on the nature of the interaction. For example, we ask visitors who comment on our blog to provide a username and email address. Those who wish to receive updates via email, we collect their emails. In each case, Newcastle Hypnotherapy collects such information only insofar as is necessary or appropriate to fulfill the purpose of the visitor’s interaction with us. Newcastle Hypnotherapy does not disclose personally-identifying information other than as described below. And visitors can always refuse to supply personally-identifying information, with the caveat that it may prevent them from engaging in certain website-related activities.\r\n\r\n<strong>Aggregated Statistics</strong>\r\n\r\nNewcastle Hypnotherapy may collect statistics about the behavior of visitors to its websites. For instance, we may monitor the most popular pages on the list25.com site or use spam screened by the Akismet service to help identify spam. We may display this information publicly or provide it to others. However, Newcastle Hypnotherapye does not disclose personally-identifying information other than as described below.\r\n\r\n<strong>Protection of Certain Personally-Identifying Information</strong>\r\n\r\nNewcastle Hypnotherapy discloses potentially personally-identifying and personally-identifying information only to those of its employees, contractors and affiliated organizations that (i) need to know that information in order to process it on Newcastle Hypnotherapy’s behalf or to provide services available at Newcastle Hypnotherapys websites, and (ii) that have agreed not to disclose it to others. Some of those employees, contractors and affiliated organizations may be located outside of your home country; by using Newcastle Hypnotherapy’s websites, you consent to the transfer of such information to them. Newcastle Hypnotherapy will not rent or sell potentially personally-identifying and personally-identifying information to anyone. Other than to its employees, contractors and affiliated organizations, as described above, Newcastle Hypnotherapy discloses potentially personally-identifying and personally-identifying information only in response to a court order or other governmental request, or when Newcastle Hypnotherapy believes in good faith that disclosure is reasonably necessary to protect the property or rights of Newcastle Hypnotherapy, third parties or the public at large. If you are a registered user of an Newcastle Hypnotherapy website and have supplied your email address, Newcastle Hypnotherapy may occasionally send you an email to tell you about new features, solicit your feedback, or just keep you up to date with what’s going on with Newcastle Hypnotherapy and our products. We primarily use our various product blogs to communicate this type of information, so we expect to keep this type of email to a minimum. If you send us a request (for example via a support email or via one of our feedback mechanisms), we reserve the right to publish it in order to help us clarify or respond to your request or to help us support other users. Newcastle Hypnotherapy takes all measures reasonably necessary to protect against the unauthorized access, use, alteration or destruction of potentially personally-identifying and personally-identifying information.\r\n\r\n<strong>Cookies</strong>\r\n\r\nA cookie is a string of information that a website stores on a visitor’s computer, and that the visitor’s browser provides to the website each time the visitor returns. Newcastle Hypnotherapy uses cookies to help us identify and track visitors, their usage of the website, and their website access preferences. Newcastle Hypnotherapy visitors who do not wish to have cookies placed on their computers should set their browsers to refuse cookies before using websites, with the drawback that certain features of these websites may not function properly without the aid of cookies.\r\n\r\n<strong>Business Transfers</strong>\r\n\r\nIf Awesome Motive, or substantially all of its assets were acquired, or in the unlikely event that Newcastle Hypnotherapy goes out of business, user information would be one of the assets that is transferred or acquired by a third party. You acknowledge that such transfers may occur, and that any acquirer of Newcastle Hypnotherapy may continue to use your personal information as set forth in this policy.\r\n\r\n<strong>Ads</strong>\r\n\r\nAds appearing on any of our websites may be delivered to users by advertising partners, who may set cookies. These cookies allow the ad server to recognize your computer each time they send you an online advertisement to compile information about you or others who use your computer. This information allows ad networks to, among other things, deliver targeted advertisements that they believe will be of most interest to you. This Privacy Policy covers the use of cookies by Newcastle Hypnotherapy and does not cover the use of cookies by any advertisers.\r\n\r\n<strong>Comments</strong>\r\n\r\nComments and other content submitted to Akismet anti-spam service are not saved on our servers unless they were marked as false positives, in which case we store them long enough to use them to improve the service to avoid future false positives.\r\n\r\n<strong>Privacy Policy Changes</strong>\r\n\r\nAlthough most changes are likely to be minor, Newcastle Hypnotherapy may change its Privacy Policy from time to time, We encourage visitors to frequently check this page for any changes to its Privacy Policy. Your continued use of this site after any change in this Privacy Policy will constitute your acceptance of such change.\r\n\r\n</div>\r\n</article>','Privacy Policy','','inherit','closed','closed','','892-revision-v1','','','2018-05-22 09:01:48','2018-05-22 09:01:48','',892,'http://www.newcastle-hypnotherapy.com/892-revision-v1/',0,'revision','',0),(901,1,'2018-05-22 10:17:13','2018-05-22 10:17:13','<article class=\"page type-page entry\"><header class=\"entry-header\">\r\n<h1 class=\"entry-title\"> <img class=\"alignleft size-medium wp-image-896\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/relax-newcastle-hypnotherapy-300x225.jpg\" alt=\"relax newcastle hypnotherapy\" width=\"300\" height=\"225\" />Relax.\r\nWe are looking after you &amp; your privacy.</h1>\r\n</header>\r\n<div class=\"entry-content\">\r\n\r\nYour privacy is very important to us. We do not store any sensitive data online and we want you to feel comfortable in all respects when using our services.\r\n\r\n&nbsp;\r\n\r\nHere at Newcastle Hypnotherapy we have a few fundamental principles that we follow:\r\n<ul>\r\n 	<li>We don’t ask you for personal information unless we truly need it.</li>\r\n 	<li>We don’t share your personal information with anyone.</li>\r\n 	<li>We don’t store personal information on our website or server unless you sign up for one of our newsletters and then we only store your name and your emaill address. This is for our use only.</li>\r\n</ul>\r\n<strong>Website Visitors</strong>\r\n\r\nLike most website operators, Newcastle Hypnotherapy collects non-personally-identifying information of the sort that web browsers and servers typically make available, such as the browser type, language preference, referring site, and the date and time of each visitor request. Newcastle Hypnotherapy’s purpose in collecting non-personally identifying information is to better understand how Newcastle Hypnotherapy’s visitors use its website. From time to time, Newcastle Hypnotherapy may release non-personally-identifying information in the aggregate, e.g., by publishing a report on trends in the usage of its website.\r\n\r\nNewcastle Hypnotherapy also collects potentially personally-identifying information like Internet Protocol (IP) addresses for logged in users and for users leaving comments on our blogs. Newcastle Hypnotherapy only discloses logged in user and commenter IP addresses under the same circumstances that it uses and discloses personally-identifying information as described below, except that blog commenter IP addresses are visible and disclosed to the administrators of the blog where the comment was left.\r\n\r\n<strong>Gathering of Personally-Identifying Information</strong>\r\n\r\nCertain visitors to Newcastle Hypnotherapy’s websites choose to interact with us in ways that require us to gather personally-identifying information. The amount and type of information that we gather depends on the nature of the interaction. For example, we ask visitors who comment on our blog to provide a username and email address. Those who wish to receive updates via email, we collect their emails. In each case, Newcastle Hypnotherapy collects such information only insofar as is necessary or appropriate to fulfill the purpose of the visitor’s interaction with us. Newcastle Hypnotherapy does not disclose personally-identifying information other than as described below. And visitors can always refuse to supply personally-identifying information, with the caveat that it may prevent them from engaging in certain website-related activities.\r\n\r\n<strong>Aggregated Statistics</strong>\r\n\r\nNewcastle Hypnotherapy may collect statistics about the behavior of visitors to its websites. For instance, we may monitor the most popular pages on the list25.com site or use spam screened by the Akismet service to help identify spam. We may display this information publicly or provide it to others. However, Newcastle Hypnotherapy does not disclose personally-identifying information other than as described below.\r\n\r\n<strong>Protection of Certain Personally-Identifying Information</strong>\r\n\r\nNewcastle Hypnotherapy discloses potentially personally-identifying and personally-identifying information only to those of its employees, contractors and affiliated organizations that (i) need to know that information in order to process it on Newcastle Hypnotherapy’s behalf or to provide services available at Newcastle Hypnotherapys websites, and (ii) that have agreed not to disclose it to others. Some of those employees, contractors and affiliated organizations may be located outside of your home country; by using Newcastle Hypnotherapy’s websites, you consent to the transfer of such information to them. Newcastle Hypnotherapy will not rent or sell potentially personally-identifying and personally-identifying information to anyone. Other than to its employees, contractors and affiliated organizations, as described above, Newcastle Hypnotherapy discloses potentially personally-identifying and personally-identifying information only in response to a court order or other governmental request, or when Newcastle Hypnotherapy believes in good faith that disclosure is reasonably necessary to protect the property or rights of Newcastle Hypnotherapy, third parties or the public at large. If you are a registered user of an Newcastle Hypnotherapy website and have supplied your email address, Newcastle Hypnotherapy may occasionally send you an email to tell you about new features, solicit your feedback, or just keep you up to date with what’s going on with Newcastle Hypnotherapy and our products. We primarily use our various product blogs to communicate this type of information, so we expect to keep this type of email to a minimum. If you send us a request (for example via a support email or via one of our feedback mechanisms), we reserve the right to publish it in order to help us clarify or respond to your request or to help us support other users. Newcastle Hypnotherapy takes all measures reasonably necessary to protect against the unauthorized access, use, alteration or destruction of potentially personally-identifying and personally-identifying information.\r\n\r\n<strong>Cookies</strong>\r\n\r\nA cookie is a string of information that a website stores on a visitor’s computer, and that the visitor’s browser provides to the website each time the visitor returns. Newcastle Hypnotherapy uses cookies to help us identify and track visitors, their usage of the website, and their website access preferences. Newcastle Hypnotherapy visitors who do not wish to have cookies placed on their computers should set their browsers to refuse cookies before using websites, with the drawback that certain features of these websites may not function properly without the aid of cookies.\r\n\r\n<strong>Business Transfers</strong>\r\n\r\nIf Awesome Motive, or substantially all of its assets were acquired, or in the unlikely event that Newcastle Hypnotherapy goes out of business, user information would be one of the assets that is transferred or acquired by a third party. You acknowledge that such transfers may occur, and that any acquirer of Newcastle Hypnotherapy may continue to use your personal information as set forth in this policy.\r\n\r\n<strong>Ads</strong>\r\n\r\nAds appearing on any of our websites may be delivered to users by advertising partners, who may set cookies. These cookies allow the ad server to recognize your computer each time they send you an online advertisement to compile information about you or others who use your computer. This information allows ad networks to, among other things, deliver targeted advertisements that they believe will be of most interest to you. This Privacy Policy covers the use of cookies by Newcastle Hypnotherapy and does not cover the use of cookies by any advertisers.\r\n\r\n<strong>Comments</strong>\r\n\r\nComments and other content submitted to Akismet anti-spam service are not saved on our servers unless they were marked as false positives, in which case we store them long enough to use them to improve the service to avoid future false positives.\r\n\r\n<strong>Privacy Policy Changes</strong>\r\n\r\nAlthough most changes are likely to be minor, Newcastle Hypnotherapy may change its Privacy Policy from time to time, We encourage visitors to frequently check this page for any changes to its Privacy Policy. Your continued use of this site after any change in this Privacy Policy will constitute your acceptance of such change.\r\n\r\n</div>\r\n</article>','Privacy Policy','','inherit','closed','closed','','892-revision-v1','','','2018-05-22 10:17:13','2018-05-22 10:17:13','',892,'http://www.newcastle-hypnotherapy.com/892-revision-v1/',0,'revision','',0),(902,1,'2018-05-27 15:57:53','2018-05-27 15:57:53','<h2><strong><span style=\"color: #008000;\">\r\nHey Newcastle! Look Great For The Summer\r\n</span></strong></h2>\r\n<strong>We are giving away just 10 Tickets for only £39, for the Self-Hypnosis for Weight Loss Workshop that is usually £99. Enter you details NOW for your Voucher Code. There are just 10 Tickets at £39.\r\n\r\n\r\n<span style=\"color: #008000;\">\r\n</span></strong>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSelf-Hypnosis For Weight Loss Workshop\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-05-27 15:57:53','2018-05-27 15:57:53','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(903,1,'2018-05-27 16:01:52','2018-05-27 16:01:52','<label> Your Name (required)\r\n    [text* your-name] </label>\r\n\r\n<label> Your Email (required)\r\n    [email* your-email] </label>\r\n\r\n\r\n\r\n[submit \"Please Send My Voucher Now\"]\n1\nNH 10 Tickets Subscriber\n[your-name] <mark@newcastle-hypnotherapy.com>\nmark@newcastle-hypnotherapy.com\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Newcastle Hypnotherapy - Hypnosis Tyneside, Northumberland, Newcastle &amp; Online (http://www.newcastle-hypnotherapy.com)\nReply-To: [your-email]\n\n\n\n\nNewcastle Hypnotherapy - Hypnosis Tyneside, Northumberland, Newcastle & Online \"[your-subject]\"\nNewcastle Hypnotherapy - Hypnosis Tyneside, Northumberland, Newcastle & Online <mark@newcastle-hypnotherapy.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Newcastle Hypnotherapy - Hypnosis Tyneside, Northumberland, Newcastle &amp; Online (http://www.newcastle-hypnotherapy.com)\nReply-To: mark@newcastle-hypnotherapy.com\n\n\n\nThank you. Please check your email for your Voucher Code\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','10 Tickets For Weight Loss Workshop','','publish','closed','closed','','10-tickets-for-weight-loss-workshop','','','2018-05-27 16:05:21','2018-05-27 16:05:21','',0,'http://www.newcastle-hypnotherapy.com/?post_type=wpcf7_contact_form&#038;p=903',0,'wpcf7_contact_form','',0),(905,1,'2018-05-27 16:12:21','2018-05-27 16:12:21','self hypnosis for weight loss','self hypnosis for weight loss','','inherit','open','closed','','self-hypnosis-for-weight-loss-2','','','2018-05-27 16:12:32','2018-05-27 16:12:32','',560,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/self-hypnosis-for-weight-loss.jpg',0,'attachment','image/jpeg',0),(904,1,'2018-05-27 16:03:13','2018-05-27 16:03:13','<h2><strong><span style=\"color: #008000;\">\r\nHey Newcastle! Look Great For The Summer\r\n</span></strong></h2>\r\n<strong>We are giving away just 10 Tickets for only £39, for the Self-Hypnosis for Weight Loss Workshop that is usually £99. Enter you details NOW for your Voucher Code. There are just 10 Tickets at £39.\r\n[contact-form-7 id=\"903\" title=\"10 Tickets For Weight Loss Workshop\"]\r\n</strong>\r\n\r\n<span style=\"color: #008000;\"> </span>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSelf-Hypnosis For Weight Loss Workshop\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-05-27 16:03:13','2018-05-27 16:03:13','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(906,1,'2018-05-27 16:14:20','2018-05-27 16:14:20','<h2><strong><span style=\"color: #008000;\">\r\nHey Newcastle! Look Great For The Summer\r\n</span></strong></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-905\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/self-hypnosis-for-weight-loss-300x162.jpg\" alt=\"self hypnosis for weight loss\" width=\"300\" height=\"162\" />We are giving away just 10 Tickets for only £39.\r\nJoin the  Self-Hypnosis for Weight Loss Workshop, usually £99.\r\nThere are 10 Vouchers only for £39.\r\nEnter you details NOW for your Voucher.\r\n\r\n[contact-form-7 id=\"903\" title=\"10 Tickets For Weight Loss Workshop\"]\r\n</strong>\r\n\r\n<span style=\"color: #008000;\"> </span>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSelf-Hypnosis For Weight Loss Workshop\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-05-27 16:14:20','2018-05-27 16:14:20','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(907,1,'2018-05-27 16:14:51','2018-05-27 16:14:51','<h2><strong><span style=\"color: #008000;\">\r\nHey Newcastle! Look Great For The Summer\r\n</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-905 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/self-hypnosis-for-weight-loss-1024x553.jpg\" alt=\"self hypnosis for weight loss\" width=\"1024\" height=\"553\" />We are giving away just 10 Tickets for only £39.\r\nJoin the  Self-Hypnosis for Weight Loss Workshop, usually £99.\r\nThere are 10 Vouchers only for £39.\r\nEnter you details NOW for your Voucher.</strong>\r\n\r\n[contact-form-7 id=\"903\" title=\"10 Tickets For Weight Loss Workshop\"]\r\n\r\n<span style=\"color: #008000;\"> </span>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSelf-Hypnosis For Weight Loss Workshop\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-05-27 16:14:51','2018-05-27 16:14:51','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(940,1,'2018-06-02 07:26:11','2018-06-02 07:26:11','<h2><strong><span style=\"color: #008000;\">Look Great For The Summer\r\n</span></strong></h2>\r\n<img class=\"alignleft size-medium wp-image-939\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">\r\n\r\n\r\n\r\n\r\nIn this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>To book your place fill in the form above while places are still remaining.</strong>\r\n</span></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-06-02 07:26:11','2018-06-02 07:26:11','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(908,1,'2018-05-27 16:15:52','2018-05-27 16:15:52','<h2><strong><span style=\"color: #008000;\">\r\nHey Newcastle! Look Great For The Summer\r\n</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-905 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/self-hypnosis-for-weight-loss-1024x553.jpg\" alt=\"self hypnosis for weight loss\" width=\"1024\" height=\"553\" />We are giving away just 10 Tickets for only £39. Join the  Self-Hypnosis for Weight Loss Workshop, usually £99.\r\nThere are 10 Vouchers only for £39. Enter you details NOW for your Voucher.\r\nOnce these are gone, everyone else pays £99\r\n</strong>\r\n\r\n[contact-form-7 id=\"903\" title=\"10 Tickets For Weight Loss Workshop\"]\r\n\r\n<span style=\"color: #008000;\"> </span>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSelf-Hypnosis For Weight Loss Workshop\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-05-27 16:15:52','2018-05-27 16:15:52','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(909,1,'2018-05-27 16:18:04','2018-05-27 16:18:04','<h2><strong><span style=\"color: #008000;\">\r\nHey Newcastle! Look Great For The Summer\r\n</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-905 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/self-hypnosis-for-weight-loss-1024x553.jpg\" alt=\"self hypnosis for weight loss\" width=\"1024\" height=\"553\" /><span style=\"color: #ff6600;\">We are giving away just 10 Tickets for only £39.</span> </strong>Join the  Self-Hypnosis for Weight Loss Workshop, usually £99. There are 10 Vouchers only for £39. Enter you details NOW for your Voucher.\r\nOnce these are gone, everyone pays £99<strong>.\r\n</strong>\r\n\r\n[contact-form-7 id=\"903\" title=\"10 Tickets For Weight Loss Workshop\"]\r\n\r\n<span style=\"color: #008000;\"> </span>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSelf-Hypnosis For Weight Loss Workshop\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-05-27 16:18:04','2018-05-27 16:18:04','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(910,1,'2018-05-27 16:18:51','2018-05-27 16:18:51','<h2><strong><span style=\"color: #008000;\">\r\nHey Newcastle! Look Great For The Summer\r\n</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-905 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/self-hypnosis-for-weight-loss-1024x553.jpg\" alt=\"self hypnosis for weight loss\" width=\"1024\" height=\"553\" /><span style=\"color: #ff6600;\">We are giving away just 10 Tickets for only £39.</span> </strong>Join the  Self-Hypnosis for Weight Loss Workshop, usually £99. There are 10 Vouchers only for £39. <strong>Enter </strong>you<strong> details NOW for your Voucher.</strong>\r\n[contact-form-7 id=\"903\" title=\"10 Tickets For Weight Loss Workshop\"]\r\n\r\n<span style=\"color: #008000;\"> </span>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSelf-Hypnosis For Weight Loss Workshop\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-05-27 16:18:51','2018-05-27 16:18:51','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(924,1,'2018-05-27 16:37:15','2018-05-27 16:37:15','<h2><strong><span style=\"color: #008000;\">\r\nHey Newcastle! Look Great For The Summer\r\n</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-905\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/self-hypnosis-for-weight-loss-1024x553.jpg\" alt=\"self hypnosis for weight loss\" width=\"600\" height=\"324\" /><span style=\"color: #ff6600;\">We are giving away just 10 Tickets for only £39 for the </span></strong> <strong>Self-Hypnosis for Weight Loss Workshop, usually £99.</strong>\r\n<span style=\"color: #ff6600;\"><strong>There are only 10 Vouchers for £39.</strong></span>\r\n<span style=\"color: #008000;\"><strong>Enter </strong>your<strong> details NOW for your Voucher.</strong></span>\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"903\" title=\"10 Tickets For Weight Loss Workshop\"]\r\nPlease note, this website is GDPR compliant. Your details will only be used to send your Voucher Code and to keep you informed of our events and news. You can unsubscribe from our emails at any time, using the link shown in every email. You can view <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">our privacy policy here</a>.\r\n\r\n<strong>Self-Hypnosis For Weight Loss Workshop - Saturday 9th June, </strong>1pm<strong> to 4.30pm at The Vault, Wallsend, Newcastle upon Tyne.</strong>\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>To book your place fill in the form above while places are still remaining.</strong>\r\n</span></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-05-27 16:37:15','2018-05-27 16:37:15','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(911,1,'2018-05-27 16:19:30','2018-05-27 16:19:30','<h2><strong><span style=\"color: #008000;\">\r\nHey Newcastle! Look Great For The Summer\r\n</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-905 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/self-hypnosis-for-weight-loss-1024x553.jpg\" alt=\"self hypnosis for weight loss\" width=\"1024\" height=\"553\" /><span style=\"color: #ff6600;\">We are giving away just 10 Tickets for only £39.</span> </strong>Join the  Self-Hypnosis for Weight Loss Workshop, usually £99. There are 10 Vouchers only for £39.\r\n<span style=\"color: #008000;\"><strong>Enter </strong>your<strong> details NOW for your Voucher.</strong></span>\r\n[contact-form-7 id=\"903\" title=\"10 Tickets For Weight Loss Workshop\"]\r\n\r\n<span style=\"color: #008000;\"> </span>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSelf-Hypnosis For Weight Loss Workshop\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-05-27 16:19:30','2018-05-27 16:19:30','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(912,1,'2018-05-27 16:21:03','2018-05-27 16:21:03','<h2><strong><span style=\"color: #008000;\">\r\nHey Newcastle! Look Great For The Summer\r\n</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-905 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/self-hypnosis-for-weight-loss-1024x553.jpg\" alt=\"self hypnosis for weight loss\" width=\"1024\" height=\"553\" /><span style=\"color: #ff6600;\">We are giving away just 10 Tickets for only £39 for the </span></strong> <strong>Self-Hypnosis for Weight Loss Workshop, usually £99.</strong> There are only 10 Vouchers for £39.\r\n<span style=\"color: #008000;\"><strong>Enter </strong>your<strong> details NOW for your Voucher.</strong></span>\r\n[contact-form-7 id=\"903\" title=\"10 Tickets For Weight Loss Workshop\"]\r\n\r\n<span style=\"color: #008000;\"> </span>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSelf-Hypnosis For Weight Loss Workshop\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-05-27 16:21:03','2018-05-27 16:21:03','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(918,1,'2018-05-27 16:30:23','2018-05-27 16:30:23','<h2><strong><span style=\"color: #008000;\">\r\nHey Newcastle! Look Great For The Summer\r\n</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-905\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/self-hypnosis-for-weight-loss-1024x553.jpg\" alt=\"self hypnosis for weight loss\" width=\"600\" height=\"324\" /><span style=\"color: #ff6600;\">We are giving away just 10 Tickets for only £39 for the </span></strong> <strong>Self-Hypnosis for Weight Loss Workshop, usually £99.</strong>\r\n<span style=\"color: #ff6600;\"><strong>There are only 10 Vouchers for £39.</strong></span>\r\n<span style=\"color: #008000;\"><strong>Enter </strong>your<strong> details NOW for your Voucher.</strong></span>\r\n\r\n[contact-form-7 id=\"903\" title=\"10 Tickets For Weight Loss Workshop\"]\r\nPlease note, this website is GDPR compliant. Your details will only be used to send your Voucher Code and to keep you informed of our events and news. You can unsubscribe from our emails at any time, using the link shown in every email. You can view <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">our privacy policy here</a>.\r\n\r\nSelf-Hypnosis For Weight Loss Workshop - Saturday 9th June, 1pm to 4.30pm at The Vault, Wallsend, Newcastle upon Tyne.\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-05-27 16:30:23','2018-05-27 16:30:23','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(913,1,'2018-05-27 16:24:34','2018-05-27 16:24:34','<h2><strong><span style=\"color: #008000;\">\r\nHey Newcastle! Look Great For The Summer\r\n</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-905 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/self-hypnosis-for-weight-loss-1024x553.jpg\" alt=\"self hypnosis for weight loss\" width=\"1024\" height=\"553\" /><span style=\"color: #ff6600;\">We are giving away just 10 Tickets for only £39 for the </span></strong> <strong>Self-Hypnosis for Weight Loss Workshop, usually £99.</strong> There are only 10 Vouchers for £39.\r\n<span style=\"color: #008000;\"><strong>Enter </strong>your<strong> details NOW for your Voucher.</strong></span>\r\n[contact-form-7 id=\"903\" title=\"10 Tickets For Weight Loss Workshop\"]\r\nPlease note, this website is GDPR compliant. Your details will only be used to send your Voucher Code and to keep you informed of our events and news. You can unsubscribe from our emails at any time, using the link shown in every email. You can view <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">our privacy policy here</a>.\r\n\r\n<span style=\"color: #008000;\"> </span>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSelf-Hypnosis For Weight Loss Workshop\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-05-27 16:24:34','2018-05-27 16:24:34','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(914,1,'2018-05-27 16:26:19','2018-05-27 16:26:19','<h2><strong><span style=\"color: #008000;\">\r\nHey Newcastle! Look Great For The Summer\r\n</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-905\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/self-hypnosis-for-weight-loss-1024x553.jpg\" alt=\"self hypnosis for weight loss\" width=\"600\" height=\"324\" /><span style=\"color: #ff6600;\">We are giving away just 10 Tickets for only £39 for the </span></strong> <strong>Self-Hypnosis for Weight Loss Workshop, usually £99.</strong> There are only 10 Vouchers for £39.\r\n<span style=\"color: #008000;\"><strong>Enter </strong>your<strong> details NOW for your Voucher.</strong></span>\r\n[contact-form-7 id=\"903\" title=\"10 Tickets For Weight Loss Workshop\"]\r\nPlease note, this website is GDPR compliant. Your details will only be used to send your Voucher Code and to keep you informed of our events and news. You can unsubscribe from our emails at any time, using the link shown in every email. You can view <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">our privacy policy here</a>.\r\n\r\n<span style=\"color: #008000;\"> </span>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSelf-Hypnosis For Weight Loss Workshop\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-05-27 16:26:19','2018-05-27 16:26:19','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(915,1,'2018-05-27 16:26:59','2018-05-27 16:26:59','<h2><strong><span style=\"color: #008000;\">\r\nHey Newcastle! Look Great For The Summer\r\n</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-905\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/self-hypnosis-for-weight-loss-1024x553.jpg\" alt=\"self hypnosis for weight loss\" width=\"600\" height=\"324\" /><span style=\"color: #ff6600;\">We are giving away just 10 Tickets for only £39 for the </span></strong> <strong>Self-Hypnosis for Weight Loss Workshop, usually £99.</strong>\r\n<span style=\"color: #ff6600;\"><strong>There are only 10 Vouchers for £39.</strong></span>\r\n<span style=\"color: #008000;\"><strong>Enter </strong>your<strong> details NOW for your Voucher.</strong></span>\r\n[contact-form-7 id=\"903\" title=\"10 Tickets For Weight Loss Workshop\"]\r\nPlease note, this website is GDPR compliant. Your details will only be used to send your Voucher Code and to keep you informed of our events and news. You can unsubscribe from our emails at any time, using the link shown in every email. You can view <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">our privacy policy here</a>.\r\n\r\n<span style=\"color: #008000;\"> </span>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSelf-Hypnosis For Weight Loss Workshop\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-05-27 16:26:59','2018-05-27 16:26:59','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(917,1,'2018-05-27 16:29:15','2018-05-27 16:29:15','<h2><strong><span style=\"color: #008000;\">\r\nHey Newcastle! Look Great For The Summer\r\n</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-905\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/self-hypnosis-for-weight-loss-1024x553.jpg\" alt=\"self hypnosis for weight loss\" width=\"600\" height=\"324\" /><span style=\"color: #ff6600;\">We are giving away just 10 Tickets for only £39 for the </span></strong> <strong>Self-Hypnosis for Weight Loss Workshop, usually £99.</strong>\r\n<span style=\"color: #ff6600;\"><strong>There are only 10 Vouchers for £39.</strong></span>\r\n<span style=\"color: #008000;\"><strong>Enter </strong>your<strong> details NOW for your Voucher.</strong></span>\r\n\r\n[contact-form-7 id=\"903\" title=\"10 Tickets For Weight Loss Workshop\"]\r\nPlease note, this website is GDPR compliant. Your details will only be used to send your Voucher Code and to keep you informed of our events and news. You can unsubscribe from our emails at any time, using the link shown in every email. You can view <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">our privacy policy here</a>.\r\n\r\nSelf-Hypnosis For Weight Loss Workshop\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-05-27 16:29:15','2018-05-27 16:29:15','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(916,1,'2018-05-27 16:27:30','2018-05-27 16:27:30','<h2><strong><span style=\"color: #008000;\">\r\nHey Newcastle! Look Great For The Summer\r\n</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-905\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/self-hypnosis-for-weight-loss-1024x553.jpg\" alt=\"self hypnosis for weight loss\" width=\"600\" height=\"324\" /><span style=\"color: #ff6600;\">We are giving away just 10 Tickets for only £39 for the </span></strong> <strong>Self-Hypnosis for Weight Loss Workshop, usually £99.</strong>\r\n<span style=\"color: #ff6600;\"><strong>There are only 10 Vouchers for £39.</strong></span>\r\n<span style=\"color: #008000;\"><strong>Enter </strong>your<strong> details NOW for your Voucher.\r\n\r\n</strong></span>\r\n[contact-form-7 id=\"903\" title=\"10 Tickets For Weight Loss Workshop\"]\r\nPlease note, this website is GDPR compliant. Your details will only be used to send your Voucher Code and to keep you informed of our events and news. You can unsubscribe from our emails at any time, using the link shown in every email. You can view <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">our privacy policy here</a>.\r\n\r\n<span style=\"color: #008000;\"> </span>\r\n<h2><img class=\"alignleft wp-image-627 size-thumbnail\" title=\"self-hypnosis for weight loss\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/woman-2827333_1280-150x150.jpg\" alt=\"self-hypnosis for weight loss\" width=\"150\" height=\"150\" /></h2>\r\nSelf-Hypnosis For Weight Loss Workshop\r\nSaturday 9th June, 1pm to 4.30\r\nat The Vault, Wallsend, Newcastle upon Tyne.\r\n<strong>Book your place below &amp; join the newsletter for future events.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-05-27 16:27:30','2018-05-27 16:27:30','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(919,1,'2018-05-27 16:30:48','2018-05-27 16:30:48','<h2><strong><span style=\"color: #008000;\">\r\nHey Newcastle! Look Great For The Summer\r\n</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-905\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/self-hypnosis-for-weight-loss-1024x553.jpg\" alt=\"self hypnosis for weight loss\" width=\"600\" height=\"324\" /><span style=\"color: #ff6600;\">We are giving away just 10 Tickets for only £39 for the </span></strong> <strong>Self-Hypnosis for Weight Loss Workshop, usually £99.</strong>\r\n<span style=\"color: #ff6600;\"><strong>There are only 10 Vouchers for £39.</strong></span>\r\n<span style=\"color: #008000;\"><strong>Enter </strong>your<strong> details NOW for your Voucher.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"903\" title=\"10 Tickets For Weight Loss Workshop\"]\r\nPlease note, this website is GDPR compliant. Your details will only be used to send your Voucher Code and to keep you informed of our events and news. You can unsubscribe from our emails at any time, using the link shown in every email. You can view <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">our privacy policy here</a>.\r\n\r\nSelf-Hypnosis For Weight Loss Workshop - Saturday 9th June, 1pm to 4.30pm at The Vault, Wallsend, Newcastle upon Tyne.\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-05-27 16:30:48','2018-05-27 16:30:48','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(920,1,'2018-05-27 16:31:06','2018-05-27 16:31:06','<h2><strong><span style=\"color: #008000;\">\r\nHey Newcastle! Look Great For The Summer\r\n</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-905\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/self-hypnosis-for-weight-loss-1024x553.jpg\" alt=\"self hypnosis for weight loss\" width=\"600\" height=\"324\" /><span style=\"color: #ff6600;\">We are giving away just 10 Tickets for only £39 for the </span></strong> <strong>Self-Hypnosis for Weight Loss Workshop, usually £99.</strong>\r\n<span style=\"color: #ff6600;\"><strong>There are only 10 Vouchers for £39.</strong></span>\r\n<span style=\"color: #008000;\"><strong>Enter </strong>your<strong> details NOW for your Voucher.</strong></span>\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"903\" title=\"10 Tickets For Weight Loss Workshop\"]\r\nPlease note, this website is GDPR compliant. Your details will only be used to send your Voucher Code and to keep you informed of our events and news. You can unsubscribe from our emails at any time, using the link shown in every email. You can view <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">our privacy policy here</a>.\r\n\r\nSelf-Hypnosis For Weight Loss Workshop - Saturday 9th June, 1pm to 4.30pm at The Vault, Wallsend, Newcastle upon Tyne.\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-05-27 16:31:06','2018-05-27 16:31:06','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(922,1,'2018-05-27 16:34:58','2018-05-27 16:34:58','<h2><strong><span style=\"color: #008000;\">\r\nHey Newcastle! Look Great For The Summer\r\n</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-905\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/self-hypnosis-for-weight-loss-1024x553.jpg\" alt=\"self hypnosis for weight loss\" width=\"600\" height=\"324\" /><span style=\"color: #ff6600;\">We are giving away just 10 Tickets for only £39 for the </span></strong> <strong>Self-Hypnosis for Weight Loss Workshop, usually £99.</strong>\r\n<span style=\"color: #ff6600;\"><strong>There are only 10 Vouchers for £39.</strong></span>\r\n<span style=\"color: #008000;\"><strong>Enter </strong>your<strong> details NOW for your Voucher.</strong></span>\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"903\" title=\"10 Tickets For Weight Loss Workshop\"]\r\nPlease note, this website is GDPR compliant. Your details will only be used to send your Voucher Code and to keep you informed of our events and news. You can unsubscribe from our emails at any time, using the link shown in every email. You can view <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">our privacy policy here</a>.\r\n\r\n<strong>Self-Hypnosis For Weight Loss Workshop - Saturday 9th June, </strong>1pm<strong> to 4.30pm at The Vault, Wallsend, Newcastle upon Tyne.</strong>\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>To book </strong>you<strong> place fill in the form above while places are still remaining.</strong>\r\n</span></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-05-27 16:34:58','2018-05-27 16:34:58','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(921,1,'2018-05-27 16:32:06','2018-05-27 16:32:06','<h2><strong><span style=\"color: #008000;\">\r\nHey Newcastle! Look Great For The Summer\r\n</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-905\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/self-hypnosis-for-weight-loss-1024x553.jpg\" alt=\"self hypnosis for weight loss\" width=\"600\" height=\"324\" /><span style=\"color: #ff6600;\">We are giving away just 10 Tickets for only £39 for the </span></strong> <strong>Self-Hypnosis for Weight Loss Workshop, usually £99.</strong>\r\n<span style=\"color: #ff6600;\"><strong>There are only 10 Vouchers for £39.</strong></span>\r\n<span style=\"color: #008000;\"><strong>Enter </strong>your<strong> details NOW for your Voucher.</strong></span>\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"903\" title=\"10 Tickets For Weight Loss Workshop\"]\r\nPlease note, this website is GDPR compliant. Your details will only be used to send your Voucher Code and to keep you informed of our events and news. You can unsubscribe from our emails at any time, using the link shown in every email. You can view <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">our privacy policy here</a>.\r\n\r\n<strong>Self-Hypnosis For Weight Loss Workshop - Saturday 9th June, </strong>1pm<strong> to 4.30pm at The Vault, Wallsend, Newcastle upon Tyne.</strong>\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.</strong>\r\n\r\n<span style=\"color: #008000;\">This workshop is just £39 when you <em>book your place</em> before the 5th of May.</span>\r\n<span style=\"color: #ff6600;\">The regular price of £99 will be charged after the 5th of May if spaces are still available.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-05-27 16:32:06','2018-05-27 16:32:06','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(923,1,'2018-05-27 16:36:00','2018-05-27 16:36:00','<h2><strong><span style=\"color: #008000;\">\r\nHey Newcastle! Look Great For The Summer\r\n</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-905\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/self-hypnosis-for-weight-loss-1024x553.jpg\" alt=\"self hypnosis for weight loss\" width=\"600\" height=\"324\" /><span style=\"color: #ff6600;\">We are giving away just 10 Tickets for only £39 for the </span></strong> <strong>Self-Hypnosis for Weight Loss Workshop, usually £99.</strong>\r\n<span style=\"color: #ff6600;\"><strong>There are only 10 Vouchers for £39.</strong></span>\r\n<span style=\"color: #008000;\"><strong>Enter </strong>your<strong> details NOW for your Voucher.</strong></span>\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"903\" title=\"10 Tickets For Weight Loss Workshop\"]\r\nPlease note, this website is GDPR compliant. Your details will only be used to send your Voucher Code and to keep you informed of our events and news. You can unsubscribe from our emails at any time, using the link shown in every email. You can view <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">our privacy policy here</a>.\r\n\r\n<strong>Self-Hypnosis For Weight Loss Workshop - Saturday 9th June, </strong>1pm<strong> to 4.30pm at The Vault, Wallsend, Newcastle upon Tyne.</strong>\r\n<h2><strong><span style=\"color: #008000;\">In this relaxed, enjoyable workshop you will learn:</span>\r\n</strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>To book </strong>your<strong> place fill in the form above while places are still remaining.</strong>\r\n</span></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-05-27 16:36:00','2018-05-27 16:36:00','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(925,1,'2018-05-27 16:52:57','2018-05-27 16:52:57','<h2><strong><span style=\"color: #008000;\">SUCCESS</span></strong></h2>\r\n<strong>Thank you for your payment</strong>\r\n<div class=\"Col\" data-reactid=\"18\">\r\n<div class=\"Description\" data-reactid=\"20\">\r\n<div class=\"returnUrl\" data-reactid=\"22\">\r\n\r\n<strong>Your transaction has been completed and we\'ve emailed you a receipt for your purchase.</strong>\r\n\r\n</div>\r\n<strong>Thanks again</strong>\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n\r\n</div>\r\n</div>\r\n<div class=\"Col\" data-reactid=\"29\"></div>\r\n<div class=\"Col\" data-reactid=\"30\">\r\n<div class=\"Action\" data-reactid=\"31\">\r\n<div class=\"Row\" data-reactid=\"32\">\r\n<div class=\"Col\" data-reactid=\"35\"></div>\r\n</div>\r\n<div class=\"Row\" data-reactid=\"37\">\r\n<div class=\"Col\" data-reactid=\"38\"><form class=\"Form Form--inline\" data-reactid=\"40\">\r\n<div id=\"autoReturn\" class=\"\" data-reactid=\"41\">\r\n<div class=\"Radio\" data-reactid=\"46\"></div>\r\n</div>\r\n</form></div>\r\n</div>\r\n</div>\r\n</div>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /></form>','Thank You For Your Payment','','publish','closed','closed','','925-2','','','2018-09-03 18:41:14','2018-09-03 18:41:14','',0,'http://www.newcastle-hypnotherapy.com/?page_id=925',0,'page','',0),(926,1,'2018-05-27 16:52:57','2018-05-27 16:52:57','Thank You.\r\n\r\n<strong><span style=\"color: #ff6600;\">Your Discount Voucher Code is workshop23*</span></strong>\r\n\r\nThere are two ways to book your place for this workshop.\r\n\r\n1. Call 07568 455 809 between 9am to 5pm , Monday to Friday and quote your discount voucher code.\r\nor\r\n2 Click the Buy Now Button below and pay securely by Paypal or Card.\r\n\r\n<strong><span style=\"color: #008000;\">PLEASE NOTE!</span></strong> There are only 10 Tickets available at £39 each. Once these have been paid for, the discount voucher code is nolonger valid and the remaining workshop places will be charged at £99 as usual.\r\n<strong><span style=\"color: #ff6600;\">This offer is strictly limited to first come, first served.</span></strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />Terms &amp; Conditions of booking are below.\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible.\r\nWe may offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','','','inherit','closed','closed','','925-revision-v1','','','2018-05-27 16:52:57','2018-05-27 16:52:57','',925,'http://www.newcastle-hypnotherapy.com/925-revision-v1/',0,'revision','',0),(927,1,'2018-05-27 16:53:26','2018-05-27 16:53:26','<h2><span style=\"color: #008000;\">Thank You.</span></h2>\r\n<strong><span style=\"color: #ff6600;\">Your Discount Voucher Code is workshop23*</span></strong>\r\n\r\nThere are two ways to book your place for this workshop.\r\n\r\n1. Call 07568 455 809 between 9am to 5pm , Monday to Friday and quote your discount voucher code.\r\nor\r\n2 Click the Buy Now Button below and pay securely by Paypal or Card.\r\n\r\n<strong><span style=\"color: #008000;\">PLEASE NOTE!</span></strong> There are only 10 Tickets available at £39 each. Once these have been paid for, the discount voucher code is nolonger valid and the remaining workshop places will be charged at £99 as usual.\r\n<strong><span style=\"color: #ff6600;\">This offer is strictly limited to first come, first served.</span></strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />Terms &amp; Conditions of booking are below.\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible.\r\nWe may offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','','','inherit','closed','closed','','925-revision-v1','','','2018-05-27 16:53:26','2018-05-27 16:53:26','',925,'http://www.newcastle-hypnotherapy.com/925-revision-v1/',0,'revision','',0),(928,1,'2018-05-27 16:53:48','2018-05-27 16:53:48','<h2><strong><span style=\"color: #008000;\">Thank You. Here is your Voucher Code\r\n</span></strong></h2>\r\n<strong><span style=\"color: #ff6600;\">Your Discount Voucher Code is workshop23*</span></strong>\r\n\r\nThere are two ways to book your place for this workshop.\r\n\r\n1. Call 07568 455 809 between 9am to 5pm , Monday to Friday and quote your discount voucher code.\r\nor\r\n2 Click the Buy Now Button below and pay securely by Paypal or Card.\r\n\r\n<strong><span style=\"color: #008000;\">PLEASE NOTE!</span></strong> There are only 10 Tickets available at £39 each. Once these have been paid for, the discount voucher code is nolonger valid and the remaining workshop places will be charged at £99 as usual.\r\n<strong><span style=\"color: #ff6600;\">This offer is strictly limited to first come, first served.</span></strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />Terms &amp; Conditions of booking are below.\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible.\r\nWe may offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','','','inherit','closed','closed','','925-revision-v1','','','2018-05-27 16:53:48','2018-05-27 16:53:48','',925,'http://www.newcastle-hypnotherapy.com/925-revision-v1/',0,'revision','',0),(929,1,'2018-05-27 16:54:31','2018-05-27 16:54:31','<h2><strong><span style=\"color: #008000;\">Thank You. Here is your Voucher Code\r\n</span></strong></h2>\r\n<strong><span style=\"color: #ff6600;\">Your Discount Voucher Code is workshop23*</span></strong>\r\n\r\nYou can book your place for this workshop in two ways.\r\n\r\n1. Call 07568 455 809 between 9am to 5pm , Monday to Friday and quote your discount voucher code.\r\nor\r\n2 Click the Buy Now Button below and pay securely by Paypal or Card.\r\n\r\n<strong><span style=\"color: #008000;\">PLEASE NOTE!</span></strong> There are only 10 Tickets available at £39 each. Once these have been paid for, the discount voucher code is nolonger valid and the remaining workshop places will be charged at £99 as usual.\r\n<strong><span style=\"color: #ff6600;\">This offer is strictly limited to first come, first served.</span></strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />Terms &amp; Conditions of booking are below.\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible.\r\nWe may offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','','','inherit','closed','closed','','925-revision-v1','','','2018-05-27 16:54:31','2018-05-27 16:54:31','',925,'http://www.newcastle-hypnotherapy.com/925-revision-v1/',0,'revision','',0),(930,1,'2018-05-27 16:55:16','2018-05-27 16:55:16','<h2><strong><span style=\"color: #008000;\">Thank You. Here is your Voucher Code\r\n</span></strong></h2>\r\n<strong><span style=\"color: #ff6600;\">Your Discount Voucher Code is workshop23*</span></strong>\r\n\r\nYou can book your place for this workshop in two ways.\r\n\r\n1. Call 07568 455 809 between 9am to 5pm , Monday to Friday and quote your discount voucher code.\r\nor\r\n2 Click the Buy Now Button below and pay securely by Paypal or Card.\r\n\r\n<strong><span style=\"color: #008000;\">PLEASE NOTE!</span></strong> There are only <span style=\"color: #008000;\"><strong>10 Tickets available at £39 each</strong></span>. Once these have been paid for, the discount voucher code is nolonger valid and the remaining workshop places will be charged at £99 as usual.\r\n<strong><span style=\"color: #ff6600;\">This offer is strictly limited to first come, first served.</span></strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />Terms &amp; Conditions of booking are below.\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible.\r\nWe may offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','','','inherit','closed','closed','','925-revision-v1','','','2018-05-27 16:55:16','2018-05-27 16:55:16','',925,'http://www.newcastle-hypnotherapy.com/925-revision-v1/',0,'revision','',0),(931,1,'2018-05-27 16:55:48','2018-05-27 16:55:48','<h2><strong><span style=\"color: #008000;\">Thank You. Here is your Voucher Code\r\n</span></strong></h2>\r\n<strong><span style=\"color: #ff6600;\">Your Discount Voucher Code is workshop23*</span></strong>\r\n\r\nYou can book your place for this workshop in two ways.\r\n\r\n1. Call 07568 455 809 between 9am to 5pm , Monday to Friday and quote your discount voucher code.\r\nor\r\n2 Click the Buy Now Button below and pay securely by Paypal or Card.\r\n\r\n<strong><span style=\"color: #008000;\">PLEASE NOTE!</span></strong> There are only <span style=\"color: #008000;\"><strong>10 Tickets available at £39 each</strong></span>. Once these have been paid for, the discount voucher code is nolonger valid and the remaining workshop places will be charged at <strong><span style=\"color: #008000;\">£99 as usual.</span></strong>\r\n<strong><span style=\"color: #ff6600;\">This offer is strictly limited to first come, first served.</span></strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />Terms &amp; Conditions of booking are below.\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible.\r\nWe may offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','','','inherit','closed','closed','','925-revision-v1','','','2018-05-27 16:55:48','2018-05-27 16:55:48','',925,'http://www.newcastle-hypnotherapy.com/925-revision-v1/',0,'revision','',0),(932,1,'2018-05-27 16:57:33','2018-05-27 16:57:33','<h2><strong><span style=\"color: #008000;\">Thank You. Here is your Voucher Code\r\n</span></strong></h2>\r\n<strong><span style=\"color: #ff6600;\">Your Discount Voucher Code is workshop23*</span></strong>\r\n\r\nYou can book your place for this workshop in two ways.\r\n\r\n1. Call 07568 455 809 between 9am to 5pm , Monday to Friday and quote your discount voucher code.\r\nor\r\n2 Click the Buy Now Button below and pay securely by Paypal or Card.\r\n\r\n<strong><span style=\"color: #008000;\">PLEASE NOTE!</span></strong> There are only <span style=\"color: #008000;\"><strong>10 Tickets available at £39 each</strong></span>. Once these have been paid for, the discount voucher code is nolonger valid and the remaining workshop places will be charged at <strong><span style=\"color: #008000;\">£99 as usual.</span></strong>\r\n<strong><span style=\"color: #ff6600;\">This offer is strictly limited to those that book their place first.\r\n</span></strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />Terms &amp; Conditions of booking are below.\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible.\r\nWe may offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','','','inherit','closed','closed','','925-revision-v1','','','2018-05-27 16:57:33','2018-05-27 16:57:33','',925,'http://www.newcastle-hypnotherapy.com/925-revision-v1/',0,'revision','',0),(933,1,'2018-09-03 18:40:58','2018-09-03 18:40:58','<h2><strong><span style=\"color: #008000;\">SUCCESS</span></strong></h2>\n<strong>Thank you for your payment</strong>\n<div class=\"Col\" data-reactid=\"18\">\n<div class=\"Description\" data-reactid=\"20\">\n<div class=\"returnUrl\" data-reactid=\"22\">\n\n<strong>Your transaction has been completed and we\'ve emailed you a receipt for your purchase.</strong>\n\n</div>\nThanks again\n\nNewcastle Hypnotherapy\n\n</div>\n</div>\n<div class=\"Col\" data-reactid=\"29\"></div>\n<div class=\"Col\" data-reactid=\"30\">\n<div class=\"Action\" data-reactid=\"31\">\n<div class=\"Row\" data-reactid=\"32\">\n<div class=\"Col\" data-reactid=\"35\"></div>\n</div>\n<div class=\"Row\" data-reactid=\"37\">\n<div class=\"Col\" data-reactid=\"38\"><form class=\"Form Form--inline\" data-reactid=\"40\">\n<div id=\"autoReturn\" class=\"\" data-reactid=\"41\">\n<div class=\"Radio\" data-reactid=\"46\"></div>\n</div>\n</form></div>\n</div>\n</div>\n</div>\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /></form>','Thank You For Your Payment','','inherit','closed','closed','','925-autosave-v1','','','2018-09-03 18:40:58','2018-09-03 18:40:58','',925,'http://www.newcastle-hypnotherapy.com/925-autosave-v1/',0,'revision','',0),(1434,1,'2018-09-03 18:41:14','2018-09-03 18:41:14','<h2><strong><span style=\"color: #008000;\">SUCCESS</span></strong></h2>\r\n<strong>Thank you for your payment</strong>\r\n<div class=\"Col\" data-reactid=\"18\">\r\n<div class=\"Description\" data-reactid=\"20\">\r\n<div class=\"returnUrl\" data-reactid=\"22\">\r\n\r\n<strong>Your transaction has been completed and we\'ve emailed you a receipt for your purchase.</strong>\r\n\r\n</div>\r\n<strong>Thanks again</strong>\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n\r\n</div>\r\n</div>\r\n<div class=\"Col\" data-reactid=\"29\"></div>\r\n<div class=\"Col\" data-reactid=\"30\">\r\n<div class=\"Action\" data-reactid=\"31\">\r\n<div class=\"Row\" data-reactid=\"32\">\r\n<div class=\"Col\" data-reactid=\"35\"></div>\r\n</div>\r\n<div class=\"Row\" data-reactid=\"37\">\r\n<div class=\"Col\" data-reactid=\"38\"><form class=\"Form Form--inline\" data-reactid=\"40\">\r\n<div id=\"autoReturn\" class=\"\" data-reactid=\"41\">\r\n<div class=\"Radio\" data-reactid=\"46\"></div>\r\n</div>\r\n</form></div>\r\n</div>\r\n</div>\r\n</div>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /></form>','Thank You For Your Payment','','inherit','closed','closed','','925-revision-v1','','','2018-09-03 18:41:14','2018-09-03 18:41:14','',925,'https://www.newcastle-hypnotherapy.com/925-revision-v1/',0,'revision','',0),(934,1,'2018-05-27 16:59:20','2018-05-27 16:59:20','<h2><strong><span style=\"color: #008000;\">Thank You. Here is your Voucher Code\r\n</span></strong></h2>\r\n<strong><span style=\"color: #ff6600;\">Your Discount Voucher Code is workshop23*</span></strong>\r\n\r\nYou can book your place for this workshop in two ways.\r\n\r\n1. Call 07568 455 809 between 9am to 5pm , Monday to Friday and quote your discount voucher code.\r\nor\r\n2 Click the Buy Now Button below and pay securely by Paypal or Card.\r\n\r\n<strong><span style=\"color: #008000;\">PLEASE NOTE!</span></strong> There are only <span style=\"color: #008000;\"><strong>10 Tickets available at £39 each</strong></span>.\r\nOnce these have been paid for, the discount voucher code is nolonger valid and the remaining workshop places will be charged at <strong><span style=\"color: #008000;\">£99 as usual.</span></strong>\r\n<strong><span style=\"color: #ff6600;\">This offer is strictly limited to those that book their place first.\r\n</span></strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />Terms &amp; Conditions of booking are below.\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible.\r\nWe may offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','','','inherit','closed','closed','','925-revision-v1','','','2018-05-27 16:59:20','2018-05-27 16:59:20','',925,'http://www.newcastle-hypnotherapy.com/925-revision-v1/',0,'revision','',0),(1433,1,'2018-09-03 18:39:50','2018-09-03 18:39:50','<h2><strong><span style=\"color: #008000;\">SUCCESS</span></strong></h2>\r\n<strong>Thank you for your payment</strong>\r\n<div class=\"Col\" data-reactid=\"18\">\r\n<div class=\"Description\" data-reactid=\"20\">\r\n<div class=\"returnUrl\" data-reactid=\"22\">\r\n\r\n<strong>Your transaction has been completed and we\'ve emailed you a receipt for your purchase.</strong>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"Col\" data-reactid=\"29\"></div>\r\n<div class=\"Col\" data-reactid=\"30\">\r\n<div class=\"Action\" data-reactid=\"31\">\r\n<div class=\"Row\" data-reactid=\"32\">\r\n<div class=\"Col\" data-reactid=\"35\"></div>\r\n</div>\r\n<div class=\"Row\" data-reactid=\"37\">\r\n<div class=\"Col\" data-reactid=\"38\"><form class=\"Form Form--inline\" data-reactid=\"40\">\r\n<div id=\"autoReturn\" class=\"\" data-reactid=\"41\">\r\n<div class=\"Radio\" data-reactid=\"46\"></div>\r\n</div>\r\n</form></div>\r\n</div>\r\n</div>\r\n</div>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /></form>','Thank You For Your Payment','','inherit','closed','closed','','925-revision-v1','','','2018-09-03 18:39:50','2018-09-03 18:39:50','',925,'https://www.newcastle-hypnotherapy.com/925-revision-v1/',0,'revision','',0),(935,1,'2018-05-27 17:51:29','2018-05-27 17:51:29','<h2><strong><span style=\"color: #008000;\">Thank You. Here is your Voucher Code\r\n</span></strong></h2>\r\n<strong><span style=\"color: #ff6600;\">Your Discount Voucher Code is workshop23*</span></strong>\r\n\r\nYou can book your place for this workshop in two ways.\r\n\r\n1. Call 07568 455 809 between 9am to 5pm , Monday to Friday and quote your discount voucher code.\r\nor\r\n2<strong> Click the Buy Now Button below and pay securely by Paypal or Card.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">PLEASE NOTE!</span></strong> There are only <span style=\"color: #008000;\"><strong>10 Tickets available at £39 each</strong></span>.\r\nOnce these have been paid for, the discount voucher code is nolonger valid and the remaining workshop places will be charged at <strong><span style=\"color: #008000;\">£99 as usual.</span></strong>\r\n<strong><span style=\"color: #ff6600;\">This offer is strictly limited to those that book their place first.\r\n</span></strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />Terms &amp; Conditions of booking are below.\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible.\r\nWe may offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','','','inherit','closed','closed','','925-revision-v1','','','2018-05-27 17:51:29','2018-05-27 17:51:29','',925,'http://www.newcastle-hypnotherapy.com/925-revision-v1/',0,'revision','',0),(936,1,'2018-05-27 17:53:14','2018-05-27 17:53:14','<h2><strong><span style=\"color: #008000;\">Thank You. Here is your Voucher Code\r\n</span></strong></h2>\r\n<strong><span style=\"color: #ff6600;\">Your Discount Voucher Code is workshop23*</span></strong>\r\n\r\nYou can book your place for this workshop in two ways.\r\n\r\n1. Call 07568 455 809 between 9am to 5pm , Monday to Friday and quote your discount voucher code.\r\nor\r\n2<strong> Click the Buy Now Button below and pay securely by Paypal or Card.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">PLEASE NOTE!</span></strong> There are only <span style=\"color: #008000;\"><strong>10 Tickets available at £39 each</strong></span>.\r\n<strong>Don\'t Worry!</strong> Once these have been snapped up you can still attend this workshop at <strong><span style=\"color: #008000;\">the regular price of £99 as usual.</span></strong>\r\n<strong><span style=\"color: #ff6600;\">This offer is strictly limited to those that book their place first.\r\n</span></strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />Terms &amp; Conditions of booking are below.\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible.\r\nWe may offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','','','inherit','closed','closed','','925-revision-v1','','','2018-05-27 17:53:14','2018-05-27 17:53:14','',925,'http://www.newcastle-hypnotherapy.com/925-revision-v1/',0,'revision','',0),(939,1,'2018-06-02 07:25:53','2018-06-02 07:25:53','','self hypnosis practice group','','inherit','open','closed','','13892001_548866268633789_4421031440901787475_n-1','','','2019-02-24 17:59:35','2019-02-24 17:59:35','',560,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1.jpg',0,'attachment','image/jpeg',0),(942,1,'2018-06-02 07:27:03','2018-06-02 07:27:03','<h2><strong><span style=\"color: #008000;\">Look Great For The Summer\r\n</span></strong></h2>\r\n<img class=\"alignleft size-medium wp-image-939\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />\r\n\r\n&nbsp;\r\n<h2>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIn this relaxed, enjoyable workshop you will learn:</h2>\r\n<h2><strong> </strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>To book your place fill in the form above while places are still remaining.</strong>\r\n</span></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-06-02 07:27:03','2018-06-02 07:27:03','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(943,1,'2018-06-02 07:27:29','2018-06-02 07:27:29','<h2><strong><span style=\"color: #008000;\">Look Great For The Summer\r\n</span></strong></h2>\r\n<img class=\"alignleft wp-image-939 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" />\r\n\r\n&nbsp;\r\n\r\nIn this relaxed, enjoyable workshop you will learn:\r\n<h2><strong> </strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>To book your place fill in the form above while places are still remaining.</strong>\r\n</span></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-06-02 07:27:29','2018-06-02 07:27:29','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(944,1,'2018-06-02 07:27:56','2018-06-02 07:27:56','<h2><strong><span style=\"color: #008000;\">Look Great For The Summer\r\n</span></strong></h2>\r\n<img class=\"alignleft wp-image-939 size-full\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1.jpg\" alt=\"\" width=\"552\" height=\"369\" />\r\n\r\n&nbsp;\r\n\r\nIn this relaxed, enjoyable workshop you will learn:\r\n<h2><strong> </strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>To book your place fill in the form above while places are still remaining.</strong>\r\n</span></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-06-02 07:27:56','2018-06-02 07:27:56','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(945,1,'2018-06-02 07:28:10','2018-06-02 07:28:10','<h2><strong><span style=\"color: #008000;\">Look Great For The Summer\r\n</span></strong></h2>\r\n<img class=\"wp-image-939 size-full aligncenter\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1.jpg\" alt=\"\" width=\"552\" height=\"369\" />\r\n\r\n&nbsp;\r\n\r\nIn this relaxed, enjoyable workshop you will learn:\r\n<h2><strong> </strong></h2>\r\n<ul>\r\n 	<li>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>To book your place fill in the form above while places are still remaining.</strong>\r\n</span></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-06-02 07:28:10','2018-06-02 07:28:10','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(946,1,'2018-06-02 07:29:36','2018-06-02 07:29:36','<h2><strong><span style=\"color: #008000;\">Look Great For The Summer\r\n</span></strong></h2>\r\n<img class=\"wp-image-939 size-full aligncenter\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1.jpg\" alt=\"\" width=\"552\" height=\"369\" />\r\n<h2><strong><span style=\"color: #008000;\">Self Hypnosis for Weight Loss Workshop - Saturday 9th June.</span></strong></h2>\r\nIn this relaxed, enjoyable workshop you will learn:\r\n<ul>\r\n 	<li><strong> </strong>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>To book your place fill in the form above while places are still remaining.</strong>\r\n</span></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-06-02 07:29:36','2018-06-02 07:29:36','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(947,1,'2018-06-02 07:30:52','2018-06-02 07:30:52','<h2><strong><span style=\"color: #008000;\">Look Great For The Summer\r\n</span></strong></h2>\r\n<img class=\"wp-image-939 size-full aligncenter\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1.jpg\" alt=\"\" width=\"552\" height=\"369\" />\r\n<h2><strong><span style=\"color: #008000;\">Self Hypnosis for Weight Loss Workshop - Saturday 9th June.</span></strong></h2>\r\nIn this relaxed, enjoyable workshop you will learn:\r\n<ul>\r\n 	<li><strong> </strong>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>You can book your place below today.</strong>\r\n</span></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-06-02 07:30:52','2018-06-02 07:30:52','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(948,1,'2018-06-04 20:11:41','2018-06-04 20:11:41','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with the Stop Smoking Hypnosis Guaranteed program.\r\nInterestingly, smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\r\n</li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\r\n</li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\r\n</li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. The University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\r\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in an email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis</b><strong> - Your First Steps.</strong></span><b>\r\n</b></h2>\r\nYour first step is to arrange a free phone consultation to see if this stop smoking program is right for you.\r\nCall me today on 07568 455 809 or complete the form below to arrange your consultation and explore how Stop Smoking Guaranteed can work for you.\r\nDuring this relaxed consultation, I will explain how your stop smoking hypnosis sessions will work and evaluate exactly what you would like from this program. Hypnosis is a wonderful experience that will leave you feeling relaxed, calm and confident with the ability to take control.\r\n\r\nUsually, I work with clients from our locations in Newcastle upon Tyne, Northumberland and even Online.\r\n\r\n&nbsp;\r\n\r\nCall me today on 07568 455 809 or complete the form below and please let me know the best time to call you back.\r\n\r\n[wpforms id=\"35\"]\r\n\r\nNewcastle Hypnotherapy offers a range of Hypnosis &amp; NLP services throughout the North East and can help with a wide range of issues, problems and challenges.\r\n\r\nWe are proud members of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>.','STOP SMOKING HYPNOSIS','','publish','closed','closed','','stop-smoking-hypnosis-guaranteed','','','2019-01-06 18:42:53','2019-01-06 18:42:53','',1451,'http://www.newcastle-hypnotherapy.com/?page_id=948',11,'page','',0),(949,1,'2018-06-02 17:47:26','2018-06-02 17:47:26','','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-02 17:47:26','2018-06-02 17:47:26','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(950,1,'2018-06-02 18:07:38','2018-06-02 18:07:38','Stop Smoking Hypnosis, Gauranteed!\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with Hypnotherapy.','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-02 18:07:38','2018-06-02 18:07:38','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(951,1,'2018-06-02 18:08:33','2018-06-02 18:08:33','Stop Smoking Hypnosis, Gauranteed!\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with stop smoking hypnotherapy.','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-02 18:08:33','2018-06-02 18:08:33','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(952,1,'2018-06-02 18:09:05','2018-06-02 18:09:05','Stop Smoking Hypnosis, Gauranteed!\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with stop smoking hypnotherapy, gauranteed.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-02 18:09:05','2018-06-02 18:09:05','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(953,1,'2018-06-02 18:09:44','2018-06-02 18:09:44','Stop Smoking Hypnosis Guaranteed!\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with stop smoking hypnotherapy, gauranteed.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-02 18:09:44','2018-06-02 18:09:44','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(954,1,'2018-06-02 18:10:09','2018-06-02 18:10:09','Stop Smoking Hypnosis Guaranteed!\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with stop smoking hypnotherapy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-02 18:10:09','2018-06-02 18:10:09','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(956,1,'2018-06-03 19:25:35','2018-06-03 19:25:35','<h2><strong><span style=\"color: #008000;\">Look Great For The Summer\r\n</span></strong></h2>\r\n<img class=\"wp-image-939 size-full aligncenter\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1.jpg\" alt=\"\" width=\"552\" height=\"369\" />\r\n<h2><strong><span style=\"color: #008000;\">Self Hypnosis for Weight Loss Workshop - Saturday 9th June.</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><strong>Last Chance To Book You Place - Book Below.</strong></span>\r\n\r\nIn this relaxed, enjoyable workshop you will learn:\r\n<ul>\r\n 	<li><strong> </strong>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>You can book your place below today.</strong>\r\n</span></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-06-03 19:25:35','2018-06-03 19:25:35','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(955,1,'2018-06-03 19:25:15','2018-06-03 19:25:15','<h2><strong><span style=\"color: #008000;\">Look Great For The Summer\r\n</span></strong></h2>\r\n<img class=\"wp-image-939 size-full aligncenter\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1.jpg\" alt=\"\" width=\"552\" height=\"369\" />\r\n<h2><strong><span style=\"color: #008000;\">Self Hypnosis for Weight Loss Workshop - Saturday 9th June.</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><strong>Last Chance To Book You Place - Book Below.</strong></span>\r\n\r\nIn this relaxed, enjoyable workshop you will learn:\r\n<ul>\r\n 	<li><strong> </strong>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>You can book your place below today.</strong>\r\n</span></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">3 Questions to ask yourself now\r\n</span></strong></h2>\r\n1. Are you serious about losing weight at a pace comfortable for you?\r\n2. Are you serious about maintaining your healthy weight long term?\r\n3. Are you wanting to feel good about food and weight loss?\r\n\r\n<strong>Now, if your answer is YES to all 3 then book your place by clicking below. You can pay by card or Paypal.\r\nYou can also call on 07568 455 809 if you have any questions.</strong>\r\nTerms an conditions can be found at the bottom of this page.\r\n\r\n<strong><span style=\"color: #ff6600;\">Please only <em>book your place</em> if you are serious about Healthy Weight Loss</span></strong>\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-06-03 19:25:15','2018-06-03 19:25:15','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(958,3,'2018-06-04 16:26:22','2018-06-04 16:26:22','Newcastle Hypnotherapy','Newcastle Hypnotherapy','','inherit','open','closed','','newcastle-hypnotherapy','','','2018-06-04 16:26:32','2018-06-04 16:26:32','',0,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/Newcastle-Hypnotherapy.jpg',0,'attachment','image/jpeg',0),(959,1,'2018-06-04 18:54:21','2018-06-04 18:54:21','Stop Smoking Hypnosis Guaranteed!\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h4><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></h4>\r\n<div class=\"wpb_text_column wpb_content_element \">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element \">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinent from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element \">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element \">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower.</b></li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" target=\"_blank\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element \">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element \">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>81% Reported They Had Stopped Smoking After Hypnosis</b></li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 18:54:21','2018-06-04 18:54:21','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(960,1,'2018-06-04 18:55:51','2018-06-04 18:55:51','<label> Your Name (required)\r\n    [text* your-name] </label>\r\n\r\n<label> Your Email (required)\r\n    [email* your-email] </label>\r\n\r\n\r\n[submit \"Get Instant Access\"]\n1\n\"Stop Smoking\"\n<mark@newcastle-hypnotherapy.com>\nmark@newcastle-hypnotherapy.com\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on  (http://www.newcastle-hypnotherapy.com)\nReply-To: [your-email]\n\n\n\n\n\"[your-subject]\"\n<mark@newcastle-hypnotherapy.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on  (http://www.newcastle-hypnotherapy.com)\nReply-To: mark@newcastle-hypnotherapy.com\n\n\n\nThank you. Please check your email for your information.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Kick The Habit - Stop Smoking Report','','publish','closed','closed','','untitled','','','2018-06-04 19:08:03','2018-06-04 19:08:03','',0,'http://www.newcastle-hypnotherapy.com/?post_type=wpcf7_contact_form&#038;p=960',0,'wpcf7_contact_form','',0),(961,1,'2018-06-04 19:01:07','2018-06-04 19:01:07','Stop Smoking Hypnosis Guaranteed!\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h4><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></h4>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower.</b></li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>81% Reported They Had Stopped Smoking After Hypnosis</b></li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:01:07','2018-06-04 19:01:07','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(962,1,'2018-06-04 19:02:24','2018-06-04 19:02:24','Stop Smoking Hypnosis Guaranteed!\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h4><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></h4>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower.</b></li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>81% Reported They Had Stopped Smoking After Hypnosis</b></li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<strong>Enter your email address here to\r\nReceive the FREE \"Kick the Habit\"\r\nStop Smoking Report</strong>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:02:24','2018-06-04 19:02:24','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(963,1,'2018-06-04 19:03:01','2018-06-04 19:03:01','Stop Smoking Hypnosis Guaranteed!\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h4><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></h4>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower.</b></li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>81% Reported They Had Stopped Smoking After Hypnosis</b></li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<p style=\"text-align: center;\"><span style=\"color: #ff6600;\"><strong>Enter your email address here to\r\nReceive the FREE \"Kick the Habit\"\r\nStop Smoking Report</strong></span>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]</p>\r\n\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:03:01','2018-06-04 19:03:01','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(964,1,'2018-06-04 19:03:31','2018-06-04 19:03:31','Stop Smoking Hypnosis Guaranteed!\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h4><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></h4>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower.</b></li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>81% Reported They Had Stopped Smoking After Hypnosis</b></li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #ff6600;\"><strong>Enter your email address here to\r\nReceive the FREE \"Kick the Habit\"\r\nStop Smoking Report</strong></span>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]</h3>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:03:31','2018-06-04 19:03:31','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(965,1,'2018-06-04 19:04:47','2018-06-04 19:04:47','Stop Smoking Hypnosis Guaranteed!\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h4><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></h4>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower.</b></li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>81% Reported They Had Stopped Smoking After Hypnosis</b></li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #ff6600;\"><strong>Enter your email address here to\r\nReceive the FREE \"Kick the Habit\"\r\nStop Smoking Report</strong></span></h3>\r\n<p style=\"text-align: left;\">[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]</p>\r\n\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:04:47','2018-06-04 19:04:47','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(966,1,'2018-06-04 19:05:20','2018-06-04 19:05:20','Stop Smoking Hypnosis Guaranteed!\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h4><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></h4>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower.</b></li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>81% Reported They Had Stopped Smoking After Hypnosis</b></li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #ff6600;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong>\"\r\nStop Smoking Report</strong></span></h3>\r\n<p style=\"text-align: left;\">[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]</p>\r\n\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:05:20','2018-06-04 19:05:20','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(967,1,'2018-06-04 19:10:34','2018-06-04 19:10:34','Stop Smoking Hypnosis Guaranteed!\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h4><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></h4>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower.</b></li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>81% Reported They Had Stopped Smoking After Hypnosis</b></li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #ff6600;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong>\"\r\nStop Smoking Report</strong></span></h3>\r\n<pre style=\"text-align: left;\">[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in any email.</pre>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:10:34','2018-06-04 19:10:34','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(968,1,'2018-06-04 19:11:15','2018-06-04 19:11:15','Stop Smoking Hypnosis Guaranteed!\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h4><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></h4>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower.</b></li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>81% Reported They Had Stopped Smoking After Hypnosis</b></li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #ff6600;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong>\"\r\nStop Smoking Report</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in any email.\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:11:15','2018-06-04 19:11:15','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(969,1,'2018-06-04 19:12:17','2018-06-04 19:12:17','Stop Smoking Hypnosis Guaranteed!\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h4><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></h4>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower.</b></li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>81% Reported They Had Stopped Smoking After Hypnosis</b></li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #ff6600;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong>\"\r\nStop Smoking Report</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in any email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:12:17','2018-06-04 19:12:17','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(970,1,'2018-06-04 19:12:52','2018-06-04 19:12:52','Stop Smoking Hypnosis Guaranteed!\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h4><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></h4>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower.</b></li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>81% Reported They Had Stopped Smoking After Hypnosis</b></li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #ff6600;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong>\"\r\nStop Smoking Report Today.\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in any email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:12:52','2018-06-04 19:12:52','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(971,1,'2018-06-04 19:16:15','2018-06-04 19:16:15','Stop Smoking Hypnosis Guaranteed','Stop Smoking Hypnosis Guaranteed','','inherit','open','closed','','stop-smoking-hypnosis','','','2018-06-04 19:16:28','2018-06-04 19:16:28','',948,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis.jpg',0,'attachment','image/jpeg',0),(972,1,'2018-06-04 19:16:38','2018-06-04 19:16:38','Stop Smoking Hypnosis Guaranteed!\r\n<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h4><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></h4>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower.</b></li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>81% Reported They Had Stopped Smoking After Hypnosis</b></li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #ff6600;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong>\"\r\nStop Smoking Report Today.\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in any email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:16:38','2018-06-04 19:16:38','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(973,1,'2018-06-04 19:18:44','2018-06-04 19:18:44','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n<h2><span style=\"color: #008000;\">Stop Smoking Hypnosis Guaranteed!</span></h2>\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h4><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></h4>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower.</b></li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>81% Reported They Had Stopped Smoking After Hypnosis</b></li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #ff6600;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong>\"\r\nStop Smoking Report Today.\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in any email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:18:44','2018-06-04 19:18:44','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(974,1,'2018-06-04 19:19:00','2018-06-04 19:19:00','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n<h2><strong><span style=\"color: #008000;\">Stop Smoking Hypnosis Guaranteed!</span></strong></h2>\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h4><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></h4>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower.</b></li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>81% Reported They Had Stopped Smoking After Hypnosis</b></li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #ff6600;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong>\"\r\nStop Smoking Report Today.\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in any email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:19:00','2018-06-04 19:19:00','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(975,1,'2018-06-04 19:19:28','2018-06-04 19:19:28','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n<h2><strong><span style=\"color: #008000;\">Stop Smoking Hypnosis Guaranteed!</span></strong></h2>\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program.\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own.\r\nThe latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h4><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></h4>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower.</b></li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>81% Reported They Had Stopped Smoking After Hypnosis</b></li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #ff6600;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong>\"\r\nStop Smoking Report Today.\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in any email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:19:28','2018-06-04 19:19:28','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(976,1,'2018-06-04 19:19:54','2018-06-04 19:19:54','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n<h2><strong><span style=\"color: #008000;\">Stop Smoking Hypnosis Guaranteed!</span></strong></h2>\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program.\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own.\r\nThe latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower.</b></li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>81% Reported They Had Stopped Smoking After Hypnosis</b></li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #ff6600;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong>\"\r\nStop Smoking Report Today.\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in any email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:19:54','2018-06-04 19:19:54','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(977,1,'2018-06-04 19:20:17','2018-06-04 19:20:17','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n<h2><strong><span style=\"color: #008000;\">Stop Smoking Hypnosis Guaranteed!</span></strong></h2>\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program.\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower.</b></li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li><b>81% Reported They Had Stopped Smoking After Hypnosis</b></li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #ff6600;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong>\"\r\nStop Smoking Report Today.\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in any email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:20:17','2018-06-04 19:20:17','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(978,1,'2018-06-04 19:22:28','2018-06-04 19:22:28','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n<h2><strong><span style=\"color: #008000;\">Stop Smoking Hypnosis Guaranteed!</span></strong></h2>\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program.\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\r\n</li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\r\n</li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\r\n</li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\r\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in any email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:22:28','2018-06-04 19:22:28','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(979,1,'2018-06-04 19:34:18','2018-06-04 19:34:18','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n<h2><strong><span style=\"color: #008000;\">Stop Smoking Hypnosis Guaranteed!</span></strong></h2>\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program.\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking </b><strong>Guaranteed</strong><b>\r\n</b></span></h2>\r\nAre you ready to stop smoking? The Stop Smoking Hypnotherapy Program includes a lifetime guarantee. If you ever smoke again or have cravings to smoke, simply get intouch and I will see you again for free.\r\n<span style=\"color: #ff6600;\"><strong>How can I afford to do this?</strong></span> This program is so successful that less than 8% of clients need to see me again once you have completed the program. Look at this research below\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\r\n</li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\r\n</li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\r\n</li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\r\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in any email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:34:18','2018-06-04 19:34:18','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(980,1,'2018-06-04 19:35:10','2018-06-04 19:35:10','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n<h2><strong><span style=\"color: #008000;\">Stop Smoking Hypnosis Guaranteed!</span></strong></h2>\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program.\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking </b><strong>Guaranteed</strong><b>\r\n</b></span></h2>\r\nAre you ready to stop smoking? The Stop Smoking Hypnotherapy Program includes a lifetime guarantee. If you ever smoke again or have cravings to smoke, simply get intouch and I will see you again for free.\r\n<span style=\"color: #ff6600;\"><strong>How can I afford to do this?</strong></span> This program is so successful that less than 8% of my stop smoking clients need to see me again once you have completed the program. <strong>Look at this research below</strong>\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\r\n</li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\r\n</li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\r\n</li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\r\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in any email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:35:10','2018-06-04 19:35:10','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(981,1,'2018-06-04 19:37:55','2018-06-04 19:37:55','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n\r\n<strong><span style=\"color: #008000;\">Stop Smoking Hypnosis Guaranteed!\r\n</span></strong>Have you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program.\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking </b><strong>Guaranteed</strong><b>\r\n</b></span></h2>\r\nAre you ready to stop smoking? The Stop Smoking Hypnotherapy Program includes a lifetime guarantee. If you ever smoke again or have cravings to smoke, simply get intouch and I will see you again for free.\r\n<span style=\"color: #ff6600;\"><strong>How can I afford to do this?</strong></span> This program is so successful that less than 8% of my stop smoking clients need to see me again once you have completed the program. <strong>Look at this research below</strong>\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\r\n</li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\r\n</li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\r\n</li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\r\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in any email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n&nbsp;\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:37:55','2018-06-04 19:37:55','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(2509,1,'2019-01-06 18:42:53','2019-01-06 18:42:53','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with the Stop Smoking Hypnosis Guaranteed program.\r\nInterestingly, smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\r\n</li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\r\n</li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\r\n</li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. The University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\r\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in an email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis</b><strong> - Your First Steps.</strong></span><b>\r\n</b></h2>\r\nYour first step is to arrange a free phone consultation to see if this stop smoking program is right for you.\r\nCall me today on 07568 455 809 or complete the form below to arrange your consultation and explore how Stop Smoking Guaranteed can work for you.\r\nDuring this relaxed consultation, I will explain how your stop smoking hypnosis sessions will work and evaluate exactly what you would like from this program. Hypnosis is a wonderful experience that will leave you feeling relaxed, calm and confident with the ability to take control.\r\n\r\nUsually, I work with clients from our locations in Newcastle upon Tyne, Northumberland and even Online.\r\n\r\n&nbsp;\r\n\r\nCall me today on 07568 455 809 or complete the form below and please let me know the best time to call you back.\r\n\r\n[wpforms id=\"35\"]\r\n\r\nNewcastle Hypnotherapy offers a range of Hypnosis &amp; NLP services throughout the North East and can help with a wide range of issues, problems and challenges.\r\n\r\nWe are proud members of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>.','STOP SMOKING HYPNOSIS','','inherit','closed','closed','','948-revision-v1','','','2019-01-06 18:42:53','2019-01-06 18:42:53','',948,'https://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(982,1,'2018-06-04 19:48:47','2018-06-04 19:48:47','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n\r\n<strong><span style=\"color: #008000;\">Stop Smoking Hypnosis Guaranteed!\r\n</span></strong>Have you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program.\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking </b><strong>Guaranteed</strong><b>\r\n</b></span></h2>\r\nAre you ready to stop smoking? The Stop Smoking Hypnotherapy Program includes a lifetime guarantee. If you ever smoke again or have cravings to smoke, simply get intouch and I will see you again for free.\r\n<span style=\"color: #ff6600;\"><strong>How can I afford to do this?</strong></span> This program is so successful that less than 8% of my stop smoking clients need to see me again once you have completed the program. <strong>Look at this research below</strong>\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\r\n</li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\r\n</li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\r\n</li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\r\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in any email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking </b><strong>Guaranteed - are you ready?</strong></span><b>\r\n</b></h2>\r\nYour first step is to arrange a free phone consultation to see if this stop smoking program is right for you. Call me today on 07568 455 809 or complete the form below to arrange this.\r\nDuring this relaxed consultation I will explain how your stop smoking hypnosis sessions will work and evaluate exactly what you would like from this program.\r\nHypnosis is a wonderful experience that will leave you feeling relaxed, calm and confident with the ability to take control.\r\n\r\nUsually I work with clients from our locations in Newcastle upon Tyne, Northumberland and even Online.\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:48:47','2018-06-04 19:48:47','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(983,1,'2018-06-04 19:52:00','2018-06-04 19:52:00','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n\r\n<strong><span style=\"color: #008000;\">Stop Smoking Hypnosis Guaranteed!\r\n</span></strong>Have you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program.\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking </b><strong>Guaranteed</strong><b>\r\n</b></span></h2>\r\nAre you ready to stop smoking? The Stop Smoking Hypnotherapy Program includes a lifetime guarantee. If you ever smoke again or have cravings to smoke, simply get in touch and I will see you again for free.\r\n<span style=\"color: #ff6600;\"><strong>How can I afford to do this?</strong></span> This program is so successful that less than 8% of my stop smoking clients need to see me again once you have completed the program. <strong>Look at this research below</strong>\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\r\n</li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\r\n</li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\r\n</li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\r\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in any email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking </b><strong>Guaranteed - are you ready?</strong></span><b>\r\n</b></h2>\r\nYour first step is to arrange a free phone consultation to see if this stop smoking program is right for you.\r\nCall me today on 07568 455 809 or complete the form below to arrange your consultation and explore how Stop Smoking Guaranteed can work for you.\r\nDuring this relaxed consultation I will explain how your stop smoking hypnosis sessions will work and evaluate exactly what you would like from this program. Hypnosis is a wonderful experience that will leave you feeling relaxed, calm and confident with the ability to take control.\r\n\r\nUsually I work with clients from our locations in Newcastle upon Tyne, Northumberland and even Online.\r\n\r\n&nbsp;\r\n\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:52:00','2018-06-04 19:52:00','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(984,1,'2018-06-04 19:52:54','2018-06-04 19:52:54','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n\r\n<strong><span style=\"color: #008000;\">Stop Smoking Hypnosis Guaranteed.\r\n</span></strong>Have you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program.\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking </b><strong>Guaranteed.</strong><b>\r\n</b></span></h2>\r\nAre you ready to stop smoking? The Stop Smoking Hypnotherapy Program includes a lifetime guarantee. If you ever smoke again or have cravings to smoke, simply get in touch and I will see you again for free.\r\n<span style=\"color: #ff6600;\"><strong>How can I afford to do this?</strong></span> This program is so successful that less than 8% of my stop smoking clients need to see me again once you have completed the program. <strong>Look at this research below</strong>\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\r\n</li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\r\n</li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\r\n</li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\r\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in any email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking </b><strong>Guaranteed - are you ready?</strong></span><b>\r\n</b></h2>\r\nYour first step is to arrange a free phone consultation to see if this stop smoking program is right for you.\r\nCall me today on 07568 455 809 or complete the form below to arrange your consultation and explore how Stop Smoking Guaranteed can work for you.\r\nDuring this relaxed consultation I will explain how your stop smoking hypnosis sessions will work and evaluate exactly what you would like from this program. Hypnosis is a wonderful experience that will leave you feeling relaxed, calm and confident with the ability to take control.\r\n\r\nUsually I work with clients from our locations in Newcastle upon Tyne, Northumberland and even Online.\r\n\r\n&nbsp;\r\n\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:52:54','2018-06-04 19:52:54','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(985,1,'2018-06-04 19:53:17','2018-06-04 19:53:17','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n\r\n<strong><span style=\"color: #008000;\">Stop Smoking Hypnosis Guaranteed.\r\n</span></strong>Have you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program.\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed.</strong><b>\r\n</b></span></h2>\r\nAre you ready to stop smoking? The Stop Smoking Hypnotherapy Program includes a lifetime guarantee. If you ever smoke again or have cravings to smoke, simply get in touch and I will see you again for free.\r\n<span style=\"color: #ff6600;\"><strong>How can I afford to do this?</strong></span> This program is so successful that less than 8% of my stop smoking clients need to see me again once you have completed the program. <strong>Look at this research below</strong>\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\r\n</li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\r\n</li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\r\n</li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\r\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in any email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking </b><strong>Guaranteed - are you ready?</strong></span><b>\r\n</b></h2>\r\nYour first step is to arrange a free phone consultation to see if this stop smoking program is right for you.\r\nCall me today on 07568 455 809 or complete the form below to arrange your consultation and explore how Stop Smoking Guaranteed can work for you.\r\nDuring this relaxed consultation I will explain how your stop smoking hypnosis sessions will work and evaluate exactly what you would like from this program. Hypnosis is a wonderful experience that will leave you feeling relaxed, calm and confident with the ability to take control.\r\n\r\nUsually I work with clients from our locations in Newcastle upon Tyne, Northumberland and even Online.\r\n\r\n&nbsp;\r\n\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:53:17','2018-06-04 19:53:17','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(986,1,'2018-06-04 19:53:43','2018-06-04 19:53:43','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n\r\n<strong><span style=\"color: #008000;\">Stop Smoking Hypnosis Guaranteed.\r\n</span></strong>Have you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program.\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed.</strong><b>\r\n</b></span></h2>\r\nAre you ready to stop smoking? The Stop Smoking Hypnotherapy Program includes a lifetime guarantee. If you ever smoke again or have cravings to smoke, simply get in touch and I will see you again for free.\r\n<span style=\"color: #ff6600;\"><strong>How can I afford to do this?</strong></span> This program is so successful that less than 8% of my stop smoking clients need to see me again once you have completed the program. <strong>Look at this research below</strong>\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\r\n</li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\r\n</li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\r\n</li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\r\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in any email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed - are you ready?</strong></span><b>\r\n</b></h2>\r\nYour first step is to arrange a free phone consultation to see if this stop smoking program is right for you.\r\nCall me today on 07568 455 809 or complete the form below to arrange your consultation and explore how Stop Smoking Guaranteed can work for you.\r\nDuring this relaxed consultation I will explain how your stop smoking hypnosis sessions will work and evaluate exactly what you would like from this program. Hypnosis is a wonderful experience that will leave you feeling relaxed, calm and confident with the ability to take control.\r\n\r\nUsually I work with clients from our locations in Newcastle upon Tyne, Northumberland and even Online.\r\n\r\n&nbsp;\r\n\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:53:43','2018-06-04 19:53:43','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(987,1,'2018-06-04 19:54:11','2018-06-04 19:54:11','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n\r\n<strong><span style=\"color: #008000;\">Stop Smoking Hypnosis Guaranteed\r\n</span></strong>Have you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program.\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed.</strong><b>\r\n</b></span></h2>\r\nAre you ready to stop smoking? The Stop Smoking Hypnotherapy Program includes a lifetime guarantee. If you ever smoke again or have cravings to smoke, simply get in touch and I will see you again for free.\r\n<span style=\"color: #ff6600;\"><strong>How can I afford to do this?</strong></span> This program is so successful that less than 8% of my stop smoking clients need to see me again once you have completed the program. <strong>Look at this research below</strong>\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\r\n</li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\r\n</li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\r\n</li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\r\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in any email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed - are you ready?</strong></span><b>\r\n</b></h2>\r\nYour first step is to arrange a free phone consultation to see if this stop smoking program is right for you.\r\nCall me today on 07568 455 809 or complete the form below to arrange your consultation and explore how Stop Smoking Guaranteed can work for you.\r\nDuring this relaxed consultation I will explain how your stop smoking hypnosis sessions will work and evaluate exactly what you would like from this program. Hypnosis is a wonderful experience that will leave you feeling relaxed, calm and confident with the ability to take control.\r\n\r\nUsually I work with clients from our locations in Newcastle upon Tyne, Northumberland and even Online.\r\n\r\n&nbsp;\r\n\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:54:11','2018-06-04 19:54:11','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(988,1,'2018-06-04 19:54:29','2018-06-04 19:54:29','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n\r\n<strong><span style=\"color: #008000;\">Stop Smoking Hypnosis Guaranteed. </span></strong>Have you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program.\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed.</strong><b>\r\n</b></span></h2>\r\nAre you ready to stop smoking? The Stop Smoking Hypnotherapy Program includes a lifetime guarantee. If you ever smoke again or have cravings to smoke, simply get in touch and I will see you again for free.\r\n<span style=\"color: #ff6600;\"><strong>How can I afford to do this?</strong></span> This program is so successful that less than 8% of my stop smoking clients need to see me again once you have completed the program. <strong>Look at this research below</strong>\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\r\n</li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\r\n</li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\r\n</li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\r\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in any email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed - are you ready?</strong></span><b>\r\n</b></h2>\r\nYour first step is to arrange a free phone consultation to see if this stop smoking program is right for you.\r\nCall me today on 07568 455 809 or complete the form below to arrange your consultation and explore how Stop Smoking Guaranteed can work for you.\r\nDuring this relaxed consultation I will explain how your stop smoking hypnosis sessions will work and evaluate exactly what you would like from this program. Hypnosis is a wonderful experience that will leave you feeling relaxed, calm and confident with the ability to take control.\r\n\r\nUsually I work with clients from our locations in Newcastle upon Tyne, Northumberland and even Online.\r\n\r\n&nbsp;\r\n\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 19:54:29','2018-06-04 19:54:29','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(2507,1,'2019-01-06 18:41:05','2019-01-06 18:41:05','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with the Stop Smoking Hypnosis Guaranteed program.\r\nInterestingly, smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\r\n</li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\r\n</li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\r\n</li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\r\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in an email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed - Your First Steps.</strong></span><b>\r\n</b></h2>\r\nYour first step is to arrange a free phone consultation to see if this stop smoking program is right for you.\r\nCall me today on 07568 455 809 or complete the form below to arrange your consultation and explore how Stop Smoking Guaranteed can work for you.\r\nDuring this relaxed consultation, I will explain how your stop smoking hypnosis sessions will work and evaluate exactly what you would like from this program. Hypnosis is a wonderful experience that will leave you feeling relaxed, calm and confident with the ability to take control.\r\n\r\nUsually, I work with clients from our locations in Newcastle upon Tyne, Northumberland and even Online.\r\n\r\n&nbsp;\r\n\r\nCall me today on 07568 455 809 or complete the form below and please let me know the best time to call you back.\r\n\r\n[wpforms id=\"35\"]\r\n\r\nNewcastle Hypnotherapy offer a range of Hypnsosis &amp; NLP services throughout the North East and can help with a wide range of issues, problems and challenges including Stop Smoking Hypnosis Guaranteed.\r\n\r\nWe are proud members of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>.','STOP SMOKING HYPNOSIS','','inherit','closed','closed','','948-revision-v1','','','2019-01-06 18:41:05','2019-01-06 18:41:05','',948,'https://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(2506,1,'2019-01-06 18:40:05','2019-01-06 18:40:05','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with the Stop Smoking Hypnosis Guaranteed program.\r\nInterestingly, smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis</b><b>\r\n</b></span></h2>\r\nAre you ready to stop smoking? The Stop Smoking Hypnotherapy Program includes a lifetime guarantee. If you ever smoke again or have cravings to smoke, simply get in touch and I will see you again for free.\r\n<span style=\"color: #ff6600;\"><strong>How can I afford to do this?</strong></span> This program is so successful that less than 8% of my stop smoking clients need to see me again once you have completed the program. <strong>Look at this research below</strong>\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\r\n</li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\r\n</li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\r\n</li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\r\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in an email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed - Your First Steps.</strong></span><b>\r\n</b></h2>\r\nYour first step is to arrange a free phone consultation to see if this stop smoking program is right for you.\r\nCall me today on 07568 455 809 or complete the form below to arrange your consultation and explore how Stop Smoking Guaranteed can work for you.\r\nDuring this relaxed consultation, I will explain how your stop smoking hypnosis sessions will work and evaluate exactly what you would like from this program. Hypnosis is a wonderful experience that will leave you feeling relaxed, calm and confident with the ability to take control.\r\n\r\nUsually, I work with clients from our locations in Newcastle upon Tyne, Northumberland and even Online.\r\n\r\n&nbsp;\r\n\r\nCall me today on 07568 455 809 or complete the form below and please let me know the best time to call you back.\r\n\r\n[wpforms id=\"35\"]\r\n\r\nNewcastle Hypnotherapy offer a range of Hypnsosis &amp; NLP services throughout the North East and can help with a wide range of issues, problems and challenges including Stop Smoking Hypnosis Guaranteed.\r\n\r\nWe are proud members of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>.','STOP SMOKING HYPNOSIS','','inherit','closed','closed','','948-revision-v1','','','2019-01-06 18:40:05','2019-01-06 18:40:05','',948,'https://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(989,1,'2018-06-04 20:03:48','2018-06-04 20:03:48','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n\r\n<strong><span style=\"color: #008000;\">Stop Smoking Hypnosis Guaranteed. </span></strong>Have you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program.\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed.</strong><b>\r\n</b></span></h2>\r\nAre you ready to stop smoking? The Stop Smoking Hypnotherapy Program includes a lifetime guarantee. If you ever smoke again or have cravings to smoke, simply get in touch and I will see you again for free.\r\n<span style=\"color: #ff6600;\"><strong>How can I afford to do this?</strong></span> This program is so successful that less than 8% of my stop smoking clients need to see me again once you have completed the program. <strong>Look at this research below</strong>\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\r\n</li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\r\n</li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\r\n</li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\r\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in an email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed - Your First Steps.</strong></span><b>\r\n</b></h2>\r\nYour first step is to arrange a free phone consultation to see if this stop smoking program is right for you.\r\nCall me today on 07568 455 809 or complete the form below to arrange your consultation and explore how Stop Smoking Guaranteed can work for you.\r\nDuring this relaxed consultation, I will explain how your stop smoking hypnosis sessions will work and evaluate exactly what you would like from this program. Hypnosis is a wonderful experience that will leave you feeling relaxed, calm and confident with the ability to take control.\r\n\r\nUsually, I work with clients from our locations in Newcastle upon Tyne, Northumberland and even Online.\r\n\r\n&nbsp;\r\n\r\nCall me today on 07568 455 809 or complete the form below and please let me know the best time to call you back.\r\n\r\n[wpforms id=\"35\"]\r\n\r\nNewcastle Hypnotherapy offer a range of Hypnsosis &amp; NLP services throughout the North East and can help with a wide range of issues, problems and challenges.\r\nWe are proud members of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>.','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 20:03:48','2018-06-04 20:03:48','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(991,1,'2018-06-04 20:08:42','2018-06-04 20:08:42','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with stop smoking hypnosis guaranteed, The Stop Smoking Hypnotherapy Program\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed.</strong><b>\r\n</b></span></h2>\r\nAre you ready to stop smoking? The Stop Smoking Hypnotherapy Program includes a lifetime guarantee. If you ever smoke again or have cravings to smoke, simply get in touch and I will see you again for free.\r\n<span style=\"color: #ff6600;\"><strong>How can I afford to do this?</strong></span> This program is so successful that less than 8% of my stop smoking clients need to see me again once you have completed the program. <strong>Look at this research below</strong>\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\r\n</li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\r\n</li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\r\n</li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\r\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in an email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed - Your First Steps.</strong></span><b>\r\n</b></h2>\r\nYour first step is to arrange a free phone consultation to see if this stop smoking program is right for you.\r\nCall me today on 07568 455 809 or complete the form below to arrange your consultation and explore how Stop Smoking Guaranteed can work for you.\r\nDuring this relaxed consultation, I will explain how your stop smoking hypnosis sessions will work and evaluate exactly what you would like from this program. Hypnosis is a wonderful experience that will leave you feeling relaxed, calm and confident with the ability to take control.\r\n\r\nUsually, I work with clients from our locations in Newcastle upon Tyne, Northumberland and even Online.\r\n\r\n&nbsp;\r\n\r\nCall me today on 07568 455 809 or complete the form below and please let me know the best time to call you back.\r\n\r\n[wpforms id=\"35\"]\r\n\r\nNewcastle Hypnotherapy offer a range of Hypnsosis &amp; NLP services throughout the North East and can help with a wide range of issues, problems and challenges including Stop Smoking Hypnosis Guaranteed.\r\n\r\nWe are proud members of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>.','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 20:08:42','2018-06-04 20:08:42','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(990,1,'2018-06-04 20:05:07','2018-06-04 20:05:07','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n\r\n<strong><span style=\"color: #008000;\">Stop Smoking Hypnosis Guaranteed. </span></strong>Have you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with The Stop Smoking Hypnotherapy Program.\r\n\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed.</strong><b>\r\n</b></span></h2>\r\nAre you ready to stop smoking? The Stop Smoking Hypnotherapy Program includes a lifetime guarantee. If you ever smoke again or have cravings to smoke, simply get in touch and I will see you again for free.\r\n<span style=\"color: #ff6600;\"><strong>How can I afford to do this?</strong></span> This program is so successful that less than 8% of my stop smoking clients need to see me again once you have completed the program. <strong>Look at this research below</strong>\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\r\n</li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\r\n</li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\r\n</li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\r\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in an email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed - Your First Steps.</strong></span><b>\r\n</b></h2>\r\nYour first step is to arrange a free phone consultation to see if this stop smoking program is right for you.\r\nCall me today on 07568 455 809 or complete the form below to arrange your consultation and explore how Stop Smoking Guaranteed can work for you.\r\nDuring this relaxed consultation, I will explain how your stop smoking hypnosis sessions will work and evaluate exactly what you would like from this program. Hypnosis is a wonderful experience that will leave you feeling relaxed, calm and confident with the ability to take control.\r\n\r\nUsually, I work with clients from our locations in Newcastle upon Tyne, Northumberland and even Online.\r\n\r\n&nbsp;\r\n\r\nCall me today on 07568 455 809 or complete the form below and please let me know the best time to call you back.\r\n\r\n[wpforms id=\"35\"]\r\n\r\nNewcastle Hypnotherapy offer a range of Hypnsosis &amp; NLP services throughout the North East and can help with a wide range of issues, problems and challenges including Stop Smoking Hypnosis Guaranteed.\r\n\r\nWe are proud members of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>.','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 20:05:07','2018-06-04 20:05:07','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(992,1,'2018-06-04 20:09:10','2018-06-04 20:09:10','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with stop smoking hypnosis guaranteed, The Stop Smoking Hypnotherapy Program.\r\nInterestingly smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed.</strong><b>\r\n</b></span></h2>\r\nAre you ready to stop smoking? The Stop Smoking Hypnotherapy Program includes a lifetime guarantee. If you ever smoke again or have cravings to smoke, simply get in touch and I will see you again for free.\r\n<span style=\"color: #ff6600;\"><strong>How can I afford to do this?</strong></span> This program is so successful that less than 8% of my stop smoking clients need to see me again once you have completed the program. <strong>Look at this research below</strong>\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\r\n</li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\r\n</li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\r\n</li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\r\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in an email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed - Your First Steps.</strong></span><b>\r\n</b></h2>\r\nYour first step is to arrange a free phone consultation to see if this stop smoking program is right for you.\r\nCall me today on 07568 455 809 or complete the form below to arrange your consultation and explore how Stop Smoking Guaranteed can work for you.\r\nDuring this relaxed consultation, I will explain how your stop smoking hypnosis sessions will work and evaluate exactly what you would like from this program. Hypnosis is a wonderful experience that will leave you feeling relaxed, calm and confident with the ability to take control.\r\n\r\nUsually, I work with clients from our locations in Newcastle upon Tyne, Northumberland and even Online.\r\n\r\n&nbsp;\r\n\r\nCall me today on 07568 455 809 or complete the form below and please let me know the best time to call you back.\r\n\r\n[wpforms id=\"35\"]\r\n\r\nNewcastle Hypnotherapy offer a range of Hypnsosis &amp; NLP services throughout the North East and can help with a wide range of issues, problems and challenges including Stop Smoking Hypnosis Guaranteed.\r\n\r\nWe are proud members of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>.','Stop Smoking Hypnosis','','inherit','closed','closed','','948-revision-v1','','','2018-06-04 20:09:10','2018-06-04 20:09:10','',948,'http://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(996,1,'2018-06-06 08:41:39','2018-06-06 08:41:39','We offer everyone a free consultation by phone to explore your needs and to evaluate if hypnosis or our other therapies, will help you.\r\n<div class=\"page-desc\">\r\n\r\nSimply call <strong>07568 455 809</strong> today or complete your details below. We will call you back as quickly as possible\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n\r\n[wpforms id=\"35\"]\r\n\r\n</div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-06-06 08:41:39','2018-06-06 08:41:39','',378,'http://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1003,1,'2018-06-23 18:30:01','2018-06-23 18:30:01','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services and other modern therapies.\r\nWe can help you with a wide range of issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a>, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">stress</a>, <a href=\"http://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">depression</a>, weight loss, <a href=\"http://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">stop smoking</a>, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy uses powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfulness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n<h2><span style=\"color: #008000;\"><strong>Proudly Serving Newcastle Upon Tyne\r\n</strong></span></h2>\r\n<a href=\"https://www.chroniclelive.co.uk/all-about/newcastle-upon-tyne\">Newcastle upon Tyne</a>, <a href=\"https://www.visitnorthumberland.com/\">Northumberland,</a> <a href=\"https://www.chroniclelive.co.uk/all-about/sunderland-city-centre\">Sunderland</a>, <a href=\"https://en.wikipedia.org/wiki/North_East_England\">North East England,</a> <a href=\"https://en.wikipedia.org/wiki/Tyne_and_Wear\">Tyne &amp; Wear</a>,\r\n<h2><strong><span style=\"color: #008000;\">Google Map</span></strong></h2>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Opening Hours</span></strong></h2>\r\n<div class=\"ak\">\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>\r\n</div>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Services We Provide</span></strong></h2>\r\nHypnotherapy Service\r\nHealth Consultant\r\nLife Coach\r\nCounsellor Services\r\nSelf Hypnosis\r\nNeuro-Linguistic Programming - NLP\r\nEmotional Freedom Technique - EFT,\r\nMediMindfulness\r\nfullness and more.\r\n<h2><span style=\"color: #008000;\"><strong>Nearby Places - Newcastle upon Tyne\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Restaurants\r\n</strong></span><strong>Pulp Fiction - </strong><strong><a href=\"https://www.pulpfictionfuturefood.com/\">Whole Food, Health Food Cafe</a>\r\n</strong><a href=\"https://www.facebook.com/Super-Natural-Cafe-788599297887313/\"><strong>Supernatural Kitchen</strong></a><strong>\r\n</strong><a href=\"http://www.skyapple.co.uk/\"><strong>Sky Apple Cafe</strong></a><strong>\r\n</strong><strong><a href=\"http://www.iloveboho.co.uk/\">The Bohemian</a></strong><span style=\"color: #008000;\"><strong>\r\nThe Linskill Centre - <a href=\"https://www.linskillcentre.co.uk/\">North Sheilds Community Centre</a>\r\n</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Community Places</strong></span>\r\n<strong>The Vault - <a href=\"http://www.the-vault.org/\">Creative Wellbeing Centre</a>\r\nThe Linskill Centre - <a href=\"https://www.linskillcentre.co.uk/\">North Sheilds Community Centre</a></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Good Pubs</strong></span>\r\n<strong><a href=\"https://trilliansnewcastle.co.uk/\">Trillions Rock Bar</a></strong>\r\n<a href=\"http://www.citytavern.co.uk/\"><strong>The City Tavern - Newcastle</strong></a>\r\n<a href=\"https://www.newcastlegateshead.com/food-and-drink/the-ship-inn-p888571\"><strong>The Ship Ouseburn</strong></a>\r\n\r\n<span style=\"color: #008000;\"><strong>Events &amp; Places To Visit</strong></span>\r\n<strong>Segedunum - <a href=\"https://segedunumromanfort.org.uk/\">Roman Fort and Museum</a>\r\nStephenson - <a href=\"https://stephensonrailwaymuseum.org.uk/\">Railway Museum</a>\r\nFood For Thought - <a href=\"https://www.food-for-thought-uk.co.uk/\">Health Foods &amp; Organic Bakery</a>\r\n<a href=\"http://www.the-vault.org/fairs.html\">The Newcastle Mind Body Spirit Fair @ The Vault</a>\r\n<a href=\"http://www.newcastlecastle.co.uk/\">Newcastle Castle</a>\r\n<a href=\"http://baltic.art/\">The Baltic</a></strong>\r\n<strong><a href=\"https://greatnorthmuseum.org.uk/\">The Great North Museum</a></strong>\r\n<strong><a href=\"http://stnicholascathedral.co.uk/\">Newcastle Cathedral</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">There are so many great places to visit in Newcastle and Northumberland.\r\nDo take the time to find some of the great beaches, country walks, beautiful forests, local attractions, museums, eating places, theatres and so much more.</span></strong>\r\n\r\nFind Us On\r\n\r\n<a href=\"https://www.facebook.com/newcastlehypnosis/\">Newcastle Hypnotherapy Facebook</a>\r\n<a href=\"https://twitter.com/Newcastlehypno\">Newcastle Hypnotherapy Twitter</a>\r\n<a href=\"https://foursquare.com/v/newcastle-hypnotherapy/5b17ba1b2619ee002c938eff\">Newcastle Hypnotherapy Foursquare</a>\r\n<a href=\"https://www.yell.com/biz/newcastle-hypnotherapy-wallsend-9119041/\">Newcastle Hypnotherapy Yell</a>\r\n\r\n&nbsp;\r\n\r\nIf you would like a free consultation to see how hypnosis &amp; hypnotherapy can help you, simply call 07568 455 809 today.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','NEWCASTLE UPON TYNE','','publish','closed','closed','','newcastle-upon-tyne','','','2018-09-02 16:29:51','2018-09-02 16:29:51','',0,'http://www.newcastle-hypnotherapy.com/?page_id=1003',500,'page','',0),(998,1,'2018-06-09 18:39:14','2018-06-09 18:39:14','<h2><strong><span style=\"color: #008000;\">Look Great For The Summer\r\n</span></strong></h2>\r\n<img class=\"wp-image-939 size-full aligncenter\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1.jpg\" alt=\"\" width=\"552\" height=\"369\" />\r\n<h2><strong><span style=\"color: #008000;\">Self Hypnosis for Weight Loss Workshop - Saturday 9th June.</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><strong>Last Chance To Book You Place - Book Below. Just £39\r\n</strong></span>\r\n\r\nIn this relaxed, enjoyable workshop you will learn:\r\n<ul>\r\n 	<li><strong> </strong>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>You can book your place below today.</strong>\r\n</span></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis For Weight Loss','','inherit','closed','closed','','560-revision-v1','','','2018-06-09 18:39:14','2018-06-09 18:39:14','',560,'http://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(1004,1,'2018-06-23 18:30:01','2018-06-23 18:30:01','About Our Business\r\n\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services,\r\nWe can help you with a wide range of issues including anxiety, stress, depression, weight loss, stop smoking, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy use powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfullness and more.','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-23 18:30:01','2018-06-23 18:30:01','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1005,1,'2018-06-25 20:06:46','2018-06-25 20:06:46','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services and other modern therapies.\nWe can help you with a wide range of issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a>, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">stress</a>, <a href=\"http://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">depression</a>, weight loss, <a href=\"http://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">stop smoking</a>, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\n\nNewcastle Hypnotherapy uses powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfulness and more.\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\n</span> Telephone 07568 455 809.\n<h2><span style=\"color: #008000;\"><strong>Proudly Serving Newcastle Upon Tyne\n</strong></span></h2>\n<a href=\"https://www.chroniclelive.co.uk/all-about/newcastle-upon-tyne\">Newcastle upon Tyne</a>, <a href=\"https://www.visitnorthumberland.com/\">Northumberland,</a> <a href=\"https://www.chroniclelive.co.uk/all-about/sunderland-city-centre\">Sunderland</a>, <a href=\"https://en.wikipedia.org/wiki/North_East_England\">North East England,</a> <a href=\"https://en.wikipedia.org/wiki/Tyne_and_Wear\">Tyne &amp; Wear</a>,\n<h2><strong><span style=\"color: #008000;\">Google Map</span></strong></h2>\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\n<h2><strong><span style=\"color: #008000;\">Opening Hours</span></strong></h2>\n<div class=\"ak\">\n<div class=\"ak\">\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\n</div>\n</div>\n<h2></h2>\n<h2><strong><span style=\"color: #008000;\">Services We Provide</span></strong></h2>\nHypnotherapy Service\nHealth Consultant\nLife Coach\nCounsellor Services\nSelf Hypnosis\nNeuro-Linguistic Programming - NLP\nEmotional Freedom Technique - EFT,\nMediMindfulness\nfullness and more.\n<h2><span style=\"color: #008000;\"><strong>Nearby Places - Newcastle upon Tyne\n</strong></span></h2>\n<span style=\"color: #008000;\"><strong>Restaurants\n</strong></span><strong>Pulp Fiction - </strong><strong><a href=\"https://www.pulpfictionfuturefood.com/\">Whole Food, Health Food Cafe</a>\n</strong><a href=\"https://www.facebook.com/Super-Natural-Cafe-788599297887313/\"><strong>Supernatural Kitchen</strong></a><strong>\n</strong><a href=\"http://www.skyapple.co.uk/\"><strong>Sky Apple Cafe</strong></a><strong>\n</strong><strong><a href=\"http://www.iloveboho.co.uk/\">The Bohemian</a></strong><span style=\"color: #008000;\"><strong>\nThe Linskill Centre - <a href=\"https://www.linskillcentre.co.uk/\">North Sheilds Community Centre</a>\n</strong></span>\n\n<span style=\"color: #008000;\"><strong>Community Places</strong></span>\n<strong>The Vault - <a href=\"http://www.the-vault.org/\">Creative Wellbeing Centre</a>\nThe Linskill Centre - <a href=\"https://www.linskillcentre.co.uk/\">North Sheilds Community Centre</a></strong>\n\n<span style=\"color: #008000;\"><strong>Good Pubs</strong></span>\n<strong><a href=\"https://trilliansnewcastle.co.uk/\">Trillions Rock Bar</a></strong>\n<a href=\"http://www.citytavern.co.uk/\"><strong>The City Tavern - Newcastle</strong></a>\n<a href=\"https://www.newcastlegateshead.com/food-and-drink/the-ship-inn-p888571\"><strong>The Ship Ouseburn</strong></a>\n\n<span style=\"color: #008000;\"><strong>Events &amp; Places To Visit</strong></span>\n<strong>Segedunum - <a href=\"https://segedunumromanfort.org.uk/\">Roman Fort and Museum</a>\nStephenson - <a href=\"https://stephensonrailwaymuseum.org.uk/\">Railway Museum</a>\nFood For Thought - <a href=\"https://www.food-for-thought-uk.co.uk/\">Health Foods &amp; Organic Bakery</a>\n<a href=\"http://www.the-vault.org/fairs.html\">The Newcastle Mind Body Spirit Fair @ The Vault</a>\n<a href=\"http://www.newcastlecastle.co.uk/\">Newcastle Castle</a>\n<a href=\"http://baltic.art/\">The Baltic</a></strong>\n<strong><a href=\"https://greatnorthmuseum.org.uk/\">The Great North Museum</a></strong>\n<strong><a href=\"http://stnicholascathedral.co.uk/\">Newcastle Cathedral</a></strong>\n\n<strong><span style=\"color: #008000;\">There are so many great places to visit in Newcastle and Northumberland.\nDo take the time to find some of the great beaches, country walks, beautiful forests, local attractions, museums, eating places, theatres and so much more.</span></strong>\n\nFind Us On\n\n<a href=\"https://www.facebook.com/newcastlehypnosis/\">Newcastle Hypnotherapy Facebook</a>\n<a href=\"https://twitter.com/Newcastlehypno\">Newcastle Hypnotherapy Twitter</a>\n<a href=\"https://foursquare.com/v/newcastle-hypnotherapy/5b17ba1b2619ee002c938eff\">Newcastle Hypnotherapy Foursquare</a>\n<a href=\"https://www.yell.com/biz/newcastle-hypnotherapy-wallsend-9119041/\">Newcastle Hypnotherapy Yell</a>\n\n&nbsp;\n\nIf you would like a free co\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','Newcastle upon Tyne','','inherit','closed','closed','','1003-autosave-v1','','','2018-06-25 20:06:46','2018-06-25 20:06:46','',1003,'http://www.newcastle-hypnotherapy.com/1003-autosave-v1/',0,'revision','',0),(1006,1,'2018-06-23 18:36:05','2018-06-23 18:36:05','About Our Business\r\n\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services,\r\nWe can help you with a wide range of issues including anxiety, stress, depression, weight loss, stop smoking, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy use powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfullness and more.\r\n<h2>Location</h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n&nbsp;','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-23 18:36:05','2018-06-23 18:36:05','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1007,1,'2018-06-23 18:37:28','2018-06-23 18:37:28','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services,\r\nWe can help you with a wide range of issues including anxiety, stress, depression, weight loss, stop smoking, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy use powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfullness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-23 18:37:28','2018-06-23 18:37:28','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1008,1,'2018-06-23 18:44:35','2018-06-23 18:44:35','Newcastle upon Tyne','Newcastle upon Tyne','Newcastle upon Tyne','inherit','open','closed','','ggl-logo','','','2018-06-23 18:45:10','2018-06-23 18:45:10','',1003,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/ggl-logo.png',0,'attachment','image/png',0),(1011,1,'2018-06-23 18:48:16','2018-06-23 18:48:16','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services,\r\nWe can help you with a wide range of issues including anxiety, stress, depression, weight loss, stop smoking, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy use powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfullness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-23 18:48:16','2018-06-23 18:48:16','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1009,1,'2018-06-23 18:45:12','2018-06-23 18:45:12','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n[caption id=\"attachment_1008\" align=\"alignleft\" width=\"250\"]<img class=\"size-full wp-image-1008\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/ggl-logo.png\" alt=\"Newcastle upon Tyne\" width=\"250\" height=\"250\" /> Newcastle upon Tyne[/caption]\r\n\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services,\r\nWe can help you with a wide range of issues including anxiety, stress, depression, weight loss, stop smoking, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy use powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfullness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-23 18:45:12','2018-06-23 18:45:12','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1010,1,'2018-06-23 18:47:46','2018-06-23 18:47:46','Newcastle upon Tyne','newcastle upon tyne','','inherit','open','closed','','newcastle-upon-tyne-2','','','2018-06-23 18:47:58','2018-06-23 18:47:58','',1003,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne.jpg',0,'attachment','image/jpeg',0),(1012,1,'2018-06-23 18:51:43','2018-06-23 18:51:43','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services,\r\nWe can help you with a wide range of issues including anxiety, stress, depression, weight loss, stop smoking, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy use powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfullness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n<h2><strong><span style=\"color: #008000;\">Google Map</span></strong></h2>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-23 18:51:43','2018-06-23 18:51:43','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1013,1,'2018-06-23 18:59:39','2018-06-23 18:59:39','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services,\r\nWe can help you with a wide range of issues including anxiety, stress, depression, weight loss, stop smoking, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy use powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfullness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n<h2><strong><span style=\"color: #008000;\">Google Map</span></strong></h2>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Opening Hours</span></strong></h2>\r\n<div class=\"ak\">\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE \">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE \">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE \">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE \">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE \">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE \">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE \">8:00 am–9:00 pm</span></div>\r\n</div>\r\n</div>\r\n&nbsp;','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-23 18:59:39','2018-06-23 18:59:39','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1014,1,'2018-06-23 19:03:41','2018-06-23 19:03:41','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services,\r\nWe can help you with a wide range of issues including anxiety, stress, depression, weight loss, stop smoking, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy uses powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfulness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n<h2><strong><span style=\"color: #008000;\">Google Map</span></strong></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Opening Hours</span></strong></h2>\r\n<div class=\"ak\">\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>\r\n</div>\r\n<h2><strong><span style=\"color: #008000;\">Services We Provide</span></strong></h2>\r\nHypnotherapy Service\r\nHealth Consultant\r\nLife Coach\r\nCounsellor Services\r\nSelf Hypnosis\r\nNeuro-Linguistic Programming - NLP\r\nEmotional Freedom Technique - EFT,\r\nMediMindfulness\r\nfullness and more.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-23 19:03:41','2018-06-23 19:03:41','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1015,1,'2018-06-23 19:14:14','2018-06-23 19:14:14','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services,\r\nWe can help you with a wide range of issues including anxiety, stress, depression, weight loss, stop smoking, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy uses powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfulness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\n<h2>Newcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n\r\n<span style=\"color: #008000;\"><strong>Proudly Serving</strong></span></h2>\r\n<a href=\"https://www.chroniclelive.co.uk/all-about/newcastle-upon-tyne\">Newcastle upon Tyne</a>, <a href=\"https://www.visitnorthumberland.com/\">Northumberland,</a> <a href=\"https://www.chroniclelive.co.uk/all-about/sunderland-city-centre\">Sunderland</a>, <a href=\"https://en.wikipedia.org/wiki/North_East_England\">North East England,</a> <a href=\"https://en.wikipedia.org/wiki/Tyne_and_Wear\">Tyne &amp; Wear</a>,\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Google Map</span></strong></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Opening Hours</span></strong></h2>\r\n<div class=\"ak\">\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>\r\n</div>\r\n<h2><strong><span style=\"color: #008000;\">Services We Provide</span></strong></h2>\r\nHypnotherapy Service\r\nHealth Consultant\r\nLife Coach\r\nCounsellor Services\r\nSelf Hypnosis\r\nNeuro-Linguistic Programming - NLP\r\nEmotional Freedom Technique - EFT,\r\nMediMindfulness\r\nfullness and more.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-23 19:14:14','2018-06-23 19:14:14','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1016,1,'2018-06-23 19:15:19','2018-06-23 19:15:19','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services,\r\nWe can help you with a wide range of issues including anxiety, stress, depression, weight loss, stop smoking, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy uses powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfulness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\n<h2>Newcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.</h2>\r\n<span style=\"color: #008000;\"><strong>Proudly Serving</strong></span>\r\n\r\n<a href=\"https://www.chroniclelive.co.uk/all-about/newcastle-upon-tyne\">Newcastle upon Tyne</a>, <a href=\"https://www.visitnorthumberland.com/\">Northumberland,</a> <a href=\"https://www.chroniclelive.co.uk/all-about/sunderland-city-centre\">Sunderland</a>, <a href=\"https://en.wikipedia.org/wiki/North_East_England\">North East England,</a> <a href=\"https://en.wikipedia.org/wiki/Tyne_and_Wear\">Tyne &amp; Wear</a>,\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Google Map</span></strong></h2>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Opening Hours</span></strong></h2>\r\n<div class=\"ak\">\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>\r\n</div>\r\n<h2><strong><span style=\"color: #008000;\">Services We Provide</span></strong></h2>\r\nHypnotherapy Service\r\nHealth Consultant\r\nLife Coach\r\nCounsellor Services\r\nSelf Hypnosis\r\nNeuro-Linguistic Programming - NLP\r\nEmotional Freedom Technique - EFT,\r\nMediMindfulness\r\nfullness and more.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-23 19:15:19','2018-06-23 19:15:19','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1017,1,'2018-06-23 19:16:24','2018-06-23 19:16:24','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services,\r\nWe can help you with a wide range of issues including anxiety, stress, depression, weight loss, stop smoking, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy uses powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfulness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n<h2><span style=\"color: #008000;\"><strong>Proudly Serving Newcastle Upon Tyne\r\n</strong></span></h2>\r\n<a href=\"https://www.chroniclelive.co.uk/all-about/newcastle-upon-tyne\">Newcastle upon Tyne</a>, <a href=\"https://www.visitnorthumberland.com/\">Northumberland,</a> <a href=\"https://www.chroniclelive.co.uk/all-about/sunderland-city-centre\">Sunderland</a>, <a href=\"https://en.wikipedia.org/wiki/North_East_England\">North East England,</a> <a href=\"https://en.wikipedia.org/wiki/Tyne_and_Wear\">Tyne &amp; Wear</a>,\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Google Map</span></strong></h2>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Opening Hours</span></strong></h2>\r\n<div class=\"ak\">\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>\r\n</div>\r\n<h2><strong><span style=\"color: #008000;\">Services We Provide</span></strong></h2>\r\nHypnotherapy Service\r\nHealth Consultant\r\nLife Coach\r\nCounsellor Services\r\nSelf Hypnosis\r\nNeuro-Linguistic Programming - NLP\r\nEmotional Freedom Technique - EFT,\r\nMediMindfulness\r\nfullness and more.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-23 19:16:24','2018-06-23 19:16:24','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1020,1,'2018-06-23 19:18:36','2018-06-23 19:18:36','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services,\r\nWe can help you with a wide range of issues including anxiety, stress, depression, weight loss, stop smoking, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy uses powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfulness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n<h2><span style=\"color: #008000;\"><strong>Proudly Serving Newcastle Upon Tyne\r\n</strong></span></h2>\r\n<a href=\"https://www.chroniclelive.co.uk/all-about/newcastle-upon-tyne\">Newcastle upon Tyne</a>, <a href=\"https://www.visitnorthumberland.com/\">Northumberland,</a> <a href=\"https://www.chroniclelive.co.uk/all-about/sunderland-city-centre\">Sunderland</a>, <a href=\"https://en.wikipedia.org/wiki/North_East_England\">North East England,</a> <a href=\"https://en.wikipedia.org/wiki/Tyne_and_Wear\">Tyne &amp; Wear</a>,\r\n<h2><strong><span style=\"color: #008000;\">Google Map</span></strong></h2>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Opening Hours</span></strong></h2>\r\n<div class=\"ak\">\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>\r\n</div>\r\n<div></div>\r\n<h2><span style=\"color: #008000;\">Services We Provide</span></h2>\r\nHypnotherapy Service\r\nHealth Consultant\r\nLife Coach\r\nCounsellor Services\r\nSelf Hypnosis\r\nNeuro-Linguistic Programming - NLP\r\nEmotional Freedom Technique - EFT,\r\nMediMindfulness\r\nfullness and more.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-23 19:18:36','2018-06-23 19:18:36','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1018,1,'2018-06-23 19:17:00','2018-06-23 19:17:00','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services,\r\nWe can help you with a wide range of issues including anxiety, stress, depression, weight loss, stop smoking, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy uses powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfulness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n<h2><span style=\"color: #008000;\"><strong>Proudly Serving Newcastle Upon Tyne\r\n</strong></span></h2>\r\n<a href=\"https://www.chroniclelive.co.uk/all-about/newcastle-upon-tyne\">Newcastle upon Tyne</a>, <a href=\"https://www.visitnorthumberland.com/\">Northumberland,</a> <a href=\"https://www.chroniclelive.co.uk/all-about/sunderland-city-centre\">Sunderland</a>, <a href=\"https://en.wikipedia.org/wiki/North_East_England\">North East England,</a> <a href=\"https://en.wikipedia.org/wiki/Tyne_and_Wear\">Tyne &amp; Wear</a>,\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Google Map</span></strong></h2>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Opening Hours</span></strong></h2>\r\n<div class=\"ak\">\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<h2><strong><span style=\"color: #008000;\">Services We Provide</span></strong></h2>\r\nHypnotherapy Service\r\nHealth Consultant\r\nLife Coach\r\nCounsellor Services\r\nSelf Hypnosis\r\nNeuro-Linguistic Programming - NLP\r\nEmotional Freedom Technique - EFT,\r\nMediMindfulness\r\nfullness and more.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-23 19:17:00','2018-06-23 19:17:00','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1019,1,'2018-06-23 19:17:36','2018-06-23 19:17:36','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services,\r\nWe can help you with a wide range of issues including anxiety, stress, depression, weight loss, stop smoking, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy uses powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfulness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n<h2><span style=\"color: #008000;\"><strong>Proudly Serving Newcastle Upon Tyne\r\n</strong></span></h2>\r\n<a href=\"https://www.chroniclelive.co.uk/all-about/newcastle-upon-tyne\">Newcastle upon Tyne</a>, <a href=\"https://www.visitnorthumberland.com/\">Northumberland,</a> <a href=\"https://www.chroniclelive.co.uk/all-about/sunderland-city-centre\">Sunderland</a>, <a href=\"https://en.wikipedia.org/wiki/North_East_England\">North East England,</a> <a href=\"https://en.wikipedia.org/wiki/Tyne_and_Wear\">Tyne &amp; Wear</a>,\r\n<h2><strong><span style=\"color: #008000;\">Google Map</span></strong></h2>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Opening Hours</span></strong></h2>\r\n<div class=\"ak\">\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div></div>\r\n</div>\r\n</div>\r\n<h2><strong><span style=\"color: #008000;\">Services We Provide</span></strong></h2>\r\nHypnotherapy Service\r\nHealth Consultant\r\nLife Coach\r\nCounsellor Services\r\nSelf Hypnosis\r\nNeuro-Linguistic Programming - NLP\r\nEmotional Freedom Technique - EFT,\r\nMediMindfulness\r\nfullness and more.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-23 19:17:36','2018-06-23 19:17:36','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1021,1,'2018-06-23 19:19:30','2018-06-23 19:19:30','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services,\r\nWe can help you with a wide range of issues including anxiety, stress, depression, weight loss, stop smoking, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy uses powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfulness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n<h2><span style=\"color: #008000;\"><strong>Proudly Serving Newcastle Upon Tyne\r\n</strong></span></h2>\r\n<a href=\"https://www.chroniclelive.co.uk/all-about/newcastle-upon-tyne\">Newcastle upon Tyne</a>, <a href=\"https://www.visitnorthumberland.com/\">Northumberland,</a> <a href=\"https://www.chroniclelive.co.uk/all-about/sunderland-city-centre\">Sunderland</a>, <a href=\"https://en.wikipedia.org/wiki/North_East_England\">North East England,</a> <a href=\"https://en.wikipedia.org/wiki/Tyne_and_Wear\">Tyne &amp; Wear</a>,\r\n<h2><strong><span style=\"color: #008000;\">Google Map</span></strong></h2>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Opening Hours</span></strong></h2>\r\n<div class=\"ak\">\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>\r\n</div>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Services We Provide</span></strong></h2>\r\nHypnotherapy Service\r\nHealth Consultant\r\nLife Coach\r\nCounsellor Services\r\nSelf Hypnosis\r\nNeuro-Linguistic Programming - NLP\r\nEmotional Freedom Technique - EFT,\r\nMediMindfulness\r\nfullness and more.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-23 19:19:30','2018-06-23 19:19:30','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1022,1,'2018-06-23 19:36:24','2018-06-23 19:36:24','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services,\r\nWe can help you with a wide range of issues including anxiety, stress, depression, weight loss, stop smoking, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy uses powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfulness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n<h2><span style=\"color: #008000;\"><strong>Proudly Serving Newcastle Upon Tyne\r\n</strong></span></h2>\r\n<a href=\"https://www.chroniclelive.co.uk/all-about/newcastle-upon-tyne\">Newcastle upon Tyne</a>, <a href=\"https://www.visitnorthumberland.com/\">Northumberland,</a> <a href=\"https://www.chroniclelive.co.uk/all-about/sunderland-city-centre\">Sunderland</a>, <a href=\"https://en.wikipedia.org/wiki/North_East_England\">North East England,</a> <a href=\"https://en.wikipedia.org/wiki/Tyne_and_Wear\">Tyne &amp; Wear</a>,\r\n<h2><strong><span style=\"color: #008000;\">Google Map</span></strong></h2>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Opening Hours</span></strong></h2>\r\n<div class=\"ak\">\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>\r\n</div>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Services We Provide</span></strong></h2>\r\nHypnotherapy Service\r\nHealth Consultant\r\nLife Coach\r\nCounsellor Services\r\nSelf Hypnosis\r\nNeuro-Linguistic Programming - NLP\r\nEmotional Freedom Technique - EFT,\r\nMediMindfulness\r\nfullness and more.\r\n<h2><span style=\"color: #008000;\"><strong>Nearby Places</strong></span></h2>\r\n<strong>The Vault - <a href=\"http://www.the-vault.org/\">Creative Wellbeing Centre</a></strong>\r\n<strong>The Linskill Centre - <a href=\"https://www.linskillcentre.co.uk/\">North Sheilds Community  Centre</a>\r\nSegedunum - <a href=\"https://segedunumromanfort.org.uk/\">Roman Fort and Museum</a>\r\nStephenson - <a href=\"https://stephensonrailwaymuseum.org.uk/\">Railway Museum</a>\r\nAlternative Stores - <a href=\"http://www.alternativestores.com/vegan-vegetarian-shopping/newcastle-vegan-health-food-store\">Newcastle Health Food Store</a>\r\nPulp Fiction - <a href=\"https://www.pulpfictionfuturefood.com/\">Whole Food, Health Food Cafe</a>\r\nFood For Thought - <a href=\"https://www.food-for-thought-uk.co.uk/\">Health Foods &amp; Organic Bakery</a>\r\n\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-23 19:36:24','2018-06-23 19:36:24','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1023,1,'2018-06-23 20:09:22','2018-06-23 20:09:22','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services,\r\nWe can help you with a wide range of issues including anxiety, stress, depression, weight loss, stop smoking, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy uses powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfulness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n<h2><span style=\"color: #008000;\"><strong>Proudly Serving Newcastle Upon Tyne\r\n</strong></span></h2>\r\n<a href=\"https://www.chroniclelive.co.uk/all-about/newcastle-upon-tyne\">Newcastle upon Tyne</a>, <a href=\"https://www.visitnorthumberland.com/\">Northumberland,</a> <a href=\"https://www.chroniclelive.co.uk/all-about/sunderland-city-centre\">Sunderland</a>, <a href=\"https://en.wikipedia.org/wiki/North_East_England\">North East England,</a> <a href=\"https://en.wikipedia.org/wiki/Tyne_and_Wear\">Tyne &amp; Wear</a>,\r\n<h2><strong><span style=\"color: #008000;\">Google Map</span></strong></h2>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Opening Hours</span></strong></h2>\r\n<div class=\"ak\">\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>\r\n</div>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Services We Provide</span></strong></h2>\r\nHypnotherapy Service\r\nHealth Consultant\r\nLife Coach\r\nCounsellor Services\r\nSelf Hypnosis\r\nNeuro-Linguistic Programming - NLP\r\nEmotional Freedom Technique - EFT,\r\nMediMindfulness\r\nfullness and more.\r\n<h2><span style=\"color: #008000;\"><strong>Nearby Places - Newcastle upon Tyne\r\n</strong></span></h2>\r\n<strong>The Vault - <a href=\"http://www.the-vault.org/\">Creative Wellbeing Centre</a></strong>\r\n<strong>The Linskill Centre - <a href=\"https://www.linskillcentre.co.uk/\">North Sheilds Community  Centre</a>\r\nSegedunum - <a href=\"https://segedunumromanfort.org.uk/\">Roman Fort and Museum</a>\r\nStephenson - <a href=\"https://stephensonrailwaymuseum.org.uk/\">Railway Museum</a>\r\nAlternative Stores - <a href=\"http://www.alternativestores.com/vegan-vegetarian-shopping/newcastle-vegan-health-food-store\">Newcastle Health Food Store</a>\r\nPulp Fiction - <a href=\"https://www.pulpfictionfuturefood.com/\">Whole Food, Health Food Cafe</a>\r\nFood For Thought - <a href=\"https://www.food-for-thought-uk.co.uk/\">Health Foods &amp; Organic Bakery</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-23 20:09:22','2018-06-23 20:09:22','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1024,1,'2018-06-23 20:13:16','2018-06-23 20:13:16','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services,\r\nWe can help you with a wide range of issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a>, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">stress</a>, <a href=\"http://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">depression</a>, weight loss, <a href=\"http://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">stop smoking</a>, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy uses powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfulness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n<h2><span style=\"color: #008000;\"><strong>Proudly Serving Newcastle Upon Tyne\r\n</strong></span></h2>\r\n<a href=\"https://www.chroniclelive.co.uk/all-about/newcastle-upon-tyne\">Newcastle upon Tyne</a>, <a href=\"https://www.visitnorthumberland.com/\">Northumberland,</a> <a href=\"https://www.chroniclelive.co.uk/all-about/sunderland-city-centre\">Sunderland</a>, <a href=\"https://en.wikipedia.org/wiki/North_East_England\">North East England,</a> <a href=\"https://en.wikipedia.org/wiki/Tyne_and_Wear\">Tyne &amp; Wear</a>,\r\n<h2><strong><span style=\"color: #008000;\">Google Map</span></strong></h2>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Opening Hours</span></strong></h2>\r\n<div class=\"ak\">\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>\r\n</div>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Services We Provide</span></strong></h2>\r\nHypnotherapy Service\r\nHealth Consultant\r\nLife Coach\r\nCounsellor Services\r\nSelf Hypnosis\r\nNeuro-Linguistic Programming - NLP\r\nEmotional Freedom Technique - EFT,\r\nMediMindfulness\r\nfullness and more.\r\n<h2><span style=\"color: #008000;\"><strong>Nearby Places - Newcastle upon Tyne\r\n</strong></span></h2>\r\n<strong>The Vault - <a href=\"http://www.the-vault.org/\">Creative Wellbeing Centre</a></strong>\r\n<strong>The Linskill Centre - <a href=\"https://www.linskillcentre.co.uk/\">North Sheilds Community  Centre</a>\r\nSegedunum - <a href=\"https://segedunumromanfort.org.uk/\">Roman Fort and Museum</a>\r\nStephenson - <a href=\"https://stephensonrailwaymuseum.org.uk/\">Railway Museum</a>\r\nAlternative Stores - <a href=\"http://www.alternativestores.com/vegan-vegetarian-shopping/newcastle-vegan-health-food-store\">Newcastle Health Food Store</a>\r\nPulp Fiction - <a href=\"https://www.pulpfictionfuturefood.com/\">Whole Food, Health Food Cafe</a>\r\nFood For Thought - <a href=\"https://www.food-for-thought-uk.co.uk/\">Health Foods &amp; Organic Bakery</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-23 20:13:16','2018-06-23 20:13:16','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1025,1,'2018-06-23 20:24:00','2018-06-23 20:24:00','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services,\r\nWe can help you with a wide range of issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a>, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">stress</a>, <a href=\"http://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">depression</a>, weight loss, <a href=\"http://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">stop smoking</a>, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy uses powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfulness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n<h2><span style=\"color: #008000;\"><strong>Proudly Serving Newcastle Upon Tyne\r\n</strong></span></h2>\r\n<a href=\"https://www.chroniclelive.co.uk/all-about/newcastle-upon-tyne\">Newcastle upon Tyne</a>, <a href=\"https://www.visitnorthumberland.com/\">Northumberland,</a> <a href=\"https://www.chroniclelive.co.uk/all-about/sunderland-city-centre\">Sunderland</a>, <a href=\"https://en.wikipedia.org/wiki/North_East_England\">North East England,</a> <a href=\"https://en.wikipedia.org/wiki/Tyne_and_Wear\">Tyne &amp; Wear</a>,\r\n<h2><strong><span style=\"color: #008000;\">Google Map</span></strong></h2>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Opening Hours</span></strong></h2>\r\n<div class=\"ak\">\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>\r\n</div>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Services We Provide</span></strong></h2>\r\nHypnotherapy Service\r\nHealth Consultant\r\nLife Coach\r\nCounsellor Services\r\nSelf Hypnosis\r\nNeuro-Linguistic Programming - NLP\r\nEmotional Freedom Technique - EFT,\r\nMediMindfulness\r\nfullness and more.\r\n<h2><span style=\"color: #008000;\"><strong>Nearby Places - Newcastle upon Tyne\r\n</strong></span></h2>\r\n<strong>The Vault - <a href=\"http://www.the-vault.org/\">Creative Wellbeing Centre</a></strong>\r\n<strong>The Linskill Centre - <a href=\"https://www.linskillcentre.co.uk/\">North Sheilds Community  Centre</a>\r\nSegedunum - <a href=\"https://segedunumromanfort.org.uk/\">Roman Fort and Museum</a>\r\nStephenson - <a href=\"https://stephensonrailwaymuseum.org.uk/\">Railway Museum</a>\r\nAlternative Stores - <a href=\"http://www.alternativestores.com/vegan-vegetarian-shopping/newcastle-vegan-health-food-store\">Newcastle Health Food Store</a>\r\nPulp Fiction - <a href=\"https://www.pulpfictionfuturefood.com/\">Whole Food, Health Food Cafe</a>\r\nFood For Thought - <a href=\"https://www.food-for-thought-uk.co.uk/\">Health Foods &amp; Organic Bakery</a></strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Find Us On</span></strong></h2>\r\n<a href=\"https://www.facebook.com/newcastlehypnosis/\">Newcastle Hypnotherapy Facebook</a>\r\n<a href=\"https://twitter.com/Newcastlehypno\">Newcastle Hypnotherapy Twitter</a>\r\n<a href=\"https://foursquare.com/v/newcastle-hypnotherapy/5b17ba1b2619ee002c938eff\">Newcastle Hypnotherapy Foursquare</a>\r\n<a href=\"https://www.yell.com/biz/newcastle-hypnotherapy-wallsend-9119041/\">Newcastle Hypnotherapy Yell</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-23 20:24:00','2018-06-23 20:24:00','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1027,1,'2018-06-25 19:14:44','2018-06-25 19:14:44','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services,\r\nWe can help you with a wide range of issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a>, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">stress</a>, <a href=\"http://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">depression</a>, weight loss, <a href=\"http://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">stop smoking</a>, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy uses powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfulness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n<h2><span style=\"color: #008000;\"><strong>Proudly Serving Newcastle Upon Tyne\r\n</strong></span></h2>\r\n<a href=\"https://www.chroniclelive.co.uk/all-about/newcastle-upon-tyne\">Newcastle upon Tyne</a>, <a href=\"https://www.visitnorthumberland.com/\">Northumberland,</a> <a href=\"https://www.chroniclelive.co.uk/all-about/sunderland-city-centre\">Sunderland</a>, <a href=\"https://en.wikipedia.org/wiki/North_East_England\">North East England,</a> <a href=\"https://en.wikipedia.org/wiki/Tyne_and_Wear\">Tyne &amp; Wear</a>,\r\n<h2><strong><span style=\"color: #008000;\">Google Map</span></strong></h2>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Opening Hours</span></strong></h2>\r\n<div class=\"ak\">\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>\r\n</div>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Services We Provide</span></strong></h2>\r\nHypnotherapy Service\r\nHealth Consultant\r\nLife Coach\r\nCounsellor Services\r\nSelf Hypnosis\r\nNeuro-Linguistic Programming - NLP\r\nEmotional Freedom Technique - EFT,\r\nMediMindfulness\r\nfullness and more.\r\n<h2><span style=\"color: #008000;\"><strong>Nearby Places - Newcastle upon Tyne\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>\r\nRestaurants\r\n</strong></span><strong>Pulp Fiction - </strong><strong><a href=\"https://www.pulpfictionfuturefood.com/\">Whole Food, Health Food Cafe</a>\r\n</strong><a href=\"https://www.facebook.com/Super-Natural-Cafe-788599297887313/\"><strong>Supernatural Kitchen</strong></a><strong>\r\n</strong><a href=\"http://www.skyapple.co.uk/\"><strong>Sky Apple Cafe</strong></a><strong>\r\n</strong><strong><a href=\"http://www.iloveboho.co.uk/\">The Bohemian</a></strong><span style=\"color: #008000;\"><strong>\r\nThe Linskill Centre - <a href=\"https://www.linskillcentre.co.uk/\">North Sheilds Community Centre</a>\r\n</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Community</strong></span>\r\n<strong>The Vault - <a href=\"http://www.the-vault.org/\">Creative Wellbeing Centre</a>\r\nThe Linskill Centre - <a href=\"https://www.linskillcentre.co.uk/\">North Sheilds Community Centre</a></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Good Pubs</strong></span>\r\n<strong><a href=\"https://trilliansnewcastle.co.uk/\">Trillions Rock Bar</a></strong>\r\n<a href=\"http://www.citytavern.co.uk/\"><strong>The City Tavern - Newcastle</strong></a>\r\n<a href=\"https://www.newcastlegateshead.com/food-and-drink/the-ship-inn-p888571\"><strong>The Ship Ouseburn</strong></a>\r\n\r\n<span style=\"color: #008000;\"><strong>Events &amp; Places To Visit</strong></span>\r\n<strong>Segedunum - <a href=\"https://segedunumromanfort.org.uk/\">Roman Fort and Museum</a>\r\nStephenson - <a href=\"https://stephensonrailwaymuseum.org.uk/\">Railway Museum</a>\r\nFood For Thought - <a href=\"https://www.food-for-thought-uk.co.uk/\">Health Foods &amp; Organic Bakery</a>\r\n<a href=\"http://www.the-vault.org/fairs.html\">The Newcastle Mind Body Spirit Fair @ The Vault</a>\r\n\r\n</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Find Us On</span></strong></h2>\r\n<a href=\"https://www.facebook.com/newcastlehypnosis/\">Newcastle Hypnotherapy Facebook</a>\r\n<a href=\"https://twitter.com/Newcastlehypno\">Newcastle Hypnotherapy Twitter</a>\r\n<a href=\"https://foursquare.com/v/newcastle-hypnotherapy/5b17ba1b2619ee002c938eff\">Newcastle Hypnotherapy Foursquare</a>\r\n<a href=\"https://www.yell.com/biz/newcastle-hypnotherapy-wallsend-9119041/\">Newcastle Hypnotherapy Yell</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-25 19:14:44','2018-06-25 19:14:44','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1028,1,'2018-06-25 19:25:34','2018-06-25 19:25:34','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services,\r\nWe can help you with a wide range of issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a>, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">stress</a>, <a href=\"http://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">depression</a>, weight loss, <a href=\"http://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">stop smoking</a>, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy uses powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfulness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n<h2><span style=\"color: #008000;\"><strong>Proudly Serving Newcastle Upon Tyne\r\n</strong></span></h2>\r\n<a href=\"https://www.chroniclelive.co.uk/all-about/newcastle-upon-tyne\">Newcastle upon Tyne</a>, <a href=\"https://www.visitnorthumberland.com/\">Northumberland,</a> <a href=\"https://www.chroniclelive.co.uk/all-about/sunderland-city-centre\">Sunderland</a>, <a href=\"https://en.wikipedia.org/wiki/North_East_England\">North East England,</a> <a href=\"https://en.wikipedia.org/wiki/Tyne_and_Wear\">Tyne &amp; Wear</a>,\r\n<h2><strong><span style=\"color: #008000;\">Google Map</span></strong></h2>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Opening Hours</span></strong></h2>\r\n<div class=\"ak\">\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>\r\n</div>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Services We Provide</span></strong></h2>\r\nHypnotherapy Service\r\nHealth Consultant\r\nLife Coach\r\nCounsellor Services\r\nSelf Hypnosis\r\nNeuro-Linguistic Programming - NLP\r\nEmotional Freedom Technique - EFT,\r\nMediMindfulness\r\nfullness and more.\r\n<h2><span style=\"color: #008000;\"><strong>Nearby Places - Newcastle upon Tyne\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>\r\nRestaurants\r\n</strong></span><strong>Pulp Fiction - </strong><strong><a href=\"https://www.pulpfictionfuturefood.com/\">Whole Food, Health Food Cafe</a>\r\n</strong><a href=\"https://www.facebook.com/Super-Natural-Cafe-788599297887313/\"><strong>Supernatural Kitchen</strong></a><strong>\r\n</strong><a href=\"http://www.skyapple.co.uk/\"><strong>Sky Apple Cafe</strong></a><strong>\r\n</strong><strong><a href=\"http://www.iloveboho.co.uk/\">The Bohemian</a></strong><span style=\"color: #008000;\"><strong>\r\nThe Linskill Centre - <a href=\"https://www.linskillcentre.co.uk/\">North Sheilds Community Centre</a>\r\n</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Community</strong></span>\r\n<strong>The Vault - <a href=\"http://www.the-vault.org/\">Creative Wellbeing Centre</a>\r\nThe Linskill Centre - <a href=\"https://www.linskillcentre.co.uk/\">North Sheilds Community Centre</a></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Good Pubs</strong></span>\r\n<strong><a href=\"https://trilliansnewcastle.co.uk/\">Trillions Rock Bar</a></strong>\r\n<a href=\"http://www.citytavern.co.uk/\"><strong>The City Tavern - Newcastle</strong></a>\r\n<a href=\"https://www.newcastlegateshead.com/food-and-drink/the-ship-inn-p888571\"><strong>The Ship Ouseburn</strong></a>\r\n\r\n<span style=\"color: #008000;\"><strong>Events &amp; Places To Visit</strong></span>\r\n<strong>Segedunum - <a href=\"https://segedunumromanfort.org.uk/\">Roman Fort and Museum</a>\r\nStephenson - <a href=\"https://stephensonrailwaymuseum.org.uk/\">Railway Museum</a>\r\nFood For Thought - <a href=\"https://www.food-for-thought-uk.co.uk/\">Health Foods &amp; Organic Bakery</a>\r\n<a href=\"http://www.the-vault.org/fairs.html\">The Newcastle Mind Body Spirit Fair @ The Vault</a>\r\n<a href=\"http://www.newcastlecastle.co.uk/\">Newcastle Castle</a>\r\n<a href=\"http://baltic.art/\">The Baltic</a></strong>\r\n<strong><a href=\"https://greatnorthmuseum.org.uk/\">The Great North Museum</a></strong>\r\n<strong><a href=\"http://stnicholascathedral.co.uk/\">Newcastle Cathedral</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Find Us On</span></strong></h2>\r\n<a href=\"https://www.facebook.com/newcastlehypnosis/\">Newcastle Hypnotherapy Facebook</a>\r\n<a href=\"https://twitter.com/Newcastlehypno\">Newcastle Hypnotherapy Twitter</a>\r\n<a href=\"https://foursquare.com/v/newcastle-hypnotherapy/5b17ba1b2619ee002c938eff\">Newcastle Hypnotherapy Foursquare</a>\r\n<a href=\"https://www.yell.com/biz/newcastle-hypnotherapy-wallsend-9119041/\">Newcastle Hypnotherapy Yell</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-25 19:25:34','2018-06-25 19:25:34','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1029,1,'2018-06-25 19:49:57','2018-06-25 19:49:57','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services and other modern therapies.\r\nWe can help you with a wide range of issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a>, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">stress</a>, <a href=\"http://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">depression</a>, weight loss, <a href=\"http://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">stop smoking</a>, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy uses powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfulness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n<h2><span style=\"color: #008000;\"><strong>Proudly Serving Newcastle Upon Tyne\r\n</strong></span></h2>\r\n<a href=\"https://www.chroniclelive.co.uk/all-about/newcastle-upon-tyne\">Newcastle upon Tyne</a>, <a href=\"https://www.visitnorthumberland.com/\">Northumberland,</a> <a href=\"https://www.chroniclelive.co.uk/all-about/sunderland-city-centre\">Sunderland</a>, <a href=\"https://en.wikipedia.org/wiki/North_East_England\">North East England,</a> <a href=\"https://en.wikipedia.org/wiki/Tyne_and_Wear\">Tyne &amp; Wear</a>,\r\n<h2><strong><span style=\"color: #008000;\">Google Map</span></strong></h2>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Opening Hours</span></strong></h2>\r\n<div class=\"ak\">\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>\r\n</div>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Services We Provide</span></strong></h2>\r\nHypnotherapy Service\r\nHealth Consultant\r\nLife Coach\r\nCounsellor Services\r\nSelf Hypnosis\r\nNeuro-Linguistic Programming - NLP\r\nEmotional Freedom Technique - EFT,\r\nMediMindfulness\r\nfullness and more.\r\n<h2><span style=\"color: #008000;\"><strong>Nearby Places - Newcastle upon Tyne\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>\r\nRestaurants\r\n</strong></span><strong>Pulp Fiction - </strong><strong><a href=\"https://www.pulpfictionfuturefood.com/\">Whole Food, Health Food Cafe</a>\r\n</strong><a href=\"https://www.facebook.com/Super-Natural-Cafe-788599297887313/\"><strong>Supernatural Kitchen</strong></a><strong>\r\n</strong><a href=\"http://www.skyapple.co.uk/\"><strong>Sky Apple Cafe</strong></a><strong>\r\n</strong><strong><a href=\"http://www.iloveboho.co.uk/\">The Bohemian</a></strong><span style=\"color: #008000;\"><strong>\r\nThe Linskill Centre - <a href=\"https://www.linskillcentre.co.uk/\">North Sheilds Community Centre</a>\r\n</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Community Places</strong></span>\r\n<strong>The Vault - <a href=\"http://www.the-vault.org/\">Creative Wellbeing Centre</a>\r\nThe Linskill Centre - <a href=\"https://www.linskillcentre.co.uk/\">North Sheilds Community Centre</a></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Good Pubs</strong></span>\r\n<strong><a href=\"https://trilliansnewcastle.co.uk/\">Trillions Rock Bar</a></strong>\r\n<a href=\"http://www.citytavern.co.uk/\"><strong>The City Tavern - Newcastle</strong></a>\r\n<a href=\"https://www.newcastlegateshead.com/food-and-drink/the-ship-inn-p888571\"><strong>The Ship Ouseburn</strong></a>\r\n\r\n<span style=\"color: #008000;\"><strong>Events &amp; Places To Visit</strong></span>\r\n<strong>Segedunum - <a href=\"https://segedunumromanfort.org.uk/\">Roman Fort and Museum</a>\r\nStephenson - <a href=\"https://stephensonrailwaymuseum.org.uk/\">Railway Museum</a>\r\nFood For Thought - <a href=\"https://www.food-for-thought-uk.co.uk/\">Health Foods &amp; Organic Bakery</a>\r\n<a href=\"http://www.the-vault.org/fairs.html\">The Newcastle Mind Body Spirit Fair @ The Vault</a>\r\n<a href=\"http://www.newcastlecastle.co.uk/\">Newcastle Castle</a>\r\n<a href=\"http://baltic.art/\">The Baltic</a></strong>\r\n<strong><a href=\"https://greatnorthmuseum.org.uk/\">The Great North Museum</a></strong>\r\n<strong><a href=\"http://stnicholascathedral.co.uk/\">Newcastle Cathedral</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Find Us On</span></strong></h2>\r\n<a href=\"https://www.facebook.com/newcastlehypnosis/\">Newcastle Hypnotherapy Facebook</a>\r\n<a href=\"https://twitter.com/Newcastlehypno\">Newcastle Hypnotherapy Twitter</a>\r\n<a href=\"https://foursquare.com/v/newcastle-hypnotherapy/5b17ba1b2619ee002c938eff\">Newcastle Hypnotherapy Foursquare</a>\r\n<a href=\"https://www.yell.com/biz/newcastle-hypnotherapy-wallsend-9119041/\">Newcastle Hypnotherapy Yell</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-25 19:49:57','2018-06-25 19:49:57','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1030,1,'2018-06-25 19:54:25','2018-06-25 19:54:25','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services and other modern therapies.\r\nWe can help you with a wide range of issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a>, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">stress</a>, <a href=\"http://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">depression</a>, weight loss, <a href=\"http://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">stop smoking</a>, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy uses powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfulness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n<h2><span style=\"color: #008000;\"><strong>Proudly Serving Newcastle Upon Tyne\r\n</strong></span></h2>\r\n<a href=\"https://www.chroniclelive.co.uk/all-about/newcastle-upon-tyne\">Newcastle upon Tyne</a>, <a href=\"https://www.visitnorthumberland.com/\">Northumberland,</a> <a href=\"https://www.chroniclelive.co.uk/all-about/sunderland-city-centre\">Sunderland</a>, <a href=\"https://en.wikipedia.org/wiki/North_East_England\">North East England,</a> <a href=\"https://en.wikipedia.org/wiki/Tyne_and_Wear\">Tyne &amp; Wear</a>,\r\n<h2><strong><span style=\"color: #008000;\">Google Map</span></strong></h2>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Opening Hours</span></strong></h2>\r\n<div class=\"ak\">\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>\r\n</div>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Services We Provide</span></strong></h2>\r\nHypnotherapy Service\r\nHealth Consultant\r\nLife Coach\r\nCounsellor Services\r\nSelf Hypnosis\r\nNeuro-Linguistic Programming - NLP\r\nEmotional Freedom Technique - EFT,\r\nMediMindfulness\r\nfullness and more.\r\n<h2><span style=\"color: #008000;\"><strong>Nearby Places - Newcastle upon Tyne\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Restaurants\r\n</strong></span><strong>Pulp Fiction - </strong><strong><a href=\"https://www.pulpfictionfuturefood.com/\">Whole Food, Health Food Cafe</a>\r\n</strong><a href=\"https://www.facebook.com/Super-Natural-Cafe-788599297887313/\"><strong>Supernatural Kitchen</strong></a><strong>\r\n</strong><a href=\"http://www.skyapple.co.uk/\"><strong>Sky Apple Cafe</strong></a><strong>\r\n</strong><strong><a href=\"http://www.iloveboho.co.uk/\">The Bohemian</a></strong><span style=\"color: #008000;\"><strong>\r\nThe Linskill Centre - <a href=\"https://www.linskillcentre.co.uk/\">North Sheilds Community Centre</a>\r\n</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Community Places</strong></span>\r\n<strong>The Vault - <a href=\"http://www.the-vault.org/\">Creative Wellbeing Centre</a>\r\nThe Linskill Centre - <a href=\"https://www.linskillcentre.co.uk/\">North Sheilds Community Centre</a></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Good Pubs</strong></span>\r\n<strong><a href=\"https://trilliansnewcastle.co.uk/\">Trillions Rock Bar</a></strong>\r\n<a href=\"http://www.citytavern.co.uk/\"><strong>The City Tavern - Newcastle</strong></a>\r\n<a href=\"https://www.newcastlegateshead.com/food-and-drink/the-ship-inn-p888571\"><strong>The Ship Ouseburn</strong></a>\r\n\r\n<span style=\"color: #008000;\"><strong>Events &amp; Places To Visit</strong></span>\r\n<strong>Segedunum - <a href=\"https://segedunumromanfort.org.uk/\">Roman Fort and Museum</a>\r\nStephenson - <a href=\"https://stephensonrailwaymuseum.org.uk/\">Railway Museum</a>\r\nFood For Thought - <a href=\"https://www.food-for-thought-uk.co.uk/\">Health Foods &amp; Organic Bakery</a>\r\n<a href=\"http://www.the-vault.org/fairs.html\">The Newcastle Mind Body Spirit Fair @ The Vault</a>\r\n<a href=\"http://www.newcastlecastle.co.uk/\">Newcastle Castle</a>\r\n<a href=\"http://baltic.art/\">The Baltic</a></strong>\r\n<strong><a href=\"https://greatnorthmuseum.org.uk/\">The Great North Museum</a></strong>\r\n<strong><a href=\"http://stnicholascathedral.co.uk/\">Newcastle Cathedral</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">There are so many great places to visit in Newcastle and Northumberland.\r\nDo take the time to find some of the great beaches, country walks, beautiful forests, local attractions, museums, eating places, theatres and so much more.\r\n\r\n\r\nFind Us On</span></strong>\r\n\r\n<a href=\"https://www.facebook.com/newcastlehypnosis/\">Newcastle Hypnotherapy Facebook</a>\r\n<a href=\"https://twitter.com/Newcastlehypno\">Newcastle Hypnotherapy Twitter</a>\r\n<a href=\"https://foursquare.com/v/newcastle-hypnotherapy/5b17ba1b2619ee002c938eff\">Newcastle Hypnotherapy Foursquare</a>\r\n<a href=\"https://www.yell.com/biz/newcastle-hypnotherapy-wallsend-9119041/\">Newcastle Hypnotherapy Yell</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-25 19:54:25','2018-06-25 19:54:25','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1031,1,'2018-06-25 20:07:41','2018-06-25 20:07:41','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services and other modern therapies.\r\nWe can help you with a wide range of issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a>, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">stress</a>, <a href=\"http://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">depression</a>, weight loss, <a href=\"http://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">stop smoking</a>, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy uses powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfulness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n<h2><span style=\"color: #008000;\"><strong>Proudly Serving Newcastle Upon Tyne\r\n</strong></span></h2>\r\n<a href=\"https://www.chroniclelive.co.uk/all-about/newcastle-upon-tyne\">Newcastle upon Tyne</a>, <a href=\"https://www.visitnorthumberland.com/\">Northumberland,</a> <a href=\"https://www.chroniclelive.co.uk/all-about/sunderland-city-centre\">Sunderland</a>, <a href=\"https://en.wikipedia.org/wiki/North_East_England\">North East England,</a> <a href=\"https://en.wikipedia.org/wiki/Tyne_and_Wear\">Tyne &amp; Wear</a>,\r\n<h2><strong><span style=\"color: #008000;\">Google Map</span></strong></h2>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Opening Hours</span></strong></h2>\r\n<div class=\"ak\">\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>\r\n</div>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Services We Provide</span></strong></h2>\r\nHypnotherapy Service\r\nHealth Consultant\r\nLife Coach\r\nCounsellor Services\r\nSelf Hypnosis\r\nNeuro-Linguistic Programming - NLP\r\nEmotional Freedom Technique - EFT,\r\nMediMindfulness\r\nfullness and more.\r\n<h2><span style=\"color: #008000;\"><strong>Nearby Places - Newcastle upon Tyne\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Restaurants\r\n</strong></span><strong>Pulp Fiction - </strong><strong><a href=\"https://www.pulpfictionfuturefood.com/\">Whole Food, Health Food Cafe</a>\r\n</strong><a href=\"https://www.facebook.com/Super-Natural-Cafe-788599297887313/\"><strong>Supernatural Kitchen</strong></a><strong>\r\n</strong><a href=\"http://www.skyapple.co.uk/\"><strong>Sky Apple Cafe</strong></a><strong>\r\n</strong><strong><a href=\"http://www.iloveboho.co.uk/\">The Bohemian</a></strong><span style=\"color: #008000;\"><strong>\r\nThe Linskill Centre - <a href=\"https://www.linskillcentre.co.uk/\">North Sheilds Community Centre</a>\r\n</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Community Places</strong></span>\r\n<strong>The Vault - <a href=\"http://www.the-vault.org/\">Creative Wellbeing Centre</a>\r\nThe Linskill Centre - <a href=\"https://www.linskillcentre.co.uk/\">North Sheilds Community Centre</a></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Good Pubs</strong></span>\r\n<strong><a href=\"https://trilliansnewcastle.co.uk/\">Trillions Rock Bar</a></strong>\r\n<a href=\"http://www.citytavern.co.uk/\"><strong>The City Tavern - Newcastle</strong></a>\r\n<a href=\"https://www.newcastlegateshead.com/food-and-drink/the-ship-inn-p888571\"><strong>The Ship Ouseburn</strong></a>\r\n\r\n<span style=\"color: #008000;\"><strong>Events &amp; Places To Visit</strong></span>\r\n<strong>Segedunum - <a href=\"https://segedunumromanfort.org.uk/\">Roman Fort and Museum</a>\r\nStephenson - <a href=\"https://stephensonrailwaymuseum.org.uk/\">Railway Museum</a>\r\nFood For Thought - <a href=\"https://www.food-for-thought-uk.co.uk/\">Health Foods &amp; Organic Bakery</a>\r\n<a href=\"http://www.the-vault.org/fairs.html\">The Newcastle Mind Body Spirit Fair @ The Vault</a>\r\n<a href=\"http://www.newcastlecastle.co.uk/\">Newcastle Castle</a>\r\n<a href=\"http://baltic.art/\">The Baltic</a></strong>\r\n<strong><a href=\"https://greatnorthmuseum.org.uk/\">The Great North Museum</a></strong>\r\n<strong><a href=\"http://stnicholascathedral.co.uk/\">Newcastle Cathedral</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">There are so many great places to visit in Newcastle and Northumberland.\r\nDo take the time to find some of the great beaches, country walks, beautiful forests, local attractions, museums, eating places, theatres and so much more.</span></strong>\r\n\r\nFind Us On\r\n\r\n<a href=\"https://www.facebook.com/newcastlehypnosis/\">Newcastle Hypnotherapy Facebook</a>\r\n<a href=\"https://twitter.com/Newcastlehypno\">Newcastle Hypnotherapy Twitter</a>\r\n<a href=\"https://foursquare.com/v/newcastle-hypnotherapy/5b17ba1b2619ee002c938eff\">Newcastle Hypnotherapy Foursquare</a>\r\n<a href=\"https://www.yell.com/biz/newcastle-hypnotherapy-wallsend-9119041/\">Newcastle Hypnotherapy Yell</a>\r\n\r\n&nbsp;\r\n\r\nIf you would like a free consultation to see how hypnosis &amp; hypnotherapy can help you, simply call 07568 455 809 today.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle upon Tyne','','inherit','closed','closed','','1003-revision-v1','','','2018-06-25 20:07:41','2018-06-25 20:07:41','',1003,'http://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1035,1,'2018-07-26 06:25:32','2018-07-26 06:25:32','<h3><span style=\"color: #008000;\"><strong>September the 5th @ The Vault. 7.30 pm to 9.30.</strong></span>\n<strong><span style=\"color: #008000;\">£7 per person. Book your place below. Limited spaces</span>\n</strong></h3>\n<img class=\"alignleft size-medium wp-image-1040\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />Meditation is a wonderful way to relax and research shows there are many health benefits associated with regular meditation practice.\nIn this enjoyable workshop, we will show you how to speed up your meditation results and how to reach deeper levels of relaxation using the power of Self-Hypnosis.\n\n<strong><span style=\"color: #008000;\">This workshop is for everyone.</span></strong>\nIf you struggle with meditation or find you don\'t relax deep enough, this workshop will help you to really speed up your results.\nIf you enjoy meditation and want to improve your results, this workshop will also help you to achieve greater results.\n\nWe will also discuss how self-hypnosis differs from mindfulness and meditation, and how to combine all three for best results. You will learn new skills, some great self-hypnosis skills and also make some friends.\n\n<span style=\"color: #008000;\"><strong>Attendance is strictly by advance booking only and numbers are limited to just 12 people</strong>.\n</span> You can <em>book your place below now</em>, only while places remain.\n\nTo <em>book your place today</em>, please click the link below. Terms &amp; conditions are below.\nAn email will be sent to all of those attending a few days before with parking information and attendance details.\nYou can learn about more events using the form below.\n\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"4BT9YHP8LM3CY\" />\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>The Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\nFeel free to suggest a topic or something you would like a workshop to focus on.\nIf you could run a workshop please <strong><span style=\"color: #008000;\">Contact Us</span></strong> and we can look to schedule that in, if suitable, in the future.\n\n<span style=\"color: #008000;\"><strong>Terms &amp; Conditions.</strong></span>\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\n\nFor details of future events, please enter your details below.\nWe dislike spam and are GDPR compliant. You can unsubscribe at any time and your details will never be shared or sold.\n\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','The Wednesday Workshop - Meditate Deeper & Faster Using Self Hypnosis','','publish','closed','closed','','meditate-deeper-faster-using-self-hypnosis','','','2018-08-12 19:55:47','2018-08-12 19:55:47','',322,'http://www.newcastle-hypnotherapy.com/?page_id=1035',0,'page','',0),(1036,1,'2018-07-22 18:25:03','2018-07-22 18:25:03','<h2>September the 5th @ The Vault. 7.30 pm to 9.30. Advance booking essential. Limited spaces.</h2>\r\nMeditation is a wonderful way to relax and research shows there are many health benefits asscoiated with regular meditation practice.\r\nIn this enjoyable workshop we will show you how to speed up your mediatation results and how to reach deeper levels of relaxation using the power of Self-Hypnosis.\r\n\r\nIf you struggle with meditation or find you don\'t relax deep enough this workshop will help you to speed up your results.\r\nIf you enjoy meditation and want to improve your results this workshop will also help you to achieve greater results.\r\n\r\nWe will also discuss how self-hypnosis differs from mindfulness and meditation, and how to combine all three for best results.\r\nYou will learn new skills, some great self-hypnosis skills and also make some friends.\r\n\r\nAttendance is strictly by advance booking only and numbers are limited to just 12 people.\r\n\r\nTo book you place please click the link below\r\n\r\n\r\n\r\n\r\nWe are pleased to announce the first Wednesday Workshop.\r\nThese workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.','The Wednesday Workshop - Meditate Deeper & Faster Using Self Hypnosis','','inherit','closed','closed','','1035-revision-v1','','','2018-07-22 18:25:03','2018-07-22 18:25:03','',1035,'http://www.newcastle-hypnotherapy.com/1035-revision-v1/',0,'revision','',0),(1037,1,'2018-07-22 18:30:38','2018-07-22 18:30:38','<h2>September the 5th @ The Vault. 7.30 pm to 9.30. Advance booking essential. Limited spaces.</h2>\r\nMeditation is a wonderful way to relax and research shows there are many health benefits asscoiated with regular meditation practice.\r\nIn this enjoyable workshop we will show you how to speed up your mediatation results and how to reach deeper levels of relaxation using the power of Self-Hypnosis.\r\n\r\nIf you struggle with meditation or find you don\'t relax deep enough this workshop will help you to speed up your results.\r\nIf you enjoy meditation and want to improve your results this workshop will also help you to achieve greater results.\r\n\r\nWe will also discuss how self-hypnosis differs from mindfulness and meditation, and how to combine all three for best results.\r\nYou will learn new skills, some great self-hypnosis skills and also make some friends.\r\n\r\nAttendance is strictly by advance booking only and numbers are limited to just 12 people.\r\n\r\nTo book you place please click the link below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"4BT9YHP8LM3CY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>We are pleased to announce the first Wednesday Workshop.\r\nThese workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.','The Wednesday Workshop - Meditate Deeper & Faster Using Self Hypnosis','','inherit','closed','closed','','1035-revision-v1','','','2018-07-22 18:30:38','2018-07-22 18:30:38','',1035,'http://www.newcastle-hypnotherapy.com/1035-revision-v1/',0,'revision','',0),(1038,1,'2018-07-22 18:40:58','2018-07-22 18:40:58','<h2>September the 5th @ The Vault. 7.30 pm to 9.30. Advance booking essential. Limited spaces.</h2>\r\nMeditation is a wonderful way to relax and research shows there are many health benefits associated with regular meditation practice.\r\nIn this enjoyable workshop we will show you how to speed up your meditation results and how to reach deeper levels of relaxation using the power of Self-Hypnosis.\r\n\r\nIf you struggle with meditation or find you don\'t relax deep enough this workshop will help you to speed up your results.\r\nIf you enjoy meditation and want to improve your results this workshop will also help you to achieve greater results.\r\n\r\nWe will also discuss how self-hypnosis differs from mindfulness and meditation, and how to combine all three for best results.\r\nYou will learn new skills, some great self-hypnosis skills and also make some friends.\r\n\r\nAttendance is strictly by advance booking only and numbers are limited to just 12 people.\r\n\r\nTo book your place please click the link below. Terms &amp; conditions are below.\r\nAn email will be sent to all of those attending a few days before with parking information and attendance details.\r\nYou can learn about more events using the form below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"4BT9YHP8LM3CY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>These workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please Contact Us and we can look to schedule that in, if suitable, in the future.\r\n\r\nTerms &amp; Conditions.\r\nThe Wednesday Workshop is a non profit event. Once you have booked you place you can move you place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.','The Wednesday Workshop - Meditate Deeper & Faster Using Self Hypnosis','','inherit','closed','closed','','1035-revision-v1','','','2018-07-22 18:40:58','2018-07-22 18:40:58','',1035,'http://www.newcastle-hypnotherapy.com/1035-revision-v1/',0,'revision','',0),(1039,1,'2018-07-22 18:43:54','2018-07-22 18:43:54','<h2>September the 5th @ The Vault. 7.30 pm to 9.30. Advance booking essential. Limited spaces.</h2>\r\nMeditation is a wonderful way to relax and research shows there are many health benefits associated with regular meditation practice.\r\nIn this enjoyable workshop we will show you how to speed up your meditation results and how to reach deeper levels of relaxation using the power of Self-Hypnosis.\r\n\r\nIf you struggle with meditation or find you don\'t relax deep enough this workshop will help you to speed up your results.\r\nIf you enjoy meditation and want to improve your results this workshop will also help you to achieve greater results.\r\n\r\nWe will also discuss how self-hypnosis differs from mindfulness and meditation, and how to combine all three for best results.\r\nYou will learn new skills, some great self-hypnosis skills and also make some friends.\r\n\r\nAttendance is strictly by advance booking only and numbers are limited to just 12 people.\r\n\r\nTo book your place please click the link below. Terms &amp; conditions are below.\r\nAn email will be sent to all of those attending a few days before with parking information and attendance details.\r\nYou can learn about more events using the form below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"4BT9YHP8LM3CY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>These workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please Contact Us and we can look to schedule that in, if suitable, in the future.\r\n\r\nTerms &amp; Conditions.\r\nThe Wednesday Workshop is a non profit event. Once you have booked you place you can move you place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n\r\nFor details of future events, please enter your details below.\r\nWe dislike spam and are GDPR compliant. You can unsubscribe at anytime and your details will never be shared or sold.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','The Wednesday Workshop - Meditate Deeper & Faster Using Self Hypnosis','','inherit','closed','closed','','1035-revision-v1','','','2018-07-22 18:43:54','2018-07-22 18:43:54','',1035,'http://www.newcastle-hypnotherapy.com/1035-revision-v1/',0,'revision','',0),(1040,1,'2018-07-22 18:44:38','2018-07-22 18:44:38','','33020620_10155862105224398_5832396550940131328_n','','inherit','open','closed','','33020620_10155862105224398_5832396550940131328_n','','','2018-07-22 18:44:55','2018-07-22 18:44:55','',1035,'http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33020620_10155862105224398_5832396550940131328_n.jpg',0,'attachment','image/jpeg',0),(1042,1,'2018-07-26 06:00:14','2018-07-26 06:00:14','<h2>September the 5th @ The Vault. 7.30 pm to 9.30. Advance booking essential. Limited spaces.</h2>\r\n<img class=\"alignleft size-medium wp-image-1040\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />Meditation is a wonderful way to relax and research shows there are many health benefits associated with regular meditation practice.\r\nIn this enjoyable workshop we will show you how to speed up your meditation results and how to reach deeper levels of relaxation using the power of Self-Hypnosis.\r\n\r\nIf you struggle with meditation or find you don\'t relax deep enough this workshop will help you to speed up your results.\r\nIf you enjoy meditation and want to improve your results this workshop will also help you to achieve greater results.\r\n\r\nWe will also discuss how self-hypnosis differs from mindfulness and meditation, and how to combine all three for best results.\r\nYou will learn new skills, some great self-hypnosis skills and also make some friends.\r\n\r\nAttendance is strictly by advance booking only and numbers are limited to just 12 people.\r\n\r\nTo book your place please click the link below. Terms &amp; conditions are below.\r\nAn email will be sent to all of those attending a few days before with parking information and attendance details.\r\nYou can learn about more events using the form below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"4BT9YHP8LM3CY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>These workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please Contact Us and we can look to schedule that in, if suitable, in the future.\r\n\r\nTerms &amp; Conditions.\r\nThe Wednesday Workshop is a non profit event. Once you have booked you place you can move you place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n\r\nFor details of future events, please enter your details below.\r\nWe dislike spam and are GDPR compliant. You can unsubscribe at anytime and your details will never be shared or sold.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','The Wednesday Workshop - Meditate Deeper & Faster Using Self Hypnosis','','inherit','closed','closed','','1035-revision-v1','','','2018-07-26 06:00:14','2018-07-26 06:00:14','',1035,'http://www.newcastle-hypnotherapy.com/1035-revision-v1/',0,'revision','',0),(1041,1,'2018-07-22 18:46:54','2018-07-22 18:46:54','<h2>September the 5th @ The Vault. 7.30 pm to 9.30. Advance booking essential. Limited spaces.</h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<img class=\"alignleft size-medium wp-image-1040\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />Meditation is a wonderful way to relax and research shows there are many health benefits associated with regular meditation practice.\r\nIn this enjoyable workshop we will show you how to speed up your meditation results and how to reach deeper levels of relaxation using the power of Self-Hypnosis.\r\n\r\nIf you struggle with meditation or find you don\'t relax deep enough this workshop will help you to speed up your results.\r\nIf you enjoy meditation and want to improve your results this workshop will also help you to achieve greater results.\r\n\r\nWe will also discuss how self-hypnosis differs from mindfulness and meditation, and how to combine all three for best results.\r\nYou will learn new skills, some great self-hypnosis skills and also make some friends.\r\n\r\nAttendance is strictly by advance booking only and numbers are limited to just 12 people.\r\n\r\nTo book your place please click the link below. Terms &amp; conditions are below.\r\nAn email will be sent to all of those attending a few days before with parking information and attendance details.\r\nYou can learn about more events using the form below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"4BT9YHP8LM3CY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>These workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please Contact Us and we can look to schedule that in, if suitable, in the future.\r\n\r\nTerms &amp; Conditions.\r\nThe Wednesday Workshop is a non profit event. Once you have booked you place you can move you place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n\r\nFor details of future events, please enter your details below.\r\nWe dislike spam and are GDPR compliant. You can unsubscribe at anytime and your details will never be shared or sold.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','The Wednesday Workshop - Meditate Deeper & Faster Using Self Hypnosis','','inherit','closed','closed','','1035-revision-v1','','','2018-07-22 18:46:54','2018-07-22 18:46:54','',1035,'http://www.newcastle-hypnotherapy.com/1035-revision-v1/',0,'revision','',0),(1043,1,'2018-07-26 06:03:33','2018-07-26 06:03:33','<h2><strong>September the 5th @ The Vault. 7.30 pm to 9.30. Advance booking essential. Limited spaces.</strong></h2>\r\n<img class=\"alignleft size-medium wp-image-1040\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />Meditation is a wonderful way to relax and research shows there are many health benefits associated with regular meditation practice.\r\nIn this enjoyable workshop we will show you how to speed up your meditation results and how to reach deeper levels of relaxation using the power of Self-Hypnosis.\r\n\r\nIf you struggle with meditation or find you don\'t relax deep enough this workshop will help you to speed up your results.\r\nIf you enjoy meditation and want to improve your results this workshop will also help you to achieve greater results.\r\n\r\nWe will also discuss how self-hypnosis differs from mindfulness and meditation, and how to combine all three for best results.\r\nYou will learn new skills, some great self-hypnosis skills and also make some friends.\r\n\r\nAttendance is strictly by advance booking only and numbers are limited to just 12 people.\r\n\r\nTo book your place please click the link below. Terms &amp; conditions are below.\r\nAn email will be sent to all of those attending a few days before with parking information and attendance details.\r\nYou can learn about more events using the form below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"4BT9YHP8LM3CY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>These workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please Contact Us and we can look to schedule that in, if suitable, in the future.\r\n\r\nTerms &amp; Conditions.\r\nThe Wednesday Workshop is a non profit event. Once you have booked you place you can move you place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n\r\nFor details of future events, please enter your details below.\r\nWe dislike spam and are GDPR compliant. You can unsubscribe at anytime and your details will never be shared or sold.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','The Wednesday Workshop - Meditate Deeper & Faster Using Self Hypnosis','','inherit','closed','closed','','1035-revision-v1','','','2018-07-26 06:03:33','2018-07-26 06:03:33','',1035,'http://www.newcastle-hypnotherapy.com/1035-revision-v1/',0,'revision','',0),(1044,1,'2018-07-26 06:04:54','2018-07-26 06:04:54','<h2><strong>September the 5th @ The Vault. 7.30 pm to 9.30.\r\n£7 per person. Book your place below. Limited spaces\r\n</strong></h2>\r\n<img class=\"alignleft size-medium wp-image-1040\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />Meditation is a wonderful way to relax and research shows there are many health benefits associated with regular meditation practice.\r\nIn this enjoyable workshop we will show you how to speed up your meditation results and how to reach deeper levels of relaxation using the power of Self-Hypnosis.\r\n\r\nIf you struggle with meditation or find you don\'t relax deep enough this workshop will help you to speed up your results.\r\nIf you enjoy meditation and want to improve your results this workshop will also help you to achieve greater results.\r\n\r\nWe will also discuss how self-hypnosis differs from mindfulness and meditation, and how to combine all three for best results.\r\nYou will learn new skills, some great self-hypnosis skills and also make some friends.\r\n\r\nAttendance is strictly by advance booking only and numbers are limited to just 12 people.\r\n\r\nTo book your place please click the link below. Terms &amp; conditions are below.\r\nAn email will be sent to all of those attending a few days before with parking information and attendance details.\r\nYou can learn about more events using the form below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"4BT9YHP8LM3CY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>These workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please Contact Us and we can look to schedule that in, if suitable, in the future.\r\n\r\nTerms &amp; Conditions.\r\nThe Wednesday Workshop is a non profit event. Once you have booked you place you can move you place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n\r\nFor details of future events, please enter your details below.\r\nWe dislike spam and are GDPR compliant. You can unsubscribe at anytime and your details will never be shared or sold.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','The Wednesday Workshop - Meditate Deeper & Faster Using Self Hypnosis','','inherit','closed','closed','','1035-revision-v1','','','2018-07-26 06:04:54','2018-07-26 06:04:54','',1035,'http://www.newcastle-hypnotherapy.com/1035-revision-v1/',0,'revision','',0),(1045,1,'2018-07-26 06:05:20','2018-07-26 06:05:20','<h3><strong>September the 5th @ The Vault. 7.30 pm to 9.30.</strong>\r\n<strong>£7 per person. Book your place below. Limited spaces\r\n</strong></h3>\r\n<img class=\"alignleft size-medium wp-image-1040\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />Meditation is a wonderful way to relax and research shows there are many health benefits associated with regular meditation practice.\r\nIn this enjoyable workshop we will show you how to speed up your meditation results and how to reach deeper levels of relaxation using the power of Self-Hypnosis.\r\n\r\nIf you struggle with meditation or find you don\'t relax deep enough this workshop will help you to speed up your results.\r\nIf you enjoy meditation and want to improve your results this workshop will also help you to achieve greater results.\r\n\r\nWe will also discuss how self-hypnosis differs from mindfulness and meditation, and how to combine all three for best results.\r\nYou will learn new skills, some great self-hypnosis skills and also make some friends.\r\n\r\nAttendance is strictly by advance booking only and numbers are limited to just 12 people.\r\n\r\nTo book your place please click the link below. Terms &amp; conditions are below.\r\nAn email will be sent to all of those attending a few days before with parking information and attendance details.\r\nYou can learn about more events using the form below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"4BT9YHP8LM3CY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>These workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please Contact Us and we can look to schedule that in, if suitable, in the future.\r\n\r\nTerms &amp; Conditions.\r\nThe Wednesday Workshop is a non profit event. Once you have booked you place you can move you place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n\r\nFor details of future events, please enter your details below.\r\nWe dislike spam and are GDPR compliant. You can unsubscribe at anytime and your details will never be shared or sold.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','The Wednesday Workshop - Meditate Deeper & Faster Using Self Hypnosis','','inherit','closed','closed','','1035-revision-v1','','','2018-07-26 06:05:20','2018-07-26 06:05:20','',1035,'http://www.newcastle-hypnotherapy.com/1035-revision-v1/',0,'revision','',0),(1046,1,'2018-07-26 06:06:52','2018-07-26 06:06:52','<h3><strong>September the 5th @ The Vault. 7.30 pm to 9.30.</strong>\r\n<strong>£7 per person. Book your place below. Limited spaces\r\n</strong></h3>\r\n<img class=\"alignleft size-medium wp-image-1040\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />Meditation is a wonderful way to relax and research shows there are many health benefits associated with regular meditation practice.\r\nIn this enjoyable workshop we will show you how to speed up your meditation results and how to reach deeper levels of relaxation using the power of Self-Hypnosis.\r\n\r\nThis workshop is for everyone.\r\nIf you struggle with meditation or find you don\'t relax deep enough this workshop will help you to speed up your results.\r\nIf you enjoy meditation and want to improve your results this workshop will also help you to achieve greater results.\r\n\r\nWe will also discuss how self-hypnosis differs from mindfulness and meditation, and how to combine all three for best results.\r\nYou will learn new skills, some great self-hypnosis skills and also make some friends.\r\n\r\nAttendance is strictly by advance booking only and numbers are limited to just 12 people.\r\n\r\nTo book your place please click the link below. Terms &amp; conditions are below.\r\nAn email will be sent to all of those attending a few days before with parking information and attendance details.\r\nYou can learn about more events using the form below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"4BT9YHP8LM3CY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>These workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please Contact Us and we can look to schedule that in, if suitable, in the future.\r\n\r\nTerms &amp; Conditions.\r\nThe Wednesday Workshop is a non profit event. Once you have booked you place you can move you place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n\r\nFor details of future events, please enter your details below.\r\nWe dislike spam and are GDPR compliant. You can unsubscribe at anytime and your details will never be shared or sold.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','The Wednesday Workshop - Meditate Deeper & Faster Using Self Hypnosis','','inherit','closed','closed','','1035-revision-v1','','','2018-07-26 06:06:52','2018-07-26 06:06:52','',1035,'http://www.newcastle-hypnotherapy.com/1035-revision-v1/',0,'revision','',0),(1047,1,'2018-07-26 06:07:26','2018-07-26 06:07:26','<h3><span style=\"color: #008000;\"><strong>September the 5th @ The Vault. 7.30 pm to 9.30.</strong></span>\r\n<strong><span style=\"color: #008000;\">£7 per person. Book your place below. Limited spaces</span>\r\n</strong></h3>\r\n<img class=\"alignleft size-medium wp-image-1040\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />Meditation is a wonderful way to relax and research shows there are many health benefits associated with regular meditation practice.\r\nIn this enjoyable workshop we will show you how to speed up your meditation results and how to reach deeper levels of relaxation using the power of Self-Hypnosis.\r\n\r\n<strong><span style=\"color: #008000;\">This workshop is for everyone.</span></strong>\r\nIf you struggle with meditation or find you don\'t relax deep enough this workshop will help you to speed up your results.\r\nIf you enjoy meditation and want to improve your results this workshop will also help you to achieve greater results.\r\n\r\nWe will also discuss how self-hypnosis differs from mindfulness and meditation, and how to combine all three for best results.\r\nYou will learn new skills, some great self-hypnosis skills and also make some friends.\r\n\r\nAttendance is strictly by advance booking only and numbers are limited to just 12 people.\r\n\r\nTo book your place please click the link below. Terms &amp; conditions are below.\r\nAn email will be sent to all of those attending a few days before with parking information and attendance details.\r\nYou can learn about more events using the form below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"4BT9YHP8LM3CY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>These workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please Contact Us and we can look to schedule that in, if suitable, in the future.\r\n\r\nTerms &amp; Conditions.\r\nThe Wednesday Workshop is a non profit event. Once you have booked you place you can move you place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n\r\nFor details of future events, please enter your details below.\r\nWe dislike spam and are GDPR compliant. You can unsubscribe at anytime and your details will never be shared or sold.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','The Wednesday Workshop - Meditate Deeper & Faster Using Self Hypnosis','','inherit','closed','closed','','1035-revision-v1','','','2018-07-26 06:07:26','2018-07-26 06:07:26','',1035,'http://www.newcastle-hypnotherapy.com/1035-revision-v1/',0,'revision','',0),(1048,1,'2018-07-26 06:08:06','2018-07-26 06:08:06','<h3><span style=\"color: #008000;\"><strong>September the 5th @ The Vault. 7.30 pm to 9.30.</strong></span>\r\n<strong><span style=\"color: #008000;\">£7 per person. Book your place below. Limited spaces</span>\r\n</strong></h3>\r\n<img class=\"alignleft size-medium wp-image-1040\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />Meditation is a wonderful way to relax and research shows there are many health benefits associated with regular meditation practice.\r\nIn this enjoyable workshop we will show you how to speed up your meditation results and how to reach deeper levels of relaxation using the power of Self-Hypnosis.\r\n\r\n<strong><span style=\"color: #008000;\">This workshop is for everyone.</span></strong>\r\nIf you struggle with meditation or find you don\'t relax deep enough this workshop will help you to speed up your results.\r\nIf you enjoy meditation and want to improve your results this workshop will also help you to achieve greater results.\r\n\r\nWe will also discuss how self-hypnosis differs from mindfulness and meditation, and how to combine all three for best results. You will learn new skills, some great self-hypnosis skills and also make some friends.\r\n\r\nAttendance is strictly by advance booking only and numbers are limited to just 12 people.\r\n\r\nTo book your place please click the link below. Terms &amp; conditions are below.\r\nAn email will be sent to all of those attending a few days before with parking information and attendance details.\r\nYou can learn about more events using the form below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"4BT9YHP8LM3CY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>These workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please Contact Us and we can look to schedule that in, if suitable, in the future.\r\n\r\nTerms &amp; Conditions.\r\nThe Wednesday Workshop is a non profit event. Once you have booked you place you can move you place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n\r\nFor details of future events, please enter your details below.\r\nWe dislike spam and are GDPR compliant. You can unsubscribe at anytime and your details will never be shared or sold.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','The Wednesday Workshop - Meditate Deeper & Faster Using Self Hypnosis','','inherit','closed','closed','','1035-revision-v1','','','2018-07-26 06:08:06','2018-07-26 06:08:06','',1035,'http://www.newcastle-hypnotherapy.com/1035-revision-v1/',0,'revision','',0),(1049,1,'2018-07-26 06:10:02','2018-07-26 06:10:02','<h3><span style=\"color: #008000;\"><strong>September the 5th @ The Vault. 7.30 pm to 9.30.</strong></span>\r\n<strong><span style=\"color: #008000;\">£7 per person. Book your place below. Limited spaces</span>\r\n</strong></h3>\r\n<img class=\"alignleft size-medium wp-image-1040\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />Meditation is a wonderful way to relax and research shows there are many health benefits associated with regular meditation practice.\r\nIn this enjoyable workshop we will show you how to speed up your meditation results and how to reach deeper levels of relaxation using the power of Self-Hypnosis.\r\n\r\n<strong><span style=\"color: #008000;\">This workshop is for everyone.</span></strong>\r\nIf you struggle with meditation or find you don\'t relax deep enough this workshop will help you to speed up your results.\r\nIf you enjoy meditation and want to improve your results this workshop will also help you to achieve greater results.\r\n\r\nWe will also discuss how self-hypnosis differs from mindfulness and meditation, and how to combine all three for best results. You will learn new skills, some great self-hypnosis skills and also make some friends.\r\n\r\n<strong>Attendance is strictly by advance booking only and numbers are limited to just 12 people</strong>. You can <em>book your place below now</em>, only while places remain.\r\n\r\nTo <em>book your place today</em>, please click the link below. Terms &amp; conditions are below.\r\nAn email will be sent to all of those attending a few days before with parking information and attendance details.\r\nYou can learn about more events using the form below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"4BT9YHP8LM3CY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>These workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please Contact Us and we can look to schedule that in, if suitable, in the future.\r\n\r\nTerms &amp; Conditions.\r\nThe Wednesday Workshop is a non profit event. Once you have booked you place you can move you place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n\r\nFor details of future events, please enter your details below.\r\nWe dislike spam and are GDPR compliant. You can unsubscribe at anytime and your details will never be shared or sold.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','The Wednesday Workshop - Meditate Deeper & Faster Using Self Hypnosis','','inherit','closed','closed','','1035-revision-v1','','','2018-07-26 06:10:02','2018-07-26 06:10:02','',1035,'http://www.newcastle-hypnotherapy.com/1035-revision-v1/',0,'revision','',0),(1050,1,'2018-07-26 06:11:56','2018-07-26 06:11:56','<h3><span style=\"color: #008000;\"><strong>September the 5th @ The Vault. 7.30 pm to 9.30.</strong></span>\r\n<strong><span style=\"color: #008000;\">£7 per person. Book your place below. Limited spaces</span>\r\n</strong></h3>\r\n<img class=\"alignleft size-medium wp-image-1040\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />Meditation is a wonderful way to relax and research shows there are many health benefits associated with regular meditation practice.\r\nIn this enjoyable workshop we will show you how to speed up your meditation results and how to reach deeper levels of relaxation using the power of Self-Hypnosis.\r\n\r\n<strong><span style=\"color: #008000;\">This workshop is for everyone.</span></strong>\r\nIf you struggle with meditation or find you don\'t relax deep enough, this workshop will help you to really speed up your results.\r\nIf you enjoy meditation and want to improve your results, this workshop will also help you to achieve greater results.\r\n\r\nWe will also discuss how self-hypnosis differs from mindfulness and meditation, and how to combine all three for best results. You will learn new skills, some great self-hypnosis skills and also make some friends.\r\n\r\n<strong>Attendance is strictly by advance booking only and numbers are limited to just 12 people</strong>. You can <em>book your place below now</em>, only while places remain.\r\n\r\nTo <em>book your place today</em>, please click the link below. Terms &amp; conditions are below.\r\nAn email will be sent to all of those attending a few days before with parking information and attendance details.\r\nYou can learn about more events using the form below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"4BT9YHP8LM3CY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>These workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please Contact Us and we can look to schedule that in, if suitable, in the future.\r\n\r\nTerms &amp; Conditions.\r\nThe Wednesday Workshop is a non profit event. Once you have booked you place you can move you place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n\r\nFor details of future events, please enter your details below.\r\nWe dislike spam and are GDPR compliant. You can unsubscribe at anytime and your details will never be shared or sold.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','The Wednesday Workshop - Meditate Deeper & Faster Using Self Hypnosis','','inherit','closed','closed','','1035-revision-v1','','','2018-07-26 06:11:56','2018-07-26 06:11:56','',1035,'http://www.newcastle-hypnotherapy.com/1035-revision-v1/',0,'revision','',0),(1051,1,'2018-07-26 06:21:26','2018-07-26 06:21:26','<h3><span style=\"color: #008000;\"><strong>September the 5th @ The Vault. 7.30 pm to 9.30.</strong></span>\r\n<strong><span style=\"color: #008000;\">£7 per person. Book your place below. Limited spaces</span>\r\n</strong></h3>\r\n<img class=\"alignleft size-medium wp-image-1040\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />Meditation is a wonderful way to relax and research shows there are many health benefits associated with regular meditation practice.\r\nIn this enjoyable workshop we will show you how to speed up your meditation results and how to reach deeper levels of relaxation using the power of Self-Hypnosis.\r\n\r\n<strong><span style=\"color: #008000;\">This workshop is for everyone.</span></strong>\r\nIf you struggle with meditation or find you don\'t relax deep enough, this workshop will help you to really speed up your results.\r\nIf you enjoy meditation and want to improve your results, this workshop will also help you to achieve greater results.\r\n\r\nWe will also discuss how self-hypnosis differs from mindfulness and meditation, and how to combine all three for best results. You will learn new skills, some great self-hypnosis skills and also make some friends.\r\n\r\n<span style=\"color: #008000;\"><strong>Attendance is strictly by advance booking only and numbers are limited to just 12 people</strong>.\r\n</span> You can <em>book your place below now</em>, only while places remain.\r\n\r\nTo <em>book your place today</em>, please click the link below. Terms &amp; conditions are below.\r\nAn email will be sent to all of those attending a few days before with parking information and attendance details.\r\nYou can learn about more events using the form below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"4BT9YHP8LM3CY\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>The Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please <strong><span style=\"color: #008000;\">Contact Us</span></strong> and we can look to schedule that in, if suitable, in the future.\r\n\r\n<span style=\"color: #008000;\"><strong>Terms &amp; Conditions.</strong></span>\r\nThe Wednesday Workshop is a non profit event. Once you have booked you place you can move you place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n\r\nFor details of future events, please enter your details below.\r\nWe dislike spam and are GDPR compliant. You can unsubscribe at anytime and your details will never be shared or sold.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','The Wednesday Workshop - Meditate Deeper & Faster Using Self Hypnosis','','inherit','closed','closed','','1035-revision-v1','','','2018-07-26 06:21:26','2018-07-26 06:21:26','',1035,'http://www.newcastle-hypnotherapy.com/1035-revision-v1/',0,'revision','',0);
INSERT INTO `wpqj_posts` VALUES (1054,1,'2018-07-29 18:47:15','2018-07-29 18:47:15','Welcome to Newcastle Hypnotherapy.\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems. Let\'s make life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more more aware.Many report they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span>\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong></span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy testst','','private','closed','closed','','newcastle-hypnotherapy-2','','','2018-09-19 15:11:43','2018-09-19 15:11:43','',0,'http://www.newcastle-hypnotherapy.com/?page_id=1054',0,'page','',0),(1199,1,'2018-08-12 19:17:28','2018-08-12 19:17:28','<h2>We run regular workshops &amp; events.\nFor the latest information by email please join our newsletter below.</h2>\n<a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/meditate-deeper-faster-using-self-hypnosis/\"><span style=\"color: #008000;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis - 5th September</strong></span></a>\n<h2><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>S</strong></a><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></a></h2>\n<h2><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-for-weight-loss/\"><span style=\"color: #008000;\"><strong>Self-Hypnosis for Weight Loss </strong></span></a></h2>\n.[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-08-12 19:17:28','2018-08-12 19:17:28','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(1053,1,'2018-07-26 06:30:23','2018-07-26 06:30:23','<h2>We run regular workshops &amp; events.\r\nFor the latest information by email please join our newsletter below.\r\n\r\n<a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/meditate-deeper-faster-using-self-hypnosis/\"><span style=\"color: #008000;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis - 5th September</strong></span></a></h2>\r\n<h2><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>S</strong></a><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></a></h2>\r\n<h2><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-for-weight-loss/\"><span style=\"color: #008000;\"><strong>Self-Hypnosis for Weight Loss </strong></span></a></h2>\r\n.[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-07-26 06:30:23','2018-07-26 06:30:23','',322,'http://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(1057,1,'2018-07-29 07:59:07','2018-07-29 07:59:07','&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> \"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</span></em></div>\r\n&nbsp;\r\n\r\nAs well as Clinical Hypnotherapy, Hypnosis and Self-Hypnosis we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.\r\n<div></div>\r\n<div></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</span><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></em><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">\r\nAre you ready to take control of your problems?\r\n</span></strong></span><strong>Call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></p>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Yes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, Depression, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, Smoking &amp; Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the workshops, group sessions, and events. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> \"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your Next Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation or complete the form below. Here we can establish exactly what you would like to achieve, your outcome and we can discuss how Hypnotherapy and NLP can help you, just like our many other clients. </span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\">Newcastle Hypnotherapy client feedback here.</a>\r\n\r\nNewcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n</div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\">Twitter</a></div>\r\n<div></div>\r\n&nbsp;\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-07-29 07:59:07','2018-07-29 07:59:07','',1054,'http://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1055,1,'2018-07-29 07:54:14','2018-07-29 07:54:14','&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span></span></strong></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">Expert Hypnosis Services &amp; so much more.</span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> \"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</span></em></div>\r\n&nbsp;\r\n\r\nAs well as Clinical Hypnotherapy, Hypnosis and Self-Hypnosis we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.\r\n<div></div>\r\n<div></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</span><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></em><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">\r\nAre you ready to take control of your problems?\r\n</span></strong></span><strong>Call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></p>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Yes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, Depression, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, Smoking &amp; Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the workshops, group sessions, and events. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> \"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your Next Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation or complete the form below. Here we can establish exactly what you would like to achieve, your outcome and we can discuss how Hypnotherapy and NLP can help you, just like our many other clients. </span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\">Newcastle Hypnotherapy client feedback here.</a>\r\n\r\nNewcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n</div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\">Twitter</a></div>\r\n<div></div>\r\n&nbsp;\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-07-29 07:54:14','2018-07-29 07:54:14','',1054,'http://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1056,1,'2018-07-29 07:55:27','2018-07-29 07:55:27','&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span></span></strong></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">Newcastle Hypnotherapy offer you expert hypnosis services &amp; so much more.</span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> \"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</span></em></div>\r\n&nbsp;\r\n\r\nAs well as Clinical Hypnotherapy, Hypnosis and Self-Hypnosis we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.\r\n<div></div>\r\n<div></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</span><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></em><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">\r\nAre you ready to take control of your problems?\r\n</span></strong></span><strong>Call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></p>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Yes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, Depression, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, Smoking &amp; Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the workshops, group sessions, and events. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> \"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your Next Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation or complete the form below. Here we can establish exactly what you would like to achieve, your outcome and we can discuss how Hypnotherapy and NLP can help you, just like our many other clients. </span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\">Newcastle Hypnotherapy client feedback here.</a>\r\n\r\nNewcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n</div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\">Twitter</a></div>\r\n<div></div>\r\n&nbsp;\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-07-29 07:55:27','2018-07-29 07:55:27','',1054,'http://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1058,1,'2018-07-29 08:31:08','2018-07-29 08:31:08','Welcome to Newcastle Hypnotherapy.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> \"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</span></em></div>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and Self-Hypnosis we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</span><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></em><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Yes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, Depression, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, Smoking &amp; Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the workshops, group sessions, and events. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> \"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our cleints is to arrange a free phone consultation. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?</span></strong></h2>\r\nMost of our clients see improvements with the first session and these improve quickly over time. Everyone is different and we will explain the results you can expect during our first meeting.\r\n<h2></h2>\r\n<div>\r\n\r\n&nbsp;\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\">Newcastle Hypnotherapy client feedback here.</a>\r\n\r\nNewcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n</div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\">Twitter</a></div>\r\n<div></div>\r\n&nbsp;\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-07-29 08:31:08','2018-07-29 08:31:08','',1054,'http://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1059,1,'2018-07-29 18:01:52','2018-07-29 18:01:52','Welcome to Newcastle Hypnotherapy.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and Self-Hypnosis we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Yes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, Depression, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, Smoking &amp; Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the workshops, group sessions, and events. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our cleints is to arrange your free phone consultation. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\">\r\n<strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements with the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control.</span><strong>\r\n\r\nHow Long Do Sessions Take?</strong></span>\r\nUsually your first session will take between 1 hour to and hour and a half.  Additional sessions are usually about an hour.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consulation we can estimate the numver of sessions required to obtatin the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during your free phone consultation.\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools. We teach Self-Hypnosis through workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<h2></h2>\r\n<div>\r\n\r\n&nbsp;\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\">Newcastle Hypnotherapy client feedback here.</a>\r\n\r\nNewcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n</div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\">Twitter</a></div>\r\n<div></div>\r\n&nbsp;\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-07-29 18:01:52','2018-07-29 18:01:52','',1054,'http://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1060,1,'2018-07-29 18:01:57','2018-07-29 18:01:57','Welcome to Newcastle Hypnotherapy.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and Self-Hypnosis we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Yes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, Depression, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, Smoking &amp; Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the workshops, group sessions, and events. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our cleints is to arrange your free phone consultation. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements with the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control.</span></span>\r\n\r\nHow Long Do Sessions Take?\r\nUsually your first session will take between 1 hour to and hour and a half.  Additional sessions are usually about an hour.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consulation we can estimate the numver of sessions required to obtatin the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during your free phone consultation.\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools. We teach Self-Hypnosis through workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<h2></h2>\r\n<div>\r\n\r\n&nbsp;\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\">Newcastle Hypnotherapy client feedback here.</a>\r\n\r\nNewcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n</div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\">Twitter</a></div>\r\n<div></div>\r\n&nbsp;\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-07-29 18:01:57','2018-07-29 18:01:57','',1054,'http://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1061,1,'2018-07-29 18:02:40','2018-07-29 18:02:40','Welcome to Newcastle Hypnotherapy.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and Self-Hypnosis we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>\r\nClient Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Yes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, Depression, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, Smoking &amp; Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the workshops, group sessions, and events. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our cleints is to arrange your free phone consultation. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements with the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control.</span></span>\r\n\r\nHow Long Do Sessions Take?\r\nUsually your first session will take between 1 hour to and hour and a half.  Additional sessions are usually about an hour.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consulation we can estimate the numver of sessions required to obtatin the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during your free phone consultation.\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools. We teach Self-Hypnosis through workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<h2></h2>\r\n<div>\r\n\r\n&nbsp;\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\">Newcastle Hypnotherapy client feedback here.</a>\r\n\r\nNewcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n</div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\">Twitter</a></div>\r\n<div></div>\r\n&nbsp;\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-07-29 18:02:40','2018-07-29 18:02:40','',1054,'http://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1062,1,'2018-07-29 18:03:23','2018-07-29 18:03:23','Welcome to Newcastle Hypnotherapy.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and Self-Hypnosis we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>&nbsp; Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Yes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, Depression, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, Smoking &amp; Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the workshops, group sessions, and events. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our cleints is to arrange your free phone consultation. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements with the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control.</span></span>\r\n\r\nHow Long Do Sessions Take?\r\nUsually your first session will take between 1 hour to and hour and a half.  Additional sessions are usually about an hour.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consulation we can estimate the numver of sessions required to obtatin the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during your free phone consultation.\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools. We teach Self-Hypnosis through workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<h2></h2>\r\n<div>\r\n\r\n&nbsp;\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\">Newcastle Hypnotherapy client feedback here.</a>\r\n\r\nNewcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n</div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\">Twitter</a></div>\r\n<div></div>\r\n&nbsp;\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-07-29 18:03:23','2018-07-29 18:03:23','',1054,'http://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1063,1,'2018-07-29 18:04:12','2018-07-29 18:04:12','Welcome to Newcastle Hypnotherapy.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">&nbsp; As well as Clinical Hypnotherapy, Hypnosis and Self-Hypnosis we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>&nbsp; Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Yes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, Depression, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, Smoking &amp; Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the workshops, group sessions, and events. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our cleints is to arrange your free phone consultation. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements with the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control.</span></span>\r\n\r\nHow Long Do Sessions Take?\r\nUsually your first session will take between 1 hour to and hour and a half.  Additional sessions are usually about an hour.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consulation we can estimate the numver of sessions required to obtatin the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during your free phone consultation.\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools. We teach Self-Hypnosis through workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<h2></h2>\r\n<div>\r\n\r\n&nbsp;\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\">Newcastle Hypnotherapy client feedback here.</a>\r\n\r\nNewcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n</div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\">Twitter</a></div>\r\n<div></div>\r\n&nbsp;\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-07-29 18:04:12','2018-07-29 18:04:12','',1054,'http://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1064,1,'2018-07-29 18:04:33','2018-07-29 18:04:33','Welcome to Newcastle Hypnotherapy.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">&nbsp;As well as Clinical Hypnotherapy, Hypnosis and Self-Hypnosis we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>&nbsp; Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Yes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, Depression, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, Smoking &amp; Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the workshops, group sessions, and events. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our cleints is to arrange your free phone consultation. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements with the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control.</span></span>\r\n\r\nHow Long Do Sessions Take?\r\nUsually your first session will take between 1 hour to and hour and a half.  Additional sessions are usually about an hour.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consulation we can estimate the numver of sessions required to obtatin the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during your free phone consultation.\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools. We teach Self-Hypnosis through workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<h2></h2>\r\n<div>\r\n\r\n&nbsp;\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\">Newcastle Hypnotherapy client feedback here.</a>\r\n\r\nNewcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n</div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\">Twitter</a></div>\r\n<div></div>\r\n&nbsp;\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-07-29 18:04:33','2018-07-29 18:04:33','',1054,'http://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1065,1,'2018-07-29 18:04:57','2018-07-29 18:04:57','Welcome to Newcastle Hypnotherapy.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and Self-Hypnosis we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>&nbsp; Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Yes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, Depression, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, Smoking &amp; Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the workshops, group sessions, and events. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our cleints is to arrange your free phone consultation. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements with the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control.</span></span>\r\n\r\nHow Long Do Sessions Take?\r\nUsually your first session will take between 1 hour to and hour and a half.  Additional sessions are usually about an hour.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consulation we can estimate the numver of sessions required to obtatin the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during your free phone consultation.\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools. We teach Self-Hypnosis through workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<h2></h2>\r\n<div>\r\n\r\n&nbsp;\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\">Newcastle Hypnotherapy client feedback here.</a>\r\n\r\nNewcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n</div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\">Twitter</a></div>\r\n<div></div>\r\n&nbsp;\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-07-29 18:04:57','2018-07-29 18:04:57','',1054,'http://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1066,1,'2018-07-29 18:05:37','2018-07-29 18:05:37','Welcome to Newcastle Hypnotherapy.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and Self-Hypnosis we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>&nbsp;Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Yes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, Depression, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, Smoking &amp; Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the workshops, group sessions, and events. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our cleints is to arrange your free phone consultation. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements with the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control.</span></span>\r\n\r\nHow Long Do Sessions Take?\r\nUsually your first session will take between 1 hour to and hour and a half.  Additional sessions are usually about an hour.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consulation we can estimate the numver of sessions required to obtatin the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during your free phone consultation.\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools. We teach Self-Hypnosis through workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<h2></h2>\r\n<div>\r\n\r\n&nbsp;\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\">Newcastle Hypnotherapy client feedback here.</a>\r\n\r\nNewcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n</div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\">Twitter</a></div>\r\n<div></div>\r\n&nbsp;\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-07-29 18:05:37','2018-07-29 18:05:37','',1054,'http://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1067,1,'2018-07-29 18:06:46','2018-07-29 18:06:46','Welcome to Newcastle Hypnotherapy.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and Self-Hypnosis we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, Depression, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, Smoking &amp; Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the workshops, group sessions, and events. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our cleints is to arrange your free phone consultation. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements with the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control.</span></span>\r\n\r\nHow Long Do Sessions Take?\r\nUsually your first session will take between 1 hour to and hour and a half.  Additional sessions are usually about an hour.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consulation we can estimate the numver of sessions required to obtatin the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during your free phone consultation.\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools. We teach Self-Hypnosis through workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<h2></h2>\r\n<div>\r\n\r\n&nbsp;\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\">Newcastle Hypnotherapy client feedback here.</a>\r\n\r\nNewcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n</div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\">Twitter</a></div>\r\n<div></div>\r\n&nbsp;\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-07-29 18:06:46','2018-07-29 18:06:46','',1054,'http://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1068,1,'2018-07-29 18:16:29','2018-07-29 18:16:29','Welcome to Newcastle Hypnotherapy.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and Self-Hypnosis we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, Depression, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, Smoking &amp; Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the workshops, group sessions, and events. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our cleints is to arrange your free phone consultation. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements with the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually your first session will take between 1 hour to and hour and a half.  Additional sessions are usually about an hour.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consulation we can estimate the numver of sessions required to obtatin the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during your free phone consultation.\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools. We teach Self-Hypnosis through workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<h2></h2>\r\n<div>\r\n\r\n&nbsp;\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\">Newcastle Hypnotherapy client feedback here.</a>\r\n\r\nNewcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n</div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\">Twitter</a></div>\r\n<div></div>\r\n&nbsp;\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-07-29 18:16:29','2018-07-29 18:16:29','',1054,'http://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1069,1,'2018-07-29 18:24:02','2018-07-29 18:24:02','Welcome to Newcastle Hypnotherapy.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and Self-Hypnosis we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, Depression, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, Smoking &amp; Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the workshops, group sessions, and events. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our cleints is to arrange your free phone consultation. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements with the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually your first session will take between 1 hour to and hour and a half.  Additional sessions are usually about an hour.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consulation we can estimate the numver of sessions required to obtatin the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during your free phone consultation.\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools. We teach Self-Hypnosis through workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</span></strong>\r\nOf course. Simply call us on 07568 455 809 to discuss this.\r\n\r\n\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\">Newcastle Hypnotherapy client feedback here.</a>\r\n\r\nNewcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n</div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\">Twitter</a></div>\r\n<div></div>\r\n&nbsp;\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-07-29 18:24:02','2018-07-29 18:24:02','',1054,'http://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1070,1,'2018-07-29 18:30:44','2018-07-29 18:30:44','Welcome to Newcastle Hypnotherapy.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and Self-Hypnosis we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, Depression, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, Smoking &amp; Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the workshops, group sessions, and events. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our cleints is to arrange your free phone consultation. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements with the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually your first session will take between 1 hour to and hour and a half.  Additional sessions are usually about an hour.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consulation we can estimate the numver of sessions required to obtatin the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during your free phone consultation.\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</span></strong>\r\nOf course. Simply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\nNewcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n</div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n&nbsp;\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-07-29 18:30:44','2018-07-29 18:30:44','',1054,'http://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1071,1,'2018-07-29 18:31:45','2018-07-29 18:31:45','Welcome to Newcastle Hypnotherapy.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and Self-Hypnosis we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, Depression, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, Smoking &amp; Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the workshops, group sessions, and events. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our cleints is to arrange your free phone consultation. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">\r\nFrequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements with the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually your first session will take between 1 hour to and hour and a half.  Additional sessions are usually about an hour.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consulation we can estimate the numver of sessions required to obtatin the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during your free phone consultation.\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</span></strong>\r\nOf course. Simply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\nNewcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n</div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n&nbsp;\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-07-29 18:31:45','2018-07-29 18:31:45','',1054,'http://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1072,1,'2018-07-29 18:40:38','2018-07-29 18:40:38','Welcome to Newcastle Hypnotherapy.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and Self-Hypnosis we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, Depression, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, Smoking &amp; Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the workshops, group sessions, and events. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our cleints is to arrange your free phone consultation. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">\r\nFrequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements with the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually your first session will take between 1 hour to and hour and a half.  Additional sessions are usually about an hour.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consulation we can estimate the numver of sessions required to obtatin the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during your free phone consultation.\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</span></strong>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstartions and private workshops for companies, charities and groups. Simply call us on 07568 455 809 to discuss this.\r\n\r\n<span style=\"color: #008000;\"><strong>Can You Work Via Skype Or Video Calls For Online Sessions?</strong></span>\r\nYes we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>\r\nNewcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">\r\nAre you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-07-29 18:40:38','2018-07-29 18:40:38','',1054,'http://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1073,1,'2018-07-29 18:42:58','2018-07-29 18:42:58','Welcome to Newcastle Hypnotherapy.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and Self-Hypnosis we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, Depression, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, Smoking &amp; Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the workshops, group sessions, and events. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our cleints is to arrange your free phone consultation. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">\r\nFrequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements with the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually your first session will take between 1 hour to and hour and a half.  Additional sessions are usually about an hour.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consulation we can estimate the numver of sessions required to obtatin the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during your free phone consultation.\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</span></strong>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstartions and private workshops for companies, charities and groups. Simply call us on 07568 455 809 to discuss this.\r\n\r\n<span style=\"color: #008000;\"><strong>Can You Work Via Skype Or Video Calls For Online Sessions?</strong></span>\r\nYes we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>\r\nNewcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">\r\nAre you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-07-29 18:42:58','2018-07-29 18:42:58','',1054,'http://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1074,1,'2018-07-29 18:43:18','2018-07-29 18:43:18','Welcome to Newcastle Hypnotherapy.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and Self-Hypnosis we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, Depression, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, Smoking &amp; Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the workshops, group sessions, and events. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our cleints is to arrange your free phone consultation. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">\r\nFrequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements with the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually your first session will take between 1 hour to and hour and a half.  Additional sessions are usually about an hour.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consulation we can estimate the numver of sessions required to obtatin the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during your free phone consultation.\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</span></strong>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstartions and private workshops for companies, charities and groups. Simply call us on 07568 455 809 to discuss this.\r\n\r\n<span style=\"color: #008000;\"><strong>Can You Work Via Skype Or Video Calls For Online Sessions?</strong></span>\r\nYes we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">\r\nAre you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-07-29 18:43:18','2018-07-29 18:43:18','',1054,'http://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1075,1,'2018-07-29 18:43:52','2018-07-29 18:43:52','Welcome to Newcastle Hypnotherapy.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and Self-Hypnosis we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, Depression, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, Smoking &amp; Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the workshops, group sessions, and events. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our cleints is to arrange your free phone consultation. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">\r\nFrequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements with the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually your first session will take between 1 hour to and hour and a half.  Additional sessions are usually about an hour.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consulation we can estimate the numver of sessions required to obtatin the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during your free phone consultation.\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</span></strong>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstartions and private workshops for companies, charities and groups. Simply call us on 07568 455 809 to discuss this.\r\n\r\n<span style=\"color: #008000;\"><strong>Can You Work Via Skype Or Video Calls For Online Sessions?</strong></span>\r\nYes we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">\r\nAre you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-07-29 18:43:52','2018-07-29 18:43:52','',1054,'http://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1076,1,'2018-07-29 18:47:15','2018-07-29 18:47:15','Welcome to Newcastle Hypnotherapy.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and Self-Hypnosis we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, Depression, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, Smoking &amp; Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the workshops, group sessions, and events. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our cleints is to arrange your free phone consultation. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">\r\nFrequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements with the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually your first session will take between 1 hour to and hour and a half.  Additional sessions are usually about an hour.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consulation we can estimate the numver of sessions required to obtatin the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during your free phone consultation.\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</span></strong>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstartions and private workshops for companies, charities and groups. Simply call us on 07568 455 809 to discuss this.\r\n\r\n<span style=\"color: #008000;\"><strong>Can You Work Via Skype Or Video Calls For Online Sessions?</strong></span>\r\nYes we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">\r\nAre you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.</span></div>','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-07-29 18:47:15','2018-07-29 18:47:15','',1054,'http://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1078,1,'2018-07-30 16:49:10','2018-07-30 16:49:10','<h2><span style=\"color: #008000;\"><strong><img class=\"alignleft size-thumbnail wp-image-813\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/Cleint-feedback-150x150.jpg\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming.\r\n</strong></span></h2>\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong><span style=\"color: #000000;\">\"<span class=\"Linkify\">Thankyou for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce\"</span></span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback  by Gary</span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;','Client Feedback','','inherit','closed','closed','','200-revision-v1','','','2018-07-30 16:49:10','2018-07-30 16:49:10','',200,'https://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(1079,1,'2018-07-30 19:05:52','2018-07-30 19:05:52','<strong><img class=\"alignleft size-medium wp-image-1088\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/IMG_20180519_154207-300x225.jpg\" alt=\"what is hypnosis\" width=\"300\" height=\"225\" />\"What is hypnosis and how can hypnotherapy help me?\" is probably the most common question I am asked on a regular basis.</strong>\r\nI also find many people have incorrect ideas about hypnosis and hypnotherapy due to exaggerated ideas in films, books and stage hypnosis.\r\nHere are some answers to the most popular questions about hypnosis and hypnotherapy.\r\n<h2><span style=\"color: #008000;\"><strong>What is Hypnosis?</strong></span></h2>\r\nHypnosis is a naturally occurring state of mind that we all experience on a regular basis. A good example is being immersed in a good movie, a great book, our favourite music or an activity. Time may pass more quickly or you may be totally oblivious to things happening around you.\r\nDuring hypnotherapy your hypnotherapist is able to guide you into this state, where you are relaxed and also very aware of your thoughts and suggestions, to modify behaviours or habits for the better.\r\n<h2><span style=\"color: #008000;\"><strong>What does it feel like to be hypnotised?</strong></span></h2>\r\nMost clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end.\r\nClients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.\r\n<h2><strong><span style=\"color: #008000;\">Will I lose control?</span></strong></h2>\r\nNo. Hypnosis is a state of consent and you a totally aware, awake and in control at all times.\r\n<h2><span style=\"color: #008000;\"><strong>How quickly does change happen with hypnosis?</strong></span></h2>\r\nChanges usually happen from the very first session as change can happen very quickly with some clients and with others it can take place across a short period of time over a few session.\r\n<h2><span style=\"color: #008000;\"><strong>Is hypnosis dangerous?</strong></span></h2>\r\nHypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognized by the American Medical Association since 1958<strong>.</strong>  Hypnosis can be dangerous if used while operating machinery or driving.\r\n<h2><span style=\"color: #008000;\"><strong>What is the difference between hypnosis and self-hypnosis?</strong></span></h2>\r\nWhen you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life. <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>What is hypnosis able to help with?</strong></span></h2>\r\nHypnosis can help with a wide range of problems and issues or can be used to improve already useful habits.\r\nOur clients see amazing success with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">depression</a>, bad habits, confidence, PTSD, confidence, weight loss, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">stop smoking</a>, addiction, tinnitus, sleep issues, relaxation, alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">candida</a>, digestive issues, nerves, allergies, intolerances, weight management, happiness, destructive behaviours, public speaking, IBS and so much more.\r\n<h2><span style=\"color: #008000;\"><strong>Can hypnosis be conducted successfully online?</strong></span></h2>\r\nCertainly. We find results are just as successfull over Skype and other online platforms for cleints who are unable to meet with us in person.\r\n<h2><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h2>\r\nSimply <strong><em>give Mark a call on 07568 455 809</em></strong> to arrange a <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\"><span style=\"color: #008000;\">free phone consultation</span></a></strong> to explore how hypnosis and hypnotherapy can help you.\r\n\r\nWould you like to learn about the regular events we run at <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/\">Newcastle Hypnotherapy?</a>\r\nComplete your details below for more information.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nWe are GDPR compliant. We will only use your details to send you information regarding events and news of our services. You may unsubscribe at any time using the link in an email.\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','WHAT IS HYPNOSIS','','publish','closed','closed','','what-is-hypnosis','','','2018-09-02 16:25:40','2018-09-02 16:25:40','',0,'https://www.newcastle-hypnotherapy.com/?page_id=1079',0,'page','',0),(1080,1,'2018-07-30 18:54:58','2018-07-30 18:54:58','\"What is hypnosis and how can hypnotherapy help me?\" is probably the most common question I am asked.\r\n<h2><span style=\"color: #008000;\"><strong>What is Hypnosis?</strong></span></h2>\r\nHypnosis is a naturally occurring state of mind that we all experience on a regular basis. A good example is being immersed in a good movie, a great book, our favourite music or an activity. Time may pass more quickly or you may be totally oblivious to things happening around you.\r\nDuring hypnotherapy your hypnotherapist is able to guide you into this state, where you are relaxed and also very aware of your thoughts and suggestions, to modify behaviours or habits for the better.\r\n<h2><span style=\"color: #008000;\"><strong>What does it feel like to be hypnotised?</strong></span></h2>\r\nMost clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end.\r\nClients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.\r\n<h2><strong><span style=\"color: #008000;\">Will I lose control?</span></strong></h2>\r\nNo. Hypnosis is a state of consent and you a totally aware, awake and in control at all times.\r\n<h2><span style=\"color: #008000;\"><strong>How quickly does change happen with hypnosis?</strong></span></h2>\r\nChanges usually happen from the very first session as change can happen very quickly with some clients and with others it can take place across a short period of time over a few session.\r\n<h2><span style=\"color: #008000;\"><strong>Is hypnosis dangerous?</strong></span></h2>\r\nHypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognized by the American Medical Association since 1958<strong>.</strong>  Hypnosis can be dangerous if used while operating machinery or driving.\r\n<h2><span style=\"color: #008000;\"><strong>What is the difference between hypnosis and self-hypnosis?</strong></span></h2>\r\nWhen you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life. <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>What is the next step?</strong></span></h2>\r\nSimply give Mark a call on 07568 455 809 to arrange a <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\"><span style=\"color: #008000;\">free phone consultation</span></a></strong> to explore how hypnosis and hypnotherapy can help you.','What is Hypnosis and how can it help me?','','inherit','closed','closed','','1079-revision-v1','','','2018-07-30 18:54:58','2018-07-30 18:54:58','',1079,'https://www.newcastle-hypnotherapy.com/1079-revision-v1/',0,'revision','',0),(1081,1,'2018-07-30 18:57:44','2018-07-30 18:57:44','\"What is hypnosis and how can hypnotherapy help me?\" is probably the most common question I am asked.\r\n<h2><span style=\"color: #008000;\"><strong>What is Hypnosis?</strong></span></h2>\r\nHypnosis is a naturally occurring state of mind that we all experience on a regular basis. A good example is being immersed in a good movie, a great book, our favourite music or an activity. Time may pass more quickly or you may be totally oblivious to things happening around you.\r\nDuring hypnotherapy your hypnotherapist is able to guide you into this state, where you are relaxed and also very aware of your thoughts and suggestions, to modify behaviours or habits for the better.\r\n<h2><span style=\"color: #008000;\"><strong>What does it feel like to be hypnotised?</strong></span></h2>\r\nMost clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end.\r\nClients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.\r\n<h2><strong><span style=\"color: #008000;\">Will I lose control?</span></strong></h2>\r\nNo. Hypnosis is a state of consent and you a totally aware, awake and in control at all times.\r\n<h2><span style=\"color: #008000;\"><strong>How quickly does change happen with hypnosis?</strong></span></h2>\r\nChanges usually happen from the very first session as change can happen very quickly with some clients and with others it can take place across a short period of time over a few session.\r\n<h2><span style=\"color: #008000;\"><strong>Is hypnosis dangerous?</strong></span></h2>\r\nHypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognized by the American Medical Association since 1958<strong>.</strong>  Hypnosis can be dangerous if used while operating machinery or driving.\r\n<h2><span style=\"color: #008000;\"><strong>What is the difference between hypnosis and self-hypnosis?</strong></span></h2>\r\nWhen you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life. <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>What is the next step?</strong></span></h2>\r\nSimply give Mark a call on 07568 455 809 to arrange a <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\"><span style=\"color: #008000;\">free phone consultation</span></a></strong> to explore how hypnosis and hypnotherapy can help you.\r\n\r\nWould you like to learn about the regular events we run at Newcastle Hypnotherapy?\r\nComplete your details below for more information.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','What is Hypnosis and how can it help me?','','inherit','closed','closed','','1079-revision-v1','','','2018-07-30 18:57:44','2018-07-30 18:57:44','',1079,'https://www.newcastle-hypnotherapy.com/1079-revision-v1/',0,'revision','',0),(1082,1,'2018-07-30 19:01:07','2018-07-30 19:01:07','\"What is hypnosis and how can hypnotherapy help me?\" is probably the most common question I am asked on a regular basis.\r\nI also find many people have incorrect ideas about hypnosis and hypnotherapy due to exaggerated ideas in films, books and stage hypnosis.\r\nHere are some answers to the most popular questions about hypnosis and hypnotherapy.\r\n<h2><span style=\"color: #008000;\"><strong>What is Hypnosis?</strong></span></h2>\r\nHypnosis is a naturally occurring state of mind that we all experience on a regular basis. A good example is being immersed in a good movie, a great book, our favourite music or an activity. Time may pass more quickly or you may be totally oblivious to things happening around you.\r\nDuring hypnotherapy your hypnotherapist is able to guide you into this state, where you are relaxed and also very aware of your thoughts and suggestions, to modify behaviours or habits for the better.\r\n<h2><span style=\"color: #008000;\"><strong>What does it feel like to be hypnotised?</strong></span></h2>\r\nMost clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end.\r\nClients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.\r\n<h2><strong><span style=\"color: #008000;\">Will I lose control?</span></strong></h2>\r\nNo. Hypnosis is a state of consent and you a totally aware, awake and in control at all times.\r\n<h2><span style=\"color: #008000;\"><strong>How quickly does change happen with hypnosis?</strong></span></h2>\r\nChanges usually happen from the very first session as change can happen very quickly with some clients and with others it can take place across a short period of time over a few session.\r\n<h2><span style=\"color: #008000;\"><strong>Is hypnosis dangerous?</strong></span></h2>\r\nHypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognized by the American Medical Association since 1958<strong>.</strong>  Hypnosis can be dangerous if used while operating machinery or driving.\r\n<h2><span style=\"color: #008000;\"><strong>What is the difference between hypnosis and self-hypnosis?</strong></span></h2>\r\nWhen you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life. <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>What is the next step?</strong></span></h2>\r\nSimply give Mark a call on 07568 455 809 to arrange a <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\"><span style=\"color: #008000;\">free phone consultation</span></a></strong> to explore how hypnosis and hypnotherapy can help you.\r\n\r\nWould you like to learn about the regular events we run at Newcastle Hypnotherapy?\r\nComplete your details below for more information.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','What is Hypnosis and how can it help me?','','inherit','closed','closed','','1079-revision-v1','','','2018-07-30 19:01:07','2018-07-30 19:01:07','',1079,'https://www.newcastle-hypnotherapy.com/1079-revision-v1/',0,'revision','',0),(1083,1,'2018-07-30 19:04:28','2018-07-30 19:04:28','\"What is hypnosis and how can hypnotherapy help me?\" is probably the most common question I am asked on a regular basis.\r\nI also find many people have incorrect ideas about hypnosis and hypnotherapy due to exaggerated ideas in films, books and stage hypnosis.\r\nHere are some answers to the most popular questions about hypnosis and hypnotherapy.\r\n<h2><span style=\"color: #008000;\"><strong>What is Hypnosis?</strong></span></h2>\r\nHypnosis is a naturally occurring state of mind that we all experience on a regular basis. A good example is being immersed in a good movie, a great book, our favourite music or an activity. Time may pass more quickly or you may be totally oblivious to things happening around you.\r\nDuring hypnotherapy your hypnotherapist is able to guide you into this state, where you are relaxed and also very aware of your thoughts and suggestions, to modify behaviours or habits for the better.\r\n<h2><span style=\"color: #008000;\"><strong>What does it feel like to be hypnotised?</strong></span></h2>\r\nMost clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end.\r\nClients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.\r\n<h2><strong><span style=\"color: #008000;\">Will I lose control?</span></strong></h2>\r\nNo. Hypnosis is a state of consent and you a totally aware, awake and in control at all times.\r\n<h2><span style=\"color: #008000;\"><strong>How quickly does change happen with hypnosis?</strong></span></h2>\r\nChanges usually happen from the very first session as change can happen very quickly with some clients and with others it can take place across a short period of time over a few session.\r\n<h2><span style=\"color: #008000;\"><strong>Is hypnosis dangerous?</strong></span></h2>\r\nHypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognized by the American Medical Association since 1958<strong>.</strong>  Hypnosis can be dangerous if used while operating machinery or driving.\r\n<h2><span style=\"color: #008000;\"><strong>What is the difference between hypnosis and self-hypnosis?</strong></span></h2>\r\nWhen you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life. <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>What is the next step?</strong></span></h2>\r\nSimply give Mark a call on 07568 455 809 to arrange a <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\"><span style=\"color: #008000;\">free phone consultation</span></a></strong> to explore how hypnosis and hypnotherapy can help you.\r\n\r\n\r\nWould you like to learn about the regular events we run at Newcastle Hypnotherapy?\r\nComplete your details below for more information.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n\r\nWe are GDPR compliant. We will only use your details to send you information regarding events and news of our services. You may unsubscrive at anytime using the link in any email.\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','What is Hypnosis and how can it help me?','','inherit','closed','closed','','1079-revision-v1','','','2018-07-30 19:04:28','2018-07-30 19:04:28','',1079,'https://www.newcastle-hypnotherapy.com/1079-revision-v1/',0,'revision','',0),(1458,1,'2018-09-19 12:36:26','2018-09-19 12:36:26',' ','','','publish','closed','closed','','1458','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=1458',2,'nav_menu_item','',0),(1085,1,'2018-07-30 19:07:06','2018-07-30 19:07:06','\"What is hypnosis and how can hypnotherapy help me?\" is probably the most common question I am asked on a regular basis.\r\nI also find many people have incorrect ideas about hypnosis and hypnotherapy due to exaggerated ideas in films, books and stage hypnosis.\r\nHere are some answers to the most popular questions about hypnosis and hypnotherapy.\r\n<h2><span style=\"color: #008000;\"><strong>What is Hypnosis?</strong></span></h2>\r\nHypnosis is a naturally occurring state of mind that we all experience on a regular basis. A good example is being immersed in a good movie, a great book, our favourite music or an activity. Time may pass more quickly or you may be totally oblivious to things happening around you.\r\nDuring hypnotherapy your hypnotherapist is able to guide you into this state, where you are relaxed and also very aware of your thoughts and suggestions, to modify behaviours or habits for the better.\r\n<h2><span style=\"color: #008000;\"><strong>What does it feel like to be hypnotised?</strong></span></h2>\r\nMost clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end.\r\nClients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.\r\n<h2><strong><span style=\"color: #008000;\">Will I lose control?</span></strong></h2>\r\nNo. Hypnosis is a state of consent and you a totally aware, awake and in control at all times.\r\n<h2><span style=\"color: #008000;\"><strong>How quickly does change happen with hypnosis?</strong></span></h2>\r\nChanges usually happen from the very first session as change can happen very quickly with some clients and with others it can take place across a short period of time over a few session.\r\n<h2><span style=\"color: #008000;\"><strong>Is hypnosis dangerous?</strong></span></h2>\r\nHypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognized by the American Medical Association since 1958<strong>.</strong>  Hypnosis can be dangerous if used while operating machinery or driving.\r\n<h2><span style=\"color: #008000;\"><strong>What is the difference between hypnosis and self-hypnosis?</strong></span></h2>\r\nWhen you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life. <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>What is the next step?</strong></span></h2>\r\nSimply give Mark a call on 07568 455 809 to arrange a <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\"><span style=\"color: #008000;\">free phone consultation</span></a></strong> to explore how hypnosis and hypnotherapy can help you.\r\n\r\nWould you like to learn about the regular events we run at Newcastle Hypnotherapy?\r\nComplete your details below for more information.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nWe are GDPR compliant. We will only use your details to send you information regarding events and news of our services. You may unsubscrive at anytime using the link in any email.\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','What is Hypnosis?','','inherit','closed','closed','','1079-revision-v1','','','2018-07-30 19:07:06','2018-07-30 19:07:06','',1079,'https://www.newcastle-hypnotherapy.com/1079-revision-v1/',0,'revision','',0),(1086,1,'2018-07-30 19:07:37','2018-07-30 19:07:37','<strong>\"What is hypnosis and how can hypnotherapy help me?\" is probably the most common question I am asked on a regular basis.</strong>\r\nI also find many people have incorrect ideas about hypnosis and hypnotherapy due to exaggerated ideas in films, books and stage hypnosis.\r\nHere are some answers to the most popular questions about hypnosis and hypnotherapy.\r\n<h2><span style=\"color: #008000;\"><strong>What is Hypnosis?</strong></span></h2>\r\nHypnosis is a naturally occurring state of mind that we all experience on a regular basis. A good example is being immersed in a good movie, a great book, our favourite music or an activity. Time may pass more quickly or you may be totally oblivious to things happening around you.\r\nDuring hypnotherapy your hypnotherapist is able to guide you into this state, where you are relaxed and also very aware of your thoughts and suggestions, to modify behaviours or habits for the better.\r\n<h2><span style=\"color: #008000;\"><strong>What does it feel like to be hypnotised?</strong></span></h2>\r\nMost clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end.\r\nClients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.\r\n<h2><strong><span style=\"color: #008000;\">Will I lose control?</span></strong></h2>\r\nNo. Hypnosis is a state of consent and you a totally aware, awake and in control at all times.\r\n<h2><span style=\"color: #008000;\"><strong>How quickly does change happen with hypnosis?</strong></span></h2>\r\nChanges usually happen from the very first session as change can happen very quickly with some clients and with others it can take place across a short period of time over a few session.\r\n<h2><span style=\"color: #008000;\"><strong>Is hypnosis dangerous?</strong></span></h2>\r\nHypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognized by the American Medical Association since 1958<strong>.</strong>  Hypnosis can be dangerous if used while operating machinery or driving.\r\n<h2><span style=\"color: #008000;\"><strong>What is the difference between hypnosis and self-hypnosis?</strong></span></h2>\r\nWhen you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life. <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>What is the next step?</strong></span></h2>\r\nSimply give Mark a call on 07568 455 809 to arrange a <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\"><span style=\"color: #008000;\">free phone consultation</span></a></strong> to explore how hypnosis and hypnotherapy can help you.\r\n\r\nWould you like to learn about the regular events we run at Newcastle Hypnotherapy?\r\nComplete your details below for more information.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nWe are GDPR compliant. We will only use your details to send you information regarding events and news of our services. You may unsubscrive at anytime using the link in any email.\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','What is Hypnosis?','','inherit','closed','closed','','1079-revision-v1','','','2018-07-30 19:07:37','2018-07-30 19:07:37','',1079,'https://www.newcastle-hypnotherapy.com/1079-revision-v1/',0,'revision','',0),(1087,1,'2018-07-30 19:55:05','2018-07-30 19:55:05','<strong><img class=\"alignleft size-medium wp-image-1088\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/IMG_20180519_154207-300x225.jpg\" alt=\"what is hypnosis\" width=\"300\" height=\"225\" />\"What is hypnosis and how can hypnotherapy help me?\" is probably the most common question I am asked on a regular basis.</strong>\nI also find many people have incorrect ideas about hypnosis and hypnotherapy due to exaggerated ideas in films, books and stage hypnosis.\nHere are some answers to the most popular questions about hypnosis and hypnotherapy.\n<h2><span style=\"color: #008000;\"><strong>What is Hypnosis?</strong></span></h2>\nHypnosis is a naturally occurring state of mind that we all experience on a regular basis. A good example is being immersed in a good movie, a great book, our favourite music or an activity. Time may pass more quickly or you may be totally oblivious to things happening around you.\nDuring hypnotherapy your hypnotherapist is able to guide you into this state, where you are relaxed and also very aware of your thoughts and suggestions, to modify behaviours or habits for the better.\n<h2><span style=\"color: #008000;\"><strong>What does it feel like to be hypnotised?</strong></span></h2>\nMost clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end.\nClients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.\n<h2><strong><span style=\"color: #008000;\">Will I lose control?</span></strong></h2>\nNo. Hypnosis is a state of consent and you a totally aware, awake and in control at all times.\n<h2><span style=\"color: #008000;\"><strong>How quickly does change happen with hypnosis?</strong></span></h2>\nChanges usually happen from the very first session as change can happen very quickly with some clients and with others it can take place across a short period of time over a few session.\n<h2><span style=\"color: #008000;\"><strong>Is hypnosis dangerous?</strong></span></h2>\nHypnosis is perfectly safe when working with an experienced professional.\nThe use of hypnosis has been recognized by the American Medical Association since 1958<strong>.</strong>  Hypnosis can be dangerous if used while operating machinery or driving.\n<h2><span style=\"color: #008000;\"><strong>What is the difference between hypnosis and self-hypnosis?</strong></span></h2>\nWhen you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life. <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></strong></span>\n<h2><span style=\"color: #008000;\"><strong>What is hypnosis able to help with?</strong></span></h2>\nHypnosis can help with a wide range of problems and issues or can be used to improve already useful habits.\nOur clients see amazing success with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">depression</a>, bad habits, confidence, PTSD, confidence, weight loss, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">stop smoking</a>, addiction, tinnitus, sleep issues, relaxation, alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">candida</a>, digestive issues, nerves, allergies, intolerances, weight management, happiness, destructive behaviours, public speaking, IBS and so much more.\n<h2><span style=\"color: #008000;\"><strong>Can hypnosis be conducted successfully online?</strong></span></h2>\nCertainly. We find results are just as successfull over Skype and other online platforms for cleints who are unab\n<h2><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h2>\nSimply <strong><em>give Mark a call on 07568 455 809</em></strong> to arrange a <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\"><span style=\"color: #008000;\">free phone consultation</span></a></strong> to explore how hypnosis and hypnotherapy can help you.\n\nCan hypnosis be conducted online?\n\nWould you like to learn about the regular events we run at <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/\">Newcastle Hypnotherapy?</a>\nComplete your details below for more information.\n\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\n\nWe are GDPR compliant. We will only use your details to send you information regarding events and news of our services. You may unsubscribe at any time using the link in an email.\n<div>\n\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\n\n</div>\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','What is Hypnosis?','','inherit','closed','closed','','1079-autosave-v1','','','2018-07-30 19:55:05','2018-07-30 19:55:05','',1079,'https://www.newcastle-hypnotherapy.com/1079-autosave-v1/',0,'revision','',0),(1088,1,'2018-07-30 19:10:12','2018-07-30 19:10:12','','Secrets Of Self Hypnosis','','inherit','open','closed','','img_20180519_154207','','','2019-01-02 16:19:30','2019-01-02 16:19:30','',1079,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/IMG_20180519_154207.jpg',0,'attachment','image/jpeg',0),(1089,1,'2018-07-30 19:10:41','2018-07-30 19:10:41','<strong><img class=\"alignleft size-medium wp-image-1088\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/IMG_20180519_154207-300x225.jpg\" alt=\"what is hypnosis\" width=\"300\" height=\"225\" />\r\n\"What is hypnosis and how can hypnotherapy help me?\" is probably the most common question I am asked on a regular basis.</strong>\r\nI also find many people have incorrect ideas about hypnosis and hypnotherapy due to exaggerated ideas in films, books and stage hypnosis.\r\nHere are some answers to the most popular questions about hypnosis and hypnotherapy.\r\n<h2><span style=\"color: #008000;\"><strong>What is Hypnosis?</strong></span></h2>\r\nHypnosis is a naturally occurring state of mind that we all experience on a regular basis. A good example is being immersed in a good movie, a great book, our favourite music or an activity. Time may pass more quickly or you may be totally oblivious to things happening around you.\r\nDuring hypnotherapy your hypnotherapist is able to guide you into this state, where you are relaxed and also very aware of your thoughts and suggestions, to modify behaviours or habits for the better.\r\n<h2><span style=\"color: #008000;\"><strong>What does it feel like to be hypnotised?</strong></span></h2>\r\nMost clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end.\r\nClients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.\r\n<h2><strong><span style=\"color: #008000;\">Will I lose control?</span></strong></h2>\r\nNo. Hypnosis is a state of consent and you a totally aware, awake and in control at all times.\r\n<h2><span style=\"color: #008000;\"><strong>How quickly does change happen with hypnosis?</strong></span></h2>\r\nChanges usually happen from the very first session as change can happen very quickly with some clients and with others it can take place across a short period of time over a few session.\r\n<h2><span style=\"color: #008000;\"><strong>Is hypnosis dangerous?</strong></span></h2>\r\nHypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognized by the American Medical Association since 1958<strong>.</strong>  Hypnosis can be dangerous if used while operating machinery or driving.\r\n<h2><span style=\"color: #008000;\"><strong>What is the difference between hypnosis and self-hypnosis?</strong></span></h2>\r\nWhen you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life. <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>What is the next step?</strong></span></h2>\r\nSimply give Mark a call on 07568 455 809 to arrange a <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\"><span style=\"color: #008000;\">free phone consultation</span></a></strong> to explore how hypnosis and hypnotherapy can help you.\r\n\r\nWould you like to learn about the regular events we run at Newcastle Hypnotherapy?\r\nComplete your details below for more information.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nWe are GDPR compliant. We will only use your details to send you information regarding events and news of our services. You may unsubscrive at anytime using the link in any email.\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','What is Hypnosis?','','inherit','closed','closed','','1079-revision-v1','','','2018-07-30 19:10:41','2018-07-30 19:10:41','',1079,'https://www.newcastle-hypnotherapy.com/1079-revision-v1/',0,'revision','',0),(1090,1,'2018-07-30 19:10:58','2018-07-30 19:10:58','<strong><img class=\"alignleft size-medium wp-image-1088\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/IMG_20180519_154207-300x225.jpg\" alt=\"what is hypnosis\" width=\"300\" height=\"225\" />\"What is hypnosis and how can hypnotherapy help me?\" is probably the most common question I am asked on a regular basis.</strong>\r\nI also find many people have incorrect ideas about hypnosis and hypnotherapy due to exaggerated ideas in films, books and stage hypnosis.\r\nHere are some answers to the most popular questions about hypnosis and hypnotherapy.\r\n<h2><span style=\"color: #008000;\"><strong>What is Hypnosis?</strong></span></h2>\r\nHypnosis is a naturally occurring state of mind that we all experience on a regular basis. A good example is being immersed in a good movie, a great book, our favourite music or an activity. Time may pass more quickly or you may be totally oblivious to things happening around you.\r\nDuring hypnotherapy your hypnotherapist is able to guide you into this state, where you are relaxed and also very aware of your thoughts and suggestions, to modify behaviours or habits for the better.\r\n<h2><span style=\"color: #008000;\"><strong>What does it feel like to be hypnotised?</strong></span></h2>\r\nMost clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end.\r\nClients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.\r\n<h2><strong><span style=\"color: #008000;\">Will I lose control?</span></strong></h2>\r\nNo. Hypnosis is a state of consent and you a totally aware, awake and in control at all times.\r\n<h2><span style=\"color: #008000;\"><strong>How quickly does change happen with hypnosis?</strong></span></h2>\r\nChanges usually happen from the very first session as change can happen very quickly with some clients and with others it can take place across a short period of time over a few session.\r\n<h2><span style=\"color: #008000;\"><strong>Is hypnosis dangerous?</strong></span></h2>\r\nHypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognized by the American Medical Association since 1958<strong>.</strong>  Hypnosis can be dangerous if used while operating machinery or driving.\r\n<h2><span style=\"color: #008000;\"><strong>What is the difference between hypnosis and self-hypnosis?</strong></span></h2>\r\nWhen you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life. <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>What is the next step?</strong></span></h2>\r\nSimply give Mark a call on 07568 455 809 to arrange a <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\"><span style=\"color: #008000;\">free phone consultation</span></a></strong> to explore how hypnosis and hypnotherapy can help you.\r\n\r\nWould you like to learn about the regular events we run at Newcastle Hypnotherapy?\r\nComplete your details below for more information.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nWe are GDPR compliant. We will only use your details to send you information regarding events and news of our services. You may unsubscrive at anytime using the link in any email.\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','What is Hypnosis?','','inherit','closed','closed','','1079-revision-v1','','','2018-07-30 19:10:58','2018-07-30 19:10:58','',1079,'https://www.newcastle-hypnotherapy.com/1079-revision-v1/',0,'revision','',0),(1091,1,'2018-07-30 19:12:44','2018-07-30 19:12:44','<strong><img class=\"alignleft size-medium wp-image-1088\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/IMG_20180519_154207-300x225.jpg\" alt=\"what is hypnosis\" width=\"300\" height=\"225\" />\"What is hypnosis and how can hypnotherapy help me?\" is probably the most common question I am asked on a regular basis.</strong>\r\nI also find many people have incorrect ideas about hypnosis and hypnotherapy due to exaggerated ideas in films, books and stage hypnosis.\r\nHere are some answers to the most popular questions about hypnosis and hypnotherapy.\r\n<h2><span style=\"color: #008000;\"><strong>What is Hypnosis?</strong></span></h2>\r\nHypnosis is a naturally occurring state of mind that we all experience on a regular basis. A good example is being immersed in a good movie, a great book, our favourite music or an activity. Time may pass more quickly or you may be totally oblivious to things happening around you.\r\nDuring hypnotherapy your hypnotherapist is able to guide you into this state, where you are relaxed and also very aware of your thoughts and suggestions, to modify behaviours or habits for the better.\r\n<h2><span style=\"color: #008000;\"><strong>What does it feel like to be hypnotised?</strong></span></h2>\r\nMost clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end.\r\nClients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.\r\n<h2><strong><span style=\"color: #008000;\">Will I lose control?</span></strong></h2>\r\nNo. Hypnosis is a state of consent and you a totally aware, awake and in control at all times.\r\n<h2><span style=\"color: #008000;\"><strong>How quickly does change happen with hypnosis?</strong></span></h2>\r\nChanges usually happen from the very first session as change can happen very quickly with some clients and with others it can take place across a short period of time over a few session.\r\n<h2><span style=\"color: #008000;\"><strong>Is hypnosis dangerous?</strong></span></h2>\r\nHypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognized by the American Medical Association since 1958<strong>.</strong>  Hypnosis can be dangerous if used while operating machinery or driving.\r\n<h2><span style=\"color: #008000;\"><strong>What is the difference between hypnosis and self-hypnosis?</strong></span></h2>\r\nWhen you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life. <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>What is the next step?</strong></span></h2>\r\nSimply give Mark a call on 07568 455 809 to arrange a <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\"><span style=\"color: #008000;\">free phone consultation</span></a></strong> to explore how hypnosis and hypnotherapy can help you.\r\n\r\nWould you like to learn about the regular events we run at <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/\">Newcastle Hypnotherapy?</a>\r\nComplete your details below for more information.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nWe are GDPR compliant. We will only use your details to send you information regarding events and news of our services. You may unsubscrive at anytime using the link in any email.\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','What is Hypnosis?','','inherit','closed','closed','','1079-revision-v1','','','2018-07-30 19:12:44','2018-07-30 19:12:44','',1079,'https://www.newcastle-hypnotherapy.com/1079-revision-v1/',0,'revision','',0),(1092,1,'2018-07-30 19:23:19','2018-07-30 19:23:19','<strong><img class=\"alignleft size-medium wp-image-1088\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/IMG_20180519_154207-300x225.jpg\" alt=\"what is hypnosis\" width=\"300\" height=\"225\" />\"What is hypnosis and how can hypnotherapy help me?\" is probably the most common question I am asked on a regular basis.</strong>\r\nI also find many people have incorrect ideas about hypnosis and hypnotherapy due to exaggerated ideas in films, books and stage hypnosis.\r\nHere are some answers to the most popular questions about hypnosis and hypnotherapy.\r\n<h2><span style=\"color: #008000;\"><strong>What is Hypnosis?</strong></span></h2>\r\nHypnosis is a naturally occurring state of mind that we all experience on a regular basis. A good example is being immersed in a good movie, a great book, our favourite music or an activity. Time may pass more quickly or you may be totally oblivious to things happening around you.\r\nDuring hypnotherapy your hypnotherapist is able to guide you into this state, where you are relaxed and also very aware of your thoughts and suggestions, to modify behaviours or habits for the better.\r\n<h2><span style=\"color: #008000;\"><strong>What does it feel like to be hypnotised?</strong></span></h2>\r\nMost clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end.\r\nClients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.\r\n<h2><strong><span style=\"color: #008000;\">Will I lose control?</span></strong></h2>\r\nNo. Hypnosis is a state of consent and you a totally aware, awake and in control at all times.\r\n<h2><span style=\"color: #008000;\"><strong>How quickly does change happen with hypnosis?</strong></span></h2>\r\nChanges usually happen from the very first session as change can happen very quickly with some clients and with others it can take place across a short period of time over a few session.\r\n<h2><span style=\"color: #008000;\"><strong>Is hypnosis dangerous?</strong></span></h2>\r\nHypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognized by the American Medical Association since 1958<strong>.</strong>  Hypnosis can be dangerous if used while operating machinery or driving.\r\n<h2><span style=\"color: #008000;\"><strong>What is the difference between hypnosis and self-hypnosis?</strong></span></h2>\r\nWhen you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life. <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>What can hypnosis help with?</strong></span></h2>\r\nHypnosis can help with a wide range of problems and issues or can be used to improve already useful habits.\r\nOur clients see amazing success with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">depression</a>, bad habits, confidence, PTSD, confidence, weight loss, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">stop smoking</a>, addiction, tinnitus, sleep issues, relaxation, alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">candida</a>, digestive issues, nerves, allergies, intolerances, weight management, happiness, destructive behaviours, public speaking, IBS and so much more.\r\n<h2><span style=\"color: #008000;\"><strong>What is the next step?</strong></span></h2>\r\nSimply <strong><em>give Mark a call on 07568 455 809</em></strong> to arrange a <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\"><span style=\"color: #008000;\">free phone consultation</span></a></strong> to explore how hypnosis and hypnotherapy can help you.\r\n\r\nWould you like to learn about the regular events we run at <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/\">Newcastle Hypnotherapy?</a>\r\nComplete your details below for more information.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nWe are GDPR compliant. We will only use your details to send you information regarding events and news of our services. You may unsubscribe at any time using the link in an email.\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','What is Hypnosis?','','inherit','closed','closed','','1079-revision-v1','','','2018-07-30 19:23:19','2018-07-30 19:23:19','',1079,'https://www.newcastle-hypnotherapy.com/1079-revision-v1/',0,'revision','',0),(1093,1,'2018-07-30 19:28:17','2018-07-30 19:28:17','<strong><img class=\"alignleft size-medium wp-image-1088\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/IMG_20180519_154207-300x225.jpg\" alt=\"what is hypnosis\" width=\"300\" height=\"225\" />\"What is hypnosis and how can hypnotherapy help me?\" is probably the most common question I am asked on a regular basis.</strong>\r\nI also find many people have incorrect ideas about hypnosis and hypnotherapy due to exaggerated ideas in films, books and stage hypnosis.\r\nHere are some answers to the most popular questions about hypnosis and hypnotherapy.\r\n<h2><span style=\"color: #008000;\"><strong>What is Hypnosis?</strong></span></h2>\r\nHypnosis is a naturally occurring state of mind that we all experience on a regular basis. A good example is being immersed in a good movie, a great book, our favourite music or an activity. Time may pass more quickly or you may be totally oblivious to things happening around you.\r\nDuring hypnotherapy your hypnotherapist is able to guide you into this state, where you are relaxed and also very aware of your thoughts and suggestions, to modify behaviours or habits for the better.\r\n<h2><span style=\"color: #008000;\"><strong>What does it feel like to be hypnotised?</strong></span></h2>\r\nMost clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end.\r\nClients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.\r\n<h2><strong><span style=\"color: #008000;\">Will I lose control?</span></strong></h2>\r\nNo. Hypnosis is a state of consent and you a totally aware, awake and in control at all times.\r\n<h2><span style=\"color: #008000;\"><strong>How quickly does change happen with hypnosis?</strong></span></h2>\r\nChanges usually happen from the very first session as change can happen very quickly with some clients and with others it can take place across a short period of time over a few session.\r\n<h2><span style=\"color: #008000;\"><strong>Is hypnosis dangerous?</strong></span></h2>\r\nHypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognized by the American Medical Association since 1958<strong>.</strong>  Hypnosis can be dangerous if used while operating machinery or driving.\r\n<h2><span style=\"color: #008000;\"><strong>What is the difference between hypnosis and self-hypnosis?</strong></span></h2>\r\nWhen you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life. <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>What is hypnosis able to help with?</strong></span></h2>\r\nHypnosis can help with a wide range of problems and issues or can be used to improve already useful habits.\r\nOur clients see amazing success with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">depression</a>, bad habits, confidence, PTSD, confidence, weight loss, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">stop smoking</a>, addiction, tinnitus, sleep issues, relaxation, alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">candida</a>, digestive issues, nerves, allergies, intolerances, weight management, happiness, destructive behaviours, public speaking, IBS and so much more.\r\n<h2><span style=\"color: #008000;\"><strong>What is the next step?</strong></span></h2>\r\nSimply <strong><em>give Mark a call on 07568 455 809</em></strong> to arrange a <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\"><span style=\"color: #008000;\">free phone consultation</span></a></strong> to explore how hypnosis and hypnotherapy can help you.\r\n\r\nWould you like to learn about the regular events we run at <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/\">Newcastle Hypnotherapy?</a>\r\nComplete your details below for more information.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nWe are GDPR compliant. We will only use your details to send you information regarding events and news of our services. You may unsubscribe at any time using the link in an email.\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','What is Hypnosis?','','inherit','closed','closed','','1079-revision-v1','','','2018-07-30 19:28:17','2018-07-30 19:28:17','',1079,'https://www.newcastle-hypnotherapy.com/1079-revision-v1/',0,'revision','',0),(1094,1,'2018-07-30 19:55:19','2018-07-30 19:55:19','<strong><img class=\"alignleft size-medium wp-image-1088\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/IMG_20180519_154207-300x225.jpg\" alt=\"what is hypnosis\" width=\"300\" height=\"225\" />\"What is hypnosis and how can hypnotherapy help me?\" is probably the most common question I am asked on a regular basis.</strong>\r\nI also find many people have incorrect ideas about hypnosis and hypnotherapy due to exaggerated ideas in films, books and stage hypnosis.\r\nHere are some answers to the most popular questions about hypnosis and hypnotherapy.\r\n<h2><span style=\"color: #008000;\"><strong>What is Hypnosis?</strong></span></h2>\r\nHypnosis is a naturally occurring state of mind that we all experience on a regular basis. A good example is being immersed in a good movie, a great book, our favourite music or an activity. Time may pass more quickly or you may be totally oblivious to things happening around you.\r\nDuring hypnotherapy your hypnotherapist is able to guide you into this state, where you are relaxed and also very aware of your thoughts and suggestions, to modify behaviours or habits for the better.\r\n<h2><span style=\"color: #008000;\"><strong>What does it feel like to be hypnotised?</strong></span></h2>\r\nMost clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end.\r\nClients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.\r\n<h2><strong><span style=\"color: #008000;\">Will I lose control?</span></strong></h2>\r\nNo. Hypnosis is a state of consent and you a totally aware, awake and in control at all times.\r\n<h2><span style=\"color: #008000;\"><strong>How quickly does change happen with hypnosis?</strong></span></h2>\r\nChanges usually happen from the very first session as change can happen very quickly with some clients and with others it can take place across a short period of time over a few session.\r\n<h2><span style=\"color: #008000;\"><strong>Is hypnosis dangerous?</strong></span></h2>\r\nHypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognized by the American Medical Association since 1958<strong>.</strong>  Hypnosis can be dangerous if used while operating machinery or driving.\r\n<h2><span style=\"color: #008000;\"><strong>What is the difference between hypnosis and self-hypnosis?</strong></span></h2>\r\nWhen you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life. <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>What is hypnosis able to help with?</strong></span></h2>\r\nHypnosis can help with a wide range of problems and issues or can be used to improve already useful habits.\r\nOur clients see amazing success with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">depression</a>, bad habits, confidence, PTSD, confidence, weight loss, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">stop smoking</a>, addiction, tinnitus, sleep issues, relaxation, alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">candida</a>, digestive issues, nerves, allergies, intolerances, weight management, happiness, destructive behaviours, public speaking, IBS and so much more.\r\n<h2><span style=\"color: #008000;\"><strong>Can hypnosis be conducted successfully online?</strong></span></h2>\r\nCertainly. We find results are just as successfull over Skype and other online platforms for cleints who are unable to meet with us in person.\r\n<h2><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h2>\r\nSimply <strong><em>give Mark a call on 07568 455 809</em></strong> to arrange a <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\"><span style=\"color: #008000;\">free phone consultation</span></a></strong> to explore how hypnosis and hypnotherapy can help you.\r\n\r\n\r\nWould you like to learn about the regular events we run at <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/\">Newcastle Hypnotherapy?</a>\r\nComplete your details below for more information.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nWe are GDPR compliant. We will only use your details to send you information regarding events and news of our services. You may unsubscribe at any time using the link in an email.\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','What is Hypnosis?','','inherit','closed','closed','','1079-revision-v1','','','2018-07-30 19:55:19','2018-07-30 19:55:19','',1079,'https://www.newcastle-hypnotherapy.com/1079-revision-v1/',0,'revision','',0),(1095,1,'2018-07-31 22:08:39','2018-07-31 22:08:39','<h2><span style=\"color: #008000;\"><img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" /><strong>Learn exciting new skills at The Wednesday Workshop.</strong></span></h2>\r\nLearn new skills such as Self-Hypnosis, NLP, Tapping, EFT, Mindfulness, Meditation, Spiritual Development, Past Life Regression, Confidence Building, Relaxation, Healing, Crystal Healing &amp; more at the Wednesday Workshop.\r\n\r\nThe Wednesday Workshop is a non-profit event that runs on the 1st &amp; 3rd Wednesday of each month, starting on the 5th of September.\r\nHere you will have the chance to learn new skills, make friends and the topic or skills change each meeting.\r\nEach session is held @ <a href=\"http://www.the-vault.org/\">The Vault</a>, Wallsend, starting at 7.30 pm for about 2 hours.\r\n\r\nThe aim is to share and learn life to change skills for life improvement and happiness in many different areas with a focus on good mental health.\r\nThe Wednesday Workshop is organised by Mark at <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> and we encourage others to join in and share skills that may be of use to others.\r\n<h2><span style=\"color: #008000;\"><strong>For priority information about The Wednesday Workshop, simply sign up for your newsletter below.</strong></span></h2>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe will only use your email address to send you information about workshops &amp; events.\r\nYou can unsubscribe at any time using the link in the email. We are GDPR compliant and value your privacy.\r\n\r\nYou can also find more information on The <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></strong> &amp; our <strong><a href=\"https://twitter.com/Newcastlehypno\">Twitter Page</a></strong>.\r\n\r\nEach event is held at The Vault, Station Road, Wallsend, Newcastle upon Tyne.\r\nBooking in advance is essential to reserve your place for these events. We are limited to just 15 people per workshop.\r\n\r\nIf you have some skills you would like to share or a workshop you would like to run please <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us</strong></a> with further information. We are looking for others to help with events and share some amazing skills. You can also suggest ideas for future workshops.','The Wednesday Workshop','','publish','open','open','','wednesday-workshop','','','2018-07-31 22:08:39','2018-07-31 22:08:39','',0,'https://www.newcastle-hypnotherapy.com/?p=1095',0,'post','',0),(1096,1,'2018-07-31 21:13:06','2018-07-31 21:13:06','','The Wednesday Workshop','','inherit','open','closed','','33059915_10155862105114398_7132780766903140352_n','','','2018-07-31 21:14:52','2018-07-31 21:14:52','',1095,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n.jpg',0,'attachment','image/jpeg',0),(1097,1,'2018-07-31 21:15:08','2018-07-31 21:15:08','<img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />','The Wednesday Workshop','','inherit','closed','closed','','1095-revision-v1','','','2018-07-31 21:15:08','2018-07-31 21:15:08','',1095,'https://www.newcastle-hypnotherapy.com/1095-revision-v1/',0,'revision','',0),(1098,1,'2018-07-31 21:24:21','2018-07-31 21:24:21','<h2><span style=\"color: #008000;\">Learn new skills at The Wednesday Workshop.</span></h2>\r\nSelf-Hypnosis, NLP, Tapping, EFT, Mindfullness, Meditation, Spirital Development, Past Life Regression, Confidence Building, Relaxation, Healing, Crystal Healing &amp; more.\r\n\r\nThe Wednesday Workshop is a non profit event that runs on the 1st &amp; 3rd Wednesday of each month, starting on the 5th of September.\r\nHere you will have the chance to learn new skills and the topic changes each meeting.\r\nEach session is held @ The Vault, Wallsend, starting at 7.30 for about 2 hours.\r\n\r\nIf you would like more information of these workshop events simply sign up for the newsletter below\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','The Wednesday Workshop','','inherit','closed','closed','','1095-revision-v1','','','2018-07-31 21:24:21','2018-07-31 21:24:21','',1095,'https://www.newcastle-hypnotherapy.com/1095-revision-v1/',0,'revision','',0),(1099,1,'2018-07-31 21:26:12','2018-07-31 21:26:12','<h2><span style=\"color: #008000;\"><img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />Learn new skills at The Wednesday Workshop.</span></h2>\r\nSelf-Hypnosis, NLP, Tapping, EFT, Mindfullness, Meditation, Spirital Development, Past Life Regression, Confidence Building, Relaxation, Healing, Crystal Healing &amp; more.\r\n\r\nThe Wednesday Workshop is a non profit event that runs on the 1st &amp; 3rd Wednesday of each month, starting on the 5th of September.\r\nHere you will have the chance to learn new skills and the topic changes each meeting.\r\nEach session is held @ The Vault, Wallsend, starting at 7.30 for about 2 hours.\r\n\r\nIf you would like more information of these workshop events simply sign up for the newsletter below\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','The Wednesday Workshop','','inherit','closed','closed','','1095-revision-v1','','','2018-07-31 21:26:12','2018-07-31 21:26:12','',1095,'https://www.newcastle-hypnotherapy.com/1095-revision-v1/',0,'revision','',0),(1100,1,'2018-07-31 21:32:03','2018-07-31 21:32:03','<h2><span style=\"color: #008000;\"><img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />Learn new skills at The Wednesday Workshop.</span></h2>\r\nSelf-Hypnosis, NLP, Tapping, EFT, Mindfullness, Meditation, Spirital Development, Past Life Regression, Confidence Building, Relaxation, Healing, Crystal Healing &amp; more.\r\n\r\nThe Wednesday Workshop is a non profit event that runs on the 1st &amp; 3rd Wednesday of each month, starting on the 5th of September.\r\nHere you will have the chance to learn new skills and the topic changes each meeting.\r\nEach session is held @ <a href=\"http://www.the-vault.org/\">The Vault</a>, Wallsend, starting at 7.30 for about 2 hours.\r\n\r\nThe aim is to share and learn life changing skills for life improvement and happiness.\r\n\r\n<span style=\"color: #008000;\"><strong>If you would like more information about these workshop events simply sign up for the newsletter below.</strong></span>\r\n\r\nIf you would like to share a skill or run a workshop please <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us</strong></a></span> with more information.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','The Wednesday Workshop','','inherit','closed','closed','','1095-revision-v1','','','2018-07-31 21:32:03','2018-07-31 21:32:03','',1095,'https://www.newcastle-hypnotherapy.com/1095-revision-v1/',0,'revision','',0),(1101,1,'2018-07-31 21:32:50','2018-07-31 21:32:50','<h2><span style=\"color: #008000;\"><img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />Learn exciting new skills at The Wednesday Workshop.</span></h2>\r\nSelf-Hypnosis, NLP, Tapping, EFT, Mindfullness, Meditation, Spirital Development, Past Life Regression, Confidence Building, Relaxation, Healing, Crystal Healing &amp; more.\r\n\r\nThe Wednesday Workshop is a non profit event that runs on the 1st &amp; 3rd Wednesday of each month, starting on the 5th of September.\r\nHere you will have the chance to learn new skills and the topic changes each meeting.\r\nEach session is held @ <a href=\"http://www.the-vault.org/\">The Vault</a>, Wallsend, starting at 7.30 for about 2 hours.\r\n\r\nThe aim is to share and learn life changing skills for life improvement and happiness.\r\n\r\n<span style=\"color: #008000;\"><strong>If you would like more information about these workshop events simply sign up for the newsletter below.</strong></span>\r\n\r\nIf you would like to share a skill or run a workshop please <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us</strong></a></span> with more information.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','The Wednesday Workshop','','inherit','closed','closed','','1095-revision-v1','','','2018-07-31 21:32:50','2018-07-31 21:32:50','',1095,'https://www.newcastle-hypnotherapy.com/1095-revision-v1/',0,'revision','',0),(1102,1,'2018-07-31 21:41:00','2018-07-31 21:41:00','<h2><span style=\"color: #008000;\"><img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />Learn exciting new skills at The Wednesday Workshop.</span></h2>\r\nSelf-Hypnosis, NLP, Tapping, EFT, Mindfullness, Meditation, Spirital Development, Past Life Regression, Confidence Building, Relaxation, Healing, Crystal Healing &amp; more.\r\n\r\nThe Wednesday Workshop is a non profit event that runs on the 1st &amp; 3rd Wednesday of each month, starting on the 5th of September.\r\nHere you will have the chance to learn new skills and the topic changes each meeting.\r\nEach session is held @ <a href=\"http://www.the-vault.org/\">The Vault</a>, Wallsend, starting at 7.30 for about 2 hours.\r\n\r\nThe aim is to share and learn life changing skills for life improvement and happiness in many different areas.\r\nThe Wednesday Workshop is organised by Mark @ Newcastle Hypnotherapy and we encourage others to join in and share skills that may be of use to others.\r\n<h2><span style=\"color: #008000;\"><strong>For more information about The Wednesday Workshop, simply sign up for the newsletter below.</strong></span></h2>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe will only use your email address to send you information about workshops &amp; events.\r\nYou can unsubscribe at any time using the link in the email. We are GDPR compliant and value your privacy.','The Wednesday Workshop','','inherit','closed','closed','','1095-revision-v1','','','2018-07-31 21:41:00','2018-07-31 21:41:00','',1095,'https://www.newcastle-hypnotherapy.com/1095-revision-v1/',0,'revision','',0),(1103,1,'2018-07-31 21:41:19','2018-07-31 21:41:19','<h2><span style=\"color: #008000;\"><img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" /><strong>Learn exciting new skills at The Wednesday Workshop.</strong></span></h2>\r\nSelf-Hypnosis, NLP, Tapping, EFT, Mindfullness, Meditation, Spirital Development, Past Life Regression, Confidence Building, Relaxation, Healing, Crystal Healing &amp; more.\r\n\r\nThe Wednesday Workshop is a non profit event that runs on the 1st &amp; 3rd Wednesday of each month, starting on the 5th of September.\r\nHere you will have the chance to learn new skills and the topic changes each meeting.\r\nEach session is held @ <a href=\"http://www.the-vault.org/\">The Vault</a>, Wallsend, starting at 7.30 for about 2 hours.\r\n\r\nThe aim is to share and learn life changing skills for life improvement and happiness in many different areas.\r\nThe Wednesday Workshop is organised by Mark @ Newcastle Hypnotherapy and we encourage others to join in and share skills that may be of use to others.\r\n<h2><span style=\"color: #008000;\"><strong>For more information about The Wednesday Workshop, simply sign up for the newsletter below.</strong></span></h2>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe will only use your email address to send you information about workshops &amp; events.\r\nYou can unsubscribe at any time using the link in the email. We are GDPR compliant and value your privacy.','The Wednesday Workshop','','inherit','closed','closed','','1095-revision-v1','','','2018-07-31 21:41:19','2018-07-31 21:41:19','',1095,'https://www.newcastle-hypnotherapy.com/1095-revision-v1/',0,'revision','',0),(1104,1,'2018-07-31 21:45:43','2018-07-31 21:45:43','<h2><span style=\"color: #008000;\"><img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" /><strong>Learn exciting new skills at The Wednesday Workshop.</strong></span></h2>\r\nSelf-Hypnosis, NLP, Tapping, EFT, Mindfullness, Meditation, Spirital Development, Past Life Regression, Confidence Building, Relaxation, Healing, Crystal Healing &amp; more.\r\n\r\nThe Wednesday Workshop is a non profit event that runs on the 1st &amp; 3rd Wednesday of each month, starting on the 5th of September.\r\nHere you will have the chance to learn new skills and the topic changes each meeting.\r\nEach session is held @ <a href=\"http://www.the-vault.org/\">The Vault</a>, Wallsend, starting at 7.30 for about 2 hours.\r\n\r\nThe aim is to share and learn life changing skills for life improvement and happiness in many different areas.\r\nThe Wednesday Workshop is organised by Mark @ <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> and we encourage others to join in and share skills that may be of use to others.\r\n<h2><span style=\"color: #008000;\"><strong>For more information about The Wednesday Workshop, simply sign up for the newsletter below.</strong></span></h2>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe will only use your email address to send you information about workshops &amp; events.\r\nYou can unsubscribe at any time using the link in the email. We are GDPR compliant and value your privacy.\r\n\r\nYou can also find more information on The <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></strong> &amp; our <strong><a href=\"https://twitter.com/Newcastlehypno\">Twitter Page</a></strong>.','The Wednesday Workshop','','inherit','closed','closed','','1095-revision-v1','','','2018-07-31 21:45:43','2018-07-31 21:45:43','',1095,'https://www.newcastle-hypnotherapy.com/1095-revision-v1/',0,'revision','',0),(1105,1,'2018-07-31 21:46:55','2018-07-31 21:46:55','<h2><span style=\"color: #008000;\"><img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" /><strong>Learn exciting new skills at The Wednesday Workshop.</strong></span></h2>\r\nSelf-Hypnosis, NLP, Tapping, EFT, Mindfullness, Meditation, Spirital Development, Past Life Regression, Confidence Building, Relaxation, Healing, Crystal Healing &amp; more.\r\n\r\nThe Wednesday Workshop is a non profit event that runs on the 1st &amp; 3rd Wednesday of each month, starting on the 5th of September.\r\nHere you will have the chance to learn new skills and the topic changes each meeting.\r\nEach session is held @ <a href=\"http://www.the-vault.org/\">The Vault</a>, Wallsend, starting at 7.30 for about 2 hours.\r\n\r\nThe aim is to share and learn life changing skills for life improvement and happiness in many different areas.\r\nThe Wednesday Workshop is organised by Mark at <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> and we encourage others to join in and share skills that may be of use to others.\r\n<h2><span style=\"color: #008000;\"><strong>For more information about The Wednesday Workshop, simply sign up for the newsletter below.</strong></span></h2>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe will only use your email address to send you information about workshops &amp; events.\r\nYou can unsubscribe at any time using the link in the email. We are GDPR compliant and value your privacy.\r\n\r\nYou can also find more information on The <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></strong> &amp; our <strong><a href=\"https://twitter.com/Newcastlehypno\">Twitter Page</a></strong>.','The Wednesday Workshop','','inherit','closed','closed','','1095-revision-v1','','','2018-07-31 21:46:55','2018-07-31 21:46:55','',1095,'https://www.newcastle-hypnotherapy.com/1095-revision-v1/',0,'revision','',0),(1106,1,'2018-07-31 21:51:38','2018-07-31 21:51:38','<h2><span style=\"color: #008000;\"><img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" /><strong>Learn exciting new skills at The Wednesday Workshop.</strong></span></h2>\r\nThe Wednesday Workshop includes Self-Hypnosis, NLP, Tapping, EFT, Mindfullness, Meditation, Spirital Development, Past Life Regression, Confidence Building, Relaxation, Healing, Crystal Healing &amp; more.\r\n\r\nThe Wednesday Workshop is a non profit event that runs on the 1st &amp; 3rd Wednesday of each month, starting on the 5th of September.\r\nHere you will have the chance to learn new skills and the topic changes each meeting.\r\nEach session is held @ <a href=\"http://www.the-vault.org/\">The Vault</a>, Wallsend, starting at 7.30 for about 2 hours.\r\n\r\nThe aim is to share and learn life changing skills for life improvement and happiness in many different areas.\r\nThe Wednesday Workshop is organised by Mark at <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> and we encourage others to join in and share skills that may be of use to others.\r\n<h2><span style=\"color: #008000;\"><strong>For more information about The Wednesday Workshop, simply sign up for the newsletter below.</strong></span></h2>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe will only use your email address to send you information about workshops &amp; events.\r\nYou can unsubscribe at any time using the link in the email. We are GDPR compliant and value your privacy.\r\n\r\nYou can also find more information on The <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></strong> &amp; our <strong><a href=\"https://twitter.com/Newcastlehypno\">Twitter Page</a></strong>.','The Wednesday Workshop','','inherit','closed','closed','','1095-revision-v1','','','2018-07-31 21:51:38','2018-07-31 21:51:38','',1095,'https://www.newcastle-hypnotherapy.com/1095-revision-v1/',0,'revision','',0),(1107,1,'2018-07-31 21:54:18','2018-07-31 21:54:18','<h2><span style=\"color: #008000;\"><img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" /><strong>Learn exciting new skills at The Wednesday Workshop.</strong></span></h2>\r\nLearn Self-Hypnosis, NLP, Tapping, EFT, Mindfullness, Meditation, Spirital Development, Past Life Regression, Confidence Building, Relaxation, Healing, Crystal Healing &amp; more.\r\n\r\nThe Wednesday Workshop is a non profit event that runs on the 1st &amp; 3rd Wednesday of each month, starting on the 5th of September.\r\nHere you will have the chance to learn new skills and the topic changes each meeting.\r\nEach session is held @ <a href=\"http://www.the-vault.org/\">The Vault</a>, Wallsend, starting at 7.30 for about 2 hours.\r\n\r\nThe aim is to share and learn life changing skills for life improvement and happiness in many different areas.\r\nThe Wednesday Workshop is organised by Mark at <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> and we encourage others to join in and share skills that may be of use to others.\r\n<h2><span style=\"color: #008000;\"><strong>For more information about The Wednesday Workshop, simply sign up for the newsletter below.</strong></span></h2>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe will only use your email address to send you information about workshops &amp; events.\r\nYou can unsubscribe at any time using the link in the email. We are GDPR compliant and value your privacy.\r\n\r\nYou can also find more information on The <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></strong> &amp; our <strong><a href=\"https://twitter.com/Newcastlehypno\">Twitter Page</a></strong>.','The Wednesday Workshop','','inherit','closed','closed','','1095-revision-v1','','','2018-07-31 21:54:18','2018-07-31 21:54:18','',1095,'https://www.newcastle-hypnotherapy.com/1095-revision-v1/',0,'revision','',0),(1108,1,'2018-07-31 21:55:00','2018-07-31 21:55:00','<h2><span style=\"color: #008000;\"><img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" /><strong>Learn exciting new skills at The Wednesday Workshop.</strong></span></h2>\r\nLearn new skills such as Self-Hypnosis, NLP, Tapping, EFT, Mindfullness, Meditation, Spirital Development, Past Life Regression, Confidence Building, Relaxation, Healing, Crystal Healing &amp; more at the Wednesday Workshop.\r\n\r\nThe Wednesday Workshop is a non profit event that runs on the 1st &amp; 3rd Wednesday of each month, starting on the 5th of September.\r\nHere you will have the chance to learn new skills and the topic changes each meeting.\r\nEach session is held @ <a href=\"http://www.the-vault.org/\">The Vault</a>, Wallsend, starting at 7.30 for about 2 hours.\r\n\r\nThe aim is to share and learn life changing skills for life improvement and happiness in many different areas.\r\nThe Wednesday Workshop is organised by Mark at <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> and we encourage others to join in and share skills that may be of use to others.\r\n<h2><span style=\"color: #008000;\"><strong>For more information about The Wednesday Workshop, simply sign up for the newsletter below.</strong></span></h2>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe will only use your email address to send you information about workshops &amp; events.\r\nYou can unsubscribe at any time using the link in the email. We are GDPR compliant and value your privacy.\r\n\r\nYou can also find more information on The <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></strong> &amp; our <strong><a href=\"https://twitter.com/Newcastlehypno\">Twitter Page</a></strong>.','The Wednesday Workshop','','inherit','closed','closed','','1095-revision-v1','','','2018-07-31 21:55:00','2018-07-31 21:55:00','',1095,'https://www.newcastle-hypnotherapy.com/1095-revision-v1/',0,'revision','',0),(1109,1,'2018-07-31 22:00:32','2018-07-31 22:00:32','<h2><span style=\"color: #008000;\"><img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" /><strong>Learn exciting new skills at The Wednesday Workshop.</strong></span></h2>\r\nLearn new skills such as Self-Hypnosis, NLP, Tapping, EFT, Mindfulness, Meditation, Spiritual Development, Past Life Regression, Confidence Building, Relaxation, Healing, Crystal Healing &amp; more at the Wednesday Workshop.\r\n\r\nThe Wednesday Workshop is a non-profit event that runs on the 1st &amp; 3rd Wednesday of each month, starting on the 5th of September.\r\nHere you will have the chance to learn new skills, make friends and the topic or skills changes each meeting.\r\nEach session is held @ <a href=\"http://www.the-vault.org/\">The Vault</a>, Wallsend, starting at 7.30 pm for about 2 hours.\r\n\r\nThe aim is to share and learn life to change skills for life improvement and happiness in many different areas.\r\nThe Wednesday Workshop is organised by Mark at <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> and we encourage others to join in and share skills that may be of use to others.\r\n<h2><span style=\"color: #008000;\"><strong>For priority information about The Wednesday Workshop, simply sign up for the newsletter below.</strong></span></h2>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe will only use your email address to send you information about workshops &amp; events.\r\nYou can unsubscribe at any time using the link in the email. We are GDPR compliant and value your privacy.\r\n\r\nYou can also find more information on The <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></strong> &amp; our <strong><a href=\"https://twitter.com/Newcastlehypno\">Twitter Page</a></strong>.\r\n\r\nEach event is held at The Vault, Station Road, Wallsend, Newcastle upon Tyne.\r\nBooking in advance is essential to reserve your place for these events. We are limited to just 15 people per workshop.','The Wednesday Workshop','','inherit','closed','closed','','1095-revision-v1','','','2018-07-31 22:00:32','2018-07-31 22:00:32','',1095,'https://www.newcastle-hypnotherapy.com/1095-revision-v1/',0,'revision','',0),(1110,1,'2018-07-31 22:03:50','2018-07-31 22:03:50','<h2><span style=\"color: #008000;\"><img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" /><strong>Learn exciting new skills at The Wednesday Workshop.</strong></span></h2>\r\nLearn new skills such as Self-Hypnosis, NLP, Tapping, EFT, Mindfulness, Meditation, Spiritual Development, Past Life Regression, Confidence Building, Relaxation, Healing, Crystal Healing &amp; more at the Wednesday Workshop.\r\n\r\nThe Wednesday Workshop is a non-profit event that runs on the 1st &amp; 3rd Wednesday of each month, starting on the 5th of September.\r\nHere you will have the chance to learn new skills, make friends and the topic or skills changes each meeting.\r\nEach session is held @ <a href=\"http://www.the-vault.org/\">The Vault</a>, Wallsend, starting at 7.30 pm for about 2 hours.\r\n\r\nThe aim is to share and learn life to change skills for life improvement and happiness in many different areas.\r\nThe Wednesday Workshop is organised by Mark at <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> and we encourage others to join in and share skills that may be of use to others.\r\n<h2><span style=\"color: #008000;\"><strong>For priority information about The Wednesday Workshop, simply sign up for the newsletter below.</strong></span></h2>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe will only use your email address to send you information about workshops &amp; events.\r\nYou can unsubscribe at any time using the link in the email. We are GDPR compliant and value your privacy.\r\n\r\nYou can also find more information on The <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></strong> &amp; our <strong><a href=\"https://twitter.com/Newcastlehypno\">Twitter Page</a></strong>.\r\n\r\nEach event is held at The Vault, Station Road, Wallsend, Newcastle upon Tyne.\r\nBooking in advance is essential to reserve your place for these events. We are limited to just 15 people per workshop.\r\n\r\nIf you have some skills you would like to share or a workshop you would like to run please <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us</strong></a> with further information. We are looking for others to help with events and share some amazing skills. You can also suggest ideas for future workshops.','The Wednesday Workshop','','inherit','closed','closed','','1095-revision-v1','','','2018-07-31 22:03:50','2018-07-31 22:03:50','',1095,'https://www.newcastle-hypnotherapy.com/1095-revision-v1/',0,'revision','',0),(1111,1,'2018-07-31 22:07:45','2018-07-31 22:07:45','<h2><span style=\"color: #008000;\"><img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" /><strong>Learn exciting new skills at The Wednesday Workshop.</strong></span></h2>\r\nLearn new skills such as Self-Hypnosis, NLP, Tapping, EFT, Mindfulness, Meditation, Spiritual Development, Past Life Regression, Confidence Building, Relaxation, Healing, Crystal Healing &amp; more at the Wednesday Workshop.\r\n\r\nThe Wednesday Workshop is a non-profit event that runs on the 1st &amp; 3rd Wednesday of each month, starting on the 5th of September.\r\nHere you will have the chance to learn new skills, make friends and the topic or skills change each meeting.\r\nEach session is held @ <a href=\"http://www.the-vault.org/\">The Vault</a>, Wallsend, starting at 7.30 pm for about 2 hours.\r\n\r\nThe aim is to share and learn life to change skills for life improvement and happiness in many different areas.\r\nThe Wednesday Workshop is organised by Mark at <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> and we encourage others to join in and share skills that may be of use to others.\r\n<h2><span style=\"color: #008000;\"><strong>For priority information about The Wednesday Workshop, simply sign up for your newsletter below.</strong></span></h2>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe will only use your email address to send you information about workshops &amp; events.\r\nYou can unsubscribe at any time using the link in the email. We are GDPR compliant and value your privacy.\r\n\r\nYou can also find more information on The <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></strong> &amp; our <strong><a href=\"https://twitter.com/Newcastlehypno\">Twitter Page</a></strong>.\r\n\r\nEach event is held at The Vault, Station Road, Wallsend, Newcastle upon Tyne.\r\nBooking in advance is essential to reserve your place for these events. We are limited to just 15 people per workshop.\r\n\r\nIf you have some skills you would like to share or a workshop you would like to run please <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us</strong></a> with further information. We are looking for others to help with events and share some amazing skills. You can also suggest ideas for future workshops.','The Wednesday Workshop','','inherit','closed','closed','','1095-revision-v1','','','2018-07-31 22:07:45','2018-07-31 22:07:45','',1095,'https://www.newcastle-hypnotherapy.com/1095-revision-v1/',0,'revision','',0),(1112,1,'2018-07-31 22:08:39','2018-07-31 22:08:39','<h2><span style=\"color: #008000;\"><img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" /><strong>Learn exciting new skills at The Wednesday Workshop.</strong></span></h2>\r\nLearn new skills such as Self-Hypnosis, NLP, Tapping, EFT, Mindfulness, Meditation, Spiritual Development, Past Life Regression, Confidence Building, Relaxation, Healing, Crystal Healing &amp; more at the Wednesday Workshop.\r\n\r\nThe Wednesday Workshop is a non-profit event that runs on the 1st &amp; 3rd Wednesday of each month, starting on the 5th of September.\r\nHere you will have the chance to learn new skills, make friends and the topic or skills change each meeting.\r\nEach session is held @ <a href=\"http://www.the-vault.org/\">The Vault</a>, Wallsend, starting at 7.30 pm for about 2 hours.\r\n\r\nThe aim is to share and learn life to change skills for life improvement and happiness in many different areas with a focus on good mental health.\r\nThe Wednesday Workshop is organised by Mark at <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> and we encourage others to join in and share skills that may be of use to others.\r\n<h2><span style=\"color: #008000;\"><strong>For priority information about The Wednesday Workshop, simply sign up for your newsletter below.</strong></span></h2>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe will only use your email address to send you information about workshops &amp; events.\r\nYou can unsubscribe at any time using the link in the email. We are GDPR compliant and value your privacy.\r\n\r\nYou can also find more information on The <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></strong> &amp; our <strong><a href=\"https://twitter.com/Newcastlehypno\">Twitter Page</a></strong>.\r\n\r\nEach event is held at The Vault, Station Road, Wallsend, Newcastle upon Tyne.\r\nBooking in advance is essential to reserve your place for these events. We are limited to just 15 people per workshop.\r\n\r\nIf you have some skills you would like to share or a workshop you would like to run please <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us</strong></a> with further information. We are looking for others to help with events and share some amazing skills. You can also suggest ideas for future workshops.','The Wednesday Workshop','','inherit','closed','closed','','1095-revision-v1','','','2018-07-31 22:08:39','2018-07-31 22:08:39','',1095,'https://www.newcastle-hypnotherapy.com/1095-revision-v1/',0,'revision','',0),(1113,1,'2018-08-02 07:15:00','2018-08-02 07:15:00','Who else is is ready to Lose Weight &amp; Feel Great?\r\nThe \"Lose Weight With Hypnosis\" program will help you to feel good, look better and increase your energy.\r\nThis program will show you the tricks to maintaining a healthy weight while still enjoying your favourite foods and taking control of those food cravings.\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong><strong>sugar-free</strong></em><strong><em>’ for over two weeks”</em> </strong>\r\n<h2><span style=\"color: #008000;\"><strong>Lose Weight With Hypnosis.</strong></span></h2>\r\nHypnosis is a powerful tool that puts you back in control while also taking control of emotional eating and beating those food cravings. Hypnotherapy will help you:\r\n<ul>\r\n 	<li>Learn when hunger is real or emotional</li>\r\n 	<li>Give you control over your cravings</li>\r\n 	<li>Give you the willpower you need</li>\r\n 	<li>Choose the right foods to eat</li>\r\n 	<li>Make you aware of unconscious eating</li>\r\n 	<li>Eliminate unwanted behaviours &amp; bad habits</li>\r\n 	<li>Control stress or anxiety that may make things worse</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to get started and lose weight with hypnosis?</strong></span></h2>\r\nYour first step is to arrange your free phone consultation. This is where we can discuss any issues that may have held you back in the past, decide how you want to move forward and see if hypnotherapy is right for you.\r\n<strong>To get started simply call Mark on 07568 455 809 to arrange your free consultation.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Lose Weight With Hypnosis - Questions &amp; Answers.</span>\r\n</strong></h2>\r\n<strong>Will I have to go hungry?</strong>\r\nNo. When you are hungry you need to eat. This program will help you recognise when you are really hungry and when you are eating out of habit or emotion.\r\n\r\n<strong>Is the Weight Loss With Hypnosis Program the same for everyone?</strong>\r\nNo. We tailor the program to your individual needs as everyone is different and we all have a different history.\r\n\r\n<strong>How does anxiety &amp; stress affect weight loss?</strong>\r\nEveryone experiences anxiety &amp; stress on a daily basis and most people handle these naturally.\r\nIf you handle anxiety &amp; stress badly, we need to work on these together as this really increases your weight loss results.\r\n\r\n<strong>Is the Weight Loss With Hypnosis program the same as the Hypnotic Gastric Band?</strong>\r\nNo. The hypnotic gastric band program has been very successful, for many people. However, it is not suitable for everyone  You may have health issues or suffer from anxiety, stress or depression. We need to evaluate these and tailor the program to suit your needs.\r\n\r\nHow','Lose Weight With Hypnosis','','inherit','closed','closed','','556-revision-v1','','','2018-08-02 07:15:00','2018-08-02 07:15:00','',556,'https://www.newcastle-hypnotherapy.com/556-revision-v1/',0,'revision','',0),(1114,1,'2018-08-02 07:22:12','2018-08-02 07:22:12','Who else is is ready to Lose Weight &amp; Feel Great?\r\nThe \"Lose Weight With Hypnosis\" program will help you to feel good, look better and increase your energy.\r\nThis program will show you the tricks to maintaining a healthy weight while still enjoying your favourite foods and taking control of those food cravings.\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong><strong>sugar-free</strong></em><strong><em>’ for over two weeks”</em> </strong>\r\n<h2><span style=\"color: #008000;\"><strong>Lose Weight With Hypnosis.</strong></span></h2>\r\nHypnosis is a powerful tool that puts you back in control while also taking control of emotional eating and beating those food cravings. Hypnotherapy will help you:\r\n<ul>\r\n 	<li>Learn when hunger is real or emotional</li>\r\n 	<li>Give you control over your cravings</li>\r\n 	<li>Give you the willpower you need</li>\r\n 	<li>Choose the right foods to eat</li>\r\n 	<li>Make you aware of unconscious eating</li>\r\n 	<li>Eliminate unwanted behaviours &amp; bad habits</li>\r\n 	<li>Control stress or anxiety that may make things worse</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to get started and lose weight with hypnosis?</strong></span></h2>\r\nYour first step is to arrange your free phone consultation. This is where we can discuss any issues that may have held you back in the past, decide how you want to move forward and see if hypnotherapy is right for you.\r\n<strong>To get started simply call Mark on 07568 455 809 to arrange your free consultation.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Lose Weight With Hypnosis - Questions &amp; Answers.</span>\r\n</strong></h2>\r\n<strong>Will I have to go hungry?</strong>\r\nNo. When you are hungry you need to eat. This program will help you recognise when you are really hungry and when you are eating out of habit or emotion.\r\n\r\n<strong>Is the Weight Loss With Hypnosis Program the same for everyone?</strong>\r\nNo. We tailor the program to your individual needs as everyone is different and we all have a different history.\r\n\r\n<strong>How does anxiety &amp; stress affect weight loss?</strong>\r\nEveryone experiences anxiety &amp; stress on a daily basis and most people handle these naturally.\r\nIf you handle anxiety &amp; stress badly, we need to work on these together as this really increases your weight loss results.\r\n\r\n<strong>Is the Weight Loss With Hypnosis program the same as the Hypnotic Gastric Band?</strong>\r\nNo. The hypnotic gastric band program has been very successful, for many people. However, it is not suitable for everyone  You may have health issues or suffer from anxiety, stress or depression. We need to evaluate these and tailor the program to suit your needs.\r\n\r\n<strong>How long does this program take?</strong>\r\nUsually the Weight Loss With Hypnosis program with take 3 to 4 sessions of about 1 hour, depending on your needs.\r\n\r\n<strong>How fast will I lose weight?</strong>\r\nYour weight loss should always be at a speed that is comfortable for you and we prefer to work on healthy weight loss for long-term results.\r\n\r\n<strong>What is my next step?</strong>\r\nYour next step is to arrange your free phone consultation with Mark to look at the best way forward for you and answer your questions.','Lose Weight With Hypnosis','','inherit','closed','closed','','556-revision-v1','','','2018-08-02 07:22:12','2018-08-02 07:22:12','',556,'https://www.newcastle-hypnotherapy.com/556-revision-v1/',0,'revision','',0),(1115,1,'2018-08-02 07:23:40','2018-08-02 07:23:40','Who else is is ready to Lose Weight &amp; Feel Great?\r\nThe \"Lose Weight With Hypnosis\" program will help you to feel good, look better and increase your energy.\r\nThis program will show you the tricks to maintaining a healthy weight while still enjoying your favourite foods and taking control of those food cravings.\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong><strong>sugar-free</strong></em><strong><em>’ for over two weeks”</em> </strong>\r\n<h2><span style=\"color: #008000;\"><strong>Lose Weight With Hypnosis.</strong></span></h2>\r\nHypnosis is a powerful tool that puts you back in control while also taking control of emotional eating and beating those food cravings. Hypnotherapy will help you:\r\n<ul>\r\n 	<li>Learn when hunger is real or emotional</li>\r\n 	<li>Give you control over your cravings</li>\r\n 	<li>Give you the willpower you need</li>\r\n 	<li>Choose the right foods to eat</li>\r\n 	<li>Make you aware of unconscious eating</li>\r\n 	<li>Eliminate unwanted behaviours &amp; bad habits</li>\r\n 	<li>Control stress or anxiety that may make things worse</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to get started and lose weight with hypnosis?</strong></span></h2>\r\nYour first step is to arrange your free phone consultation. This is where we can discuss any issues that may have held you back in the past, decide how you want to move forward and see if hypnotherapy is right for you.\r\n<strong>To get started simply call Mark on 07568 455 809 to arrange your free consultation.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Lose Weight With Hypnosis - Questions &amp; Answers.</span>\r\n</strong></h2>\r\n<strong>Will I have to go hungry?</strong>\r\nNo. When you are hungry you need to eat. This program will help you recognise when you are really hungry and when you are eating out of habit or emotion.\r\n\r\n<strong>Is the Weight Loss With Hypnosis Program the same for everyone?</strong>\r\nNo. We tailor the program to your individual needs as everyone is different and we all have a different history.\r\n\r\n<strong>How does anxiety &amp; stress affect weight loss?</strong>\r\nEveryone experiences anxiety &amp; stress on a daily basis and most people handle these naturally.\r\nIf you handle anxiety &amp; stress badly, we need to work on these together as this really increases your weight loss results.\r\n\r\n<strong>Is the Weight Loss With Hypnosis program the same as the Hypnotic Gastric Band?</strong>\r\nNo. The hypnotic gastric band program has been very successful, for many people. However, it is not suitable for everyone.  You may have health issues or suffer from anxiety, stress or depression. We need to evaluate these and tailor the program to suit your needs.\r\n\r\n<strong>How long does this program take?</strong>\r\nUsually the Weight Loss With Hypnosis program takes 3 to 4 sessions of about 1 hour, depending on your needs.\r\n\r\n<strong>How fast will I lose weight?</strong>\r\nYour weight loss should always be at a speed that is comfortable for you and we prefer to work on healthy weight loss for long-term results.\r\n\r\n<strong>What is my next step?</strong>\r\nYour next step is to arrange your free phone consultation with Mark to look at the best way forward for you and answer your questions.','Lose Weight With Hypnosis','','inherit','closed','closed','','556-revision-v1','','','2018-08-02 07:23:40','2018-08-02 07:23:40','',556,'https://www.newcastle-hypnotherapy.com/556-revision-v1/',0,'revision','',0),(1116,1,'2018-08-02 07:29:29','2018-08-02 07:29:29','Who else is is ready to Lose Weight &amp; Feel Great?\r\nThe \"Lose Weight With Hypnosis\" program will help you to feel good, look better and increase your energy.\r\nThis program will show you the tricks to maintaining a healthy weight while still enjoying your favourite foods and taking control of those food cravings.\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong><strong>sugar-free</strong></em><strong><em>’ for over two weeks”</em> </strong>\r\n<h2><span style=\"color: #008000;\"><strong>Lose Weight With Hypnosis.</strong></span></h2>\r\nHypnosis is a powerful tool that puts you back in control while also taking control of emotional eating and beating those food cravings. Hypnotherapy will help you:\r\n<ul>\r\n 	<li>Learn when hunger is real or emotional</li>\r\n 	<li>Give you control over your cravings</li>\r\n 	<li>Give you the willpower you need</li>\r\n 	<li>Choose the right foods to eat</li>\r\n 	<li>Make you aware of unconscious eating</li>\r\n 	<li>Eliminate unwanted behaviours &amp; bad habits</li>\r\n 	<li>Control stress or anxiety that may make things worse</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to get started and lose weight with hypnosis?</strong></span></h2>\r\nYour first step is to arrange your free phone consultation. This is where we can discuss any issues that may have held you back in the past, decide how you want to move forward and see if hypnotherapy is right for you.\r\n<strong>To get started simply call Mark on 07568 455 809 to arrange your free consultation.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Lose Weight With Hypnosis - Questions &amp; Answers.</span>\r\n</strong></h2>\r\n<strong>Will I have to go hungry?</strong>\r\nNo. When you are hungry you need to eat. This program will help you recognise when you are really hungry and when you are eating out of habit or emotion.\r\n\r\n<strong>Is the Weight Loss With Hypnosis Program the same for everyone?</strong>\r\nNo. We tailor the program to your individual needs as everyone is different and we all have a different history.\r\n\r\n<strong>How does anxiety &amp; stress affect weight loss?</strong>\r\nEveryone experiences anxiety &amp; stress on a daily basis and most people handle these naturally.\r\nIf you handle anxiety &amp; stress badly, we need to work on these together as this really increases your weight loss results.\r\n\r\n<strong>Is the Weight Loss With Hypnosis program the same as the Hypnotic Gastric Band?</strong>\r\nNo. The hypnotic gastric band program has been very successful, for many people. However, it is not suitable for everyone.  You may have health issues or suffer from anxiety, stress or depression. We need to evaluate these and tailor the program to suit your needs.\r\n\r\n<strong>How long does this program take?</strong>\r\nUsually, the Weight Loss With Hypnosis program takes 3 to 4 sessions of about 1 hour, depending on your needs.\r\n\r\n<strong>How fast will I lose weight?</strong>\r\nYour weight loss should always be at a speed that is comfortable for you and we prefer to work on healthy weight loss for long-term results.\r\n\r\n<strong>How does hypnosis help with weight loss?</strong>\r\nHypnosis is a powerful way to change your behaviours and habits that may be causing your weight gain.\r\nHypnotherapy will make you aware of these behaviours and give you self-control.\r\n\r\n<strong>What is my next step?</strong>\r\nYour next step is to arrange your free phone consultation with Mark, to look at the best way forward for you and answer your questions.','Lose Weight With Hypnosis','','inherit','closed','closed','','556-revision-v1','','','2018-08-02 07:29:29','2018-08-02 07:29:29','',556,'https://www.newcastle-hypnotherapy.com/556-revision-v1/',0,'revision','',0),(1117,1,'2018-08-02 07:48:09','2018-08-02 07:48:09','Who else is is ready to Lose Weight &amp; Feel Great?\r\nThe \"Lose Weight With Hypnosis\" program will help you to feel good, look better and increase your energy.\r\nThis program will show you the tricks to maintaining a healthy weight while still enjoying your favourite foods and taking control of those food cravings.\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong><strong>sugar-free</strong></em><strong><em>’ for over two weeks”</em> </strong>\r\n<h2><span style=\"color: #008000;\"><strong>Lose Weight With Hypnosis.</strong></span></h2>\r\nHypnosis is a powerful tool that puts you back in control while also taking control of emotional eating and beating those food cravings. Hypnotherapy will help you:\r\n<ul>\r\n 	<li>Learn when hunger is real or emotional</li>\r\n 	<li>Give you control over your cravings</li>\r\n 	<li>Give you the willpower you need</li>\r\n 	<li>Choose the right foods to eat</li>\r\n 	<li>Make you aware of unconscious eating</li>\r\n 	<li>Eliminate unwanted behaviours &amp; bad habits</li>\r\n 	<li>Control stress or anxiety that may make things worse</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to get started and lose weight with hypnosis?</strong></span></h2>\r\nYour first step is to arrange your free phone consultation. This is where we can discuss any issues that may have held you back in the past, decide how you want to move forward and see if hypnotherapy is right for you.\r\n<strong>To get started simply call Mark on 07568 455 809 to arrange your free consultation.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Lose Weight With Hypnosis - Questions &amp; Answers.</span>\r\n</strong></h2>\r\n<strong>Will I have to go hungry?</strong>\r\nNo. When you are hungry you need to eat. This program will help you recognise when you are really hungry and when you are eating out of habit or emotion.\r\n\r\n<strong>Is the Weight Loss With Hypnosis Program the same for everyone?</strong>\r\nNo. We tailor the program to your individual needs as everyone is different and we all have a different history.\r\n\r\n<strong>How does anxiety &amp; stress affect weight loss?</strong>\r\nEveryone experiences anxiety &amp; stress on a daily basis and most people handle these naturally.\r\nIf you handle anxiety &amp; stress badly, we need to work on these together as this really increases your weight loss results.\r\n\r\n<strong>Is the Weight Loss With Hypnosis program the same as the Hypnotic Gastric Band?</strong>\r\nNo. The hypnotic gastric band program has been very successful, for many people. However, it is not suitable for everyone.  You may have health issues or suffer from anxiety, stress or depression. We need to evaluate these and tailor the program to suit your needs.\r\n\r\n<strong>How long does this program take?</strong>\r\nUsually, the Weight Loss With Hypnosis program takes 3 to 4 sessions of about 1 hour, depending on your needs.\r\n\r\n<strong>How fast will I lose weight?</strong>\r\nYour weight loss should always be at a speed that is comfortable for you and we prefer to work on healthy weight loss for long-term results.\r\n\r\n<strong>How does hypnosis help with weight loss?</strong>\r\nHypnosis is a powerful way to change your behaviours and habits that may be causing your weight gain.\r\nHypnotherapy will make you aware of these behaviours and give you self-control.\r\n\r\n<strong>What is my next step?</strong>\r\nYour next step is to arrange your free phone consultation with Mark, to look at the best way forward for you and answer your questions. Call 07568 455 809 today or complete the form below.\r\n\r\n[wpforms id=\"35\"]\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n&nbsp;','Lose Weight With Hypnosis','','inherit','closed','closed','','556-revision-v1','','','2018-08-02 07:48:09','2018-08-02 07:48:09','',556,'https://www.newcastle-hypnotherapy.com/556-revision-v1/',0,'revision','',0),(1119,1,'2018-08-02 08:49:17','2018-08-02 08:49:17','','Lose Weight With Hypnosis','','inherit','open','closed','','cereal-898073_1280','','','2018-08-02 08:52:33','2018-08-02 08:52:33','',556,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/cereal-898073_1280.jpg',0,'attachment','image/jpeg',0),(1120,1,'2018-08-02 08:52:44','2018-08-02 08:52:44','<img class=\"alignleft size-medium wp-image-1119\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/cereal-898073_1280-300x200.jpg\" alt=\"Lose Weight With Hypnosis\" width=\"300\" height=\"200\" />Who else is is ready to Lose Weight &amp; Feel Great?\r\nThe \"Lose Weight With Hypnosis\" program will help you to feel good, look better and increase your energy.\r\nThis program will show you the tricks to maintaining a healthy weight while still enjoying your favourite foods and taking control of those food cravings.\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong><strong>sugar-free</strong></em><strong><em>’ for over two weeks”</em> </strong>\r\n<h2><span style=\"color: #008000;\"><strong>Lose Weight With Hypnosis.</strong></span></h2>\r\nHypnosis is a powerful tool that puts you back in control while also taking control of emotional eating and beating those food cravings. Hypnotherapy will help you:\r\n<ul>\r\n 	<li>Learn when hunger is real or emotional</li>\r\n 	<li>Give you control over your cravings</li>\r\n 	<li>Give you the willpower you need</li>\r\n 	<li>Choose the right foods to eat</li>\r\n 	<li>Make you aware of unconscious eating</li>\r\n 	<li>Eliminate unwanted behaviours &amp; bad habits</li>\r\n 	<li>Control stress or anxiety that may make things worse</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to get started and lose weight with hypnosis?</strong></span></h2>\r\nYour first step is to arrange your free phone consultation. This is where we can discuss any issues that may have held you back in the past, decide how you want to move forward and see if hypnotherapy is right for you.\r\n<strong>To get started simply call Mark on 07568 455 809 to arrange your free consultation.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Lose Weight With Hypnosis - Questions &amp; Answers.</span>\r\n</strong></h2>\r\n<strong>Will I have to go hungry?</strong>\r\nNo. When you are hungry you need to eat. This program will help you recognise when you are really hungry and when you are eating out of habit or emotion.\r\n\r\n<strong>Is the Weight Loss With Hypnosis Program the same for everyone?</strong>\r\nNo. We tailor the program to your individual needs as everyone is different and we all have a different history.\r\n\r\n<strong>How does anxiety &amp; stress affect weight loss?</strong>\r\nEveryone experiences anxiety &amp; stress on a daily basis and most people handle these naturally.\r\nIf you handle anxiety &amp; stress badly, we need to work on these together as this really increases your weight loss results.\r\n\r\n<strong>Is the Weight Loss With Hypnosis program the same as the Hypnotic Gastric Band?</strong>\r\nNo. The hypnotic gastric band program has been very successful, for many people. However, it is not suitable for everyone.  You may have health issues or suffer from anxiety, stress or depression. We need to evaluate these and tailor the program to suit your needs.\r\n\r\n<strong>How long does this program take?</strong>\r\nUsually, the Weight Loss With Hypnosis program takes 3 to 4 sessions of about 1 hour, depending on your needs.\r\n\r\n<strong>How fast will I lose weight?</strong>\r\nYour weight loss should always be at a speed that is comfortable for you and we prefer to work on healthy weight loss for long-term results.\r\n\r\n<strong>How does hypnosis help with weight loss?</strong>\r\nHypnosis is a powerful way to change your behaviours and habits that may be causing your weight gain.\r\nHypnotherapy will make you aware of these behaviours and give you self-control.\r\n\r\n<strong>What is my next step?</strong>\r\nYour next step is to arrange your free phone consultation with Mark, to look at the best way forward for you and answer your questions. Call 07568 455 809 today or complete the form below.\r\n\r\n[wpforms id=\"35\"]\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n&nbsp;','Lose Weight With Hypnosis','','inherit','closed','closed','','556-revision-v1','','','2018-08-02 08:52:44','2018-08-02 08:52:44','',556,'https://www.newcastle-hypnotherapy.com/556-revision-v1/',0,'revision','',0),(1121,1,'2018-08-02 17:07:47','2018-08-02 17:07:47','<img class=\"alignleft size-medium wp-image-1119\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/cereal-898073_1280-300x200.jpg\" alt=\"Lose Weight With Hypnosis\" width=\"300\" height=\"200\" /><strong>Who else is is ready to Lose Weight &amp; Feel Great?</strong>\r\nThe \"Lose Weight With Hypnosis\" program will help you to feel good, look better and increase your energy.\r\nThis program will show you the tricks to maintaining a healthy weight while still enjoying your favourite foods and taking control of those food cravings.\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong><strong>sugar-free</strong></em><strong><em>’ for over two weeks”</em> </strong>\r\n<h2><span style=\"color: #008000;\"><strong>Lose Weight With Hypnosis.</strong></span></h2>\r\nHypnosis is a powerful tool that puts you back in control while also taking control of emotional eating and beating those food cravings. Hypnotherapy will help you:\r\n<ul>\r\n 	<li>Learn when hunger is real or emotional</li>\r\n 	<li>Give you control over your cravings</li>\r\n 	<li>Give you the willpower you need</li>\r\n 	<li>Choose the right foods to eat</li>\r\n 	<li>Make you aware of unconscious eating</li>\r\n 	<li>Eliminate unwanted behaviours &amp; bad habits</li>\r\n 	<li>Control stress or anxiety that may make things worse</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to get started and lose weight with hypnosis?</strong></span></h2>\r\nYour first step is to arrange your free phone consultation. This is where we can discuss any issues that may have held you back in the past, decide how you want to move forward and see if hypnotherapy is right for you.\r\n<strong>To get started simply call Mark on 07568 455 809 to arrange your free consultation.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Lose Weight With Hypnosis - Questions &amp; Answers.</span>\r\n</strong></h2>\r\n<strong>Will I have to go hungry?</strong>\r\nNo. When you are hungry you need to eat. This program will help you recognise when you are really hungry and when you are eating out of habit or emotion.\r\n\r\n<strong>Is the Weight Loss With Hypnosis Program the same for everyone?</strong>\r\nNo. We tailor the program to your individual needs as everyone is different and we all have a different history.\r\n\r\n<strong>How does anxiety &amp; stress affect weight loss?</strong>\r\nEveryone experiences anxiety &amp; stress on a daily basis and most people handle these naturally.\r\nIf you handle anxiety &amp; stress badly, we need to work on these together as this really increases your weight loss results.\r\n\r\n<strong>Is the Weight Loss With Hypnosis program the same as the Hypnotic Gastric Band?</strong>\r\nNo. The hypnotic gastric band program has been very successful, for many people. However, it is not suitable for everyone.  You may have health issues or suffer from anxiety, stress or depression. We need to evaluate these and tailor the program to suit your needs.\r\n\r\n<strong>How long does this program take?</strong>\r\nUsually, the Weight Loss With Hypnosis program takes 3 to 4 sessions of about 1 hour, depending on your needs.\r\n\r\n<strong>How fast will I lose weight?</strong>\r\nYour weight loss should always be at a speed that is comfortable for you and we prefer to work on healthy weight loss for long-term results.\r\n\r\n<strong>How does hypnosis help with weight loss?</strong>\r\nHypnosis is a powerful way to change your behaviours and habits that may be causing your weight gain.\r\nHypnotherapy will make you aware of these behaviours and give you self-control.\r\n\r\n<strong>What is my next step?</strong>\r\nYour next step is to arrange your free phone consultation with Mark, to look at the best way forward for you and answer your questions. Call 07568 455 809 today or complete the form below.\r\n\r\n[wpforms id=\"35\"]\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n&nbsp;','Lose Weight With Hypnosis','','inherit','closed','closed','','556-revision-v1','','','2018-08-02 17:07:47','2018-08-02 17:07:47','',556,'https://www.newcastle-hypnotherapy.com/556-revision-v1/',0,'revision','',0),(1122,1,'2018-08-02 17:27:29','2018-08-02 17:27:29','<img class=\"alignleft size-medium wp-image-1119\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/cereal-898073_1280-300x200.jpg\" alt=\"Lose Weight With Hypnosis\" width=\"300\" height=\"200\" /><strong>Who else is is ready to Lose Weight &amp; Feel Great?</strong>\r\nThe \"Lose Weight With Hypnosis\" program will help you to feel good, look better and increase your energy.\r\nThis program will show you the tricks to maintaining a healthy weight while still enjoying your favourite foods and taking control of those food cravings.\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong><strong>sugar-free</strong></em><strong><em>’ for over two weeks”</em> </strong>\r\n<h2><span style=\"color: #008000;\"><strong>Lose Weight With Hypnosis.</strong></span></h2>\r\nHypnosis is a powerful tool that puts you back in control while also taking control of emotional eating and beating those food cravings. Hypnotherapy will help you:\r\n<ul>\r\n 	<li>Learn when hunger is real or emotional</li>\r\n 	<li>Give you control over your cravings</li>\r\n 	<li>Give you the willpower you need</li>\r\n 	<li>Choose the right foods to eat</li>\r\n 	<li>Make you aware of unconscious eating</li>\r\n 	<li>Eliminate unwanted behaviours &amp; bad habits</li>\r\n 	<li>Control stress or anxiety that may make things worse</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to get started and lose weight with hypnosis?</strong></span></h2>\r\nYour first step is to arrange your free phone consultation. This is where we can discuss any issues that may have held you back in the past, decide how you want to move forward and see if hypnotherapy is right for you.\r\n<strong>To get started simply call Mark on 07568 455 809 to arrange your free consultation.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Lose Weight With Hypnosis - Questions &amp; Answers.</span>\r\n</strong></h2>\r\n<strong>Will I have to go hungry?</strong>\r\nNo. When you are hungry you need to eat. This program will help you recognise when you are really hungry and when you are eating out of habit or emotion.\r\n\r\n<strong>Is the Weight Loss With Hypnosis Program the same for everyone?</strong>\r\nNo. We tailor the program to your individual needs as everyone is different and we all have a different history.\r\n\r\n<strong>How does anxiety &amp; stress affect weight loss?</strong>\r\nEveryone experiences anxiety &amp; stress on a daily basis and most people handle these naturally.\r\nIf you handle anxiety &amp; stress badly, we need to work on these together as this really increases your weight loss results.\r\n\r\n<strong>Is the Weight Loss With Hypnosis program the same as the Hypnotic Gastric Band?</strong>\r\nNo. The hypnotic gastric band program has been very successful, for many people. However, it is not suitable for everyone.  You may have health issues or suffer from anxiety, stress or depression. We need to evaluate these and tailor the program to suit your needs.\r\n\r\n<strong>How long does this program take?</strong>\r\nUsually, the Weight Loss With Hypnosis program takes 3 to 4 sessions of about 1 hour, depending on your needs.\r\n\r\n<strong>How fast will I lose weight?</strong>\r\nYour weight loss should always be at a speed that is comfortable for you and we prefer to work on healthy weight loss for long-term results.\r\n\r\n<strong>How does hypnosis help with weight loss?</strong>\r\nHypnosis is a powerful way to change your behaviours and habits that may be causing your weight gain.\r\nHypnotherapy will make you aware of these behaviours and give you self-control.\r\n\r\n<strong>What is my next step?</strong>\r\nYour next step is to arrange your free phone consultation with Mark, to look at the best way forward for you and answer your questions. <strong>Call 07568 455 809 today or complete the form below.</strong>\r\n\r\n[wpforms id=\"35\"]\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2>\r\n<span style=\"color: #008000;\"><strong>Why is obesity and being overweight loss becoming such a big issue?</strong></span></h2>\r\nFirstly we are being pushed repeatedly to buy more and more products, including food.\r\nMany adverts now link emotion to food and as a result, many of us use food to change our emotions. This means we eat at the wrong times or when we feel unhappy.\r\n\r\nAnother issue is our modern busy lives. Time is often short and very often we eat unconsciously without recognising how much and exactly what we are eating. As a result, we become less aware of when we are full and often eat food despite being full.\r\n\r\nMany people turn to slimming clubs when they need help with weight loss. Statistically, most of those people end up gaining more weight long-term, than when they started.\r\nOne of the issues with these clubs is the constant magazines and messages about food. Rather than focus on being healthy, fit and energetic the focus is on food, food and more food. Very often these foods are those being sold by the clubs themselves.\r\n\r\nThe final big issue is changing peoples self-image','Lose Weight With Hypnosis','','inherit','closed','closed','','556-revision-v1','','','2018-08-02 17:27:29','2018-08-02 17:27:29','',556,'https://www.newcastle-hypnotherapy.com/556-revision-v1/',0,'revision','',0),(1123,1,'2018-08-02 17:47:52','2018-08-02 17:47:52','<img class=\"alignleft size-medium wp-image-1119\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/cereal-898073_1280-300x200.jpg\" alt=\"Lose Weight With Hypnosis\" width=\"300\" height=\"200\" /><strong>Who else is is ready to Lose Weight &amp; Feel Great?</strong>\r\nThe \"Lose Weight With Hypnosis\" program will help you to feel good, look better and increase your energy.\r\nThis program will show you the tricks to maintaining a healthy weight while still enjoying your favourite foods and taking control of those food cravings.\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong><strong>sugar-free</strong></em><strong><em>’ for over two weeks”</em> </strong>\r\n<h2><span style=\"color: #008000;\"><strong>Lose Weight With Hypnosis.</strong></span></h2>\r\nHypnosis is a powerful tool that puts you back in control while also taking control of emotional eating and beating those food cravings. Hypnotherapy will help you:\r\n<ul>\r\n 	<li>Learn when hunger is real or emotional</li>\r\n 	<li>Give you control over your cravings</li>\r\n 	<li>Give you the willpower you need</li>\r\n 	<li>Choose the right foods to eat</li>\r\n 	<li>Make you aware of unconscious eating</li>\r\n 	<li>Eliminate unwanted behaviours &amp; bad habits</li>\r\n 	<li>Control stress or anxiety that may make things worse</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to get started and lose weight with hypnosis?</strong></span></h2>\r\nYour first step is to arrange your free phone consultation. This is where we can discuss any issues that may have held you back in the past, decide how you want to move forward and see if hypnotherapy is right for you.\r\n<strong>To get started simply call Mark on 07568 455 809 to arrange your free consultation.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Lose Weight With Hypnosis - Questions &amp; Answers.</span>\r\n</strong></h2>\r\n<strong>Will I have to go hungry?</strong>\r\nNo. When you are hungry you need to eat. This program will help you recognise when you are really hungry and when you are eating out of habit or emotion.\r\n\r\n<strong>Is the Weight Loss With Hypnosis Program the same for everyone?</strong>\r\nNo. We tailor the program to your individual needs as everyone is different and we all have a different history.\r\n\r\n<strong>How does anxiety &amp; stress affect weight loss?</strong>\r\nEveryone experiences anxiety &amp; stress on a daily basis and most people handle these naturally.\r\nIf you handle anxiety &amp; stress badly, we need to work on these together as this really increases your weight loss results.\r\n\r\n<strong>Is the Weight Loss With Hypnosis program the same as the Hypnotic Gastric Band?</strong>\r\nNo. The hypnotic gastric band program has been very successful, for many people. However, it is not suitable for everyone.  You may have health issues or suffer from anxiety, stress or depression. We need to evaluate these and tailor the program to suit your needs.\r\n\r\n<strong>How long does this program take?</strong>\r\nUsually, the Weight Loss With Hypnosis program takes 3 to 4 sessions of about 1 hour, depending on your needs.\r\n\r\n<strong>How fast will I lose weight?</strong>\r\nYour weight loss should always be at a speed that is comfortable for you and we prefer to work on healthy weight loss for long-term results.\r\n\r\n<strong>How does hypnosis help with weight loss?</strong>\r\nHypnosis is a powerful way to change your behaviours and habits that may be causing your weight gain.\r\nHypnotherapy will make you aware of these behaviours and give you self-control.\r\n\r\n<strong>What is my next step?</strong>\r\nYour next step is to arrange your free phone consultation with Mark, to look at the best way forward for you and answer your questions. <strong>Call 07568 455 809 today or complete the form below.</strong>\r\n\r\n[wpforms id=\"35\"]\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"color: #008000;\"><strong>Why is obesity and being overweight loss becoming such a big issue?</strong></span></h2>\r\nFirstly we are being pushed repeatedly to buy more and more products, including food.\r\nMany adverts now link emotion to food and as a result, many of us use food to change our emotions. This means we eat at the wrong times or when we feel unhappy.\r\n\r\nAnother issue is our modern busy lives. Time is often short and very often we eat unconsciously without recognising how much and exactly what we are eating. As a result, we become less aware of when we are full and often eat food despite being full.\r\n\r\nMany people turn to slimming clubs when they need help with weight loss. Statistically, most of those people end up gaining more weight long-term, than when they started.\r\nOne of the issues with these clubs is the constant magazines and messages about food. Rather than focus on being healthy, fit and energetic the focus is on food, food and more food. Very often these foods are those being sold by the clubs themselves.\r\n\r\nAnother big issue is changing peoples self-image. A big part of what we do is to allow clients to see themselves as a healthier, fitter, slimmer person. If a person has a negative self-image or always believes they will be overweight, unfit and unhealthy, they will most likely revert back to that old behaviour.\r\n\r\nHypnosis and hypnotherapy are so wonderful as we can change how a person sees themselves. Once this new belief has been created, changing beliefs, habits and behaviours are so much easier and results are seen so much faster.\r\n\r\nIf you are now ready to also change your life, lose the weight, increase your energy and feel so much better, give Mark a call on 07568 455 809 and we can arrange your free consultation.','Lose Weight With Hypnosis','','inherit','closed','closed','','556-revision-v1','','','2018-08-02 17:47:52','2018-08-02 17:47:52','',556,'https://www.newcastle-hypnotherapy.com/556-revision-v1/',0,'revision','',0),(1124,1,'2018-08-02 20:49:27','2018-08-02 20:49:27','<img class=\"alignleft size-medium wp-image-1119\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/cereal-898073_1280-300x200.jpg\" alt=\"Lose Weight With Hypnosis\" width=\"300\" height=\"200\" /><strong>Who else is is ready to Lose Weight &amp; Feel Great?</strong>\r\nThe \"Lose Weight With Hypnosis\" program will help you to feel good, look better and increase your energy.\r\nThis program will show you the tricks to maintaining a healthy weight while still enjoying your favourite foods and taking control of those food cravings.\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong><strong>sugar-free</strong></em><strong><em>’ for over two weeks”</em> </strong>\r\n<h2><span style=\"color: #008000;\"><strong>Lose Weight With Hypnosis.</strong></span></h2>\r\nHypnosis is a powerful tool that puts you back in control while also taking control of emotional eating and beating those food cravings. Hypnotherapy will help you:\r\n<ul>\r\n 	<li>Learn when hunger is real or emotional</li>\r\n 	<li>Give you control over your cravings</li>\r\n 	<li>Give you the willpower you need</li>\r\n 	<li>Choose the right foods to eat</li>\r\n 	<li>Make you aware of unconscious eating</li>\r\n 	<li>Eliminate unwanted behaviours &amp; bad habits</li>\r\n 	<li>Control stress or anxiety that may make things worse</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to get started and lose weight with hypnosis?</strong></span></h2>\r\nYour first step is to arrange your free phone consultation. This is where we can discuss any issues that may have held you back in the past, decide how you want to move forward and see if hypnotherapy is right for you.\r\n<strong>To get started simply call Mark on 07568 455 809 to arrange your free consultation.\r\n\r\n</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Joyce</span> “<span class=\"Linkify\">Thankyou for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Lose Weight With Hypnosis - Questions &amp; Answers.</span>\r\n</strong></h2>\r\n<strong>Will I have to go hungry?</strong>\r\nNo. When you are hungry you need to eat. This program will help you recognise when you are really hungry and when you are eating out of habit or emotion.\r\n\r\n<strong>Is the Weight Loss With Hypnosis Program the same for everyone?</strong>\r\nNo. We tailor the program to your individual needs as everyone is different and we all have a different history.\r\n\r\n<strong>How does anxiety &amp; stress affect weight loss?</strong>\r\nEveryone experiences anxiety &amp; stress on a daily basis and most people handle these naturally.\r\nIf you handle anxiety &amp; stress badly, we need to work on these together as this really increases your weight loss results.\r\n\r\n<strong>Is the Weight Loss With Hypnosis program the same as the Hypnotic Gastric Band?</strong>\r\nNo. The hypnotic gastric band program has been very successful, for many people. However, it is not suitable for everyone.  You may have health issues or suffer from anxiety, stress or depression. We need to evaluate these and tailor the program to suit your needs.\r\n\r\n<strong>How long does this program take?</strong>\r\nUsually, the Weight Loss With Hypnosis program takes 3 to 4 sessions of about 1 hour, depending on your needs.\r\n\r\n<strong>How fast will I lose weight?</strong>\r\nYour weight loss should always be at a speed that is comfortable for you and we prefer to work on healthy weight loss for long-term results.\r\n\r\n<strong>How does hypnosis help with weight loss?</strong>\r\nHypnosis is a powerful way to change your behaviours and habits that may be causing your weight gain.\r\nHypnotherapy will make you aware of these behaviours and give you self-control.\r\n\r\n<strong>What is my next step?</strong>\r\nYour next step is to arrange your free phone consultation with Mark, to look at the best way forward for you and answer your questions. <strong>Call 07568 455 809 today or complete the form below.</strong>\r\n\r\n[wpforms id=\"35\"]\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"color: #008000;\"><strong>Why is obesity and being overweight loss becoming such a big issue?</strong></span></h2>\r\nFirstly we are being pushed repeatedly to buy more and more products, including food.\r\nMany adverts now link emotion to food and as a result, many of us use food to change our emotions. This means we eat at the wrong times or when we feel unhappy.\r\n\r\nAnother issue is our modern busy lives. Time is often short and very often we eat unconsciously without recognising how much and exactly what we are eating. As a result, we become less aware of when we are full and often eat food despite being full.\r\n\r\nMany people turn to slimming clubs when they need help with weight loss. Statistically, most of those people end up gaining more weight long-term, than when they started.\r\nOne of the issues with these clubs is the constant magazines and messages about food. Rather than focus on being healthy, fit and energetic the focus is on food, food and more food. Very often these foods are those being sold by the clubs themselves.\r\n\r\nAnother big issue is changing peoples self-image. A big part of what we do is to allow clients to see themselves as a healthier, fitter, slimmer person. If a person has a negative self-image or always believes they will be overweight, unfit and unhealthy, they will most likely revert back to that old behaviour.\r\n\r\nHypnosis and hypnotherapy are so wonderful as we can change how a person sees themselves. Once this new belief has been created, changing beliefs, habits and behaviours are so much easier and results are seen so much faster.\r\n\r\nIf you are now ready to also change your life, lose the weight, increase your energy and feel so much better, give Mark a call on 07568 455 809 and we can arrange your free consultation.','Lose Weight With Hypnosis','','inherit','closed','closed','','556-revision-v1','','','2018-08-02 20:49:27','2018-08-02 20:49:27','',556,'https://www.newcastle-hypnotherapy.com/556-revision-v1/',0,'revision','',0),(1125,1,'2018-08-02 20:50:19','2018-08-02 20:50:19','<img class=\"alignleft size-medium wp-image-1119\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/cereal-898073_1280-300x200.jpg\" alt=\"Lose Weight With Hypnosis\" width=\"300\" height=\"200\" /><strong>Who else is is ready to Lose Weight &amp; Feel Great?</strong>\r\nThe \"Lose Weight With Hypnosis\" program will help you to feel good, look better and increase your energy.\r\nThis program will show you the tricks to maintaining a healthy weight while still enjoying your favourite foods and taking control of those food cravings.\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong><strong>sugar-free</strong></em><strong><em>’ for over two weeks”</em> </strong>\r\n<h2><span style=\"color: #008000;\"><strong>Lose Weight With Hypnosis.</strong></span></h2>\r\nHypnosis is a powerful tool that puts you back in control while also taking control of emotional eating and beating those food cravings. Hypnotherapy will help you:\r\n<ul>\r\n 	<li>Learn when hunger is real or emotional</li>\r\n 	<li>Give you control over your cravings</li>\r\n 	<li>Give you the willpower you need</li>\r\n 	<li>Choose the right foods to eat</li>\r\n 	<li>Make you aware of unconscious eating</li>\r\n 	<li>Eliminate unwanted behaviours &amp; bad habits</li>\r\n 	<li>Control stress or anxiety that may make things worse</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to get started and lose weight with hypnosis?</strong></span></h2>\r\nYour first step is to arrange your free phone consultation. This is where we can discuss any issues that may have held you back in the past, decide how you want to move forward and see if hypnotherapy is right for you.\r\n<strong>To get started simply call Mark on 07568 455 809 to arrange your free consultation.</strong>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Joyce</span> “<span class=\"Linkify\">Thankyou for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Lose Weight With Hypnosis - Questions &amp; Answers.</span>\r\n</strong></h2>\r\n<strong>Will I have to go hungry?</strong>\r\nNo. When you are hungry you need to eat. This program will help you recognise when you are really hungry and when you are eating out of habit or emotion.\r\n\r\n<strong>Is the Weight Loss With Hypnosis Program the same for everyone?</strong>\r\nNo. We tailor the program to your individual needs as everyone is different and we all have a different history.\r\n\r\n<strong>How does anxiety &amp; stress affect weight loss?</strong>\r\nEveryone experiences anxiety &amp; stress on a daily basis and most people handle these naturally.\r\nIf you handle anxiety &amp; stress badly, we need to work on these together as this really increases your weight loss results.\r\n\r\n<strong>Is the Weight Loss With Hypnosis program the same as the Hypnotic Gastric Band?</strong>\r\nNo. The hypnotic gastric band program has been very successful, for many people. However, it is not suitable for everyone.  You may have health issues or suffer from anxiety, stress or depression. We need to evaluate these and tailor the program to suit your needs.\r\n\r\n<strong>How long does this program take?</strong>\r\nUsually, the Weight Loss With Hypnosis program takes 3 to 4 sessions of about 1 hour, depending on your needs.\r\n\r\n<strong>How fast will I lose weight?</strong>\r\nYour weight loss should always be at a speed that is comfortable for you and we prefer to work on healthy weight loss for long-term results.\r\n\r\n<strong>How does hypnosis help with weight loss?</strong>\r\nHypnosis is a powerful way to change your behaviours and habits that may be causing your weight gain.\r\nHypnotherapy will make you aware of these behaviours and give you self-control.\r\n\r\n<strong>What is my next step?</strong>\r\nYour next step is to arrange your free phone consultation with Mark, to look at the best way forward for you and answer your questions. <strong>Call 07568 455 809 today or complete the form below.</strong>\r\n\r\n[wpforms id=\"35\"]\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"color: #008000;\"><strong>Why is obesity and being overweight loss becoming such a big issue?</strong></span></h2>\r\nFirstly we are being pushed repeatedly to buy more and more products, including food.\r\nMany adverts now link emotion to food and as a result, many of us use food to change our emotions. This means we eat at the wrong times or when we feel unhappy.\r\n\r\nAnother issue is our modern busy lives. Time is often short and very often we eat unconsciously without recognising how much and exactly what we are eating. As a result, we become less aware of when we are full and often eat food despite being full.\r\n\r\nMany people turn to slimming clubs when they need help with weight loss. Statistically, most of those people end up gaining more weight long-term, than when they started.\r\nOne of the issues with these clubs is the constant magazines and messages about food. Rather than focus on being healthy, fit and energetic the focus is on food, food and more food. Very often these foods are those being sold by the clubs themselves.\r\n\r\nAnother big issue is changing peoples self-image. A big part of what we do is to allow clients to see themselves as a healthier, fitter, slimmer person. If a person has a negative self-image or always believes they will be overweight, unfit and unhealthy, they will most likely revert back to that old behaviour.\r\n\r\nHypnosis and hypnotherapy are so wonderful as we can change how a person sees themselves. Once this new belief has been created, changing beliefs, habits and behaviours are so much easier and results are seen so much faster.\r\n\r\nIf you are now ready to also change your life, lose weight with hypnosis, increase your energy and feel so much better, give Mark a call on 07568 455 809 and we can arrange your free consultation.','Lose Weight With Hypnosis','','inherit','closed','closed','','556-revision-v1','','','2018-08-02 20:50:19','2018-08-02 20:50:19','',556,'https://www.newcastle-hypnotherapy.com/556-revision-v1/',0,'revision','',0),(1126,1,'2018-08-02 20:53:26','2018-08-02 20:53:26','<img class=\"alignleft size-medium wp-image-1119\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/cereal-898073_1280-300x200.jpg\" alt=\"Lose Weight With Hypnosis\" width=\"300\" height=\"200\" /><strong>Who else is is ready to Lose Weight &amp; Feel Great?</strong>\r\nThe \"Lose Weight With Hypnosis\" program will help you to feel good, look better and increase your energy.\r\nThis program will show you the tricks to maintaining a healthy weight while still enjoying your favourite foods and taking control of those food cravings.\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong><strong>sugar-free</strong></em><strong><em>’ for over two weeks”</em> </strong>\r\n<h2><span style=\"color: #008000;\"><strong>Lose Weight With Hypnosis.</strong></span></h2>\r\nHypnosis is a powerful tool that puts you back in control while also taking control of emotional eating and beating those food cravings. Hypnotherapy will help you:\r\n<ul>\r\n 	<li>Learn when hunger is real or emotional</li>\r\n 	<li>Give you control over your cravings</li>\r\n 	<li>Give you the willpower you need</li>\r\n 	<li>Choose the right foods to eat</li>\r\n 	<li>Make you aware of unconscious eating</li>\r\n 	<li>Eliminate unwanted behaviours &amp; bad habits</li>\r\n 	<li>Control stress or anxiety that may make things worse</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to get started and lose weight with hypnosis?</strong></span></h2>\r\nYour first step is to arrange your free phone consultation. This is where we can discuss any issues that may have held you back in the past, decide how you want to move forward and see if hypnotherapy is right for you.\r\n<strong>To get started simply call Mark on 07568 455 809 to arrange your free consultation.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Joyce</span> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Lose Weight With Hypnosis - Questions &amp; Answers.</span>\r\n</strong></h2>\r\n<strong>Will I have to go hungry?</strong>\r\nNo. When you are hungry you need to eat. This program will help you recognise when you are really hungry and when you are eating out of habit or emotion.\r\n\r\n<strong>Is the Weight Loss With Hypnosis Program the same for everyone?</strong>\r\nNo. We tailor the program to your individual needs as everyone is different and we all have a different history.\r\n\r\n<strong>How does anxiety &amp; stress affect weight loss?</strong>\r\nEveryone experiences anxiety &amp; stress on a daily basis and most people handle these naturally.\r\nIf you handle anxiety &amp; stress badly, we need to work on these together as this really increases your weight loss results.\r\n\r\n<strong>Is the Weight Loss With Hypnosis program the same as the Hypnotic Gastric Band?</strong>\r\nNo. The hypnotic gastric band program has been very successful, for many people. However, it is not suitable for everyone.  You may have health issues or suffer from anxiety, stress or depression. We need to evaluate these and tailor the program to suit your needs.\r\n\r\n<strong>How long does this program take?</strong>\r\nUsually, the Weight Loss With Hypnosis program takes 3 to 4 sessions of about 1 hour, depending on your needs.\r\n\r\n<strong>How fast will I lose weight?</strong>\r\nYour weight loss should always be at a speed that is comfortable for you and we prefer to work on healthy weight loss for long-term results.\r\n\r\n<strong>How does hypnosis help with weight loss?</strong>\r\nHypnosis is a powerful way to change your behaviours and habits that may be causing your weight gain.\r\nHypnotherapy will make you aware of these behaviours and give you self-control.\r\n\r\n<strong>What is my next step?</strong>\r\nYour next step is to arrange your free phone consultation with Mark, to look at the best way forward for you and answer your questions. <strong>Call 07568 455 809 today or complete the form below.</strong>\r\n\r\n[wpforms id=\"35\"]\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"color: #008000;\"><strong>Why is obesity and being overweight loss becoming such a big issue?</strong></span></h2>\r\nFirstly we are being pushed repeatedly to buy more and more products, including food.\r\nMany adverts now link emotion to food and as a result, many of us use food to change our emotions. This means we eat at the wrong times or when we feel unhappy.\r\n\r\nAnother issue is our modern busy lives. Time is often short and very often we eat unconsciously without recognising how much and exactly what we are eating. As a result, we become less aware of when we are full and often eat food despite being full.\r\n\r\nMany people turn to slimming clubs when they need help with weight loss. Statistically, most of those people end up gaining more weight long-term, than when they started.\r\nOne of the issues with these clubs is the constant magazines and messages about food. Rather than focus on being healthy, fit and energetic the focus is on food, food and more food. Very often these foods are those being sold by the clubs themselves.\r\n\r\nAnother big issue is changing peoples self-image. A big part of what we do is to allow clients to see themselves as a healthier, fitter, slimmer person. If a person has a negative self-image or always believes they will be overweight, unfit and unhealthy, they will most likely revert back to that old behaviour.\r\n\r\nHypnosis and hypnotherapy are so wonderful as we can change how a person sees themselves. Once this new belief has been created, changing beliefs, habits and behaviours are so much easier and results are seen so much faster.\r\n\r\nIf you are now ready to also change your life, lose weight with hypnosis, increase your energy and feel so much better, give Mark a call on 07568 455 809 and we can arrange your free consultation.','Lose Weight With Hypnosis','','inherit','closed','closed','','556-revision-v1','','','2018-08-02 20:53:26','2018-08-02 20:53:26','',556,'https://www.newcastle-hypnotherapy.com/556-revision-v1/',0,'revision','',0),(1127,1,'2018-08-02 20:54:57','2018-08-02 20:54:57','<img class=\"alignleft size-medium wp-image-1119\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/cereal-898073_1280-300x200.jpg\" alt=\"Lose Weight With Hypnosis\" width=\"300\" height=\"200\" /><strong>Who else is is ready to Lose Weight &amp; Feel Great?</strong>\r\nThe \"Lose Weight With Hypnosis\" program will help you to feel good, look better and increase your energy.\r\nThis program will show you the tricks to maintaining a healthy weight while still enjoying your favourite foods and taking control of those food cravings.\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong><strong>sugar-free</strong></em><strong><em>’ for over two weeks”</em> </strong>\r\n<h2><span style=\"color: #008000;\"><strong>Lose Weight With Hypnosis.</strong></span></h2>\r\nHypnosis is a powerful tool that puts you back in control while also taking control of emotional eating and beating those food cravings. Hypnotherapy will help you:\r\n<ul>\r\n 	<li>Learn when hunger is real or emotional</li>\r\n 	<li>Give you control over your cravings</li>\r\n 	<li>Give you the willpower you need</li>\r\n 	<li>Choose the right foods to eat</li>\r\n 	<li>Make you aware of unconscious eating</li>\r\n 	<li>Eliminate unwanted behaviours &amp; bad habits</li>\r\n 	<li>Control stress or anxiety that may make things worse</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to get started and lose weight with hypnosis?</strong></span></h2>\r\nYour first step is to arrange your free phone consultation. This is where we can discuss any issues that may have held you back in the past, decide how you want to move forward and see if hypnotherapy is right for you.\r\n<strong>To get started simply call Mark on 07568 455 809 to arrange your free consultation.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Joyce</span> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Lose Weight With Hypnosis - Questions &amp; Answers.</span>\r\n</strong></h2>\r\n<strong>Will I have to go hungry?</strong>\r\nNo. When you are hungry you need to eat. This program will help you recognise when you are really hungry and when you are eating out of habit or emotion.\r\n\r\n<strong>Is the Weight Loss With Hypnosis Program the same for everyone?</strong>\r\nNo. We tailor the program to your individual needs as everyone is different and we all have a different history.\r\n\r\n<strong>How does anxiety &amp; stress affect weight loss?</strong>\r\nEveryone experiences anxiety &amp; stress on a daily basis and most people handle these naturally.\r\nIf you handle anxiety &amp; stress badly, we need to work on these together as this really increases your weight loss results.\r\n\r\n<strong>Is the Weight Loss With Hypnosis program the same as the Hypnotic Gastric Band?</strong>\r\nNo. The hypnotic gastric band program has been very successful, for many people. However, it is not suitable for everyone.  You may have health issues or suffer from anxiety, stress or depression. We need to evaluate these and tailor the program to suit your needs.\r\n\r\n<strong>How long does this program take?</strong>\r\nUsually, the Weight Loss With Hypnosis program takes 3 to 4 sessions of about 1 hour, depending on your needs.\r\n\r\n<strong>How fast will I lose weight?</strong>\r\nYour weight loss should always be at a speed that is comfortable for you and we prefer to work on healthy weight loss for long-term results.\r\n\r\n<strong>How does hypnosis help with weight loss?</strong>\r\nHypnosis is a powerful way to change your behaviours and habits that may be causing your weight gain.\r\nHypnotherapy will make you aware of these behaviours and give you self-control.\r\n\r\n<strong>What is my next step?</strong>\r\nYour next step is to arrange your free phone consultation with Mark, to look at the best way forward for you and answer your questions. <strong>Call 07568 455 809 today or complete the form below.</strong>\r\n\r\n[wpforms id=\"35\"]\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"color: #008000;\"><strong>Why is obesity and being overweight loss becoming such a big issue?</strong></span></h2>\r\nFirstly we are being pushed repeatedly to buy more and more products, including food.\r\nMany adverts now link emotion to food and as a result, many of us use food to change our emotions. This means we eat at the wrong times or when we feel unhappy.\r\n\r\nAnother issue is our modern busy lives. Time is often short and very often we eat unconsciously without recognising how much and exactly what we are eating. As a result, we become less aware of when we are full and often eat food despite being full.\r\n<h2><span style=\"color: #008000;\"><strong>Do Slimming Clubs Help?</strong></span></h2>\r\nMany people turn to slimming clubs when they need help with weight loss. Statistically, most of those people end up gaining more weight long-term, than when they started.\r\nOne of the issues with these clubs is the constant magazines and messages about food. Rather than focus on being healthy, fit and energetic the focus is on food, food and more food. Very often these foods are those being sold by the clubs themselves.\r\n\r\nAnother big issue is changing peoples self-image. A big part of what we do is to allow clients to see themselves as a healthier, fitter, slimmer person. If a person has a negative self-image or always believes they will be overweight, unfit and unhealthy, they will most likely revert back to that old behaviour.\r\n\r\nHypnosis and hypnotherapy are so wonderful as we can change how a person sees themselves. Once this new belief has been created, changing beliefs, habits and behaviours are so much easier and results are seen so much faster.\r\n\r\nIf you are now ready to also change your life, lose weight with hypnosis, increase your energy and feel so much better, give Mark a call on 07568 455 809 and we can arrange your free consultation.','Lose Weight With Hypnosis','','inherit','closed','closed','','556-revision-v1','','','2018-08-02 20:54:57','2018-08-02 20:54:57','',556,'https://www.newcastle-hypnotherapy.com/556-revision-v1/',0,'revision','',0),(1128,1,'2018-08-02 20:57:00','2018-08-02 20:57:00','<img class=\"alignleft size-medium wp-image-1119\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/cereal-898073_1280-300x200.jpg\" alt=\"Lose Weight With Hypnosis\" width=\"300\" height=\"200\" /><strong>Who else is is ready to Lose Weight &amp; Feel Great?</strong>\r\nThe \"Lose Weight With Hypnosis\" program will help you to feel good, look better and increase your energy.\r\nThis program will show you the tricks to maintaining a healthy weight while still enjoying your favourite foods and taking control of those food cravings.\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong><strong>sugar-free</strong></em><strong><em>’ for over two weeks”</em> </strong>\r\n<h2><span style=\"color: #008000;\"><strong>Lose Weight With Hypnosis.</strong></span></h2>\r\nHypnosis is a powerful tool that puts you back in control while also taking control of emotional eating and beating those food cravings. Hypnotherapy will help you:\r\n<ul>\r\n 	<li>Learn when hunger is real or emotional</li>\r\n 	<li>Give you control over your cravings</li>\r\n 	<li>Give you the willpower you need</li>\r\n 	<li>Choose the right foods to eat</li>\r\n 	<li>Make you aware of unconscious eating</li>\r\n 	<li>Eliminate unwanted behaviours &amp; bad habits</li>\r\n 	<li>Control stress or anxiety that may make things worse</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to get started and lose weight with hypnosis?</strong></span></h2>\r\nYour first step is to arrange your free phone consultation. This is where we can discuss any issues that may have held you back in the past, decide how you want to move forward and see if hypnotherapy is right for you.\r\n<strong>To get started simply call Mark on 07568 455 809 to arrange your free consultation.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Joyce</span> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Lose Weight With Hypnosis - Questions &amp; Answers.</span>\r\n</strong></h2>\r\n<strong>Will I have to go hungry?</strong>\r\nNo. When you are hungry you need to eat. This program will help you recognise when you are really hungry and when you are eating out of habit or emotion.\r\n\r\n<strong>Is the Weight Loss With Hypnosis Program the same for everyone?</strong>\r\nNo. We tailor the program to your individual needs as everyone is different and we all have a different history.\r\n\r\n<strong>How does anxiety &amp; stress affect weight loss?</strong>\r\nEveryone experiences anxiety &amp; stress on a daily basis and most people handle these naturally.\r\nIf you handle anxiety &amp; stress badly, we need to work on these together as this really increases your weight loss results.\r\n\r\n<strong>Is the Weight Loss With Hypnosis program the same as the Hypnotic Gastric Band?</strong>\r\nNo. The hypnotic gastric band program has been very successful, for many people. However, it is not suitable for everyone.  You may have health issues or suffer from anxiety, stress or depression. We need to evaluate these and tailor the program to suit your needs.\r\n\r\n<strong>How long does this program take?</strong>\r\nUsually, the Weight Loss With Hypnosis program takes 3 to 4 sessions of about 1 hour, depending on your needs.\r\n\r\n<strong>How fast will I lose weight?</strong>\r\nYour weight loss should always be at a speed that is comfortable for you and we prefer to work on healthy weight loss for long-term results.\r\n\r\n<strong>How does hypnosis help with weight loss?</strong>\r\nHypnosis is a powerful way to change your behaviours and habits that may be causing your weight gain.\r\nHypnotherapy will make you aware of these behaviours and give you self-control.\r\n\r\n<strong>What is my next step?</strong>\r\nYour next step is to arrange your free phone consultation with Mark, to look at the best way forward for you and answer your questions. <strong>Call 07568 455 809 today or complete the form below.</strong>\r\n\r\n[wpforms id=\"35\"]\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"color: #008000;\"><strong>Why is obesity and being overweight loss becoming such a big issue?</strong></span></h2>\r\nFirstly we are being pushed repeatedly to buy more and more products, including food.\r\nMany adverts now link emotion to food and as a result, many of us use food to change our emotions. This means we eat at the wrong times or when we feel unhappy.\r\n\r\nAnother issue is our modern busy lives. Time is often short and very often we eat unconsciously without recognising how much and exactly what we are eating. As a result, we become less aware of when we are full and often eat food despite being full.\r\n<h2><span style=\"color: #008000;\"><strong>Why Do Slimming Clubs Not Work?</strong></span></h2>\r\nMany people turn to slimming clubs when they need help with weight loss. Statistically, most of those people end up gaining more weight long-term, than when they started.\r\nOne of the issues with these clubs is the constant magazines and messages about food. Rather than focus on being healthy, fit and energetic the focus is on food, food and more food. Very often these foods are those being sold by the clubs themselves.\r\n\r\nAnother big issue is changing peoples self-image. A big part of what we do is to allow clients to see themselves as a healthier, fitter, slimmer person. If a person has a negative self-image or always believes they will be overweight, unfit and unhealthy, they will most likely revert back to that old behaviour.\r\n<h2><strong><span style=\"color: #008000;\">How can hypnosis make things easier?</span></strong></h2>\r\nHypnosis and hypnotherapy are so wonderful as we can change how a person sees themselves. Once this new belief has been created, changing beliefs, habits and behaviours are so much easier and results are seen so much faster.\r\n\r\nIf you are now ready to also change your life, lose weight with hypnosis, increase your energy and feel so much better, give Mark a call on 07568 455 809 and we can arrange your free consultation.','Lose Weight With Hypnosis','','inherit','closed','closed','','556-revision-v1','','','2018-08-02 20:57:00','2018-08-02 20:57:00','',556,'https://www.newcastle-hypnotherapy.com/556-revision-v1/',0,'revision','',0),(1139,1,'2018-08-04 16:02:21','2018-08-04 16:02:21','Welcome to Newcastle Hypnotherapy.\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run.. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">\r\nFrequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that suits you.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to meditation although it is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.\r\n\r\n</span></span><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually, your first session will take between 1 hour to an hour and a half. Additional sessions are usually about an hour.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during your free phone consultation.\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span>\r\nHypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a>\r\n\r\nDo You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</span></strong>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply call us on 07568 455 809 to discuss this.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?</strong></span>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Can You Work Via Skype Or Video Calls For Online Sessions?</strong></span>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">\r\nAre you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-08-04 16:02:21','2018-08-04 16:02:21','',1054,'https://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1140,1,'2018-08-04 16:15:48','2018-08-04 16:15:48','Welcome to Newcastle Hypnotherapy.\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run.. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">\r\nFrequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that suits you.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to meditation although it is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually, your first session will take between 1 hour to an hour and a half. Additional sessions are usually about an hour.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during your free phone consultation.\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span>\r\nHypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply call us on 07568 455 809 to discuss this.\r\n\r\n<strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can by hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they can. Some people are resistant to hypnosis, usually due to a fear and teaching Self-Hypnosis is very useful in this situation.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. However, other tools can be just as powerful for change work and a good hypnotherapist will be experienced and trainined in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?</strong></span>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Can You Work Via Skype Or Video Calls For Online Sessions?</strong></span>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">\r\nAre you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-08-04 16:15:48','2018-08-04 16:15:48','',1054,'https://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1141,1,'2018-08-04 16:29:04','2018-08-04 16:29:04','Welcome to Newcastle Hypnotherapy.\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run.. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">\r\nFrequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation although it is very focused and uses the power of both your conscious and unconscious mind at the same time. Most clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">Will I Fall Asleep?\r\n</span></strong>No. Hypnosis is not sleep. Hypnosis a hightened state of awareness and you will be aware of sounds outside, such as moving traffic and voices.You wil remember your session in full detail.<strong><span style=\"color: #008000;\">\r\n\r\nHow Long Do Sessions Take?</span></strong>\r\nUsually, your first hypnosis session will take between 1 hour to an hour and a half. Additional sessions are usually about an hour.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span>\r\nHypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on 07568 455 809 to discuss this.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can by hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they can. Some people are resistant to hypnosis, usually due to a fear. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. However, other tools can be just as powerful for change work and a good hypnotherapist will be experienced and trainined in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?</strong></span>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Can You Work Via Skype Or Video Calls For Online Sessions?</strong></span>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">\r\nAre you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-08-04 16:29:04','2018-08-04 16:29:04','',1054,'https://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1142,1,'2018-08-04 16:44:20','2018-08-04 16:44:20','Welcome to Newcastle Hypnotherapy.\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run.. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">\r\nFrequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation although it is very focused and uses the power of both your conscious and unconscious mind at the same time. Most clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">Will I Fall Asleep?\r\n</span></strong>No. Hypnosis is not sleep. Hypnosis is a hightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You wil remember your session in full detail.\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually, your first hypnosis session will take between 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span>\r\nHypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on 07568 455 809 to discuss this.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can by hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they can. Some people are resistant to hypnosis, usually due to a fear. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. However, other tools can be just as powerful for change work and a good hypnotherapist will be experienced and trainined in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?</strong></span>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.\r\n\r\n<span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span>\r\n</strong>Yes when suitable. Many cleints find great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?\r\n</strong><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tasilored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.\r\n\r\nCan You Work Via Skype Or Video Calls For Online Sessions?</strong></span>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">\r\nAre you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-08-04 16:44:20','2018-08-04 16:44:20','',1054,'https://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1143,1,'2018-08-04 16:48:45','2018-08-04 16:48:45','Welcome to Newcastle Hypnotherapy.\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run.. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">\r\nFrequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation although it is very focused and uses the power of both your conscious and unconscious mind at the same time. Most clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">Will I Fall Asleep?\r\n</span></strong>No. Hypnosis is not sleep. Hypnosis is a hightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You wil remember your session in full detail.\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually, your first hypnosis session will take between 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span>\r\nHypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on 07568 455 809 to discuss this.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can by hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they can. Some people are resistant to hypnosis, usually due to a fear. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. However, other tools can be just as powerful for change work and a good hypnotherapist will be experienced and trainined in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?</strong></span>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n\r\n<span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span>\r\nYes when suitable. Many cleints find great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?\r\n</strong><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tasilored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n\r\n<strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<div><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">\r\nAre you ready to take control and make some changes?</span></strong>\r\nYou can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-08-04 16:48:45','2018-08-04 16:48:45','',1054,'https://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1144,1,'2018-08-04 17:07:40','2018-08-04 17:07:40','Welcome to Newcastle Hypnotherapy.\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run.. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">\r\nFrequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation although it is very focused and uses the power of both your conscious and unconscious mind at the same time. Most clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">Will I Fall Asleep?\r\n</span></strong>No. Hypnosis is not sleep. Hypnosis is a hightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You wil remember your session in full detail.\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually, your first hypnosis session will take between 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span>\r\nHypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on 07568 455 809 to discuss this.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can by hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they can. Some people are resistant to hypnosis, usually due to a fear. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. However, other tools can be just as powerful for change work and a good hypnotherapist will be experienced and trainined in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?</strong></span>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n\r\n<span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span>\r\nYes when suitable. Many cleints find great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?\r\n</strong><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tasilored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n\r\n<strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">\r\nAre you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\">\r\n<strong><span style=\"color: #008000;\">About Mark</span></strong> <span style=\"color: #008000;\"><strong>Morley</strong></span>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span>\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal developement techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work and took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n</span>\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">\r\n\r\n</span>\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-08-04 17:07:40','2018-08-04 17:07:40','',1054,'https://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1145,1,'2018-08-04 17:16:54','2018-08-04 17:16:54','Welcome to Newcastle Hypnotherapy.\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run.. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">\r\nFrequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation although it is very focused and uses the power of both your conscious and unconscious mind at the same time. Most clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">Will I Fall Asleep?\r\n</span></strong>No. Hypnosis is not sleep. Hypnosis is a hightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You wil remember your session in full detail.\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually, your first hypnosis session will take between 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span>\r\nHypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on 07568 455 809 to discuss this.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can by hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they can. Some people are resistant to hypnosis, usually due to a fear. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. However, other tools can be just as powerful for change work and a good hypnotherapist will be experienced and trainined in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?</strong></span>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n\r\n<span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span>\r\nYes when suitable. Many cleints find great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?\r\n</strong><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tasilored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n\r\n<strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">\r\nAre you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\">\r\n<strong><span style=\"color: #008000;\">About Mark</span></strong> <span style=\"color: #008000;\"><strong>Morley</strong></span>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span>\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong></span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal developement techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work and took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successfull businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritonal and dietry areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"></h1>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-08-04 17:16:54','2018-08-04 17:16:54','',1054,'https://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1146,1,'2018-08-04 17:27:03','2018-08-04 17:27:03','Welcome to Newcastle Hypnotherapy.\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run.. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">\r\nFrequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation although it is very focused and uses the power of both your conscious and unconscious mind at the same time. Most clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">Will I Fall Asleep?\r\n</span></strong>No. Hypnosis is not sleep. Hypnosis is a hightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You wil remember your session in full detail.\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually, your first hypnosis session will take between 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span>\r\nHypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on 07568 455 809 to discuss this.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can by hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they can. Some people are resistant to hypnosis, usually due to a fear. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. However, other tools can be just as powerful for change work and a good hypnotherapist will be experienced and trainined in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?</strong></span>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n\r\n<span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span>\r\nYes when suitable. Many cleints find great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?\r\n</strong><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tasilored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n\r\n<strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">\r\nAre you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\">\r\n<strong><span style=\"color: #008000;\">About Mark</span></strong> <span style=\"color: #008000;\"><strong>Morley</strong></span>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span>\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong></span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal developement techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work and took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successfull businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritonal and dietry areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\n\"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplment would fix a digestive problem when if fact I could see anxiety or stress were the issue.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to adress hese issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div style=\"font-family: \'Times New Roman\';\"></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-08-04 17:27:03','2018-08-04 17:27:03','',1054,'https://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1147,1,'2018-08-04 17:36:03','2018-08-04 17:36:03','Welcome to Newcastle Hypnotherapy.\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run.. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">\r\nFrequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation although it is very focused and uses the power of both your conscious and unconscious mind at the same time. Most clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">Will I Fall Asleep?\r\n</span></strong>No. Hypnosis is not sleep. Hypnosis is a hightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You wil remember your session in full detail.\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually, your first hypnosis session will take between 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span>\r\nHypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on 07568 455 809 to discuss this.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can by hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can by hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. However, other tools can be just as powerful for change work and a good hypnotherapist will be experienced and trainined in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?</strong></span>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong>\r\nYes when suitable and beneficial. Many cleints find great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?\r\n</strong><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n\r\n<strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">\r\nAre you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\">\r\n<strong><span style=\"color: #008000;\">About Mark</span></strong> <span style=\"color: #008000;\"><strong>Morley</strong></span>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span>\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong></span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal developement techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work and took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successfull businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritonal and dietry areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplment would fix a digestive problem when if fact I could see anxiety or stress were the issue.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to adress these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-08-04 17:36:03','2018-08-04 17:36:03','',1054,'https://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1148,1,'2018-08-04 17:40:54','2018-08-04 17:40:54','Welcome to Newcastle Hypnotherapy.\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></div>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run.. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.</span> <strong>\"Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em> “I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">\r\nFrequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation although it is very focused and uses the power of both your conscious and unconscious mind at the same time. Most clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">Will I Fall Asleep?\r\n</span></strong>No. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span>\r\nHypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on 07568 455 809 to discuss this.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. However, other tools can be just as powerful for change work and a good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?</strong></span>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?\r\n</strong><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n\r\n<strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">\r\nAre you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\">\r\n<strong><span style=\"color: #008000;\">About Mark</span></strong> <span style=\"color: #008000;\"><strong>Morley</strong></span>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span>\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong></span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work and took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-08-04 17:40:54','2018-08-04 17:40:54','',1054,'https://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1153,1,'2018-08-04 17:56:01','2018-08-04 17:56:01','Welcome to Newcastle Hypnotherapy.\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems. Let\'s make life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more more aware.Many report they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">Will I Fall Asleep?\r\n</span></strong>No. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span>\r\nHypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on 07568 455 809 to discuss this.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. However, other tools can be just as powerful for change work and a good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?</strong></span>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?\r\n</strong><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n\r\n<strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span>\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong></span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work and took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-08-04 17:56:01','2018-08-04 17:56:01','',1054,'https://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1150,1,'2018-08-04 17:47:40','2018-08-04 17:47:40','Welcome to Newcastle Hypnotherapy.\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run.. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation although it is very focused and uses the power of both your conscious and unconscious mind at the same time. Most clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">Will I Fall Asleep?\r\n</span></strong>No. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span>\r\nHypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on 07568 455 809 to discuss this.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. However, other tools can be just as powerful for change work and a good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?</strong></span>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?\r\n</strong><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n\r\n<strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span>\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong></span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work and took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-08-04 17:47:40','2018-08-04 17:47:40','',1054,'https://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1149,1,'2018-08-04 17:46:08','2018-08-04 17:46:08','Welcome to Newcastle Hypnotherapy.\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems with the outcome of making life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run.. These are a great way to learn new skills for life improvement, make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong>\r\n<em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">\r\nFrequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation although it is very focused and uses the power of both your conscious and unconscious mind at the same time. Most clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">Will I Fall Asleep?\r\n</span></strong>No. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span>\r\nHypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on 07568 455 809 to discuss this.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. However, other tools can be just as powerful for change work and a good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?</strong></span>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?\r\n</strong><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n\r\n<strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">\r\nAre you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\">\r\n<strong><span style=\"color: #008000;\">About Mark</span></strong> <span style=\"color: #008000;\"><strong>Morley</strong></span>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span>\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong></span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work and took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-08-04 17:46:08','2018-08-04 17:46:08','',1054,'https://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1151,1,'2018-08-04 17:50:52','2018-08-04 17:50:52','Welcome to Newcastle Hypnotherapy.\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems. Let\'s make life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. Here you can explain what you are looking to change, what may be causing you a problem and where you would rather be in the future. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation although it is very focused and uses the power of both your conscious and unconscious mind at the same time. Most clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">Will I Fall Asleep?\r\n</span></strong>No. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span>\r\nHypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on 07568 455 809 to discuss this.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. However, other tools can be just as powerful for change work and a good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?</strong></span>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?\r\n</strong><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n\r\n<strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span>\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong></span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work and took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-08-04 17:50:52','2018-08-04 17:50:52','',1054,'https://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1152,1,'2018-08-04 17:52:27','2018-08-04 17:52:27','Welcome to Newcastle Hypnotherapy.\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems. Let\'s make life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation although it is very focused and uses the power of both your conscious and unconscious mind at the same time. Most clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">Will I Fall Asleep?\r\n</span></strong>No. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span>\r\nHypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on 07568 455 809 to discuss this.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. However, other tools can be just as powerful for change work and a good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?</strong></span>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?\r\n</strong><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n\r\n<strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span>\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong></span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work and took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-08-04 17:52:27','2018-08-04 17:52:27','',1054,'https://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1154,1,'2018-08-04 17:58:03','2018-08-04 17:58:03','Welcome to Newcastle Hypnotherapy.\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems. Let\'s make life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more more aware.Many report they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">Will I Fall Asleep?\r\n</span></strong>No. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span>\r\nHypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on 07568 455 809 to discuss this.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?</strong></span>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?\r\n</strong><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n\r\n<strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span>\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong></span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work and took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-08-04 17:58:03','2018-08-04 17:58:03','',1054,'https://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1155,1,'2018-08-04 17:59:36','2018-08-04 17:59:36','Welcome to Newcastle Hypnotherapy.\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems. Let\'s make life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong>Most of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>What Is Hypnosis Like?\r\n</strong><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more more aware.Many report they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">Will I Fall Asleep?\r\n</span></strong>No. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n\r\n<strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n\r\n<strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n\r\n<strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong>\r\nThis also depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span>\r\nHypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on 07568 455 809 to discuss this.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n\r\n<span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?</strong></span>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?\r\n</strong><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n\r\n<strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span>\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong></span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-08-04 17:59:36','2018-08-04 17:59:36','',1054,'https://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1228,1,'2018-08-17 16:00:06','2018-08-17 16:00:06','Welcome to Newcastle Hypnotherapy.\n\n&nbsp;\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\"> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\nClinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong>\nWe help people just like you, to make major changes and overcome problems. Let\'s make life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span>\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\n<span style=\"color: #000000;\">\nAs well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\n</strong></span></span></em></h2>\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\nYes, we can help you with that.</strong></span></span>\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span>\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\n\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\n\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\n</span></em></h2>\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\n</span></div>\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\n</em></strong></span></h2>\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\n\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\n</span></strong></h2>\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more more aware.Many report they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\n</span></strong></h2>\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\n<div>\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\n</strong></span></h2>\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\n</strong>\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\nSimply call us on 07568 455 809 to discuss this.\n\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\n\n</div>\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\n</span></h2>\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\n</span>\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\n</span></h2>\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\"><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span>\n<span style=\"color: #008000;\">Clinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong></span>\n\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\n\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\n\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\n\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\n\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\n\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\nWe are GDPR compliant at all times.\n</span></div>\n&nbsp;\n\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-08-17 16:00:06','2018-08-17 16:00:06','',1054,'https://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1156,1,'2018-08-04 18:08:09','2018-08-04 18:08:09','Welcome to Newcastle Hypnotherapy.\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems. Let\'s make life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more more aware.Many report they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span>\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong></span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-revision-v1','','','2018-08-04 18:08:09','2018-08-04 18:08:09','',1054,'https://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1157,1,'2018-08-04 19:21:23','2018-08-04 19:21:23','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy free consultation\" width=\"150\" height=\"150\" />Newcastle Hypnotherapy offers everyone a free consultation by phone.\r\nYou can ask any questions you wish and it allows us to evaluate the best way forward for you.\r\n\r\nWe can decide if a single session or a program of sessions is best for you and work out the best price for you.\r\n\r\n\r\n\r\n\r\n\r\nSimply call <strong>07568 455 809</strong> today or complete your details below. We will call you back as quickly as possible\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n</div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-08-04 19:21:23','2018-08-04 19:21:23','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1162,1,'2018-08-06 19:31:01','2018-08-06 19:31:01','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\n<p><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnos program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnos program\" width=\"150\" height=\"150\" />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast</strong><br /><strong>As soon as you are ready we can work together to start your anxiety relief hypnosis program.  We work to replace the anxiety feelings with new feelings of calm, relaxation and self- control.</strong></p>\n<p>Anxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.</p>\n<p><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong></p>\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety<br /></span></strong></h2>\n<p>Many of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.</p>\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\n<p><strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong></p>\n<ul>\n<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\n<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\n<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\n</ul>\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\n<p>As anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.<br />One of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.<br />We also teach you some great skills to put you back in control and take charge of your anxiety symptoms</p>\n<p><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></p>\n<p> </p>\n<p><img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]</p>\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\n<p>The first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.<br />We usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.<br />Once we have dealt with the most serious issue the rest is usually easier to deal with.<br />The aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.<br />The program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.</p>\n<p><strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong></p>\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\n<p>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.<br />With a little work, we can create awareness of your cause of anxiety and show you how to take control.<br />Anxiety can have many symptoms including:</p>\n<ul>\n<li>Sleep problems</li>\n<li>Switching off at night</li>\n<li>Unable to relax</li>\n<li>Being afraid of the wrong things</li>\n<li>Becoming stressed easily</li>\n<li>Rapid breathing</li>\n<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\n<li>Digestive problems</li>\n<li>Panic Attacks</li>\n<li>Bruxism and muscle clenching</li>\n<li>Reduced immune system</li>\n<li>Cold, sweaty, numb or tingling hands or feet</li>\n<li>Heart palpitations</li>\n<li>Dry mouth</li>\n<li>Nausea</li>\n</ul>\n<p>Thankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.</p>\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\n<p>Certainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.<br />NLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.<br />The benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.</p>\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\n<p>Yes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chose outcomes and it is better to feel relaxed and calm to help you achieve your goals.</p>\n<p><span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span><br /><span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span></p>\n<p><strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a></p>\n<p>Discover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a></p>\n<p>Newcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a></p>\n<p> </p>\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-08-06 19:31:01','2018-08-06 19:31:01','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1163,1,'2018-08-06 19:35:46','2018-08-06 19:35:46','<h2><strong><span style=\"color: #008000;\">Are you looking to take control and reduce your anxiety today?</span></strong></h2>\n<p><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnos program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnos program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.<br /><br />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast,</strong><br /><strong>As soon as you are ready we can work together to start your anxiety relief hypnosis program.  We work to replace the anxiety feelings with new feelings of calm, relaxation and self- control.</strong></p>\n<p>Anxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.</p>\n<p><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong></p>\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety<br /></span></strong></h2>\n<p>Many of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.</p>\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\n<p><strong>We can work together in a number of ways to start your anxiety relief and put you back in control.</strong></p>\n<ul>\n<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\n<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for anxiety relief</li>\n<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\n</ul>\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\n<p>As anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.<br />One of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.<br />We also teach you some great skills to put you back in control and take charge of your anxiety symptoms</p>\n<p><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></p>\n<p> </p>\n<p><img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]</p>\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\n<p>The first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.<br />We usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.<br />Once we have dealt with the most serious issue the rest is usually easier to deal with.<br />The aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.<br />The program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.</p>\n<p><strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong></p>\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\n<p>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.<br />With a little work, we can create awareness of your cause of anxiety and show you how to take control.<br />Anxiety can have many symptoms including:</p>\n<ul>\n<li>Sleep problems</li>\n<li>Switching off at night</li>\n<li>Unable to relax</li>\n<li>Being afraid of the wrong things</li>\n<li>Becoming stressed easily</li>\n<li>Rapid breathing</li>\n<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\n<li>Digestive problems</li>\n<li>Panic Attacks</li>\n<li>Bruxism and muscle clenching</li>\n<li>Reduced immune system</li>\n<li>Cold, sweaty, numb or tingling hands or feet</li>\n<li>Heart palpitations</li>\n<li>Dry mouth</li>\n<li>Nausea</li>\n</ul>\n<p>Thankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.</p>\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\n<p>Certainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.<br />NLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.<br />The benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.</p>\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\n<p>Yes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chose outcomes and it is better to feel relaxed and calm to help you achieve your goals.</p>\n<p><span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span><br /><span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span></p>\n<p><strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a></p>\n<p>Discover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a></p>\n<p>Newcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a></p>\n<p> </p>\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-08-06 19:35:46','2018-08-06 19:35:46','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1169,1,'2019-05-31 10:35:12','2019-05-31 10:35:12','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\n<strong>Simply we help people to take control with anxiety treatment and counselling. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension. </strong><strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\n<iframe src=\"https://www.youtube.com/embed/Tg4ij_bPGxs\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr for\nAnxiety Treatment &amp; Counselling\n</strong></span></h4>\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\n\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>5 Powerful Self-Help Tips To Ease Anxiety Symptoms</strong>\n</span></h4>\nLearn the powerful techniques our clients use to ease anxiety symptoms fast.\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\nYour privacy is safe and you can leave the newsletter at any time.\n<h4><strong><span style=\"color: #008000;\">Good News!  You Have Choices</span>.</strong></h4>\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\n\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\n<ul>\n 	<li><strong>stop anxiety attacks quickly</strong></li>\n 	<li><strong>recognise your anxiety triggers</strong></li>\n 	<li><strong>overcome worry and fear</strong></li>\n 	<li><strong>stop panic attacks</strong></li>\n 	<li><strong>relax deeply on demand</strong></li>\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\n 	<li><strong>control moods, depression &amp; stress</strong></li>\n 	<li><strong>enjoy life more and feel better</strong></li>\n</ul>\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\n</strong></h4>\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\n\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\n\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\n\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\n\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\n</strong>\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\n\n&nbsp;\n\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\n\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\n\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\n\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\n<h4></h4>\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\n</span></strong></h4>\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\nAnxiety problems and symptoms can be very different for each person. They can include\n<ul>\n 	<li>Sleep problems</li>\n 	<li>Switching off at night</li>\n 	<li>Unable to relax</li>\n 	<li>Being afraid of the wrong things</li>\n 	<li>Becoming stressed easily</li>\n 	<li>Rapid breathing</li>\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\n 	<li>Digestive problems</li>\n 	<li>Panic Attacks</li>\n 	<li>Bruxism and muscle clenching</li>\n 	<li>Reduced immune system</li>\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\n 	<li>Heart palpitations</li>\n 	<li>Dry mouth</li>\n 	<li>Nausea</li>\n 	<li>Excessive worry and fear</li>\n</ul>\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\nThis really depends on the client and the anxiety symptoms for each person.\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\n</strong></h4>\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\n</strong></h4>\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\n\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\nEvery anxiety client is different and we do tailor our programs to the individual needs.\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\n</strong></h4>\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\n\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\n<ul>\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\n</strong></li>\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\n</strong></li>\n 	<li><strong>Newcastle City Centre</strong></li>\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\n</ul>\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\n</span></strong></h4>\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\n</em></strong></span></h4>\nWe look at all of the issues that may be causing your anxiety.\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\n</strong>\n<ul>\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\n</ul>\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\n\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\n\n&nbsp;\n\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\n<h4><strong> </strong></h4>\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\n<span style=\"color: #008000;\">Client Case Studies</span>\n</strong></h4>\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\n\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\nThis client had suffered from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often become stronger.\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\n\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety, symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\n\n&nbsp;\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\n\nAnxiety symptoms included digestive issues, muscle pains, tension headaches, worry and fear.\n\nWithin 2 weeks of starting the program the client was amused that she was now fascinated by wasps and bees.\nShe was now keen to watch TV programs about insects and had bought books on the subject.\nIn the final session, she reported she now enjoyed life and work and her husband was amazed at the changes.\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\n</strong></h4>\nThis client was experiencing severe worry when a journey in the car or bus were expected.\nAnxiety drugs had resulted in side effects and did not help with the issue.\nAnxiety symptoms included several repeated visits to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occasions if a car journey was needed.\n\nThe client reported major improvements the following morning after her first session.\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\nWithin weeks she had enjoyed long car journeys for weekends away and was looking forward to longer trips for holidays.\n\n<span style=\"color: #008000;\"><strong>Contact us today to arrange your free phone anxiety consultation.</strong></span>\n<strong><span style=\"color: #ff6600;\"><em>Call 07568 455 809 now</em></span></strong> or <strong><em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Book Your Consultation Online Here</a>.</span></em></strong>\n\n&nbsp;\n\nNewcastle Hypnotherapy has a <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">Facebook Group here with details of Anxiety Workshops and Events</a></strong>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-autosave-v1','','','2019-05-31 10:35:12','2019-05-31 10:35:12','',68,'https://www.newcastle-hypnotherapy.com/68-autosave-v1/',0,'revision','',0),(1164,1,'2018-08-06 19:42:13','2018-08-06 19:42:13','<h2><span style=\"color: #008000;\">Are</span><strong><span style=\"color: #008000;\"> you looking to take control and reduce your anxiety today?</span></strong></h2>\n<p><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnos program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnos program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.<br /><br />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.<br /></strong><br /><strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong></p>\n<p>Anxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.</p>\n<p><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong></p>\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety<br /></span></strong></h2>\n<p>Many of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.</p>\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\n<p><strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief and put you back in control.</strong></p>\n<ul>\n<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\n<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\n<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\n</ul>\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\n<p>As anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.<br />One of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.<br />We also teach you some great skills to put you back in control and take charge of your anxiety symptoms</p>\n<p><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></p>\n<p> </p>\n<p><img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]</p>\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\n<p>The first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.<br />We usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.<br />Once we have dealt with the most serious issue the rest is usually easier to deal with.<br />The aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.<br />The program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.</p>\n<p><strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong></p>\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\n<p>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.<br />With a little work, we can create awareness of your cause of anxiety and show you how to take control.<br />Anxiety can have many symptoms including:</p>\n<ul>\n<li>Sleep problems</li>\n<li>Switching off at night</li>\n<li>Unable to relax</li>\n<li>Being afraid of the wrong things</li>\n<li>Becoming stressed easily</li>\n<li>Rapid breathing</li>\n<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\n<li>Digestive problems</li>\n<li>Panic Attacks</li>\n<li>Bruxism and muscle clenching</li>\n<li>Reduced immune system</li>\n<li>Cold, sweaty, numb or tingling hands or feet</li>\n<li>Heart palpitations</li>\n<li>Dry mouth</li>\n<li>Nausea</li>\n</ul>\n<p>Thankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.</p>\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\n<p>Certainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.<br />NLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.<br />The benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.</p>\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\n<p>Yes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chose outcomes and it is better to feel relaxed and calm to help you achieve your goals.</p>\n<p><span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span><br /><span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span></p>\n<p><strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a></p>\n<p>Discover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a></p>\n<p>Newcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a></p>\n<p> </p>\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-08-06 19:42:13','2018-08-06 19:42:13','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1165,1,'2018-08-06 19:42:38','2018-08-06 19:42:38','<h2><strong><span style=\"color: #008000;\">Are</span><span style=\"color: #008000;\"> you looking to take control and reduce your anxiety today?</span></strong></h2>\n<p><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnos program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnos program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.<br /><br />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.<br /></strong><br /><strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong></p>\n<p>Anxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.</p>\n<p><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong></p>\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety<br /></span></strong></h2>\n<p>Many of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.</p>\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\n<p><strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief and put you back in control.</strong></p>\n<ul>\n<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\n<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\n<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\n</ul>\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\n<p>As anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.<br />One of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.<br />We also teach you some great skills to put you back in control and take charge of your anxiety symptoms</p>\n<p><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></p>\n<p> </p>\n<p><img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]</p>\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\n<p>The first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.<br />We usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.<br />Once we have dealt with the most serious issue the rest is usually easier to deal with.<br />The aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.<br />The program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.</p>\n<p><strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong></p>\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\n<p>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.<br />With a little work, we can create awareness of your cause of anxiety and show you how to take control.<br />Anxiety can have many symptoms including:</p>\n<ul>\n<li>Sleep problems</li>\n<li>Switching off at night</li>\n<li>Unable to relax</li>\n<li>Being afraid of the wrong things</li>\n<li>Becoming stressed easily</li>\n<li>Rapid breathing</li>\n<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\n<li>Digestive problems</li>\n<li>Panic Attacks</li>\n<li>Bruxism and muscle clenching</li>\n<li>Reduced immune system</li>\n<li>Cold, sweaty, numb or tingling hands or feet</li>\n<li>Heart palpitations</li>\n<li>Dry mouth</li>\n<li>Nausea</li>\n</ul>\n<p>Thankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.</p>\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\n<p>Certainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.<br />NLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.<br />The benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.</p>\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\n<p>Yes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chose outcomes and it is better to feel relaxed and calm to help you achieve your goals.</p>\n<p><span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span><br /><span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span></p>\n<p><strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a></p>\n<p>Discover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a></p>\n<p>Newcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a></p>\n<p> </p>\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-08-06 19:42:38','2018-08-06 19:42:38','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1166,1,'2018-08-06 19:43:22','2018-08-06 19:43:22','<h2><strong><span style=\"color: #008000;\">Are</span><span style=\"color: #008000;\"> you looking to take control and reduce your anxiety today?</span></strong></h2>\n<p><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnos program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnos program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.<br />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.<br /></strong><br /><strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong></p>\n<p>Anxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.</p>\n<p><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong></p>\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety<br /></span></strong></h2>\n<p>Many of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.</p>\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\n<p><strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief and put you back in control.</strong></p>\n<ul>\n<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\n<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\n<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\n</ul>\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\n<p>As anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.<br />One of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.<br />We also teach you some great skills to put you back in control and take charge of your anxiety symptoms</p>\n<p><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></p>\n<p> </p>\n<p><img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]</p>\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\n<p>The first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.<br />We usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.<br />Once we have dealt with the most serious issue the rest is usually easier to deal with.<br />The aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.<br />The program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.</p>\n<p><strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong></p>\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\n<p>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.<br />With a little work, we can create awareness of your cause of anxiety and show you how to take control.<br />Anxiety can have many symptoms including:</p>\n<ul>\n<li>Sleep problems</li>\n<li>Switching off at night</li>\n<li>Unable to relax</li>\n<li>Being afraid of the wrong things</li>\n<li>Becoming stressed easily</li>\n<li>Rapid breathing</li>\n<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\n<li>Digestive problems</li>\n<li>Panic Attacks</li>\n<li>Bruxism and muscle clenching</li>\n<li>Reduced immune system</li>\n<li>Cold, sweaty, numb or tingling hands or feet</li>\n<li>Heart palpitations</li>\n<li>Dry mouth</li>\n<li>Nausea</li>\n</ul>\n<p>Thankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.</p>\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\n<p>Certainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.<br />NLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.<br />The benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.</p>\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\n<p>Yes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chose outcomes and it is better to feel relaxed and calm to help you achieve your goals.</p>\n<p><span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span><br /><span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span></p>\n<p><strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a></p>\n<p>Discover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a></p>\n<p>Newcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a></p>\n<p> </p>\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-08-06 19:43:22','2018-08-06 19:43:22','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1167,1,'2018-08-06 19:45:54','2018-08-06 19:45:54','<h2><strong><span style=\"color: #008000;\">Are</span><span style=\"color: #008000;\"> you looking to take control and reduce your anxiety today?</span></strong></h2>\n<p><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnos program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnos program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.<br />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.<br /></strong><br /><strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong></p>\n<p>Anxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.</p>\n<p><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong></p>\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety<br /></span></strong></h2>\n<p>Many of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.</p>\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\n<p><strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief and put you back in control.</strong></p>\n<ul>\n<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\n<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\n<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\n</ul>\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\n<p>As anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.<br />One of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.<br />We also teach you some great skills to put you back in control and take charge of your anxiety symptoms.<br /><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span></p>\n<p> </p>\n<p><img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]</p>\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\n<p>The first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.<br />We usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.<br />Once we have dealt with the most serious issue the rest is usually easier to deal with.<br />The aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.<br />The program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.</p>\n<p><strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong></p>\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\n<p>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.<br />With a little work, we can create awareness of your cause of anxiety and show you how to take control.<br />Anxiety can have many symptoms including:</p>\n<ul>\n<li>Sleep problems</li>\n<li>Switching off at night</li>\n<li>Unable to relax</li>\n<li>Being afraid of the wrong things</li>\n<li>Becoming stressed easily</li>\n<li>Rapid breathing</li>\n<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\n<li>Digestive problems</li>\n<li>Panic Attacks</li>\n<li>Bruxism and muscle clenching</li>\n<li>Reduced immune system</li>\n<li>Cold, sweaty, numb or tingling hands or feet</li>\n<li>Heart palpitations</li>\n<li>Dry mouth</li>\n<li>Nausea</li>\n</ul>\n<p>Thankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.</p>\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\n<p>Certainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.<br />NLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.<br />The benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.</p>\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\n<p>Yes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chose outcomes and it is better to feel relaxed and calm to help you achieve your goals.</p>\n<p><span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span><br /><span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span></p>\n<p><strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a></p>\n<p>Discover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a></p>\n<p>Newcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a></p>\n<p> </p>\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-08-06 19:45:54','2018-08-06 19:45:54','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1168,1,'2018-08-06 19:46:15','2018-08-06 19:46:15','<h2><strong><span style=\"color: #008000;\">Are</span><span style=\"color: #008000;\"> you looking to take control and reduce your anxiety today?</span></strong></h2>\n<p><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnos program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnos program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.<br />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.<br /></strong><br /><strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong></p>\n<p>Anxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.</p>\n<p><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong></p>\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety<br /></span></strong></h2>\n<p>Many of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.</p>\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\n<p><strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief and put you back in control.</strong></p>\n<ul>\n<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\n<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\n<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\n</ul>\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\n<p>As anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.<br />One of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.<br />We also teach you some great skills to put you back in control and take charge of your anxiety symptoms.<br /><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span></p>\n<p><img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]</p>\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\n<p>The first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.<br />We usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.<br />Once we have dealt with the most serious issue the rest is usually easier to deal with.<br />The aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.<br />The program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.</p>\n<p><strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong></p>\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\n<p>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.<br />With a little work, we can create awareness of your cause of anxiety and show you how to take control.<br />Anxiety can have many symptoms including:</p>\n<ul>\n<li>Sleep problems</li>\n<li>Switching off at night</li>\n<li>Unable to relax</li>\n<li>Being afraid of the wrong things</li>\n<li>Becoming stressed easily</li>\n<li>Rapid breathing</li>\n<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\n<li>Digestive problems</li>\n<li>Panic Attacks</li>\n<li>Bruxism and muscle clenching</li>\n<li>Reduced immune system</li>\n<li>Cold, sweaty, numb or tingling hands or feet</li>\n<li>Heart palpitations</li>\n<li>Dry mouth</li>\n<li>Nausea</li>\n</ul>\n<p>Thankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.</p>\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\n<p>Certainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.<br />NLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.<br />The benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.</p>\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\n<p>Yes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chose outcomes and it is better to feel relaxed and calm to help you achieve your goals.</p>\n<p><span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span><br /><span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span></p>\n<p><strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a></p>\n<p>Discover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a></p>\n<p>Newcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a></p>\n<p> </p>\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-08-06 19:46:15','2018-08-06 19:46:15','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1170,1,'2018-08-06 19:59:48','2018-08-06 19:59:48','<h2><strong><span style=\"color: #008000;\">Are</span><span style=\"color: #008000;\"> you looking to take control and reduce your anxiety today?</span></strong></h2>\n<p><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnos program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnos program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.<br />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.<br /></strong><br /><strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong></p>\n<p>Anxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.</p>\n<p><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong></p>\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety<br /></span></strong></h2>\n<p>Many of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.</p>\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\n<p><strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief and put you back in control.</strong></p>\n<ul>\n<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\n<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\n<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\n</ul>\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\n<p>As anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.<br />One of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.<br />We also teach you some great skills to put you back in control and take charge of your anxiety symptoms.<br /><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span></p>\n<p><img class=\"alignleft wp-image-533 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"Anxiety Relief\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]</p>\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\n<p>The first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.<br />We usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.<br />Once we have dealt with the most serious issue the rest is usually easier to deal with.<br />The aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.<br />The program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.</p>\n<p><strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong></p>\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\n<p>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.<br />With a little work, we can create awareness of your cause of anxiety and show you how to take control.<br />Anxiety can have many symptoms including:</p>\n<ul>\n<li>Sleep problems</li>\n<li>Switching off at night</li>\n<li>Unable to relax</li>\n<li>Being afraid of the wrong things</li>\n<li>Becoming stressed easily</li>\n<li>Rapid breathing</li>\n<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\n<li>Digestive problems</li>\n<li>Panic Attacks</li>\n<li>Bruxism and muscle clenching</li>\n<li>Reduced immune system</li>\n<li>Cold, sweaty, numb or tingling hands or feet</li>\n<li>Heart palpitations</li>\n<li>Dry mouth</li>\n<li>Nausea</li>\n</ul>\n<p>Thankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.</p>\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\n<p>Certainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.<br />NLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.<br />The benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.</p>\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\n<p>Yes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chose outcomes and it is better to feel relaxed and calm to help you achieve your goals.</p>\n<p><span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span><br /><span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span></p>\n<p><strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a></p>\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.<br /></strong></span></h2>\n<p><span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.<br /></span>[wpforms id=\"35\"]<br /></strong></span></p>\n<p>We are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.</p>\n<h2><br /><br /><br /><br /><br /><br />Discover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a></h2>\n<p>Newcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a></p>\n<p> </p>\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-08-06 19:59:48','2018-08-06 19:59:48','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1171,1,'2018-08-06 20:04:09','2018-08-06 20:04:09','<h2><strong><span style=\"color: #008000;\">Are</span><span style=\"color: #008000;\"> you looking to take control and reduce your anxiety today?</span></strong></h2>\n<p><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.<br />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.<br /></strong><br /><strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong></p>\n<p>Anxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.</p>\n<p><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong></p>\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety<br /></span></strong></h2>\n<p>Many of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.</p>\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\n<p><strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief and put you back in control.</strong></p>\n<ul>\n<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\n<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\n<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\n</ul>\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\n<p>As anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.<br />One of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.<br />We also teach you some great skills to put you back in control and take charge of your anxiety symptoms.<br /><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span></p>\n<p><img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]</p>\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\n<p>The first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.<br />We usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.<br />Once we have dealt with the most serious issue the rest is usually easier to deal with.<br />The aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.<br />The program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.</p>\n<p><strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong></p>\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\n<p>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.<br />With a little work, we can create awareness of your cause of anxiety and show you how to take control.<br />Anxiety can have many symptoms including:</p>\n<ul>\n<li>Sleep problems</li>\n<li>Switching off at night</li>\n<li>Unable to relax</li>\n<li>Being afraid of the wrong things</li>\n<li>Becoming stressed easily</li>\n<li>Rapid breathing</li>\n<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\n<li>Digestive problems</li>\n<li>Panic Attacks</li>\n<li>Bruxism and muscle clenching</li>\n<li>Reduced immune system</li>\n<li>Cold, sweaty, numb or tingling hands or feet</li>\n<li>Heart palpitations</li>\n<li>Dry mouth</li>\n<li>Nausea</li>\n</ul>\n<p>Thankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.</p>\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\n<p>Certainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.<br />NLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.<br />The benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.</p>\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\n<p>Yes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chose outcomes and it is better to feel relaxed and calm to help you achieve your goals.</p>\n<p><span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span><br /><span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span></p>\n<p><strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a></p>\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.<br /></strong></span></h2>\n<p><span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.<br /></span>[wpforms id=\"35\"]<br /></strong></span></p>\n<p>We are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.</p>\n<h2><br /><br /><br /><br /><br /><br />Discover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a></h2>\n<p>Newcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a></p>\n<p> </p>\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-08-06 20:04:09','2018-08-06 20:04:09','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1172,1,'2018-08-06 20:07:58','2018-08-06 20:07:58','<h2><strong><span style=\"color: #008000;\">Are</span><span style=\"color: #008000;\"> you looking to take control and reduce your anxiety today?</span></strong></h2>\n<p><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.<br />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.<br /></strong><br /><strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong></p>\n<p>Anxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.</p>\n<p><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong></p>\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety<br /></span></strong></h2>\n<p>Many of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.</p>\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\n<p><strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.<br /></strong></p>\n<ul>\n<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\n<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\n<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\n</ul>\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\n<p>As anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.<br />One of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.<br />We also teach you some great skills to put you back in control and take charge of your anxiety symptoms.<br /><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span></p>\n<p><img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]</p>\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\n<p>The first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.<br />We usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.<br />Once we have dealt with the most serious issue the rest is usually easier to deal with.<br />The aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.<br />The program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.</p>\n<p><strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong></p>\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\n<p>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.<br />With a little work, we can create awareness of your cause of anxiety and show you how to take control.<br />Anxiety can have many symptoms including:</p>\n<ul>\n<li>Sleep problems</li>\n<li>Switching off at night</li>\n<li>Unable to relax</li>\n<li>Being afraid of the wrong things</li>\n<li>Becoming stressed easily</li>\n<li>Rapid breathing</li>\n<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\n<li>Digestive problems</li>\n<li>Panic Attacks</li>\n<li>Bruxism and muscle clenching</li>\n<li>Reduced immune system</li>\n<li>Cold, sweaty, numb or tingling hands or feet</li>\n<li>Heart palpitations</li>\n<li>Dry mouth</li>\n<li>Nausea</li>\n</ul>\n<p>Thankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.</p>\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\n<p>Certainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.<br />NLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.<br />The benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.</p>\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\n<p>Yes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.</p>\n<p><span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span><br /><span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span></p>\n<p><strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a></p>\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.<br /></strong></span></h2>\n<p><span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.<br /></span>[wpforms id=\"35\"]<br /></strong></span></p>\n<p>We are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.</p>\n<h2><br /><br /><br /><br /><br /><br />Discover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a></h2>\n<p>Newcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a></p>\n<p> </p>\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-08-06 20:07:58','2018-08-06 20:07:58','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1173,1,'2018-08-06 20:39:11','2018-08-06 20:39:11','<h2><strong><span style=\"color: #008000;\">Are</span><span style=\"color: #008000;\"> you looking to take control and reduce your anxiety today?</span></strong></h2>\n<p><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.<br />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.<br /></strong><br /><strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong></p>\n<p>Anxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.</p>\n<p><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong></p>\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety<br /></span></strong></h2>\n<p>Many of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.</p>\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\n<p><strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.<br /></strong></p>\n<ul>\n<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\n<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\n<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\n</ul>\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\n<p>As anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.<br />One of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.<br />We also teach you some great skills to put you back in control and take charge of your anxiety symptoms.<br /><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span></p>\n<p><img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]</p>\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\n<p>The first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.<br />We usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.<br />Once we have dealt with the most serious issue the rest is usually easier to deal with.<br />The aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.<br />The program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.</p>\n<p><strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong></p>\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\n<p>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.<br />With a little work, we can create awareness of your cause of anxiety and show you how to take control.<br />Anxiety can have many symptoms including:</p>\n<ul>\n<li>Sleep problems</li>\n<li>Switching off at night</li>\n<li>Unable to relax</li>\n<li>Being afraid of the wrong things</li>\n<li>Becoming stressed easily</li>\n<li>Rapid breathing</li>\n<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\n<li>Digestive problems</li>\n<li>Panic Attacks</li>\n<li>Bruxism and muscle clenching</li>\n<li>Reduced immune system</li>\n<li>Cold, sweaty, numb or tingling hands or feet</li>\n<li>Heart palpitations</li>\n<li>Dry mouth</li>\n<li>Nausea</li>\n</ul>\n<p>Thankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.</p>\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\n<p>Certainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.<br />NLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.<br />The benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.</p>\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\n<p>Yes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.</p>\n<p><span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span><br /><span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span></p>\n<p><strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a></p>\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.<br /></strong></span></h2>\n<p><span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.<br /></span>[wpforms id=\"35\"]<br /></strong></span></p>\n<p>We are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.</p>\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\n<h2><br /><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\n<p>Hypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.</p>\n<h2><span style=\"color: #008000;\">How quickly will hypnotherapy help anxiety?</span></h2>\n<p><span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.<br /></span></p>\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong><br /></span></h2>\n<p><span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.<br /></span></p>\n<h2><span style=\"color: #000000;\"><br /><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong><br /></span></h2>\n<p>Yes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.</p>\n<p> </p>\n<h2> </h2>\n<h2> </h2>\n<h2> </h2>\n<h2> </h2>\n<h2><br /><br /><br /><br /><br /><br /><br /><br />Discover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a></h2>\n<p>Newcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a></p>\n<p> </p>\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-08-06 20:39:11','2018-08-06 20:39:11','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1174,1,'2018-08-06 20:49:50','2018-08-06 20:49:50','<h2><strong><span style=\"color: #008000;\">Are</span><span style=\"color: #008000;\"> you looking to take control and reduce your anxiety today?</span></strong></h2>\n<p><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.<br />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.<br /></strong><br /><strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong></p>\n<p>Anxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.</p>\n<p><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong></p>\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety<br /></span></strong></h2>\n<p>Many of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.</p>\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\n<p><strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.<br /></strong></p>\n<ul>\n<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\n<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\n<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\n</ul>\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\n<p>As anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.<br />One of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.<br />We also teach you some great skills to put you back in control and take charge of your anxiety symptoms.<br /><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span></p>\n<p><img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]</p>\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\n<p>The first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.<br />We usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.<br />Once we have dealt with the most serious issue the rest is usually easier to deal with.<br />The aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.<br />The program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.</p>\n<p><strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong></p>\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\n<p>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.<br />With a little work, we can create awareness of your cause of anxiety and show you how to take control.<br />Anxiety can have many symptoms including:</p>\n<ul>\n<li>Sleep problems</li>\n<li>Switching off at night</li>\n<li>Unable to relax</li>\n<li>Being afraid of the wrong things</li>\n<li>Becoming stressed easily</li>\n<li>Rapid breathing</li>\n<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\n<li>Digestive problems</li>\n<li>Panic Attacks</li>\n<li>Bruxism and muscle clenching</li>\n<li>Reduced immune system</li>\n<li>Cold, sweaty, numb or tingling hands or feet</li>\n<li>Heart palpitations</li>\n<li>Dry mouth</li>\n<li>Nausea</li>\n</ul>\n<p>Thankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.</p>\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\n<p>Certainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.<br />NLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.<br />The benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.</p>\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\n<p>Yes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.</p>\n<p><span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span><br /><span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span></p>\n<p><strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a></p>\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.<br /></strong></span></h2>\n<p><span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.<br /></span>[wpforms id=\"35\"]<br /></strong></span></p>\n<p>We are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.</p>\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\n<h2><br /><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\n<p>Hypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.</p>\n<h2><span style=\"color: #008000;\">How quickly will hypnotherapy help anxiety?</span></h2>\n<p><span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.<br /></span></p>\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong><br /></span></h2>\n<p><span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.<br /></span></p>\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong><br /></span></h2>\n<p>Yes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.</p>\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\n<p>Anxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.</p>\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\n<p>Yes, they can help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. <br />Our clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.</p>\n<h2> </h2>\n<h2> </h2>\n<h2> </h2>\n<h2> </h2>\n<h2><br /><br /><br /><br /><br /><br /><br /><br />Discover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a></h2>\n<p>Newcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a></p>\n<p> </p>\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-08-06 20:49:50','2018-08-06 20:49:50','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1175,1,'2018-08-06 21:01:36','2018-08-06 21:01:36','<h2><strong><span style=\"color: #008000;\">Are</span><span style=\"color: #008000;\"> you looking to take control and reduce your anxiety today?</span></strong></h2>\n<p><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.<br />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.<br /></strong><br /><strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong></p>\n<p>Anxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.</p>\n<p><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong></p>\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety<br /></span></strong></h2>\n<p>Many of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.</p>\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\n<p><strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.<br /></strong></p>\n<ul>\n<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\n<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\n<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\n</ul>\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\n<p>As anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.<br />One of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.<br />We also teach you some great skills to put you back in control and take charge of your anxiety symptoms.<br /><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span></p>\n<p><img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]</p>\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\n<p>The first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.<br />We usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.<br />Once we have dealt with the most serious issue the rest is usually easier to deal with.<br />The aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.<br />The program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.</p>\n<p><strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong></p>\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\n<p>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.<br />With a little work, we can create awareness of your cause of anxiety and show you how to take control.<br />Anxiety can have many symptoms including:</p>\n<ul>\n<li>Sleep problems</li>\n<li>Switching off at night</li>\n<li>Unable to relax</li>\n<li>Being afraid of the wrong things</li>\n<li>Becoming stressed easily</li>\n<li>Rapid breathing</li>\n<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\n<li>Digestive problems</li>\n<li>Panic Attacks</li>\n<li>Bruxism and muscle clenching</li>\n<li>Reduced immune system</li>\n<li>Cold, sweaty, numb or tingling hands or feet</li>\n<li>Heart palpitations</li>\n<li>Dry mouth</li>\n<li>Nausea</li>\n</ul>\n<p>Thankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.</p>\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\n<p>Certainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.<br />NLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.<br />The benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.</p>\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\n<p>Yes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.</p>\n<p><span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span><br /><span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span></p>\n<p><strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a></p>\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.<br /></strong></span></h2>\n<p><span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.<br /></span>[wpforms id=\"35\"]<br /></strong></span></p>\n<p>We are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.</p>\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\n<p>We are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.</p>\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\n<p>Hypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.</p>\n<h2><span style=\"color: #008000;\">How quickly will hypnotherapy help anxiety?</span></h2>\n<p><span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.<br /></span></p>\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong><br /></span></h2>\n<p><span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.<br /></span></p>\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong><br /></span></h2>\n<p>Yes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.</p>\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\n<p>Anxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.</p>\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\n<p>They may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. <br />Our clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.</p>\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\n<p>Yes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. Hypnosis will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident we would advise speaking to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.</p>\n<p> </p>\n<h2> </h2>\n<h2> </h2>\n<h2> </h2>\n<h2> </h2>\n<h2><br /><br /><br /><br /><br /><br /><br /><br />Discover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a></h2>\n<p>Newcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a></p>\n<p> </p>\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-08-06 21:01:36','2018-08-06 21:01:36','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1176,1,'2018-08-06 21:06:01','2018-08-06 21:06:01','<h2><strong><span style=\"color: #008000;\">Are</span><span style=\"color: #008000;\"> you looking to take control and reduce your anxiety today?</span></strong></h2>\n<p><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.<br />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.<br /></strong><br /><strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong></p>\n<p>Anxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.</p>\n<p><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong></p>\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety<br /></span></strong></h2>\n<p>Many of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.</p>\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\n<p><strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.<br /></strong></p>\n<ul>\n<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\n<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\n<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\n</ul>\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\n<p>As anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.<br />One of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.<br />We also teach you some great skills to put you back in control and take charge of your anxiety symptoms.<br /><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span></p>\n<p><img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]</p>\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\n<p>The first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.<br />We usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.<br />Once we have dealt with the most serious issue the rest is usually easier to deal with.<br />The aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.<br />The program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.</p>\n<p><strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong></p>\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\n<p>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.<br />With a little work, we can create awareness of your cause of anxiety and show you how to take control.<br />Anxiety can have many symptoms including:</p>\n<ul>\n<li>Sleep problems</li>\n<li>Switching off at night</li>\n<li>Unable to relax</li>\n<li>Being afraid of the wrong things</li>\n<li>Becoming stressed easily</li>\n<li>Rapid breathing</li>\n<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\n<li>Digestive problems</li>\n<li>Panic Attacks</li>\n<li>Bruxism and muscle clenching</li>\n<li>Reduced immune system</li>\n<li>Cold, sweaty, numb or tingling hands or feet</li>\n<li>Heart palpitations</li>\n<li>Dry mouth</li>\n<li>Nausea</li>\n</ul>\n<p>Thankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease.</p>\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\n<p>Certainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.<br />NLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.<br />The benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.</p>\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\n<p>Yes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.</p>\n<p><span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span><br /><span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span></p>\n<p><strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a></p>\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.<br /></strong></span></h2>\n<p><span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.<br /></span>[wpforms id=\"35\"]<br /></strong></span></p>\n<p>We are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.</p>\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\n<p>We are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.</p>\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\n<p>Hypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.</p>\n<h2><span style=\"color: #008000;\">How quickly will hypnotherapy help anxiety?</span></h2>\n<p><span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.<br /></span></p>\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong><br /></span></h2>\n<p><span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.<br /></span></p>\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong><br /></span></h2>\n<p>Yes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.</p>\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\n<p>Anxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.</p>\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\n<p>They may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. <br />Our clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.</p>\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\n<p>Yes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.</p>\n<p> </p>\n<p> </p>\n<h2> </h2>\n<h2> </h2>\n<h2> </h2>\n<h2> </h2>\n<h2><br /><br /><br /><br /><br /><br /><br /><br />Discover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a></h2>\n<p>Newcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a></p>\n<p> </p>\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-08-06 21:06:01','2018-08-06 21:06:01','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1177,1,'2018-08-06 21:17:34','2018-08-06 21:17:34','<h2><strong><span style=\"color: #008000;\">Are</span><span style=\"color: #008000;\"> you looking to take control and reduce your anxiety today?</span></strong></h2>\n<p><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.<br />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.<br /></strong><br /><strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong></p>\n<p>Anxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.</p>\n<p><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong></p>\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety<br /></span></strong></h2>\n<p>Many of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.</p>\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\n<p><strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.<br /></strong></p>\n<ul>\n<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\n<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\n<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\n</ul>\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\n<p>As anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.<br />One of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.<br />We also teach you some great skills to put you back in control and take charge of your anxiety symptoms.<br /><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span></p>\n<p><img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]</p>\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\n<p>The first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.<br />We usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.<br />Once we have dealt with the most serious issue the rest is usually easier to deal with.<br />The aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.<br />The program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.</p>\n<p><strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong></p>\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\n<p>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.<br />With a little work, we can create awareness of your cause of anxiety and show you how to take control.<br />Anxiety can have many symptoms including:</p>\n<ul>\n<li>Sleep problems</li>\n<li>Switching off at night</li>\n<li>Unable to relax</li>\n<li>Being afraid of the wrong things</li>\n<li>Becoming stressed easily</li>\n<li>Rapid breathing</li>\n<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\n<li>Digestive problems</li>\n<li>Panic Attacks</li>\n<li>Bruxism and muscle clenching</li>\n<li>Reduced immune system</li>\n<li>Cold, sweaty, numb or tingling hands or feet</li>\n<li>Heart palpitations</li>\n<li>Dry mouth</li>\n<li>Nausea</li>\n</ul>\n<p>Thankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.</p>\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\n<p>Certainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.<br />NLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.<br />The benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.</p>\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\n<p>Yes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.</p>\n<p><span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span><br /><span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span></p>\n<p><strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a></p>\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.<br /></strong></span></h2>\n<p><span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.<br /></span>[wpforms id=\"35\"]<br /></strong></span></p>\n<p>We are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.</p>\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\n<p>We are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.</p>\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\n<p>Hypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.</p>\n<h2><span style=\"color: #008000;\">How quickly will hypnotherapy help anxiety?</span></h2>\n<p><span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.<br /></span></p>\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong><br /></span></h2>\n<p><span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.<br /></span></p>\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong><br /></span></h2>\n<p>Yes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.</p>\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\n<p>Anxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.</p>\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\n<p>They may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. <br />Our clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.</p>\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\n<p>Yes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.</p>\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\n<p>Your first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues. <br /></em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong></p>\n<h2> </h2>\n<h2> </h2>\n<h2> </h2>\n<h2> </h2>\n<h2><br /><br /><br /><br /><br /><br /><br /><br />Discover <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-Hypnosis for Anxiety &amp; Stress Workshops &amp; Events</a></h2>\n<p>Newcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a></p>\n<p> </p>\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-08-06 21:17:34','2018-08-06 21:17:34','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1698,1,'2018-09-29 12:42:05','2018-09-29 12:42:05','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong>\r\nAs soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong></p>\r\n<img class=\"aligncenter wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:42:05','2018-09-29 12:42:05','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1664,1,'2018-09-26 19:55:22','2018-09-26 19:55:22','','Hypnosis 15','','inherit','open','closed','','hypnosis-15','','','2018-09-26 19:55:22','2018-09-26 19:55:22','',68,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Hypnosis-15.jpg',0,'attachment','image/jpeg',0),(1699,1,'2018-09-29 12:43:44','2018-09-29 12:43:44','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong>\r\nAs soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong></p>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:43:44','2018-09-29 12:43:44','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1178,1,'2018-08-06 21:27:02','2018-08-06 21:27:02','<h2><strong><span style=\"color: #008000;\">Are</span><span style=\"color: #008000;\"> you looking to take control and reduce your anxiety today?</span></strong></h2>\n<p><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.<br />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.<br /></strong><br /><strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong></p>\n<p>Anxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.</p>\n<p><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong></p>\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety<br /></span></strong></h2>\n<p>Many of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.</p>\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\n<p><strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.<br /></strong></p>\n<ul>\n<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\n<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\n<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\n</ul>\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\n<p>As anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.<br />One of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.<br />We also teach you some great skills to put you back in control and take charge of your anxiety symptoms.<br /><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span></p>\n<p><img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]</p>\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\n<p>The first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.<br />We usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.<br />Once we have dealt with the most serious issue the rest is usually easier to deal with.<br />The aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.<br />The program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.</p>\n<p><strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong></p>\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\n<p>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.<br />With a little work, we can create awareness of your cause of anxiety and show you how to take control.<br />Anxiety can have many symptoms including:</p>\n<ul>\n<li>Sleep problems</li>\n<li>Switching off at night</li>\n<li>Unable to relax</li>\n<li>Being afraid of the wrong things</li>\n<li>Becoming stressed easily</li>\n<li>Rapid breathing</li>\n<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\n<li>Digestive problems</li>\n<li>Panic Attacks</li>\n<li>Bruxism and muscle clenching</li>\n<li>Reduced immune system</li>\n<li>Cold, sweaty, numb or tingling hands or feet</li>\n<li>Heart palpitations</li>\n<li>Dry mouth</li>\n<li>Nausea</li>\n</ul>\n<p>Thankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.</p>\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\n<p>Certainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.<br />NLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.<br />The benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.</p>\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\n<p>Yes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.</p>\n<p><span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span><br /><span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span></p>\n<p><strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a></p>\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.<br /></strong></span></h2>\n<p><span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.<br /></span>[wpforms id=\"35\"]<br /></strong></span></p>\n<p>We are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.</p>\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\n<p>We are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.</p>\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\n<p>Hypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.</p>\n<h2><span style=\"color: #008000;\">How quickly will hypnotherapy help anxiety?</span></h2>\n<p><span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.<br /></span></p>\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong><br /></span></h2>\n<p><span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.<br /></span></p>\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong><br /></span></h2>\n<p>Yes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.</p>\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\n<p>Anxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.</p>\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\n<p>They may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. <br />Our clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.</p>\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\n<p>Yes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.</p>\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?<br /></span></strong></h2>\n<p>Self-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.<br />We also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a></p>\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\n<p>Your first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues. <br /></em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong></p>\n<p><br /><br />Newcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a></p>\n<p> </p>\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-08-06 21:27:02','2018-08-06 21:27:02','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1179,1,'2018-08-06 21:28:27','2018-08-06 21:28:27','<h2><strong><span style=\"color: #008000;\">Are</span><span style=\"color: #008000;\"> you looking to take control and reduce your anxiety today?</span></strong></h2>\n<p><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.<br />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.<br /></strong><br /><strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong></p>\n<p>Anxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.</p>\n<p><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong></p>\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety<br /></span></strong></h2>\n<p>Many of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.</p>\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\n<p><strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.<br /></strong></p>\n<ul>\n<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\n<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\n<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\n</ul>\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\n<p>As anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.<br />One of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.<br />We also teach you some great skills to put you back in control and take charge of your anxiety symptoms.<br /><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span></p>\n<p><img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]</p>\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\n<p>The first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.<br />We usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.<br />Once we have dealt with the most serious issue the rest is usually easier to deal with.<br />The aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.<br />The program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.</p>\n<p><strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong></p>\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\n<p>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.<br />With a little work, we can create awareness of your cause of anxiety and show you how to take control.<br />Anxiety can have many symptoms including:</p>\n<ul>\n<li>Sleep problems</li>\n<li>Switching off at night</li>\n<li>Unable to relax</li>\n<li>Being afraid of the wrong things</li>\n<li>Becoming stressed easily</li>\n<li>Rapid breathing</li>\n<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\n<li>Digestive problems</li>\n<li>Panic Attacks</li>\n<li>Bruxism and muscle clenching</li>\n<li>Reduced immune system</li>\n<li>Cold, sweaty, numb or tingling hands or feet</li>\n<li>Heart palpitations</li>\n<li>Dry mouth</li>\n<li>Nausea</li>\n</ul>\n<p>Thankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.</p>\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\n<p>Certainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.<br />NLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.<br />The benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.</p>\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\n<p>Yes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.</p>\n<p><span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span><br /><span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span></p>\n<p><strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a></p>\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.<br /></strong></span></h2>\n<p><span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.<br /></span>[wpforms id=\"35\"]<br /></strong></span></p>\n<p>We are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.</p>\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\n<p>We are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.</p>\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\n<p>Hypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.</p>\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\n<p><span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.<br /></span></p>\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong><br /></span></h2>\n<p><span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.<br /></span></p>\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong><br /></span></h2>\n<p>Yes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.</p>\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\n<p>Anxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.</p>\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\n<p>They may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. <br />Our clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.</p>\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\n<p>Yes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.</p>\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?<br /></span></strong></h2>\n<p>Self-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.<br />We also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a></p>\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\n<p>Your first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues. <br /></em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong></p>\n<p><br /><br />Newcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a></p>\n<p> </p>\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-08-06 21:28:27','2018-08-06 21:28:27','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1660,1,'2018-09-26 19:27:08','2018-09-26 19:27:08','','Click now','','inherit','open','closed','','click-now','','','2018-09-26 19:27:08','2018-09-26 19:27:08','',68,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now.jpg',0,'attachment','image/jpeg',0),(1180,1,'2018-08-06 21:29:57','2018-08-06 21:29:57','<h2><strong><span style=\"color: #008000;\">Are</span><span style=\"color: #008000;\"> you looking to take control and reduce your anxiety today?</span></strong></h2>\n<p><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.<br />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.<br /></strong><br /><strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong></p>\n<p>Anxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.</p>\n<p><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong></p>\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety<br /></span></strong></h2>\n<p>Many of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.</p>\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\n<p><strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.<br /></strong></p>\n<ul>\n<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\n<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\n<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\n</ul>\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\n<p>As anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.<br />One of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.<br />We also teach you some great skills to put you back in control and take charge of your anxiety symptoms.<br /><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span></p>\n<p><img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]</p>\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\n<p>The first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.<br />We usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.<br />Once we have dealt with the most serious issue the rest is usually easier to deal with.<br />The aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.<br />The program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.</p>\n<p><strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong></p>\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\n<p>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.<br />With a little work, we can create awareness of your cause of anxiety and show you how to take control.<br />Anxiety can have many symptoms including:</p>\n<ul>\n<li>Sleep problems</li>\n<li>Switching off at night</li>\n<li>Unable to relax</li>\n<li>Being afraid of the wrong things</li>\n<li>Becoming stressed easily</li>\n<li>Rapid breathing</li>\n<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\n<li>Digestive problems</li>\n<li>Panic Attacks</li>\n<li>Bruxism and muscle clenching</li>\n<li>Reduced immune system</li>\n<li>Cold, sweaty, numb or tingling hands or feet</li>\n<li>Heart palpitations</li>\n<li>Dry mouth</li>\n<li>Nausea</li>\n</ul>\n<p>Thankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.</p>\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\n<p>Certainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.<br />NLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.<br />The benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.</p>\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\n<p>Yes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.</p>\n<p><span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span><br /><span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span></p>\n<p><strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a></p>\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.<br /></strong></span></h2>\n<p><span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.<br /></span>[wpforms id=\"35\"]<br /></strong></span></p>\n<p>We are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.</p>\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\n<p>We are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.</p>\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\n<p>Hypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.</p>\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\n<p><span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.<br /></span></p>\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong><br /></span></h2>\n<p><span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.<br /></span></p>\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong><br /></span></h2>\n<p>Yes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.</p>\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\n<p>Anxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.</p>\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\n<p>They may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. <br />Our clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.</p>\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\n<p>Yes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.</p>\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?<br /></span></strong></h2>\n<p>Self-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.<br />We also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a></p>\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span><br /></em></h2>\n<p><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em></p>\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\n<p>Your first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues. <br /></em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong></p>\n<p><br /><br />Newcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a></p>\n<p> </p>\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Anxiety Relief','','inherit','closed','closed','','68-revision-v1','','','2018-08-06 21:29:57','2018-08-06 21:29:57','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1328,1,'2018-09-02 16:22:33','2018-09-02 16:22:33','<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks.</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1338\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/newcastle-hypnotherapy-group-talks-300x200.jpg\" alt=\"newcastle hypnotherapy group talks\" width=\"300\" height=\"200\" />Would your company, charity, group or organisation value a talk, presentation or demonstration by a member of our team?\r\nNewcastle Hypnotherapy Group Talks are an entertaining way to explore a number of topics and even involve your group in new subjects and learning new skills.\r\n\r\nWe regularly give public talks and demonstrations that can be tailored to your group or chosen topic.\r\n<h2><strong><span style=\"color: #008000;\">Popular Group Talk &amp; Presentation Subjects</span></strong></h2>\r\n<ul>\r\n 	<li>Hypnosis &amp; Hypnotherapy</li>\r\n 	<li>Self-Hypnosis</li>\r\n 	<li>NLP - Neuro Linguistic Programming</li>\r\n 	<li>EFT Tapping - Emotional Freedom Technique</li>\r\n 	<li>Meditation &amp; Mindfulness</li>\r\n 	<li>Anxiety Help</li>\r\n 	<li>Stress Management</li>\r\n 	<li>Depression Help</li>\r\n 	<li>Building Self-Confidence</li>\r\n 	<li>Public Speaking</li>\r\n 	<li>Communication Skills</li>\r\n 	<li>Peak Performance</li>\r\n 	<li>Changing Habits</li>\r\n 	<li>Pain Management</li>\r\n 	<li>Past Life Regression</li>\r\n 	<li>Improved Sleep</li>\r\n 	<li>Memory Issues</li>\r\n</ul>\r\nAlternatively, we can tailor a talk to a chosen topic or subject to suit your group,\r\n\r\nSimply contact us through the form below, giving us a little information and a member of the team will contact you shortly.\r\n\r\n[wpforms id=\"35\" title=\"true\"]\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks</strong></span></h2>\r\nWe usually give a group talk and demonstration at the monthly Mind Body Spirit Fair that takes please at <strong><a href=\"http://www.the-vault.org/\">The Vault</a>,</strong> Wallsend, Newcastle upon Tyne.\r\nYou can learn more about our other <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>regular events and The Wednesday Workshops here.</strong></a>\r\n<h2><span style=\"color: #008000;\"><strong>What Can Newcastle Hypnotherapy Help With?</strong></span></h2>\r\nWe help people to fix or improve problems for many issues. These include anxiety, stress, depression, self-confidence, weight loss, stop smoking, phobias, IBS, chronic pain, addiction and many other health complaints.\r\n\r\nNewcastle Hypnotherapy works with companies and groups to improve communication skills, reduce stress, improve well being and boost performance for staff and management.\r\n\r\nUsing a range of modern techniques, we can help you achieve great results quickly. These include Hypnosis, Self-Hypnosis, Emotional Freedom Technique - EFT, Neuro Linguistic Programming - NLP, Meditation, Mindfulness and others as appropriate.\r\n\r\nFor further infomration simply complete the form above or give us a call on 07568 455 809. We can even arrange a free phone consultation if required.\r\n<div>\r\n<h2><a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy\'s <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop\'s <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n&nbsp;\r\n\r\n&nbsp;','GROUP TALKS','','publish','open','open','','newcastle-hypnotherapy-group-talks','','','2018-09-02 16:22:33','2018-09-02 16:22:33','',0,'https://www.newcastle-hypnotherapy.com/?page_id=1328',0,'page','',0),(1182,1,'2018-08-07 07:10:38','0000-00-00 00:00:00','<!-- wp:embed /-->','How Self-Hypnosis Changes Lives','','draft','open','open','','','','','2018-08-07 07:10:38','2018-08-07 07:10:38','',0,'https://www.newcastle-hypnotherapy.com/?p=1182',0,'post','',0),(1183,1,'2018-08-07 07:08:04','2018-08-07 07:08:04','{{unknown}}','','','publish','closed','closed','','df958522bca92b596af9856c4d03ce65','','','2018-08-07 07:08:04','2018-08-07 07:08:04','',0,'https://www.newcastle-hypnotherapy.com/df958522bca92b596af9856c4d03ce65/',0,'oembed_cache','',0),(1184,1,'2018-08-07 07:10:37','2018-08-07 07:10:37','<!-- wp:embed /-->','How Self-Hypnosis Changes Lives','','inherit','closed','closed','','1182-revision-v1','','','2018-08-07 07:10:37','2018-08-07 07:10:37','',1182,'https://www.newcastle-hypnotherapy.com/1182-revision-v1/',0,'revision','',0),(1185,1,'2018-08-12 19:14:15','2018-08-12 19:14:15','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong><span style=\"color: #000000;\">Join us for another enjoyable evening of Past Life Regression.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\n\r\n<strong>The Vault, Wallsend.\r\n9th October\r\n</strong><strong>7.30 pm to 9.30 pm.\r\n£15 per person</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\nWe will aim to record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\nWho were your family?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Secret Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nYou can come along and just watch others being regressed or if you would like to be regressed yourself, simply let us know when making your booking. We will work through as many people as we can and can\'t promise to fit everyone in.\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out to you before the workshop.\r\nYou will need to book your place in advance by clicking the button below.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>&nbsp;\r\n\r\n&nbsp;\r\n\r\nTo learn more about The Secret Workshops and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Secret Workshops <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>','Past Life Regression Workshop - 9th October','','publish','closed','closed','','past-life-regression-workshop','','','2019-09-13 12:37:52','2019-09-13 12:37:52','',322,'https://www.newcastle-hypnotherapy.com/?page_id=1185',0,'page','',0),(1186,1,'2018-08-12 18:08:57','2018-08-12 18:08:57','','past life regression hypnosis','','inherit','open','closed','','past-life-regression-workshop-2','','','2018-09-23 13:54:27','2018-09-23 13:54:27','',1185,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop.jpg',0,'attachment','image/jpeg',0),(1187,1,'2018-08-12 18:29:12','2018-08-12 18:29:12','<!-- wp:image {\"id\":1186,\"width\":320,\"height\":250} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop.jpg\" alt=\"past life regression workshop\" class=\"wp-image-1186\" width=\"320\" height=\"250\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>The Wednesday Workshop - Past Life Regression.</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.<br/>£7 per person. Booking required. Limited Spaces.<br/><br/>Join us for an enjoyable workshop to explore Past Life Regression using hypnosis &amp; self-hypnosis.<br/><br/>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br/>We will also explore a self-hypnosis technique that you can practice yourself to explore your previous lives.<br/><br/><br/></p>\n<!-- /wp:paragraph -->','Past Life Regression Workshop','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 18:29:12','2018-08-12 18:29:12','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1188,1,'2018-08-12 18:45:54','2018-08-12 18:45:54','<!-- wp:image {\"id\":1186,\"width\":320,\"height\":250} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop.jpg\" alt=\"past life regression workshop\" class=\"wp-image-1186\" width=\"320\" height=\"250\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>The Wednesday Workshop - Past Life Regression.</strong></h2>\n<!-- /wp:heading -->\n\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\n<p class=\"has-small-font-size\">The Vault, Wednesday 19th September, 7.30pm to 9.30pm.<br />£7 per person. Booking required. Limited Spaces.</p>\n<p>Join us for an enjoyable workshop to explore Past Life Regression using hypnosis &amp; self-hypnosis.</p>\n<p>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore your previous lives.</p>\n<p>This Wednesday Workshop is led by Mark from Newcastle Hypnotherapy to conduct Past Life Regression in a safe and comfortable manner.</p>\n<p>Advance booking is essential and numbers are limited.<br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\n<p>You can book your place here</p>\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>','Past Life Regression Workshop','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 18:45:54','2018-08-12 18:45:54','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1189,1,'2018-08-12 18:48:38','2018-08-12 18:48:38','<!-- wp:image {\"id\":1186,\"width\":320,\"height\":250} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop.jpg\" alt=\"past life regression workshop\" class=\"wp-image-1186\" width=\"320\" height=\"250\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>The Wednesday Workshop - Past Life Regression.</strong></h2>\n<!-- /wp:heading -->\n\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\n<p class=\"has-small-font-size\">The Vault, Wednesday 19th September, 7.30pm to 9.30pm.<br>£7 per person. Booking required. Limited Spaces.</p>\n<p>Join us for an enjoyable workshop to explore Past Life Regression using hypnosis &amp; self-hypnosis.</p>\n<p>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br>We will also explore a self-hypnosis technique that you can practice yourself to explore your previous lives.</p>\n<p>This Wednesday Workshop is led by Mark from Newcastle Hypnotherapy to conduct Past Life Regression in a safe and comfortable manner.</p>\n<p>Advance booking is essential and numbers are limited.<br>Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\n<p>You can book your place here</p>\n<form target=\"paypal\" action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\">\n<input name=\"cmd\" value=\"_s-xclick\" type=\"hidden\"><br>\n<input name=\"hosted_button_id\" value=\"668U96CQZFVCU\" type=\"hidden\"><br>\n<input src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" name=\"submit\" alt=\"PayPal – The safer, easier way to pay online!\" type=\"image\" border=\"0\"><br>\n<img alt=\"\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" width=\"1\" height=\"1\" border=\"0\"><br>\n</form>','Past Life Regression Workshop','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 18:48:38','2018-08-12 18:48:38','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1190,1,'2018-08-12 18:49:48','2018-08-12 18:49:48','<!-- wp:image {\"id\":1186,\"width\":320,\"height\":250} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop.jpg\" alt=\"past life regression workshop\" class=\"wp-image-1186\" width=\"320\" height=\"250\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>The Wednesday Workshop - Past Life Regression.</strong></h2>\n<!-- /wp:heading -->\n\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\n<p class=\"has-small-font-size\"><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£7 per person. Booking required. Limited Spaces.</p>\n<p>Join us for an enjoyable workshop to explore Past Life Regression using hypnosis &amp; self-hypnosis.</p>\n<p>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore your previous lives.</p>\n<p>This Wednesday Workshop is led by Mark from Newcastle Hypnotherapy to conduct Past Life Regression in a safe and comfortable manner.</p>\n<p>Advance booking is essential and numbers are limited.<br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\n<p>You can book your place here</p>\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>','Past Life Regression Workshop','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 18:49:48','2018-08-12 18:49:48','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1191,1,'2018-08-12 18:53:16','2018-08-12 18:53:16','<!-- wp:image {\"id\":1186,\"width\":320,\"height\":250} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop.jpg\" alt=\"past life regression workshop\" class=\"wp-image-1186\" width=\"320\" height=\"250\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>The Wednesday Workshop - Past Life Regression.</strong></h2>\n<!-- /wp:heading -->\n\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\n<p class=\"has-small-font-size\"><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.</p>\n<p>Join us for an enjoyable workshop to explore Past Life <span style=\"color: #000000;\">Regression</span> using hypnosis &amp; self-hypnosis.</p>\n<p>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.</p>\n<p>This Wednesday Workshop is led by Mark from Newcastle Hypnotherapy to conduct Past Life Regression in a safe and comfortable manner.</p>\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\n<p>You can book your place here today.</p>\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\n<p> </p>\n</form>\n\n<!-- wp:paragraph -->\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br/></p>\n<!-- /wp:paragraph -->','Past Life Regression Workshop','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 18:53:16','2018-08-12 18:53:16','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0);
INSERT INTO `wpqj_posts` VALUES (1193,1,'2018-08-12 18:55:46','2018-08-12 18:55:46','<!-- wp:image {\"id\":1186,\"width\":320,\"height\":250} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop.jpg\" alt=\"past life regression workshop\" class=\"wp-image-1186\" width=\"320\" height=\"250\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>The Wednesday Workshop - Past Life Regression.</strong></h2>\n<!-- /wp:heading -->\n\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\n<p><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.</p>\n<p>Join us for an enjoyable workshop to explore Past Life <span style=\"color: #000000;\">Regression</span> using hypnosis &amp; self-hypnosis.</p>\n<p>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.</p>\n<p>This Wednesday Workshop is led by Mark from Newcastle Hypnotherapy to conduct Past Life Regression in a safe and comfortable manner.</p>\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\n<p>You can book your place here today.</p>\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\n<p> </p>\n</form>\n\n<!-- wp:paragraph -->\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br/>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br/>We are GDPR compliant. You may unsubscribe at any time.<br/></p>\n<!-- /wp:paragraph -->','Past Life Regression Workshop','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 18:55:46','2018-08-12 18:55:46','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1192,1,'2018-08-12 18:55:02','2018-08-12 18:55:02','<!-- wp:image {\"id\":1186,\"width\":320,\"height\":250} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop.jpg\" alt=\"past life regression workshop\" class=\"wp-image-1186\" width=\"320\" height=\"250\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>The Wednesday Workshop - Past Life Regression.</strong></h2>\n<!-- /wp:heading -->\n\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\n<p class=\"has-small-font-size\"><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.</p>\n<p>Join us for an enjoyable workshop to explore Past Life <span style=\"color: #000000;\">Regression</span> using hypnosis &amp; self-hypnosis.</p>\n<p>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.</p>\n<p>This Wednesday Workshop is led by Mark from Newcastle Hypnotherapy to conduct Past Life Regression in a safe and comfortable manner.</p>\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\n<p>You can book your place here today.</p>\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\n<p> </p>\n</form>\n\n<!-- wp:paragraph -->\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br/>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br/>We are GDPR compliant. You may unsubscribe at any time.<br/></p>\n<!-- /wp:paragraph -->','Past Life Regression Workshop','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 18:55:02','2018-08-12 18:55:02','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1194,1,'2018-08-12 19:02:06','2018-08-12 19:02:06','<!-- wp:image {\"id\":1186,\"width\":320,\"height\":250} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop.jpg\" alt=\"past life regression workshop\" class=\"wp-image-1186\" width=\"320\" height=\"250\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>The Wednesday Workshop - Past Life Regression.</strong></h2>\n<!-- /wp:heading -->\n\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\n<p><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.</p>\n<p>Join us for an enjoyable workshop to explore Past Life <span style=\"color: #000000;\">Regression</span> using hypnosis &amp; self-hypnosis.</p>\n<p>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.<br /><br />Who could you have been in a previous life?<br />What lessons can you learn from your past?<br />Which abilities and skills did you poses?<br />How did you die?<br /><br /></p>\n<p>This Wednesday Workshop is led by Mark from Newcastle Hypnotherapy to conduct Past Life Regression in a safe and comfortable manner.</p>\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\n<p>You can book your place here today.</p>\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\n<p> </p>\n</form>\n\n<!-- wp:paragraph -->\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br/>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br/>We are GDPR compliant. You may unsubscribe at any time.<br/></p>\n<!-- /wp:paragraph -->','Past Life Regression Workshop','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:02:06','2018-08-12 19:02:06','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1196,1,'2018-08-12 19:06:35','2018-08-12 19:06:35','<!-- wp:image {\"id\":1186} -->\n<figure class=\"wp-block-image\"><img src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop.jpg\" alt=\"past life regression workshop\" class=\"wp-image-1186\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>The Wednesday Workshop - Past Life Regression.</strong></h2>\n<!-- /wp:heading -->\n\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\n<p><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.</p>\n<p>Join us for an enjoyable workshop to explore Past Life <span style=\"color: #000000;\">Regression</span> using hypnosis &amp; self-hypnosis.</p>\n<p>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.<br /><br />Who could you have been in a previous life?<br />What lessons can you learn from your past?<br />Which abilities and skills did you poses?<br />How did you die?<br /><br /></p>\n<p>This Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.</p>\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\n<p>You can book your place here today.</p>\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\n<p> </p>\n</form>\n\n<!-- wp:paragraph -->\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br/>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br/>We are GDPR compliant. You may unsubscribe at any time.<br/></p>\n<!-- /wp:paragraph -->','Past Life Regression Workshop','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:06:35','2018-08-12 19:06:35','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1195,1,'2018-08-12 19:04:58','2018-08-12 19:04:58','<!-- wp:image {\"id\":1186,\"width\":320,\"height\":250} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop.jpg\" alt=\"past life regression workshop\" class=\"wp-image-1186\" width=\"320\" height=\"250\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>The Wednesday Workshop - Past Life Regression.</strong></h2>\n<!-- /wp:heading -->\n\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\n<p><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.</p>\n<p>Join us for an enjoyable workshop to explore Past Life <span style=\"color: #000000;\">Regression</span> using hypnosis &amp; self-hypnosis.</p>\n<p>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.<br /><br />Who could you have been in a previous life?<br />What lessons can you learn from your past?<br />Which abilities and skills did you poses?<br />How did you die?<br /><br /></p>\n<p>This Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.</p>\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\n<p>You can book your place here today.</p>\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\n<p> </p>\n</form>\n\n<!-- wp:paragraph -->\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br/>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br/>We are GDPR compliant. You may unsubscribe at any time.<br/></p>\n<!-- /wp:paragraph -->','Past Life Regression Workshop','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:04:58','2018-08-12 19:04:58','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1197,1,'2018-08-12 19:08:15','2018-08-12 19:08:15','<!-- wp:image {\"id\":1186} -->\n<figure class=\"wp-block-image\"><img src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop.jpg\" alt=\"past life regression workshop \" class=\"wp-image-1186\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>The Wednesday Workshop - Past Life Regression.</strong></h2>\n<!-- /wp:heading -->\n\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\n<p><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.</p>\n<p>Join us for an enjoyable workshop to explore Past Life <span style=\"color: #000000;\">Regression</span> using hypnosis &amp; self-hypnosis.</p>\n<p>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.<br /><br />Who could you have been in a previous life?<br />What lessons can you learn from your past?<br />Which abilities and skills did you poses?<br />How did you die?<br /><br /></p>\n<p>This Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.</p>\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\n<p>You can book your place here today.</p>\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\n<p> </p>\n</form>\n\n<!-- wp:paragraph -->\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br/>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br/>We are GDPR compliant. You may unsubscribe at any time.<br/></p>\n<!-- /wp:paragraph -->','Past Life Regression Workshop','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:08:15','2018-08-12 19:08:15','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1198,1,'2018-08-12 19:11:30','2018-08-12 19:11:30','<!-- wp:image {\"id\":1186} -->\n<figure class=\"wp-block-image\"><img src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop.jpg\" alt=\"past life regression workshop \" class=\"wp-image-1186\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>The Wednesday Workshop - Past Life Regression.</strong></h2>\n<!-- /wp:heading -->\n\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\n<p><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.</p>\n<p>Join us for an enjoyable workshop to explore Past Life <span style=\"color: #000000;\">Regression</span> using hypnosis &amp; self-hypnosis.</p>\n<p>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.<br /><br />Who could you have been in a previous life?<br />What lessons can you learn from your past?<br />Which abilities and skills did you poses?<br />How did you die?<br /><br /></p>\n<p>This Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.</p>\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\n<p>You can book your place here today.</p>\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\n<p> </p>\n</form>\n\n<!-- wp:paragraph -->\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br/>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br/>We are GDPR compliant. You may unsubscribe at any time.<br/></p>\n<!-- /wp:paragraph -->','Past Life Regression Workshop 19th September','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:11:30','2018-08-12 19:11:30','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1310,1,'2019-09-13 14:52:53','2019-09-13 14:52:53','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong><img class=\"alignleft size-full wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy.jpg\" alt=\"Newcastle Hypnotherapy Workshops &amp; Events\" width=\"1280\" height=\"719\" data-wp-editing=\"1\" />\nWorkshops &amp; Events in Newcastle Upon Tyne,\nNorthumberland, North East England &amp; Online</strong></span></h4>\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\ncontent, self-confident, energised and focused.</span></strong></p>\n\n<h4><strong><span style=\"color: #008000;\"> Upcoming Events 2019.\n</span></strong></h4>\n<strong>18th September - <a href=\"https://www.newcastle-hypnotherapy.com/the-secrets-of-deep-relaxation-workshop/\">The Secrets Of Relaxation - Learn More</a></strong>\n\n<strong>9th October</strong> - <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/past-life-regression-workshop/\"><strong>Past Life Regression Workshop - Learn More</strong></a>\n\n<strong>23rd October - <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-freedom-workshop/\">Freedom From Anxiety &amp; Stress Workshop - Learn More</a>\n</strong>\n\n<strong>6th November - <a href=\"https://www.newcastle-hypnotherapy.com/the-secrets-of-being-happy/\">The Secrets Of Being Happy - Learn More</a>\n</strong>\n\n<strong>20th November - <a href=\"https://www.newcastle-hypnotherapy.com/dealing-with-difficult-people-children/\">Dealing With Difficult People - Learn More</a>\n</strong>\n\n<strong>11th December - <a href=\"https://www.newcastle-hypnotherapy.com/self-confidence-workshop/\">The Secrets Of Self-Confidence - Learn More</a>\n</strong>\n\n&nbsp;\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for your feedback</span>\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\n</span></strong></p>\n\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\nWe are GDPR Compliant and will only use your details to send you updates.\nYou may unsubscribe at any time.\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\n<ul>\n 	<li><strong>Life Enhancing Skills</strong></li>\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\n 	<li><strong>Personal Development</strong></li>\n 	<li><strong>Good Mental Health</strong></li>\n</ul>\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\n<ul>\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\n 	<li><strong>Hypnosis</strong></li>\n 	<li><strong>Self-Hypnosis</strong></li>\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\n 	<li><strong>Meditation</strong></li>\n 	<li><strong>Mindfulness</strong></li>\n 	<li><strong>Relaxation</strong></li>\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\n</ul>\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\n</span></strong></h4>\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\n\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\n\n<strong>Thank you for your feedback</strong>\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\n</strong></span></h4>\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\n\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\n\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\n\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\n\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\n\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\n</span> </strong></span>\n\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\n\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\n\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\n\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\n\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\n\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\n\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\n\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\n\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\n\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\n\n<strong>Thank you for your feedback</strong>\n\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\n<h4></h4>\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\n</strong></span></h4>\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\n</span></strong></h4>\nIf there is a particular topic or subject you would like to work on please let us know.\nThe aim of the group is to bring together as many skills as possible to then share with others.\n\n<strong>Thank you for your feedback</strong>\n<img class=\"alignleft size-full wp-image-3098\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/gail.jpg\" alt=\"newcastle hypnotherapy workshops and events\" width=\"619\" height=\"194\" />\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\nWe are GDPR Compliant and will only use your details to send you updates.\nYou may unsubscribe at any time.\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\nAs well as our many workshops and events, you can work with us on an individual basis.\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\n\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which therapies will be best for you and the best way forward.\n<strong>Simply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></span> to book your free session.</strong>\n<h4><span style=\"color: #008000;\"><strong>What did the NHS Dr say about Newcastle </strong>Hypnotherapy<strong>?</strong></span></h4>\nhttps://www.youtube.com/watch?v=cudUGD_t74I\n\n<strong>Simply call 07568 455 809 today to get started or <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a> to book your free session.</strong>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-autosave-v1','','','2019-09-13 14:52:53','2019-09-13 14:52:53','',322,'https://www.newcastle-hypnotherapy.com/322-autosave-v1/',0,'revision','',0),(1202,1,'2018-08-12 19:22:31','2018-08-12 19:22:31','<h2>We run regular workshops &amp; events.\nFor the latest information by email please join our newsletter below.</h2>\n<h2><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/meditate-deeper-faster-using-self-hypnosis/\"><span style=\"color: #008000;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis - 5th September</strong></span></a></h2>\n<h2><a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/past-life-regression-workshop/\">Past Life Regression Workshop - 19th September</a>\n\n<a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>S</strong></a><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></a></h2>\n<h2><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-for-weight-loss/\"><span style=\"color: #008000;\"><strong>Self-Hypnosis for Weight Loss </strong></span></a></h2>\n.[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-08-12 19:22:31','2018-08-12 19:22:31','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(1203,1,'2018-08-12 19:22:54','2018-08-12 19:22:54','<h2>We run regular workshops &amp; events.\nFor the latest information by email please join our newsletter below.</h2>\n<h2><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/meditate-deeper-faster-using-self-hypnosis/\"><span style=\"color: #008000;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis - 5th September</strong></span></a></h2>\n<h2><a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/past-life-regression-workshop/\"><span style=\"color: #008000;\"><strong>Past Life Regression Workshop - 19th September</strong></span></a>\n\n<a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>S</strong></a><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></a></h2>\n<h2><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-for-weight-loss/\"><span style=\"color: #008000;\"><strong>Self-Hypnosis for Weight Loss </strong></span></a></h2>\n.[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-08-12 19:22:54','2018-08-12 19:22:54','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(1205,1,'2018-08-12 19:25:06','2018-08-12 19:25:06','<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop.</strong></span></h2>\r\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\r\n<p><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.</p>\r\n<p>Join us for an enjoyable workshop to explore Past Life <span style=\"color: #000000;\">Regression</span> using hypnosis &amp; self-hypnosis.</p>\r\n<p>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.<br /><br />Who could you have been in a previous life?<br />What lessons can you learn from your past?<br />Which abilities and skills did you poses?<br />How did you die?<br /><br /></p>\r\n<p>This Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.</p>\r\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\r\n<p>You can book your place here today.</p>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\r\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n<p>&nbsp;</p>\r\n</form>\r\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br />[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br />We are GDPR compliant. You may unsubscribe at any time.</p>','Past Life Regression Workshop 19th September','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:25:06','2018-08-12 19:25:06','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1204,1,'2018-08-12 19:24:05','2018-08-12 19:24:05','<!-- wp:image {\"id\":1186} -->\r\n<figure class=\"wp-block-image\"><img class=\"alignnone wp-image-1186 size-medium\" title=\"pat life regression workshop\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop \" width=\"300\" height=\"234\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:heading -->\r\n<h2><strong>The Wednesday Workshop - Past Life Regression.</strong></h2>\r\n<!-- /wp:heading -->\r\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\r\n<p><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.</p>\r\n<p>Join us for an enjoyable workshop to explore Past Life <span style=\"color: #000000;\">Regression</span> using hypnosis &amp; self-hypnosis.</p>\r\n<p>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.<br /><br />Who could you have been in a previous life?<br />What lessons can you learn from your past?<br />Which abilities and skills did you poses?<br />How did you die?<br /><br /></p>\r\n<p>This Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.</p>\r\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\r\n<p>You can book your place here today.</p>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\r\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n<p>&nbsp;</p>\r\n</form><!-- wp:paragraph -->\r\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br />[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br />We are GDPR compliant. You may unsubscribe at any time.</p>\r\n<!-- /wp:paragraph -->','Past Life Regression Workshop 19th September','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:24:05','2018-08-12 19:24:05','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1206,1,'2018-08-12 19:26:12','2018-08-12 19:26:12','<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop.</strong></span></h2>\r\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\r\n<p><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.</p>\r\n<p>Join us for an enjoyable workshop to explore Past Life <span style=\"color: #000000;\">Regression</span> using hypnosis &amp; self-hypnosis.</p>\r\n<p>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.<br /><br />Who could you have been in a previous life?<br />What lessons can you learn from your past?<br />Which abilities and skills did you poses?<br />How did you die?<br /><br /></p>\r\n<p>This Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.</p>\r\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\r\n<p>You can book your place here today.</p>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\r\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n<p>&nbsp;</p>\r\n</form>\r\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br />[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br />We are GDPR compliant. You may unsubscribe at any time.<br /><br /><br /><br /></p>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop 19th September','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:26:12','2018-08-12 19:26:12','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1207,1,'2018-08-12 19:27:04','2018-08-12 19:27:04','<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop.<br /><img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /><br /></strong></span></h2>\r\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\r\n<p><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.</p>\r\n<p>Join us for an enjoyable workshop to explore Past Life <span style=\"color: #000000;\">Regression</span> using hypnosis &amp; self-hypnosis.</p>\r\n<p>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.<br /><br />Who could you have been in a previous life?<br />What lessons can you learn from your past?<br />Which abilities and skills did you poses?<br />How did you die?<br /><br /></p>\r\n<p>This Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.</p>\r\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\r\n<p>You can book your place here today.</p>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\r\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n<p>&nbsp;</p>\r\n</form>\r\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br />[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br />We are GDPR compliant. You may unsubscribe at any time.<br /><br /><br /><br /></p>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop 19th September','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:27:04','2018-08-12 19:27:04','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1213,1,'2018-08-12 19:30:33','2018-08-12 19:30:33','<p><span style=\"color: #008000;\"><strong><br /><img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.</p>\r\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\r\n<p>Join us for anonther enjoyable evening -The Past Life <span style=\"color: #000000;\">Regression Workshop</span>. <br />During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.<br /><br /></p>\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\n<p>Who could you have been in a previous life?<br />What lessons can you learn from your past?<br />Which abilities and skills did you poses?<br />How did you die?<br /><br /></p>\r\n<p>This Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.</p>\r\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\r\n<p>You can book your place here today.</p>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\r\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n<p>&nbsp;</p>\r\n</form>\r\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br />[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br />We are GDPR compliant. You may unsubscribe at any time.<br /><br /><br /><br /></p>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop 19th September','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:30:33','2018-08-12 19:30:33','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1208,1,'2018-08-12 19:27:43','2018-08-12 19:27:43','<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop.<br /><img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /><br /></strong></span></h2>\r\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\r\n<p><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.</p>\r\n<p>Join us for an enjoyable workshop to explore Past Life <span style=\"color: #000000;\">Regression</span> using hypnosis &amp; self-hypnosis.</p>\r\n<p>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.<br /><br /></p>\r\n<h2><strong>Past Life Regression Workshop.</strong></h2>\r\n<p><br />Who could you have been in a previous life?<br />What lessons can you learn from your past?<br />Which abilities and skills did you poses?<br />How did you die?<br /><br /></p>\r\n<p>This Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.</p>\r\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\r\n<p>You can book your place here today.</p>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\r\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n<p>&nbsp;</p>\r\n</form>\r\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br />[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br />We are GDPR compliant. You may unsubscribe at any time.<br /><br /><br /><br /></p>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop 19th September','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:27:43','2018-08-12 19:27:43','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1209,1,'2018-08-12 19:28:19','2018-08-12 19:28:19','<p><span style=\"color: #008000;\"><strong><br /><img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.</p>\r\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\r\n<p>Join us for an enjoyable workshop to explore Past Life <span style=\"color: #000000;\">Regression</span> using hypnosis &amp; self-hypnosis.</p>\r\n<p>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.<br /><br /></p>\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop.</strong></span></h2>\r\n<p><br />Who could you have been in a previous life?<br />What lessons can you learn from your past?<br />Which abilities and skills did you poses?<br />How did you die?<br /><br /></p>\r\n<p>This Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.</p>\r\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\r\n<p>You can book your place here today.</p>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\r\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n<p>&nbsp;</p>\r\n</form>\r\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br />[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br />We are GDPR compliant. You may unsubscribe at any time.<br /><br /><br /><br /></p>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop 19th September','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:28:19','2018-08-12 19:28:19','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1210,1,'2019-09-13 12:35:21','2019-09-13 12:35:21','<span style=\"color: #008000;\"><strong>\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong><span style=\"color: #000000;\">Join us for another enjoyable evening of Past Life Regression.\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\n\n<strong>The Vault, Wallsend.\n9th October from 7.30 pm to 9.30 pm.\n£15</strong>\n<span style=\"color: #ff6600;\"><strong>Advance booking required\nBook below – Limited Spaces</strong></span>\n\nWe will aim to record each Past Life Regression Session for you to listen to again later.\nIf you wish to be included for past life regression please let us know as you book your session.\nWe will fit in as many people as possible during the evening.\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\nWho could you have been in a previous life?\nWhat lessons can you learn from your past?\nWhich abilities and skills did you possess?\nHow did you die?\nWho were your family?\n\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\nThis Secret Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\n\nYou can come along and just watch others being regressed or if you would like to be regressed yourself, simply let us know when making your booking. We will work through as many people as we can and can\'t promise to fit everyone in.\n\n<strong>Advance booking is essential and numbers are limited.</strong>\nOnce you have booked a place to attend, a confirmation email will be sent out to you before the workshop.\nYou will need to book your place in advance by clicking the button below.\n\nYou can book your place here today. To learn more about future events look below.\n\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>&nbsp;\n\n&nbsp;\n\nTo learn more about The Secret Workshops and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\nWe are GDPR compliant. You may unsubscribe at any time.\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\n<div>The Secret Workshops <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\n<div></div>','Past Life Regression Workshop - 9th October','','inherit','closed','closed','','1185-autosave-v1','','','2019-09-13 12:35:21','2019-09-13 12:35:21','',1185,'https://www.newcastle-hypnotherapy.com/1185-autosave-v1/',0,'revision','',0),(1211,1,'2018-08-12 19:29:33','2018-08-12 19:29:33','<p><span style=\"color: #008000;\"><strong><br /><img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.</p>\r\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\r\n<p>Join us for anonther enjoyable evening -The Past Life <span style=\"color: #000000;\">Regression Workshop</span>.</p>\r\n<p>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.<br /><br /></p>\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop.</strong></span></h2>\r\n<p><br />Who could you have been in a previous life?<br />What lessons can you learn from your past?<br />Which abilities and skills did you poses?<br />How did you die?<br /><br /></p>\r\n<p>This Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.</p>\r\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\r\n<p>You can book your place here today.</p>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\r\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n<p>&nbsp;</p>\r\n</form>\r\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br />[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br />We are GDPR compliant. You may unsubscribe at any time.<br /><br /><br /><br /></p>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop 19th September','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:29:33','2018-08-12 19:29:33','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1212,1,'2018-08-12 19:30:02','2018-08-12 19:30:02','<p><span style=\"color: #008000;\"><strong><br /><img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.</p>\r\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\r\n<p>Join us for anonther enjoyable evening -The Past Life <span style=\"color: #000000;\">Regression Workshop</span>. <br />During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.<br /><br /></p>\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop.</strong></span></h2>\r\n<p><br />Who could you have been in a previous life?<br />What lessons can you learn from your past?<br />Which abilities and skills did you poses?<br />How did you die?<br /><br /></p>\r\n<p>This Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.</p>\r\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\r\n<p>You can book your place here today.</p>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\r\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n<p>&nbsp;</p>\r\n</form>\r\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br />[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br />We are GDPR compliant. You may unsubscribe at any time.<br /><br /><br /><br /></p>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop 19th September','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:30:02','2018-08-12 19:30:02','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1214,1,'2018-08-12 19:33:42','2018-08-12 19:33:42','<p><span style=\"color: #008000;\"><strong><br /><img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.</p>\r\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\r\n<p>Join us for anonther enjoyable evening -The Past Life <span style=\"color: #000000;\">Regression Workshop</span>. <br />During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.<br /><br /></p>\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\n<p>Who could you have been in a previous life?<br />What lessons can you learn from your past?<br />Which abilities and skills did you poses?<br />How did you die?<br /><br /></p>\r\n<p>This Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.<br />Past life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.</p>\r\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\r\n<p>You can book your place here today.</p>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\r\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n<p>&nbsp;</p>\r\n</form>\r\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br />[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br />We are GDPR compliant. You may unsubscribe at any time.<br /><br /><br /><br /></p>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop 19th September','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:33:42','2018-08-12 19:33:42','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1221,1,'2018-08-12 19:41:32','2018-08-12 19:41:32','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span>\r\n\r\n<strong>Join us for another enjoyable evening -The Past Life <span style=\"color: #000000;\">Regression Workshop</span>.</strong>\r\nDuring this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.\r\nWe will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.\r\n\r\n<strong>\r\nThe Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong>\r\n£8 per person. Booking required. Limited Spaces.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you poses?\r\nHow did you die?\r\n\r\nThis Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nThe Wednesday Workshop is held on the first and third Wednesday of each month as a nonprofit group. Each evening we explore a new subject of discovery.\r\nFeel free to suggest a topic or skill you would like to learn. If you could take part in a workshop to share or teach a skill please let us know via the <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us Form.</strong></a>\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out before the workshop.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n&nbsp;\r\n\r\n</form>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop 19th September','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:41:32','2018-08-12 19:41:32','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1215,1,'2018-08-12 19:38:03','2018-08-12 19:38:03','<p><span style=\"color: #008000;\"><strong><br /><img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.</p>\r\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\r\n<p>Join us for anonther enjoyable evening -The Past Life <span style=\"color: #000000;\">Regression Workshop</span>. <br />During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.<br /><br /></p>\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\n<p>Who could you have been in a previous life?<br />What lessons can you learn from your past?<br />Which abilities and skills did you poses?<br />How did you die?<br /><br /></p>\r\n<p>This Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.<br />Past life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.<br /><br />The Wednesday Workshop is held on the first and third Wednesday of each month as a nonprofit group. Each evening we explore a new subject of discovery.<br />Feel free to suggest a topic or skill you would like to learn. If you could take part ina  workshop to share or teach a skill please let us know via the <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us Form.</strong></a></p>\r\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\r\n<p>You can book your place here today. To learn more about future events look below.</p>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\r\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n<p>&nbsp;</p>\r\n</form>\r\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br />[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br />We are GDPR compliant. You may unsubscribe at any time.<br /><br /><br /><br /></p>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop 19th September','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:38:03','2018-08-12 19:38:03','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1216,1,'2018-08-12 19:38:45','2018-08-12 19:38:45','<p><span style=\"color: #008000;\"><strong><br /><img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span></p>\r\n<p>Join us for anonther enjoyable evening -The Past Life <span style=\"color: #000000;\">Regression Workshop</span>. <br />During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.<br /><br /><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.<br /><br /></p>\r\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\n<p>Who could you have been in a previous life?<br />What lessons can you learn from your past?<br />Which abilities and skills did you poses?<br />How did you die?<br /><br /></p>\r\n<p>This Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.<br />Past life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.<br /><br />The Wednesday Workshop is held on the first and third Wednesday of each month as a nonprofit group. Each evening we explore a new subject of discovery.<br />Feel free to suggest a topic or skill you would like to learn. If you could take part ina  workshop to share or teach a skill please let us know via the <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us Form.</strong></a></p>\r\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\r\n<p>You can book your place here today. To learn more about future events look below.</p>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\r\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n<p>&nbsp;</p>\r\n</form>\r\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br />[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br />We are GDPR compliant. You may unsubscribe at any time.<br /><br /><br /><br /></p>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop 19th September','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:38:45','2018-08-12 19:38:45','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1217,1,'2018-08-12 19:39:13','2018-08-12 19:39:13','<p><span style=\"color: #008000;\"><strong><br /><img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span></p>\r\n<p>Join us for anonther enjoyable evening -The Past Life <span style=\"color: #000000;\">Regression Workshop</span>. <br />During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.<br /><br /><br /><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.<br /><br /></p>\r\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\n<p>Who could you have been in a previous life?<br />What lessons can you learn from your past?<br />Which abilities and skills did you poses?<br />How did you die?<br /><br /></p>\r\n<p>This Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.<br />Past life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.<br /><br />The Wednesday Workshop is held on the first and third Wednesday of each month as a nonprofit group. Each evening we explore a new subject of discovery.<br />Feel free to suggest a topic or skill you would like to learn. If you could take part ina  workshop to share or teach a skill please let us know via the <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us Form.</strong></a></p>\r\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\r\n<p>You can book your place here today. To learn more about future events look below.</p>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\r\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n<p>&nbsp;</p>\r\n</form>\r\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br />[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br />We are GDPR compliant. You may unsubscribe at any time.<br /><br /><br /><br /></p>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop 19th September','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:39:13','2018-08-12 19:39:13','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1220,1,'2018-08-12 19:40:55','2018-08-12 19:40:55','<p><span style=\"color: #008000;\"><strong><br /><img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span></p>\r\n<p><strong>Join us for another enjoyable evening -The Past Life <span style=\"color: #000000;\">Regression Workshop</span>.</strong> <br />During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.<br /><br /><br /><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.<br /><br /></p>\r\n<p>&nbsp;</p>\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\n<p>Who could you have been in a previous life?<br />What lessons can you learn from your past?<br />Which abilities and skills did you poses?<br />How did you die?<br /><br /></p>\r\n<p>This Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.<br />Past life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.<br /><br />The Wednesday Workshop is held on the first and third Wednesday of each month as a nonprofit group. Each evening we explore a new subject of discovery.<br />Feel free to suggest a topic or skill you would like to learn. If you could take part in a workshop to share or teach a skill please let us know via the <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us Form.</strong></a></p>\r\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\r\n<p>You can book your place here today. To learn more about future events look below.</p>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\">\r\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n<p>&nbsp;</p>\r\n</form>\r\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br />[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br />We are GDPR compliant. You may unsubscribe at any time.<br /><br /><br /><br /></p>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop 19th September','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:40:55','2018-08-12 19:40:55','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1218,1,'2018-08-12 19:39:38','2018-08-12 19:39:38','<p><span style=\"color: #008000;\"><strong><br /><img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span></p>\r\n<p><strong>Join us for </strong>anonther<strong> enjoyable evening -The Past Life <span style=\"color: #000000;\">Regression Workshop</span>.</strong> <br />During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.<br /><br /><br /><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.<br /><br /></p>\r\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\n<p>Who could you have been in a previous life?<br />What lessons can you learn from your past?<br />Which abilities and skills did you poses?<br />How did you die?<br /><br /></p>\r\n<p>This Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.<br />Past life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.<br /><br />The Wednesday Workshop is held on the first and third Wednesday of each month as a nonprofit group. Each evening we explore a new subject of discovery.<br />Feel free to suggest a topic or skill you would like to learn. If you could take part ina  workshop to share or teach a skill please let us know via the <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us Form.</strong></a></p>\r\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\r\n<p>You can book your place here today. To learn more about future events look below.</p>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\r\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n<p>&nbsp;</p>\r\n</form>\r\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br />[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br />We are GDPR compliant. You may unsubscribe at any time.<br /><br /><br /><br /></p>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop 19th September','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:39:38','2018-08-12 19:39:38','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1219,1,'2018-08-12 19:40:02','2018-08-12 19:40:02','<p><span style=\"color: #008000;\"><strong><br /><img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span></p>\r\n<p><strong>Join us for another enjoyable evening -The Past Life <span style=\"color: #000000;\">Regression Workshop</span>.</strong> <br />During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.<br />We will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.<br /><br /><br /><strong>The Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong><br />£8 per person. Booking required. Limited Spaces.<br /><br /></p>\r\n<p><!-- wp:paragraph {\"fontSize\":\"small\",\"className\":\"\"} --></p>\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\n<p>Who could you have been in a previous life?<br />What lessons can you learn from your past?<br />Which abilities and skills did you poses?<br />How did you die?<br /><br /></p>\r\n<p>This Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.<br />Past life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.<br /><br />The Wednesday Workshop is held on the first and third Wednesday of each month as a nonprofit group. Each evening we explore a new subject of discovery.<br />Feel free to suggest a topic or skill you would like to learn. If you could take part ina  workshop to share or teach a skill please let us know via the <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us Form.</strong></a></p>\r\n<p><strong>Advance booking is essential and numbers are limited.</strong><br />Once you have booked a place to attend, a confirmation email will be sent out before the workshop.</p>\r\n<p>You can book your place here today. To learn more about future events look below.</p>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\">\r\n<p><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><br /><input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><br /><input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" /><br /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n<p>&nbsp;</p>\r\n</form>\r\n<p>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.<br />[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]<br />We are GDPR compliant. You may unsubscribe at any time.<br /><br /><br /><br /></p>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop 19th September','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:40:02','2018-08-12 19:40:02','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1222,1,'2018-08-12 19:41:49','2018-08-12 19:41:49','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span>\r\n\r\n<strong>Join us for another enjoyable evening -The Past Life <span style=\"color: #000000;\">Regression Workshop</span>.</strong>\r\nDuring this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.\r\nWe will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.\r\n\r\n<strong>\r\nThe Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong>\r\n£8 per person. Booking required. Limited Spaces.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you poses?\r\nHow did you die?\r\n\r\nThis Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nThe Wednesday Workshop is held on the first and third Wednesday of each month as a nonprofit group. Each evening we explore a new subject of discovery.\r\nFeel free to suggest a topic or skill you would like to learn. If you could take part in a workshop to share or teach a skill please let us know via the <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us Form.</strong></a>\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out before the workshop.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />&nbsp;\r\n\r\n</form>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop 19th September','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:41:49','2018-08-12 19:41:49','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1223,1,'2018-08-12 19:53:45','2018-08-12 19:53:45','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span>\r\n\r\n<strong>Join us for another enjoyable evening -The Past Life <span style=\"color: #000000;\">Regression Workshop</span>.</strong>\r\nDuring this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending.\r\nWe will also explore a self-hypnosis technique that you can practice yourself to explore previous lives.\r\n\r\n<strong>\r\nThe Vault, Wednesday 19th September, 7.30pm to 9.30pm.</strong>\r\n£8 per person. Booking required. Limited Spaces.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you poses?\r\nHow did you die?\r\n\r\nThis Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nThe Wednesday Workshop is held on the first and third Wednesday of each month as a nonprofit group. Each evening we explore a new subject of discovery.\r\nFeel free to suggest a topic or skill you would like to learn. If you could take part in a workshop to share or teach a skill please let us know via the <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us Form.</strong></a>\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out before the workshop.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_GB/i/btn/btn_cart_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /> </form>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop 19th September','','inherit','closed','closed','','1185-revision-v1','','','2018-08-12 19:53:45','2018-08-12 19:53:45','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1224,1,'2018-08-12 19:54:52','2018-08-12 19:54:52','<h3><span style=\"color: #008000;\"><strong>September the 5th @ The Vault. 7.30 pm to 9.30.</strong></span>\n<strong><span style=\"color: #008000;\">£7 per person. Book your place below. Limited spaces</span>\n</strong></h3>\n<img class=\"alignleft size-medium wp-image-1040\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />Meditation is a wonderful way to relax and research shows there are many health benefits associated with regular meditation practice.\nIn this enjoyable workshop we will show you how to speed up your meditation results and how to reach deeper levels of relaxation using the power of Self-Hypnosis.\n\n<strong><span style=\"color: #008000;\">This workshop is for everyone.</span></strong>\nIf you struggle with meditation or find you don\'t relax deep enough, this workshop will help you to really speed up your results.\nIf you enjoy meditation and want to improve your results, this workshop will also help you to achieve greater results.\n\nWe will also discuss how self-hypnosis differs from mindfulness and meditation, and how to combine all three for best results. You will learn new skills, some great self-hypnosis skills and also make some friends.\n\n<span style=\"color: #008000;\"><strong>Attendance is strictly by advance booking only and numbers are limited to just 12 people</strong>.\n</span> You can <em>book your place below now</em>, only while places remain.\n\nTo <em>book your place today</em>, please click the link below. Terms &amp; conditions are below.\nAn email will be sent to all of those attending a few days before with parking information and attendance details.\nYou can learn about more events using the form below.\n\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"4BT9YHP8LM3CY\" />\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>The Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\nFeel free to suggest a topic or something you would like a workshop to focus on.\nIf you could run a workshop please <strong><span style=\"color: #008000;\">Contact Us</span></strong> and we can look to schedule that in, if suitable, in the future.\n\n<span style=\"color: #008000;\"><strong>Terms &amp; Conditions.</strong></span>\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\n\nFor details of future events, please enter your details below.\nWe dislike spam and are GDPR compliant. You can unsubscribe at any time and your details will never be shared or sold.\n\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','The Wednesday Workshop - Meditate Deeper & Faster Using Self Hypnosis','','inherit','closed','closed','','1035-autosave-v1','','','2018-08-12 19:54:52','2018-08-12 19:54:52','',1035,'https://www.newcastle-hypnotherapy.com/1035-autosave-v1/',0,'revision','',0),(1225,1,'2018-08-12 19:55:13','2018-08-12 19:55:13','<h3><span style=\"color: #008000;\"><strong>September the 5th @ The Vault. 7.30 pm to 9.30.</strong></span>\n<strong><span style=\"color: #008000;\">£7 per person. Book your place below. Limited spaces</span>\n</strong></h3>\n<img class=\"alignleft size-medium wp-image-1040\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />Meditation is a wonderful way to relax and research shows there are many health benefits associated with regular meditation practice.\nIn this enjoyable workshop we will show you how to speed up your meditation results and how to reach deeper levels of relaxation using the power of Self-Hypnosis.\n\n<strong><span style=\"color: #008000;\">This workshop is for everyone.</span></strong>\nIf you struggle with meditation or find you don\'t relax deep enough, this workshop will help you to really speed up your results.\nIf you enjoy meditation and want to improve your results, this workshop will also help you to achieve greater results.\n\nWe will also discuss how self-hypnosis differs from mindfulness and meditation, and how to combine all three for best results. You will learn new skills, some great self-hypnosis skills and also make some friends.\n\n<span style=\"color: #008000;\"><strong>Attendance is strictly by advance booking only and numbers are limited to just 12 people</strong>.\n</span> You can <em>book your place below now</em>, only while places remain.\n\nTo <em>book your place today</em>, please click the link below. Terms &amp; conditions are below.\nAn email will be sent to all of those attending a few days before with parking information and attendance details.\nYou can learn about more events using the form below.\n\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"4BT9YHP8LM3CY\" />\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>The Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\nFeel free to suggest a topic or something you would like a workshop to focus on.\nIf you could run a workshop please <strong><span style=\"color: #008000;\">Contact Us</span></strong> and we can look to schedule that in, if suitable, in the future.\n\n<span style=\"color: #008000;\"><strong>Terms &amp; Conditions.</strong></span>\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\n\nFor details of future events, please enter your details below.\nWe dislike spam and are GDPR compliant. You can unsubscribe at any time and your details will never be shared or sold.\n\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','The Wednesday Workshop - Meditate Deeper & Faster Using Self Hypnosis','','inherit','closed','closed','','1035-revision-v1','','','2018-08-12 19:55:13','2018-08-12 19:55:13','',1035,'https://www.newcastle-hypnotherapy.com/1035-revision-v1/',0,'revision','',0),(1226,1,'2018-08-12 19:55:46','2018-08-12 19:55:46','<h3><span style=\"color: #008000;\"><strong>September the 5th @ The Vault. 7.30 pm to 9.30.</strong></span>\n<strong><span style=\"color: #008000;\">£7 per person. Book your place below. Limited spaces</span>\n</strong></h3>\n<img class=\"alignleft size-medium wp-image-1040\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />Meditation is a wonderful way to relax and research shows there are many health benefits associated with regular meditation practice.\nIn this enjoyable workshop, we will show you how to speed up your meditation results and how to reach deeper levels of relaxation using the power of Self-Hypnosis.\n\n<strong><span style=\"color: #008000;\">This workshop is for everyone.</span></strong>\nIf you struggle with meditation or find you don\'t relax deep enough, this workshop will help you to really speed up your results.\nIf you enjoy meditation and want to improve your results, this workshop will also help you to achieve greater results.\n\nWe will also discuss how self-hypnosis differs from mindfulness and meditation, and how to combine all three for best results. You will learn new skills, some great self-hypnosis skills and also make some friends.\n\n<span style=\"color: #008000;\"><strong>Attendance is strictly by advance booking only and numbers are limited to just 12 people</strong>.\n</span> You can <em>book your place below now</em>, only while places remain.\n\nTo <em>book your place today</em>, please click the link below. Terms &amp; conditions are below.\nAn email will be sent to all of those attending a few days before with parking information and attendance details.\nYou can learn about more events using the form below.\n\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"4BT9YHP8LM3CY\" />\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>The Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\nFeel free to suggest a topic or something you would like a workshop to focus on.\nIf you could run a workshop please <strong><span style=\"color: #008000;\">Contact Us</span></strong> and we can look to schedule that in, if suitable, in the future.\n\n<span style=\"color: #008000;\"><strong>Terms &amp; Conditions.</strong></span>\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\n\nFor details of future events, please enter your details below.\nWe dislike spam and are GDPR compliant. You can unsubscribe at any time and your details will never be shared or sold.\n\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','The Wednesday Workshop - Meditate Deeper & Faster Using Self Hypnosis','','inherit','closed','closed','','1035-revision-v1','','','2018-08-12 19:55:46','2018-08-12 19:55:46','',1035,'https://www.newcastle-hypnotherapy.com/1035-revision-v1/',0,'revision','',0),(1229,1,'2018-08-17 16:01:34','2018-08-17 16:01:34','Welcome to Newcastle Hypnotherapy.\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\"> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\nClinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong>\n</span>\n\n<p class=\"MsoNormal\"><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong>\n</span><span style=\"font-family: Arial;\">\nAs a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.</span>\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy With A Difference.\n</span></strong></span></h2>\nOur clients tell us that we are a little different to other hypnosis practitioners.\nWe use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong>\n</span></em></h2>\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></p>\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" allowfullscreen=\"\" width=\"560\" height=\"315\" frameborder=\"0\"></iframe>\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\n</span></strong></span></h2>\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\n</strong></span></span></em></h2>\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\nYes, we can help you with that.</strong></span></span>\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span>\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\n\n&nbsp;\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\n\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\n</span></em></h2>\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\n</span></div>\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\n</em></strong></span></h2>\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\n\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\n</span></strong></h2>\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\n</span></strong></h2>\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\n<div>\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\n</strong></span></h2>\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\n</strong>\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\nSimply call us on 07568 455 809 to discuss this.\n\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\n\n</div>\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\n</span></h2>\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\n</span>\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\n</span></h2>\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\"><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\n\n<span style=\"color: #008000;\">Clinical Hypnotherapist\nMaster NLP Practitioner\nDirector at Newcastle Hypnotherapy\nMember - UK Guild of Hypnosis Practitioners\n</span>\n\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\n\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\n\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\n\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\n\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\n\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\n<h2><strong>Quick Links</strong></h2>\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\n\n&nbsp;\n\n&nbsp;\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\nYour privacy is important to us and your data will never be shared or sold.\nWe are GDPR compliant at all times.\n</span></div>\n&nbsp;\n\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1054-autosave-v1','','','2018-08-17 16:01:34','2018-08-17 16:01:34','',1054,'https://www.newcastle-hypnotherapy.com/1054-autosave-v1/',0,'revision','',0),(1230,1,'2018-08-17 17:36:03','2018-08-17 17:36:03','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy free consultation\" width=\"150\" height=\"150\" />Free Consultation - Newcastle Hypnotherapy\r\nNewcastle Hypnotherapy offers everyone a free consultation by phone.\r\nYou can ask any questions you wish and it allows us to evaluate the best way forward for you.\r\n\r\nWe can decide if a single session or a program of sessions is best for you and work out the best price for you.\r\n\r\nSimply call <strong>07568 455 809</strong> today or complete your details below. We will call you back as quickly as possible\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n</div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-08-17 17:36:03','2018-08-17 17:36:03','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1231,1,'2018-08-17 17:44:42','2018-08-17 17:44:42','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><strong>Free Consultation - Newcastle Hypnotherapy</strong>\r\nOur clients love the initial free consultation to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session  approach or a program of sessions is best for you.\r\n\r\nSimply call <strong>07568 455 809</strong> today or complete your details below. We will call you back as quickly as possible\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n</div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-08-17 17:44:42','2018-08-17 17:44:42','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1235,1,'2018-08-17 17:51:39','2018-08-17 17:51:39','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span></h2>\r\nTo arrange your free consultation simply call <strong>07568 455 809</strong> today or complete your details in the form below.\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n</div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-08-17 17:51:39','2018-08-17 17:51:39','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1232,1,'2018-08-17 17:50:03','2018-08-17 17:50:03','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation - Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation - Newcastle Hypnotherapy</strong></span></h2>\r\nTo arrange your free consultation simply call <strong>07568 455 809</strong> today or complete your details in the form below. We will call you back as quickly as possible\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n</div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-08-17 17:50:03','2018-08-17 17:50:03','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1233,1,'2018-08-17 17:50:33','2018-08-17 17:50:33','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation - Newcastle Hypnotherapy</strong></span></h2>\r\nTo arrange your free consultation simply call <strong>07568 455 809</strong> today or complete your details in the form below. We will call you back as quickly as possible\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n</div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-08-17 17:50:33','2018-08-17 17:50:33','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1234,1,'2018-08-17 17:50:54','2018-08-17 17:50:54','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span></h2>\r\nTo arrange your free consultation simply call <strong>07568 455 809</strong> today or complete your details in the form below. We will call you back as quickly as possible\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n</div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-08-17 17:50:54','2018-08-17 17:50:54','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1236,1,'2018-08-17 17:59:41','2018-08-17 17:59:41','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span></h2>\r\nTo arrange your free consultation simply call <strong>07568 455 809</strong> today. Alternatively, you may complete your details in the contact form below. We will come back to you as quickly as possible.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n&nbsp;\r\n\r\n</div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-08-17 17:59:41','2018-08-17 17:59:41','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1237,1,'2018-08-17 18:06:48','2018-08-17 18:06:48','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span></h2>\r\nTo arrange your free consultation simply call <strong>07568 455 809</strong> today. Alternatively, you may complete your details in the contact form below. We will come back to you as quickly as possible.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-08-17 18:06:48','2018-08-17 18:06:48','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1238,1,'2018-08-17 18:11:05','2018-08-17 18:11:05','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span></h2>\r\nTo arrange your free consultation simply call <strong>07568 455 809</strong> today. Alternatively, you may complete your details in the contact form below. We will come back to you as quickly as possible.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\r\n<div>Hypnotherapy near me?\r\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\r\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\r\nSimply ask and we can usually find a suitable location perfect for you.</div>\r\n<div></div>\r\n<div></div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-08-17 18:11:05','2018-08-17 18:11:05','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1239,1,'2018-08-17 18:16:13','2018-08-17 18:16:13','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span></h2>\r\nTo arrange your free consultation simply call <strong>07568 455 809</strong> today. Alternatively, you may complete your details in the contact form below. We will come back to you as quickly as possible.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n\r\n<div></div>\r\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\r\n<div>Hypnotherapy near me?\r\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\r\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\r\nSimply ask and we can usually find a suitable location perfect for you.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-08-17 18:16:13','2018-08-17 18:16:13','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1240,1,'2018-08-17 18:17:04','2018-08-17 18:17:04','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span></h2>\r\nTo arrange your free consultation simply call <strong>07568 455 809</strong> today. Alternatively, you may complete your details in the contact form below. We will come back to you as quickly as possible.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div></div>\r\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\r\n<div>Hypnotherapy near me?\r\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\r\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\r\nSimply ask and we can usually find a suitable location perfect for you.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-08-17 18:17:04','2018-08-17 18:17:04','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1241,1,'2018-08-17 18:17:25','2018-08-17 18:17:25','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span></h2>\r\nTo arrange your free consultation simply call <strong>07568 455 809</strong> today. Alternatively, you may complete your details in the contact form below. We will come back to you as quickly as possible.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div>.</div>\r\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\r\n<div>Hypnotherapy near me?\r\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\r\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\r\nSimply ask and we can usually find a suitable location perfect for you.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-08-17 18:17:25','2018-08-17 18:17:25','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1242,1,'2018-08-17 18:17:50','2018-08-17 18:17:50','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span></h2>\r\nTo arrange your free consultation simply call <strong>07568 455 809</strong> today. Alternatively, you may complete your details in the contact form below. We will come back to you as quickly as possible.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div><span style=\"color: #ffffff;\">.</span></div>\r\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\r\n<div>Hypnotherapy near me?\r\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\r\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\r\nSimply ask and we can usually find a suitable location perfect for you.</div>\r\n<div></div>\r\n<div></div>\r\n<div></div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-08-17 18:17:50','2018-08-17 18:17:50','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1243,1,'2018-08-17 18:19:58','2018-08-17 18:19:58','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span></h2>\r\nTo arrange your free consultation simply call <strong>07568 455 809</strong> today. Alternatively, you may complete your details in the contact form below. We will come back to you as quickly as possible.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div><span style=\"color: #ffffff;\">.</span></div>\r\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\r\n<div>Hypnotherapy near me?\r\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\r\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\r\nSimply ask and we can usually find a suitable location perfect for you.</div>\r\n<div></div>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<div></div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-08-17 18:19:58','2018-08-17 18:19:58','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1244,1,'2018-08-17 18:28:50','2018-08-17 18:28:50','','Free Consultation Newcastle Hypnotherapy','','inherit','open','closed','','choice-2692575_1280','','','2018-08-17 18:29:19','2018-08-17 18:29:19','',378,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280.jpg',0,'attachment','image/jpeg',0),(1245,1,'2018-08-17 18:30:03','2018-08-17 18:30:03','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n<img class=\"alignleft size-medium wp-image-1244\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n</strong></span></h2>\r\nTo arrange your free consultation simply call <strong>07568 455 809</strong> today. Alternatively, you may complete your details in the contact form below. We will come back to you as quickly as possible.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div><span style=\"color: #ffffff;\">.</span></div>\r\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\r\n<div>Hypnotherapy near me?\r\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\r\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\r\nSimply ask and we can usually find a suitable location perfect for you.</div>\r\n<div></div>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<div></div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-08-17 18:30:03','2018-08-17 18:30:03','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1246,1,'2018-08-17 18:30:36','2018-08-17 18:30:36','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft size-medium wp-image-1244\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" /></strong></span>To arrange your free consultation simply call <strong>07568 455 809</strong> today. Alternatively, you may complete your details in the contact form below. We will come back to you as quickly as possible.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div><span style=\"color: #ffffff;\">.</span></div>\r\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\r\n<div>Hypnotherapy near me?\r\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\r\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\r\nSimply ask and we can usually find a suitable location perfect for you.</div>\r\n<div></div>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<div></div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-08-17 18:30:36','2018-08-17 18:30:36','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1247,1,'2018-08-17 18:30:57','2018-08-17 18:30:57','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\n\r\n<img class=\"alignleft size-medium wp-image-1244\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />To arrange your free consultation simply call <strong>07568 455 809</strong> today. Alternatively, you may complete your details in the contact form below. We will come back to you as quickly as possible.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div><span style=\"color: #ffffff;\">.</span></div>\r\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\r\n<div>Hypnotherapy near me?\r\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\r\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\r\nSimply ask and we can usually find a suitable location perfect for you.</div>\r\n<div></div>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<div></div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-08-17 18:30:57','2018-08-17 18:30:57','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1248,1,'2018-08-17 18:31:15','2018-08-17 18:31:15','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\n\r\n<img class=\"alignleft size-medium wp-image-1244\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />To arrange your free consultation simply call <strong>07568 455 809</strong> today. Alternatively, you may complete your details in the contact form below.\r\nWe will come back to you as quickly as possible.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div><span style=\"color: #ffffff;\">.</span></div>\r\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\r\n<div>Hypnotherapy near me?\r\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\r\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\r\nSimply ask and we can usually find a suitable location perfect for you.</div>\r\n<div></div>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<div></div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-08-17 18:31:15','2018-08-17 18:31:15','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1249,1,'2018-08-17 18:32:07','2018-08-17 18:32:07','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n\r\n</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1244\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />To arrange your free consultation simply call <strong>07568 455 809</strong> today. Alternatively, you may complete your details in the contact form below.\r\nWe will come back to you as quickly as possible.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div><span style=\"color: #ffffff;\">.</span></div>\r\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\r\n<div>Hypnotherapy near me?\r\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\r\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\r\nSimply ask and we can usually find a suitable location perfect for you.</div>\r\n<div></div>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<div></div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-08-17 18:32:07','2018-08-17 18:32:07','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1560,1,'2018-09-21 12:30:39','2018-09-21 12:30:39','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1244\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />To arrange your free consultation simply complete the form below and let us know the times best suited for you.<em>\r\n</em>You can also call us on <em><strong>07568 455 809</strong></em>.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div><span style=\"color: #ffffff;\">.</span></div>\r\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\r\n<div>Hypnotherapy near me?\r\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\r\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\r\nSimply ask and we can usually find a suitable location perfect for you.</div>\r\n<div></div>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<div></div>','FREE CONSULTATION','','inherit','closed','closed','','378-revision-v1','','','2018-09-21 12:30:39','2018-09-21 12:30:39','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1250,1,'2018-08-17 18:32:38','2018-08-17 18:32:38','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span></h2>\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-1244\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />To arrange your free consultation <em>simply call <strong>07568 455 809</strong> today.</em> Alternatively, you may complete your details in the contact form below.\r\nWe will come back to you as quickly as possible.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div><span style=\"color: #ffffff;\">.</span></div>\r\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\r\n<div>Hypnotherapy near me?\r\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\r\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\r\nSimply ask and we can usually find a suitable location perfect for you.</div>\r\n<div></div>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<div></div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-08-17 18:32:38','2018-08-17 18:32:38','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1251,1,'2018-08-17 18:33:07','2018-08-17 18:33:07','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1244\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />To arrange your free consultation <em>simply call <strong>07568 455 809</strong> today.</em> Alternatively, you may complete your details in the contact form below.\r\nWe will come back to you as quickly as possible.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div><span style=\"color: #ffffff;\">.</span></div>\r\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\r\n<div>Hypnotherapy near me?\r\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\r\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\r\nSimply ask and we can usually find a suitable location perfect for you.</div>\r\n<div></div>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<div></div>','Free Consultation','','inherit','closed','closed','','378-revision-v1','','','2018-08-17 18:33:07','2018-08-17 18:33:07','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1252,1,'2018-08-17 23:29:56','2018-08-17 23:29:56','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems effectively</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Hypnosis Pain Management Program</span>\r\nQuestions and Answers</strong></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Long Does The Hypnosis Pain Management Program Take?</span></strong></h2>\r\nWe usually start with a program of 3 sessions over a period of 5 weeks.\r\nFor most people, this works really well with good results happening during the first session.\r\nWe do tailor the program to each client as each person\'s pain symptoms can be very different. We can assess this in more detail during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your free consultation</a>.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>What Happens During The Hypnosis Pain Management Program?</strong></span></h2>\r\nFirstly we assess how high your pain levels are and explore the different types of pain you experience over time. We then teach you the powerful pain management techniques and show you how to reduce your pain, step by step.\r\nOver time we assess which self-help pain techniques work the best for you and work to make them more effective.\r\nWe do use hypnosis and self-hypnosis techniques along with NLP and EFT for best results to take control and manage your pain levels.\r\n<h2><strong><span style=\"color: #008000;\">Will These Pain Management Techniques Work For Chronic Pain?</span></strong></h2>\r\nYes, the hypnosis pain management program will work on all types of pain including back pain, chronic pain, migraine, stress pain and other types of pain.\r\n<h2><strong><span style=\"color: #008000;\">Where Do You Conduct The Pain Management Sessions?</span></strong></h2>\r\nNewcastle Hypnotherapy work from multiple therapy locations in the North East. Our main locations are The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval. We also work from Cramlington and Bedlington in Northumberland. We are flexible and can usually find a suitable location for you.\r\n<h2><strong><span style=\"color: #008000;\">Can You Help With Pain Management Online?</span>\r\n</strong></h2>\r\nYes, we do pain management and hypnotherapy work using Skype, Zoom and other video platforms. Clients do see excellent results using video and online sessions.\r\n<h2><strong><span style=\"color: #008000;\">Is It Safe To Switch Off Pain Signals?</span></strong></h2>\r\nPain signals are a very important part of our bodies natural health warning system as they tell us when things are wrong.\r\nWhen we start to work together we assess your pain issues and look at the best way forward for you.\r\nSome people are just overly sensitive to pain and this is fine to manage the pain down to a comfortable level.  In some cases, we will only work with you once your pain problem has been investigated by your doctor or other healthcare professional. We do work with other therapists and healthcare professionals to find the best way forward for each client.\r\nIt is wise to find out what can be causing pain and then decide how to proceed from there.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis Help With Pain Management?\r\n</span></strong></h2>\r\nCertainly, Self-Hypnosis is a very powerful set of tools that can quickly control pain, emotions, feelings and mental states. We do teach self-hypnosis techniques through private sessions and group workshops as it can be very helpful with pain issues and many other problems.\r\nNewcastle Hypnotherapy runs a regular <strong><a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #008000;\">Wednesday Workshops and Events</span></a> </strong>in Newcastle where we teach <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong></span> along with many other self-improvement subjects.\r\n<h2><span style=\"color: #008000;\">Why Is Pain Medication Not Effective For Many People?</span></h2>\r\nEvery person is different, with a different health history and a different diet. Some pain medications can be beneficial for one person and not effective again pain for others.\r\nMany of our clients approach us as a last resort after finding pain medication has not helped them or that the side effect of medications is causing problems.\r\nSometimes pain can be caused by emotional issues as well as physical issues. Hypnosis can be very effective for pain relief along with many other health problems.\r\n<h2><strong><span style=\"color: #008000;\">Will The NHS Help With Hypnotherapy Pain Management?</span></strong></h2>\r\nSadly hypnotherapy is not available on the NHS. Our clients do arrange their hypnotherapy for pain management for themselves. We do believe hypnotherapy should be provided by the NHS as the benefits are very effective for our clients.\r\n<h2><strong><span style=\"color: #008000;\">Can Hypnotherapy Help With Surgery Pain?</span></strong></h2>\r\nYes. Learning pain management techniques can make surgery much more comfortable and also reduce the stress and anxiety out of medical procedures, dental appointments and giving birth.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Pain?</strong></span></h2>\r\nDifferent health professionals use different terms or definitions to describe the pain. As a rough guide:\r\nAcute Pain is often short-term pain such as a sprained ankle.\r\nChronic Pain or Persistent Pain is longterm pain such as back pain or arthritis.\r\nRecurrent or Intermittent Pain comes and goes, such as a toothache.\r\n\r\nPain is a signal from a part of the body to let us know there is a problem, damage or injury.\r\nSometimes pain can be amplified or exaggerated when we are suffering from emotional issues, such as anxiety, stress and depression. Over time this can become a habit that is not always related to the cause of pain and sometimes there is not a cause of the pain. This is where pain management can be most useful to reset these pain signals or calm them down.\r\n<h2><strong><span style=\"color: #008000;\">Besides Pain Medication, What Else Can Help Pain Problems?</span></strong></h2>\r\nWe use a range of modern techniques to help manage pain including Meditation, Mindfulness, Self-Hypnosis, Hypnosis, Breathing Techniques, Diet, Nutrition, Excercise, Visualisation, Emotional Freedom Technique -EFT and NLP techniques.\r\nPart of the Hypnosis Pain Management Program is to find the right techniques that work well for you.\r\n<h2><span style=\"color: #008000;\"><strong>How Should We Move Forward?</strong></span></h2>\r\nWhen you are ready to take control of your pain you can call us on 07568 455 809 for your free consultation or complete the form below.\r\n[wpforms id=\"35\"]\r\n\r\nNewcastle Hypnotherapy is a member of <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\nYou can also find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a> and <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n&nbsp;\r\n\r\n&nbsp;','PAIN MANAGEMENT & RELIEF','','publish','closed','closed','','hypnosis-pain-management-program','','','2019-01-06 18:34:28','2019-01-06 18:34:28','',1451,'https://www.newcastle-hypnotherapy.com/?page_id=1252',0,'page','',0),(1253,1,'2018-08-17 20:14:34','2018-08-17 20:14:34','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Pain Managment','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 20:14:34','2018-08-17 20:14:34','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1254,1,'2018-08-17 20:17:47','2018-08-17 20:17:47','<!-- wp:paragraph -->\n<p>The Hypnosis Pain Management Program gives you a selection of tools to control and <g class=\"gr_ gr_14 gr-alert sel gr_spell gr_replaced gr_inline_cards gr_disable_anim_appear ContextualSpelling ins-del\" id=\"14\" data-gr-id=\"14\">relieve</g> your pain.</p>\n<!-- /wp:paragraph -->','Pain Managment & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 20:17:47','2018-08-17 20:17:47','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1255,1,'2018-08-17 20:26:03','2018-08-17 20:26:03','<!-- wp:paragraph -->\n<p>The Hypnosis Pain Management Program gives you a selection of tools to control and relieve your pain.<br/>The latest pain management techniques can be very effective in dealing with pain and chronic pain of all kinds.<br/>Once you learn these Self-hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively. </p>\n<!-- /wp:paragraph -->','Pain Managment & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 20:26:03','2018-08-17 20:26:03','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1256,1,'2018-08-17 20:26:50','2018-08-17 20:26:50','<!-- wp:paragraph -->\n<p>The Hypnosis Pain Management Program gives you a selection of tools to control and relieve your pain.<br/>The latest pain management techniques can be very effective in dealing with pain and chronic pain of all kinds.<br/>Once you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively. </p>\n<!-- /wp:paragraph -->','Pain Managment & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 20:26:50','2018-08-17 20:26:50','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1257,1,'2018-08-17 20:30:15','2018-08-17 20:30:15','','Hypnosis Pain Management Program','','inherit','open','closed','','freedom-2053281_1280','','','2018-08-17 20:30:41','2018-08-17 20:30:41','',1252,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280.jpg',0,'attachment','image/jpeg',0),(1258,1,'2018-08-17 20:34:28','2018-08-17 20:34:28','<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">The Hypnosis Pain Management Program gives you a selection of tools to control and relieve your pain problems.<br/>Our clients find <g class=\"gr_ gr_441 gr-alert gr_gramm gr_inline_cards gr_run_anim Style multiReplace\" id=\"441\" data-gr-id=\"441\">the latest</g> pain management techniques can be very effective in dealing with pain and chronic pain of all kinds.<br/>Once you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively. </p>\n<!-- /wp:paragraph -->','Pain Managment & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 20:34:28','2018-08-17 20:34:28','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1259,1,'2018-08-17 20:40:20','2018-08-17 20:40:20','<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">The Hypnosis Pain Management Program gives you a selection of tools to control and relieve your pain problems.<br/>Our clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.<br/>Once you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>The Hypnosis Pain Relief Program - Newcastle Hypnotherapy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Pain can really make life uncomfortable and stop us from doing the things that make us happy. Pain medication is not always effective and can have side effects.<br/><br/>Some people can be oversensitive to pain signals</p>\n<!-- /wp:paragraph -->','Pain Managment & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 20:40:20','2018-08-17 20:40:20','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1261,1,'2018-08-17 21:03:37','2018-08-17 21:03:37','<p style=\"text-align: left;\">The Hypnosis Pain Management Program gives you a selection of tools to control and relieve your pain problems.<br />Our clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.<br />Once you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.</p>\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Relief Program - Newcastle Hypnotherapy</strong></span></h2>\r\n<p>Pain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.<br />Many people can be oversensitive to pain signals or feel chronic pain for no real reason.</p>\r\n<p>Using a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.</p>','Pain Managment & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 21:03:37','2018-08-17 21:03:37','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1260,1,'2018-08-17 20:57:38','2018-08-17 20:57:38','<!-- wp:paragraph {\"align\":\"left\"} -->\n<p style=\"text-align:left\">The Hypnosis Pain Management Program gives you a selection of tools to control and relieve your pain problems.<br/>Our clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.<br/>Once you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>The Hypnosis Pain Relief Program - Newcastle Hypnotherapy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Pain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.<br/>Many people can be oversensitive to pain signals or feel chronic pain for no real reason.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Using a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.</p>\n<!-- /wp:paragraph -->','Pain Managment & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 20:57:38','2018-08-17 20:57:38','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1262,1,'2018-08-17 21:04:58','2018-08-17 21:04:58','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><strong>The Hypnosis Pain Management Program</strong> gives you a selection of tools to control and relieve your pain problems.\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.</p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Relief Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.','Pain Managment & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 21:04:58','2018-08-17 21:04:58','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1263,1,'2018-08-17 21:05:44','2018-08-17 21:05:44','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><strong>The Hypnosis Pain Management Program</strong> gives you a selection of tools to control and relieve your pain problems.\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.</p>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Relief Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.','Pain Managment & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 21:05:44','2018-08-17 21:05:44','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1264,1,'2018-08-17 21:12:39','2018-08-17 21:12:39','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.</p>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Relief Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being </strong>Pain-Free</span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Pain Managment & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 21:12:39','2018-08-17 21:12:39','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1265,1,'2018-08-17 21:13:00','2018-08-17 21:13:00','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.</p>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Relief Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Pain Managment & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 21:13:00','2018-08-17 21:13:00','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1266,1,'2018-08-17 21:13:48','2018-08-17 21:13:48','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.</p>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Relief Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Pain Managment & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 21:13:48','2018-08-17 21:13:48','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1267,1,'2018-08-17 21:15:55','2018-08-17 21:15:55','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.</p>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Relief Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\nAre you ready to take control of your pain? <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Pain Managment & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 21:15:55','2018-08-17 21:15:55','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1268,1,'2018-08-17 21:16:13','2018-08-17 21:16:13','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.</p>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Relief Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\nAre you ready to take control of your pain? <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Pain Management & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 21:16:13','2018-08-17 21:16:13','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1269,1,'2018-08-17 21:17:31','2018-08-17 21:17:31','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Relief Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Pain Management & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 21:17:31','2018-08-17 21:17:31','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1270,1,'2018-08-17 21:18:45','2018-08-17 21:18:45','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Relief Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Pain Management & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 21:18:45','2018-08-17 21:18:45','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1271,1,'2018-08-17 21:20:28','2018-08-17 21:20:28','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Relief Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnosis Pain Relief Program</span>\r\nQyestions and Answers\r\n</strong></h2>','Pain Management & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 21:20:28','2018-08-17 21:20:28','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1272,1,'2018-08-17 21:22:09','2018-08-17 21:22:09','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnosis Pain Management Program</span>\r\nQyestions and Answers\r\n</strong></h2>','Pain Management & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 21:22:09','2018-08-17 21:22:09','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1273,1,'2018-08-17 21:22:40','2018-08-17 21:22:40','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Hypnosis Pain Management Program</span>\r\nQyestions and Answers\r\n</strong></h2>','Pain Management & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 21:22:40','2018-08-17 21:22:40','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1274,1,'2018-08-17 21:47:31','2018-08-17 21:47:31','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Hypnosis Pain Management Program</span>\r\nQuestions and Answers\r\n\r\n</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Long Does The Hypnosis Pain Management Program Take?</span></strong></h2>\r\nWe usually start with a program of 3 sessions over a period of 5 weeks.\r\nFor most people, this works really well with good results happening during the first session.\r\nWe do tailor the program to each client as each person\'s pain symptoms can be very different. We can assess this in more detail during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your free consultation</a>.</strong>\r\n<h2>\r\n<span style=\"color: #008000;\"><strong>What Happens During The Hypnosis Pain Management Program?</strong></span></h2>\r\nFirstly we assess how high your pain levels are and explore the different types of pain you experience over time. We then teach you the powerful pain management techniques and show you how to reduce your pain, step by step.\r\nOver time we assess which self-help pain techniques work the best for you and work to make them more effective.\r\nWe do use hypnosis and self-hypnosis techniques along with NLP and EFT for best results to take control and manage your pain levels.\r\n<h2><strong><span style=\"color: #008000;\">Will These Pain Management Techniques Work For Chronic Pain?</span></strong></h2>\r\nYes, the hypnosis pain management program will work on all types of pain including back pain, chronic pain, migraine, stress pain and other types of pain.\r\n<h2><span style=\"color: #008000;\">Where Do You Conduct The Pain Management Sessions?</span></h2>\r\nNewcastle Hypnotherapy work from multiple therapy locations in the North East. Our main locations are The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval. We also work from Cramlington and Bedlington in Northumberland. We are flexible and can usually find a suitable location for you.','Pain Management & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 21:47:31','2018-08-17 21:47:31','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1275,1,'2018-08-17 22:02:11','2018-08-17 22:02:11','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Hypnosis Pain Management Program</span>\r\nQuestions and Answers</strong></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Long Does The Hypnosis Pain Management Program Take?</span></strong></h2>\r\nWe usually start with a program of 3 sessions over a period of 5 weeks.\r\nFor most people, this works really well with good results happening during the first session.\r\nWe do tailor the program to each client as each person\'s pain symptoms can be very different. We can assess this in more detail during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your free consultation</a>.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>What Happens During The Hypnosis Pain Management Program?</strong></span></h2>\r\nFirstly we assess how high your pain levels are and explore the different types of pain you experience over time. We then teach you the powerful pain management techniques and show you how to reduce your pain, step by step.\r\nOver time we assess which self-help pain techniques work the best for you and work to make them more effective.\r\nWe do use hypnosis and self-hypnosis techniques along with NLP and EFT for best results to take control and manage your pain levels.\r\n<h2><strong><span style=\"color: #008000;\">Will These Pain Management Techniques Work For Chronic Pain?</span></strong></h2>\r\nYes, the hypnosis pain management program will work on all types of pain including back pain, chronic pain, migraine, stress pain and other types of pain.\r\n<h2><strong><span style=\"color: #008000;\">Where Do You Conduct The Pain Management Sessions?</span></strong></h2>\r\nNewcastle Hypnotherapy work from multiple therapy locations in the North East. Our main locations are The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval. We also work from Cramlington and Bedlington in Northumberland. We are flexible and can usually find a suitable location for you.\r\n<h2><strong><span style=\"color: #008000;\">Can You Help With Pain Management Online?</span>\r\n</strong></h2>\r\nYes, we do pain management and hypnotherapy work using Skype, Zoom and other video platforms. Clients do see excellent results using video and online sessions.\r\n<h2><span style=\"color: #008000;\">Is It Safe To Switch Off Pain Signals?</span></h2>\r\nPain signals are a very important part of our bodies natural health warning system as they tell us when things are wrong.\r\nWhen we start to work together we assess your pain issues and look at the best way forward for you.\r\nSome people are just overly sensitive to pain and this is fine to reduce the pain down to a comfortable level.  In some cases, we will only work with you once your pain problem has been investigated by your doctor or other healthcare professional.','Pain Management & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 22:02:11','2018-08-17 22:02:11','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1276,1,'2018-08-17 22:05:59','2018-08-17 22:05:59','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Hypnosis Pain Management Program</span>\r\nQuestions and Answers</strong></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Long Does The Hypnosis Pain Management Program Take?</span></strong></h2>\r\nWe usually start with a program of 3 sessions over a period of 5 weeks.\r\nFor most people, this works really well with good results happening during the first session.\r\nWe do tailor the program to each client as each person\'s pain symptoms can be very different. We can assess this in more detail during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your free consultation</a>.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>What Happens During The Hypnosis Pain Management Program?</strong></span></h2>\r\nFirstly we assess how high your pain levels are and explore the different types of pain you experience over time. We then teach you the powerful pain management techniques and show you how to reduce your pain, step by step.\r\nOver time we assess which self-help pain techniques work the best for you and work to make them more effective.\r\nWe do use hypnosis and self-hypnosis techniques along with NLP and EFT for best results to take control and manage your pain levels.\r\n<h2><strong><span style=\"color: #008000;\">Will These Pain Management Techniques Work For Chronic Pain?</span></strong></h2>\r\nYes, the hypnosis pain management program will work on all types of pain including back pain, chronic pain, migraine, stress pain and other types of pain.\r\n<h2><strong><span style=\"color: #008000;\">Where Do You Conduct The Pain Management Sessions?</span></strong></h2>\r\nNewcastle Hypnotherapy work from multiple therapy locations in the North East. Our main locations are The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval. We also work from Cramlington and Bedlington in Northumberland. We are flexible and can usually find a suitable location for you.\r\n<h2><strong><span style=\"color: #008000;\">Can You Help With Pain Management Online?</span>\r\n</strong></h2>\r\nYes, we do pain management and hypnotherapy work using Skype, Zoom and other video platforms. Clients do see excellent results using video and online sessions.\r\n<h2><span style=\"color: #008000;\">Is It Safe To Switch Off Pain Signals?</span></h2>\r\nPain signals are a very important part of our bodies natural health warning system as they tell us when things are wrong.\r\nWhen we start to work together we assess your pain issues and look at the best way forward for you.\r\nSome people are just overly sensitive to pain and this is fine to manage the pain down to a comfortable level.  In some cases, we will only work with you once your pain problem has been investigated by your doctor or other healthcare professional. We do work with other therapists and healthcare professionals to find the best way forward for each client.\r\nIt is wise to find out what can be causing pain and then decide how to proceed from there.','Pain Management & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 22:05:59','2018-08-17 22:05:59','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1277,1,'2018-08-17 22:08:31','2018-08-17 22:08:31','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Hypnosis Pain Management Program</span>\r\nQuestions and Answers</strong></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Long Does The Hypnosis Pain Management Program Take?</span></strong></h2>\r\nWe usually start with a program of 3 sessions over a period of 5 weeks.\r\nFor most people, this works really well with good results happening during the first session.\r\nWe do tailor the program to each client as each person\'s pain symptoms can be very different. We can assess this in more detail during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your free consultation</a>.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>What Happens During The Hypnosis Pain Management Program?</strong></span></h2>\r\nFirstly we assess how high your pain levels are and explore the different types of pain you experience over time. We then teach you the powerful pain management techniques and show you how to reduce your pain, step by step.\r\nOver time we assess which self-help pain techniques work the best for you and work to make them more effective.\r\nWe do use hypnosis and self-hypnosis techniques along with NLP and EFT for best results to take control and manage your pain levels.\r\n<h2><strong><span style=\"color: #008000;\">Will These Pain Management Techniques Work For Chronic Pain?</span></strong></h2>\r\nYes, the hypnosis pain management program will work on all types of pain including back pain, chronic pain, migraine, stress pain and other types of pain.\r\n<h2><strong><span style=\"color: #008000;\">Where Do You Conduct The Pain Management Sessions?</span></strong></h2>\r\nNewcastle Hypnotherapy work from multiple therapy locations in the North East. Our main locations are The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval. We also work from Cramlington and Bedlington in Northumberland. We are flexible and can usually find a suitable location for you.\r\n<h2><strong><span style=\"color: #008000;\">Can You Help With Pain Management Online?</span>\r\n</strong></h2>\r\nYes, we do pain management and hypnotherapy work using Skype, Zoom and other video platforms. Clients do see excellent results using video and online sessions.\r\n<h2><strong><span style=\"color: #008000;\">Is It Safe To Switch Off Pain Signals?</span></strong></h2>\r\nPain signals are a very important part of our bodies natural health warning system as they tell us when things are wrong.\r\nWhen we start to work together we assess your pain issues and look at the best way forward for you.\r\nSome people are just overly sensitive to pain and this is fine to manage the pain down to a comfortable level.  In some cases, we will only work with you once your pain problem has been investigated by your doctor or other healthcare professional. We do work with other therapists and healthcare professionals to find the best way forward for each client.\r\nIt is wise to find out what can be causing pain and then decide how to proceed from there.','Pain Management & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 22:08:31','2018-08-17 22:08:31','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1278,1,'2018-08-17 22:16:24','2018-08-17 22:16:24','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Hypnosis Pain Management Program</span>\r\nQuestions and Answers</strong></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Long Does The Hypnosis Pain Management Program Take?</span></strong></h2>\r\nWe usually start with a program of 3 sessions over a period of 5 weeks.\r\nFor most people, this works really well with good results happening during the first session.\r\nWe do tailor the program to each client as each person\'s pain symptoms can be very different. We can assess this in more detail during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your free consultation</a>.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>What Happens During The Hypnosis Pain Management Program?</strong></span></h2>\r\nFirstly we assess how high your pain levels are and explore the different types of pain you experience over time. We then teach you the powerful pain management techniques and show you how to reduce your pain, step by step.\r\nOver time we assess which self-help pain techniques work the best for you and work to make them more effective.\r\nWe do use hypnosis and self-hypnosis techniques along with NLP and EFT for best results to take control and manage your pain levels.\r\n<h2><strong><span style=\"color: #008000;\">Will These Pain Management Techniques Work For Chronic Pain?</span></strong></h2>\r\nYes, the hypnosis pain management program will work on all types of pain including back pain, chronic pain, migraine, stress pain and other types of pain.\r\n<h2><strong><span style=\"color: #008000;\">Where Do You Conduct The Pain Management Sessions?</span></strong></h2>\r\nNewcastle Hypnotherapy work from multiple therapy locations in the North East. Our main locations are The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval. We also work from Cramlington and Bedlington in Northumberland. We are flexible and can usually find a suitable location for you.\r\n<h2><strong><span style=\"color: #008000;\">Can You Help With Pain Management Online?</span>\r\n</strong></h2>\r\nYes, we do pain management and hypnotherapy work using Skype, Zoom and other video platforms. Clients do see excellent results using video and online sessions.\r\n<h2><strong><span style=\"color: #008000;\">Is It Safe To Switch Off Pain Signals?</span></strong></h2>\r\nPain signals are a very important part of our bodies natural health warning system as they tell us when things are wrong.\r\nWhen we start to work together we assess your pain issues and look at the best way forward for you.\r\nSome people are just overly sensitive to pain and this is fine to manage the pain down to a comfortable level.  In some cases, we will only work with you once your pain problem has been investigated by your doctor or other healthcare professional. We do work with other therapists and healthcare professionals to find the best way forward for each client.\r\nIt is wise to find out what can be causing pain and then decide how to proceed from there.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis Help With Pain Management?\r\n</span></strong></h2>\r\n&nbsp;','Pain Management & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 22:16:24','2018-08-17 22:16:24','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1279,1,'2018-08-17 22:22:10','2018-08-17 22:22:10','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Hypnosis Pain Management Program</span>\r\nQuestions and Answers</strong></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Long Does The Hypnosis Pain Management Program Take?</span></strong></h2>\r\nWe usually start with a program of 3 sessions over a period of 5 weeks.\r\nFor most people, this works really well with good results happening during the first session.\r\nWe do tailor the program to each client as each person\'s pain symptoms can be very different. We can assess this in more detail during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your free consultation</a>.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>What Happens During The Hypnosis Pain Management Program?</strong></span></h2>\r\nFirstly we assess how high your pain levels are and explore the different types of pain you experience over time. We then teach you the powerful pain management techniques and show you how to reduce your pain, step by step.\r\nOver time we assess which self-help pain techniques work the best for you and work to make them more effective.\r\nWe do use hypnosis and self-hypnosis techniques along with NLP and EFT for best results to take control and manage your pain levels.\r\n<h2><strong><span style=\"color: #008000;\">Will These Pain Management Techniques Work For Chronic Pain?</span></strong></h2>\r\nYes, the hypnosis pain management program will work on all types of pain including back pain, chronic pain, migraine, stress pain and other types of pain.\r\n<h2><strong><span style=\"color: #008000;\">Where Do You Conduct The Pain Management Sessions?</span></strong></h2>\r\nNewcastle Hypnotherapy work from multiple therapy locations in the North East. Our main locations are The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval. We also work from Cramlington and Bedlington in Northumberland. We are flexible and can usually find a suitable location for you.\r\n<h2><strong><span style=\"color: #008000;\">Can You Help With Pain Management Online?</span>\r\n</strong></h2>\r\nYes, we do pain management and hypnotherapy work using Skype, Zoom and other video platforms. Clients do see excellent results using video and online sessions.\r\n<h2><strong><span style=\"color: #008000;\">Is It Safe To Switch Off Pain Signals?</span></strong></h2>\r\nPain signals are a very important part of our bodies natural health warning system as they tell us when things are wrong.\r\nWhen we start to work together we assess your pain issues and look at the best way forward for you.\r\nSome people are just overly sensitive to pain and this is fine to manage the pain down to a comfortable level.  In some cases, we will only work with you once your pain problem has been investigated by your doctor or other healthcare professional. We do work with other therapists and healthcare professionals to find the best way forward for each client.\r\nIt is wise to find out what can be causing pain and then decide how to proceed from there.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis Help With Pain Management?\r\n</span></strong></h2>\r\nCertainly, Self-Hypnosis is a very powerful set of tools that can quickly control pain, emotions, feelings and mental states. We do teach self-hypnosis techniques through private sessions and group workshops as it can be very helpful with pain issues and many other problems.\r\nNewcastle Hypnotherapy run a regular <strong><a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #008000;\">Wednesday Workshops and Events</span></a> </strong>in Newcastle where we teach <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis skills</a></strong></span> along with many other self improvement subjects.','Pain Management & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 22:22:10','2018-08-17 22:22:10','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1280,1,'2018-08-17 22:34:02','2018-08-17 22:34:02','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Hypnosis Pain Management Program</span>\r\nQuestions and Answers</strong></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Long Does The Hypnosis Pain Management Program Take?</span></strong></h2>\r\nWe usually start with a program of 3 sessions over a period of 5 weeks.\r\nFor most people, this works really well with good results happening during the first session.\r\nWe do tailor the program to each client as each person\'s pain symptoms can be very different. We can assess this in more detail during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your free consultation</a>.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>What Happens During The Hypnosis Pain Management Program?</strong></span></h2>\r\nFirstly we assess how high your pain levels are and explore the different types of pain you experience over time. We then teach you the powerful pain management techniques and show you how to reduce your pain, step by step.\r\nOver time we assess which self-help pain techniques work the best for you and work to make them more effective.\r\nWe do use hypnosis and self-hypnosis techniques along with NLP and EFT for best results to take control and manage your pain levels.\r\n<h2><strong><span style=\"color: #008000;\">Will These Pain Management Techniques Work For Chronic Pain?</span></strong></h2>\r\nYes, the hypnosis pain management program will work on all types of pain including back pain, chronic pain, migraine, stress pain and other types of pain.\r\n<h2><strong><span style=\"color: #008000;\">Where Do You Conduct The Pain Management Sessions?</span></strong></h2>\r\nNewcastle Hypnotherapy work from multiple therapy locations in the North East. Our main locations are The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval. We also work from Cramlington and Bedlington in Northumberland. We are flexible and can usually find a suitable location for you.\r\n<h2><strong><span style=\"color: #008000;\">Can You Help With Pain Management Online?</span>\r\n</strong></h2>\r\nYes, we do pain management and hypnotherapy work using Skype, Zoom and other video platforms. Clients do see excellent results using video and online sessions.\r\n<h2><strong><span style=\"color: #008000;\">Is It Safe To Switch Off Pain Signals?</span></strong></h2>\r\nPain signals are a very important part of our bodies natural health warning system as they tell us when things are wrong.\r\nWhen we start to work together we assess your pain issues and look at the best way forward for you.\r\nSome people are just overly sensitive to pain and this is fine to manage the pain down to a comfortable level.  In some cases, we will only work with you once your pain problem has been investigated by your doctor or other healthcare professional. We do work with other therapists and healthcare professionals to find the best way forward for each client.\r\nIt is wise to find out what can be causing pain and then decide how to proceed from there.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis Help With Pain Management?\r\n</span></strong></h2>\r\nCertainly, Self-Hypnosis is a very powerful set of tools that can quickly control pain, emotions, feelings and mental states. We do teach self-hypnosis techniques through private sessions and group workshops as it can be very helpful with pain issues and many other problems.\r\nNewcastle Hypnotherapy runs a regular <strong><a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #008000;\">Wednesday Workshops and Events</span></a> </strong>in Newcastle where we teach <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong></span> along with many other self-improvement subjects.\r\n<h2><span style=\"color: #008000;\">Why Is Pain Medication Not Effective For Many People?</span></h2>\r\nEvery person is different, with a different health history and a different diet. Some pain medications can be beneficial for one person and not effective again pain for others.\r\nMany of our clients approach us as a last resort after finding pain medication has not helped them or that the side effect of medications is causing problems.\r\nSometimes pain can be caused by emotional issues as well as physical issues. Hypnosis can be very effective for pain relief along with many other health problems.','Pain Management & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 22:34:02','2018-08-17 22:34:02','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1281,1,'2018-08-17 22:48:19','2018-08-17 22:48:19','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Hypnosis Pain Management Program</span>\r\nQuestions and Answers</strong></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Long Does The Hypnosis Pain Management Program Take?</span></strong></h2>\r\nWe usually start with a program of 3 sessions over a period of 5 weeks.\r\nFor most people, this works really well with good results happening during the first session.\r\nWe do tailor the program to each client as each person\'s pain symptoms can be very different. We can assess this in more detail during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your free consultation</a>.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>What Happens During The Hypnosis Pain Management Program?</strong></span></h2>\r\nFirstly we assess how high your pain levels are and explore the different types of pain you experience over time. We then teach you the powerful pain management techniques and show you how to reduce your pain, step by step.\r\nOver time we assess which self-help pain techniques work the best for you and work to make them more effective.\r\nWe do use hypnosis and self-hypnosis techniques along with NLP and EFT for best results to take control and manage your pain levels.\r\n<h2><strong><span style=\"color: #008000;\">Will These Pain Management Techniques Work For Chronic Pain?</span></strong></h2>\r\nYes, the hypnosis pain management program will work on all types of pain including back pain, chronic pain, migraine, stress pain and other types of pain.\r\n<h2><strong><span style=\"color: #008000;\">Where Do You Conduct The Pain Management Sessions?</span></strong></h2>\r\nNewcastle Hypnotherapy work from multiple therapy locations in the North East. Our main locations are The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval. We also work from Cramlington and Bedlington in Northumberland. We are flexible and can usually find a suitable location for you.\r\n<h2><strong><span style=\"color: #008000;\">Can You Help With Pain Management Online?</span>\r\n</strong></h2>\r\nYes, we do pain management and hypnotherapy work using Skype, Zoom and other video platforms. Clients do see excellent results using video and online sessions.\r\n<h2><strong><span style=\"color: #008000;\">Is It Safe To Switch Off Pain Signals?</span></strong></h2>\r\nPain signals are a very important part of our bodies natural health warning system as they tell us when things are wrong.\r\nWhen we start to work together we assess your pain issues and look at the best way forward for you.\r\nSome people are just overly sensitive to pain and this is fine to manage the pain down to a comfortable level.  In some cases, we will only work with you once your pain problem has been investigated by your doctor or other healthcare professional. We do work with other therapists and healthcare professionals to find the best way forward for each client.\r\nIt is wise to find out what can be causing pain and then decide how to proceed from there.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis Help With Pain Management?\r\n</span></strong></h2>\r\nCertainly, Self-Hypnosis is a very powerful set of tools that can quickly control pain, emotions, feelings and mental states. We do teach self-hypnosis techniques through private sessions and group workshops as it can be very helpful with pain issues and many other problems.\r\nNewcastle Hypnotherapy runs a regular <strong><a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #008000;\">Wednesday Workshops and Events</span></a> </strong>in Newcastle where we teach <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong></span> along with many other self-improvement subjects.\r\n<h2><span style=\"color: #008000;\">Why Is Pain Medication Not Effective For Many People?</span></h2>\r\nEvery person is different, with a different health history and a different diet. Some pain medications can be beneficial for one person and not effective again pain for others.\r\nMany of our clients approach us as a last resort after finding pain medication has not helped them or that the side effect of medications is causing problems.\r\nSometimes pain can be caused by emotional issues as well as physical issues. Hypnosis can be very effective for pain relief along with many other health problems.\r\n<h2><strong><span style=\"color: #008000;\">Will The NHS Help With Hypnotherapy Pain Management?</span></strong></h2>\r\nSadly hypnotherapy is not available on the NHS. Our clients do arrange their hypnotherapy for pain management for themselves. We do believe hypnotherapy should be provided by the NHS as the benefits are very effective for our clients.\r\n<h2><strong><span style=\"color: #008000;\">Can Hypnotherapy Help With Surgery Pain?</span></strong></h2>\r\nYes. Learning pain management techniques can make surgery much more comfortable and also reduce the stress and anxiety out of medical procedures, dental appointments and giving birth.\r\n\r\n&nbsp;','Pain Management & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 22:48:19','2018-08-17 22:48:19','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1282,1,'2018-08-17 23:04:02','2018-08-17 23:04:02','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Hypnosis Pain Management Program</span>\r\nQuestions and Answers</strong></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Long Does The Hypnosis Pain Management Program Take?</span></strong></h2>\r\nWe usually start with a program of 3 sessions over a period of 5 weeks.\r\nFor most people, this works really well with good results happening during the first session.\r\nWe do tailor the program to each client as each person\'s pain symptoms can be very different. We can assess this in more detail during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your free consultation</a>.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>What Happens During The Hypnosis Pain Management Program?</strong></span></h2>\r\nFirstly we assess how high your pain levels are and explore the different types of pain you experience over time. We then teach you the powerful pain management techniques and show you how to reduce your pain, step by step.\r\nOver time we assess which self-help pain techniques work the best for you and work to make them more effective.\r\nWe do use hypnosis and self-hypnosis techniques along with NLP and EFT for best results to take control and manage your pain levels.\r\n<h2><strong><span style=\"color: #008000;\">Will These Pain Management Techniques Work For Chronic Pain?</span></strong></h2>\r\nYes, the hypnosis pain management program will work on all types of pain including back pain, chronic pain, migraine, stress pain and other types of pain.\r\n<h2><strong><span style=\"color: #008000;\">Where Do You Conduct The Pain Management Sessions?</span></strong></h2>\r\nNewcastle Hypnotherapy work from multiple therapy locations in the North East. Our main locations are The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval. We also work from Cramlington and Bedlington in Northumberland. We are flexible and can usually find a suitable location for you.\r\n<h2><strong><span style=\"color: #008000;\">Can You Help With Pain Management Online?</span>\r\n</strong></h2>\r\nYes, we do pain management and hypnotherapy work using Skype, Zoom and other video platforms. Clients do see excellent results using video and online sessions.\r\n<h2><strong><span style=\"color: #008000;\">Is It Safe To Switch Off Pain Signals?</span></strong></h2>\r\nPain signals are a very important part of our bodies natural health warning system as they tell us when things are wrong.\r\nWhen we start to work together we assess your pain issues and look at the best way forward for you.\r\nSome people are just overly sensitive to pain and this is fine to manage the pain down to a comfortable level.  In some cases, we will only work with you once your pain problem has been investigated by your doctor or other healthcare professional. We do work with other therapists and healthcare professionals to find the best way forward for each client.\r\nIt is wise to find out what can be causing pain and then decide how to proceed from there.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis Help With Pain Management?\r\n</span></strong></h2>\r\nCertainly, Self-Hypnosis is a very powerful set of tools that can quickly control pain, emotions, feelings and mental states. We do teach self-hypnosis techniques through private sessions and group workshops as it can be very helpful with pain issues and many other problems.\r\nNewcastle Hypnotherapy runs a regular <strong><a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #008000;\">Wednesday Workshops and Events</span></a> </strong>in Newcastle where we teach <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong></span> along with many other self-improvement subjects.\r\n<h2><span style=\"color: #008000;\">Why Is Pain Medication Not Effective For Many People?</span></h2>\r\nEvery person is different, with a different health history and a different diet. Some pain medications can be beneficial for one person and not effective again pain for others.\r\nMany of our clients approach us as a last resort after finding pain medication has not helped them or that the side effect of medications is causing problems.\r\nSometimes pain can be caused by emotional issues as well as physical issues. Hypnosis can be very effective for pain relief along with many other health problems.\r\n<h2><strong><span style=\"color: #008000;\">Will The NHS Help With Hypnotherapy Pain Management?</span></strong></h2>\r\nSadly hypnotherapy is not available on the NHS. Our clients do arrange their hypnotherapy for pain management for themselves. We do believe hypnotherapy should be provided by the NHS as the benefits are very effective for our clients.\r\n<h2><strong><span style=\"color: #008000;\">Can Hypnotherapy Help With Surgery Pain?</span></strong></h2>\r\nYes. Learning pain management techniques can make surgery much more comfortable and also reduce the stress and anxiety out of medical procedures, dental appointments and giving birth.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Pain?</strong></span></h2>\r\nDifferent health professionals use different terms or definitions to describe the pain. As a rough guide:\r\nAcute Pain is often short-term pain such as a sprained ankle.\r\nChronic Pain or Persistent Pain is longterm pain such as back pain or arthritis.\r\nRecurrent or Intermittent Pain comes and goes, such as a toothache.\r\n\r\nPain is a signal from a part of the body to let us know there is a problem, damage or injury.\r\nSometimes pain can be amplified or exaggerated when we are suffering emotional issues, such as anxiety, stress and depression. Over time this can become a habit that is not always related to the cause of pain and sometime there is not a cause of the pain. This is where pain management can be most useful to reset these pain signals or clam them down.','Pain Management & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 23:04:02','2018-08-17 23:04:02','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1283,1,'2018-08-17 23:05:46','2018-08-17 23:05:46','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Hypnosis Pain Management Program</span>\r\nQuestions and Answers</strong></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Long Does The Hypnosis Pain Management Program Take?</span></strong></h2>\r\nWe usually start with a program of 3 sessions over a period of 5 weeks.\r\nFor most people, this works really well with good results happening during the first session.\r\nWe do tailor the program to each client as each person\'s pain symptoms can be very different. We can assess this in more detail during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your free consultation</a>.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>What Happens During The Hypnosis Pain Management Program?</strong></span></h2>\r\nFirstly we assess how high your pain levels are and explore the different types of pain you experience over time. We then teach you the powerful pain management techniques and show you how to reduce your pain, step by step.\r\nOver time we assess which self-help pain techniques work the best for you and work to make them more effective.\r\nWe do use hypnosis and self-hypnosis techniques along with NLP and EFT for best results to take control and manage your pain levels.\r\n<h2><strong><span style=\"color: #008000;\">Will These Pain Management Techniques Work For Chronic Pain?</span></strong></h2>\r\nYes, the hypnosis pain management program will work on all types of pain including back pain, chronic pain, migraine, stress pain and other types of pain.\r\n<h2><strong><span style=\"color: #008000;\">Where Do You Conduct The Pain Management Sessions?</span></strong></h2>\r\nNewcastle Hypnotherapy work from multiple therapy locations in the North East. Our main locations are The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval. We also work from Cramlington and Bedlington in Northumberland. We are flexible and can usually find a suitable location for you.\r\n<h2><strong><span style=\"color: #008000;\">Can You Help With Pain Management Online?</span>\r\n</strong></h2>\r\nYes, we do pain management and hypnotherapy work using Skype, Zoom and other video platforms. Clients do see excellent results using video and online sessions.\r\n<h2><strong><span style=\"color: #008000;\">Is It Safe To Switch Off Pain Signals?</span></strong></h2>\r\nPain signals are a very important part of our bodies natural health warning system as they tell us when things are wrong.\r\nWhen we start to work together we assess your pain issues and look at the best way forward for you.\r\nSome people are just overly sensitive to pain and this is fine to manage the pain down to a comfortable level.  In some cases, we will only work with you once your pain problem has been investigated by your doctor or other healthcare professional. We do work with other therapists and healthcare professionals to find the best way forward for each client.\r\nIt is wise to find out what can be causing pain and then decide how to proceed from there.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis Help With Pain Management?\r\n</span></strong></h2>\r\nCertainly, Self-Hypnosis is a very powerful set of tools that can quickly control pain, emotions, feelings and mental states. We do teach self-hypnosis techniques through private sessions and group workshops as it can be very helpful with pain issues and many other problems.\r\nNewcastle Hypnotherapy runs a regular <strong><a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #008000;\">Wednesday Workshops and Events</span></a> </strong>in Newcastle where we teach <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong></span> along with many other self-improvement subjects.\r\n<h2><span style=\"color: #008000;\">Why Is Pain Medication Not Effective For Many People?</span></h2>\r\nEvery person is different, with a different health history and a different diet. Some pain medications can be beneficial for one person and not effective again pain for others.\r\nMany of our clients approach us as a last resort after finding pain medication has not helped them or that the side effect of medications is causing problems.\r\nSometimes pain can be caused by emotional issues as well as physical issues. Hypnosis can be very effective for pain relief along with many other health problems.\r\n<h2><strong><span style=\"color: #008000;\">Will The NHS Help With Hypnotherapy Pain Management?</span></strong></h2>\r\nSadly hypnotherapy is not available on the NHS. Our clients do arrange their hypnotherapy for pain management for themselves. We do believe hypnotherapy should be provided by the NHS as the benefits are very effective for our clients.\r\n<h2><strong><span style=\"color: #008000;\">Can Hypnotherapy Help With Surgery Pain?</span></strong></h2>\r\nYes. Learning pain management techniques can make surgery much more comfortable and also reduce the stress and anxiety out of medical procedures, dental appointments and giving birth.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Pain?</strong></span></h2>\r\nDifferent health professionals use different terms or definitions to describe the pain. As a rough guide:\r\nAcute Pain is often short-term pain such as a sprained ankle.\r\nChronic Pain or Persistent Pain is longterm pain such as back pain or arthritis.\r\nRecurrent or Intermittent Pain comes and goes, such as a toothache.\r\n\r\nPain is a signal from a part of the body to let us know there is a problem, damage or injury.\r\nSometimes pain can be amplified or exaggerated when we are suffering from emotional issues, such as anxiety, stress and depression. Over time this can become a habit that is not always related to the cause of pain and sometimes there is not a cause of the pain. This is where pain management can be most useful to reset these pain signals or calm them down.','Pain Management & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 23:05:46','2018-08-17 23:05:46','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1284,1,'2018-08-17 23:18:42','2018-08-17 23:18:42','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Hypnosis Pain Management Program</span>\r\nQuestions and Answers</strong></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Long Does The Hypnosis Pain Management Program Take?</span></strong></h2>\r\nWe usually start with a program of 3 sessions over a period of 5 weeks.\r\nFor most people, this works really well with good results happening during the first session.\r\nWe do tailor the program to each client as each person\'s pain symptoms can be very different. We can assess this in more detail during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your free consultation</a>.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>What Happens During The Hypnosis Pain Management Program?</strong></span></h2>\r\nFirstly we assess how high your pain levels are and explore the different types of pain you experience over time. We then teach you the powerful pain management techniques and show you how to reduce your pain, step by step.\r\nOver time we assess which self-help pain techniques work the best for you and work to make them more effective.\r\nWe do use hypnosis and self-hypnosis techniques along with NLP and EFT for best results to take control and manage your pain levels.\r\n<h2><strong><span style=\"color: #008000;\">Will These Pain Management Techniques Work For Chronic Pain?</span></strong></h2>\r\nYes, the hypnosis pain management program will work on all types of pain including back pain, chronic pain, migraine, stress pain and other types of pain.\r\n<h2><strong><span style=\"color: #008000;\">Where Do You Conduct The Pain Management Sessions?</span></strong></h2>\r\nNewcastle Hypnotherapy work from multiple therapy locations in the North East. Our main locations are The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval. We also work from Cramlington and Bedlington in Northumberland. We are flexible and can usually find a suitable location for you.\r\n<h2><strong><span style=\"color: #008000;\">Can You Help With Pain Management Online?</span>\r\n</strong></h2>\r\nYes, we do pain management and hypnotherapy work using Skype, Zoom and other video platforms. Clients do see excellent results using video and online sessions.\r\n<h2><strong><span style=\"color: #008000;\">Is It Safe To Switch Off Pain Signals?</span></strong></h2>\r\nPain signals are a very important part of our bodies natural health warning system as they tell us when things are wrong.\r\nWhen we start to work together we assess your pain issues and look at the best way forward for you.\r\nSome people are just overly sensitive to pain and this is fine to manage the pain down to a comfortable level.  In some cases, we will only work with you once your pain problem has been investigated by your doctor or other healthcare professional. We do work with other therapists and healthcare professionals to find the best way forward for each client.\r\nIt is wise to find out what can be causing pain and then decide how to proceed from there.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis Help With Pain Management?\r\n</span></strong></h2>\r\nCertainly, Self-Hypnosis is a very powerful set of tools that can quickly control pain, emotions, feelings and mental states. We do teach self-hypnosis techniques through private sessions and group workshops as it can be very helpful with pain issues and many other problems.\r\nNewcastle Hypnotherapy runs a regular <strong><a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #008000;\">Wednesday Workshops and Events</span></a> </strong>in Newcastle where we teach <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong></span> along with many other self-improvement subjects.\r\n<h2><span style=\"color: #008000;\">Why Is Pain Medication Not Effective For Many People?</span></h2>\r\nEvery person is different, with a different health history and a different diet. Some pain medications can be beneficial for one person and not effective again pain for others.\r\nMany of our clients approach us as a last resort after finding pain medication has not helped them or that the side effect of medications is causing problems.\r\nSometimes pain can be caused by emotional issues as well as physical issues. Hypnosis can be very effective for pain relief along with many other health problems.\r\n<h2><strong><span style=\"color: #008000;\">Will The NHS Help With Hypnotherapy Pain Management?</span></strong></h2>\r\nSadly hypnotherapy is not available on the NHS. Our clients do arrange their hypnotherapy for pain management for themselves. We do believe hypnotherapy should be provided by the NHS as the benefits are very effective for our clients.\r\n<h2><strong><span style=\"color: #008000;\">Can Hypnotherapy Help With Surgery Pain?</span></strong></h2>\r\nYes. Learning pain management techniques can make surgery much more comfortable and also reduce the stress and anxiety out of medical procedures, dental appointments and giving birth.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Pain?</strong></span></h2>\r\nDifferent health professionals use different terms or definitions to describe the pain. As a rough guide:\r\nAcute Pain is often short-term pain such as a sprained ankle.\r\nChronic Pain or Persistent Pain is longterm pain such as back pain or arthritis.\r\nRecurrent or Intermittent Pain comes and goes, such as a toothache.\r\n\r\nPain is a signal from a part of the body to let us know there is a problem, damage or injury.\r\nSometimes pain can be amplified or exaggerated when we are suffering from emotional issues, such as anxiety, stress and depression. Over time this can become a habit that is not always related to the cause of pain and sometimes there is not a cause of the pain. This is where pain management can be most useful to reset these pain signals or calm them down.\r\n<h2><strong><span style=\"color: #008000;\">Besides Pain Medication, What Else Can Help Pain Problems?</span></strong></h2>\r\nWe use a range of modern techniques to help manage pain including Meditation, Mindfulness, Self-Hypnosis, Hypnosis, Breathing Techniques, Diet, Nutrition, Excercise, Visualisation, Emotional Freedom Technique -EFT and NLP techniques.\r\nPart of the Hypnosis Pain Management Program is to find the right techniques that work well for you.\r\n\r\n&nbsp;','Pain Management & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 23:18:42','2018-08-17 23:18:42','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1287,1,'2018-08-17 23:26:33','2018-08-17 23:26:33','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Hypnosis Pain Management Program</span>\r\nQuestions and Answers</strong></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Long Does The Hypnosis Pain Management Program Take?</span></strong></h2>\r\nWe usually start with a program of 3 sessions over a period of 5 weeks.\r\nFor most people, this works really well with good results happening during the first session.\r\nWe do tailor the program to each client as each person\'s pain symptoms can be very different. We can assess this in more detail during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your free consultation</a>.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>What Happens During The Hypnosis Pain Management Program?</strong></span></h2>\r\nFirstly we assess how high your pain levels are and explore the different types of pain you experience over time. We then teach you the powerful pain management techniques and show you how to reduce your pain, step by step.\r\nOver time we assess which self-help pain techniques work the best for you and work to make them more effective.\r\nWe do use hypnosis and self-hypnosis techniques along with NLP and EFT for best results to take control and manage your pain levels.\r\n<h2><strong><span style=\"color: #008000;\">Will These Pain Management Techniques Work For Chronic Pain?</span></strong></h2>\r\nYes, the hypnosis pain management program will work on all types of pain including back pain, chronic pain, migraine, stress pain and other types of pain.\r\n<h2><strong><span style=\"color: #008000;\">Where Do You Conduct The Pain Management Sessions?</span></strong></h2>\r\nNewcastle Hypnotherapy work from multiple therapy locations in the North East. Our main locations are The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval. We also work from Cramlington and Bedlington in Northumberland. We are flexible and can usually find a suitable location for you.\r\n<h2><strong><span style=\"color: #008000;\">Can You Help With Pain Management Online?</span>\r\n</strong></h2>\r\nYes, we do pain management and hypnotherapy work using Skype, Zoom and other video platforms. Clients do see excellent results using video and online sessions.\r\n<h2><strong><span style=\"color: #008000;\">Is It Safe To Switch Off Pain Signals?</span></strong></h2>\r\nPain signals are a very important part of our bodies natural health warning system as they tell us when things are wrong.\r\nWhen we start to work together we assess your pain issues and look at the best way forward for you.\r\nSome people are just overly sensitive to pain and this is fine to manage the pain down to a comfortable level.  In some cases, we will only work with you once your pain problem has been investigated by your doctor or other healthcare professional. We do work with other therapists and healthcare professionals to find the best way forward for each client.\r\nIt is wise to find out what can be causing pain and then decide how to proceed from there.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis Help With Pain Management?\r\n</span></strong></h2>\r\nCertainly, Self-Hypnosis is a very powerful set of tools that can quickly control pain, emotions, feelings and mental states. We do teach self-hypnosis techniques through private sessions and group workshops as it can be very helpful with pain issues and many other problems.\r\nNewcastle Hypnotherapy runs a regular <strong><a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #008000;\">Wednesday Workshops and Events</span></a> </strong>in Newcastle where we teach <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong></span> along with many other self-improvement subjects.\r\n<h2><span style=\"color: #008000;\">Why Is Pain Medication Not Effective For Many People?</span></h2>\r\nEvery person is different, with a different health history and a different diet. Some pain medications can be beneficial for one person and not effective again pain for others.\r\nMany of our clients approach us as a last resort after finding pain medication has not helped them or that the side effect of medications is causing problems.\r\nSometimes pain can be caused by emotional issues as well as physical issues. Hypnosis can be very effective for pain relief along with many other health problems.\r\n<h2><strong><span style=\"color: #008000;\">Will The NHS Help With Hypnotherapy Pain Management?</span></strong></h2>\r\nSadly hypnotherapy is not available on the NHS. Our clients do arrange their hypnotherapy for pain management for themselves. We do believe hypnotherapy should be provided by the NHS as the benefits are very effective for our clients.\r\n<h2><strong><span style=\"color: #008000;\">Can Hypnotherapy Help With Surgery Pain?</span></strong></h2>\r\nYes. Learning pain management techniques can make surgery much more comfortable and also reduce the stress and anxiety out of medical procedures, dental appointments and giving birth.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Pain?</strong></span></h2>\r\nDifferent health professionals use different terms or definitions to describe the pain. As a rough guide:\r\nAcute Pain is often short-term pain such as a sprained ankle.\r\nChronic Pain or Persistent Pain is longterm pain such as back pain or arthritis.\r\nRecurrent or Intermittent Pain comes and goes, such as a toothache.\r\n\r\nPain is a signal from a part of the body to let us know there is a problem, damage or injury.\r\nSometimes pain can be amplified or exaggerated when we are suffering from emotional issues, such as anxiety, stress and depression. Over time this can become a habit that is not always related to the cause of pain and sometimes there is not a cause of the pain. This is where pain management can be most useful to reset these pain signals or calm them down.\r\n<h2><strong><span style=\"color: #008000;\">Besides Pain Medication, What Else Can Help Pain Problems?</span></strong></h2>\r\nWe use a range of modern techniques to help manage pain including Meditation, Mindfulness, Self-Hypnosis, Hypnosis, Breathing Techniques, Diet, Nutrition, Excercise, Visualisation, Emotional Freedom Technique -EFT and NLP techniques.\r\nPart of the Hypnosis Pain Management Program is to find the right techniques that work well for you.\r\n<h2><span style=\"color: #008000;\"><strong>How Should We Move Forward?</strong></span></h2>\r\nWhen you are ready to take control of your pain you can call us on 07568 455 809 for your free consultation or complete the form below.\r\n[wpforms id=\"35\"]\r\n\r\nNewcastle Hypnotherapy is a member of <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n&nbsp;\r\n\r\n&nbsp;','Pain Management & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 23:26:33','2018-08-17 23:26:33','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1286,1,'2018-08-17 23:25:59','2018-08-17 23:25:59','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Hypnosis Pain Management Program</span>\r\nQuestions and Answers</strong></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Long Does The Hypnosis Pain Management Program Take?</span></strong></h2>\r\nWe usually start with a program of 3 sessions over a period of 5 weeks.\r\nFor most people, this works really well with good results happening during the first session.\r\nWe do tailor the program to each client as each person\'s pain symptoms can be very different. We can assess this in more detail during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your free consultation</a>.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>What Happens During The Hypnosis Pain Management Program?</strong></span></h2>\r\nFirstly we assess how high your pain levels are and explore the different types of pain you experience over time. We then teach you the powerful pain management techniques and show you how to reduce your pain, step by step.\r\nOver time we assess which self-help pain techniques work the best for you and work to make them more effective.\r\nWe do use hypnosis and self-hypnosis techniques along with NLP and EFT for best results to take control and manage your pain levels.\r\n<h2><strong><span style=\"color: #008000;\">Will These Pain Management Techniques Work For Chronic Pain?</span></strong></h2>\r\nYes, the hypnosis pain management program will work on all types of pain including back pain, chronic pain, migraine, stress pain and other types of pain.\r\n<h2><strong><span style=\"color: #008000;\">Where Do You Conduct The Pain Management Sessions?</span></strong></h2>\r\nNewcastle Hypnotherapy work from multiple therapy locations in the North East. Our main locations are The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval. We also work from Cramlington and Bedlington in Northumberland. We are flexible and can usually find a suitable location for you.\r\n<h2><strong><span style=\"color: #008000;\">Can You Help With Pain Management Online?</span>\r\n</strong></h2>\r\nYes, we do pain management and hypnotherapy work using Skype, Zoom and other video platforms. Clients do see excellent results using video and online sessions.\r\n<h2><strong><span style=\"color: #008000;\">Is It Safe To Switch Off Pain Signals?</span></strong></h2>\r\nPain signals are a very important part of our bodies natural health warning system as they tell us when things are wrong.\r\nWhen we start to work together we assess your pain issues and look at the best way forward for you.\r\nSome people are just overly sensitive to pain and this is fine to manage the pain down to a comfortable level.  In some cases, we will only work with you once your pain problem has been investigated by your doctor or other healthcare professional. We do work with other therapists and healthcare professionals to find the best way forward for each client.\r\nIt is wise to find out what can be causing pain and then decide how to proceed from there.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis Help With Pain Management?\r\n</span></strong></h2>\r\nCertainly, Self-Hypnosis is a very powerful set of tools that can quickly control pain, emotions, feelings and mental states. We do teach self-hypnosis techniques through private sessions and group workshops as it can be very helpful with pain issues and many other problems.\r\nNewcastle Hypnotherapy runs a regular <strong><a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #008000;\">Wednesday Workshops and Events</span></a> </strong>in Newcastle where we teach <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong></span> along with many other self-improvement subjects.\r\n<h2><span style=\"color: #008000;\">Why Is Pain Medication Not Effective For Many People?</span></h2>\r\nEvery person is different, with a different health history and a different diet. Some pain medications can be beneficial for one person and not effective again pain for others.\r\nMany of our clients approach us as a last resort after finding pain medication has not helped them or that the side effect of medications is causing problems.\r\nSometimes pain can be caused by emotional issues as well as physical issues. Hypnosis can be very effective for pain relief along with many other health problems.\r\n<h2><strong><span style=\"color: #008000;\">Will The NHS Help With Hypnotherapy Pain Management?</span></strong></h2>\r\nSadly hypnotherapy is not available on the NHS. Our clients do arrange their hypnotherapy for pain management for themselves. We do believe hypnotherapy should be provided by the NHS as the benefits are very effective for our clients.\r\n<h2><strong><span style=\"color: #008000;\">Can Hypnotherapy Help With Surgery Pain?</span></strong></h2>\r\nYes. Learning pain management techniques can make surgery much more comfortable and also reduce the stress and anxiety out of medical procedures, dental appointments and giving birth.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Pain?</strong></span></h2>\r\nDifferent health professionals use different terms or definitions to describe the pain. As a rough guide:\r\nAcute Pain is often short-term pain such as a sprained ankle.\r\nChronic Pain or Persistent Pain is longterm pain such as back pain or arthritis.\r\nRecurrent or Intermittent Pain comes and goes, such as a toothache.\r\n\r\nPain is a signal from a part of the body to let us know there is a problem, damage or injury.\r\nSometimes pain can be amplified or exaggerated when we are suffering from emotional issues, such as anxiety, stress and depression. Over time this can become a habit that is not always related to the cause of pain and sometimes there is not a cause of the pain. This is where pain management can be most useful to reset these pain signals or calm them down.\r\n<h2><strong><span style=\"color: #008000;\">Besides Pain Medication, What Else Can Help Pain Problems?</span></strong></h2>\r\nWe use a range of modern techniques to help manage pain including Meditation, Mindfulness, Self-Hypnosis, Hypnosis, Breathing Techniques, Diet, Nutrition, Excercise, Visualisation, Emotional Freedom Technique -EFT and NLP techniques.\r\nPart of the Hypnosis Pain Management Program is to find the right techniques that work well for you.\r\n<h2><span style=\"color: #008000;\"><strong>How Should We Move Forward?</strong></span></h2>\r\nWhen you are ready to take control of your pain you can call us on 07568 455 809 for your free consultation or complete the form below.\r\n[wpforms id=\"35\"]\r\n\r\nNewcastle Hypnotherapy is a member of <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>You can find Newcastle Hypnotherapy on Social Media sites <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook   </strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div></div>\r\n&nbsp;\r\n\r\n&nbsp;','Pain Management & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 23:25:59','2018-08-17 23:25:59','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1285,1,'2018-08-17 23:23:57','2018-08-17 23:23:57','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Hypnosis Pain Management Program</span>\r\nQuestions and Answers</strong></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Long Does The Hypnosis Pain Management Program Take?</span></strong></h2>\r\nWe usually start with a program of 3 sessions over a period of 5 weeks.\r\nFor most people, this works really well with good results happening during the first session.\r\nWe do tailor the program to each client as each person\'s pain symptoms can be very different. We can assess this in more detail during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your free consultation</a>.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>What Happens During The Hypnosis Pain Management Program?</strong></span></h2>\r\nFirstly we assess how high your pain levels are and explore the different types of pain you experience over time. We then teach you the powerful pain management techniques and show you how to reduce your pain, step by step.\r\nOver time we assess which self-help pain techniques work the best for you and work to make them more effective.\r\nWe do use hypnosis and self-hypnosis techniques along with NLP and EFT for best results to take control and manage your pain levels.\r\n<h2><strong><span style=\"color: #008000;\">Will These Pain Management Techniques Work For Chronic Pain?</span></strong></h2>\r\nYes, the hypnosis pain management program will work on all types of pain including back pain, chronic pain, migraine, stress pain and other types of pain.\r\n<h2><strong><span style=\"color: #008000;\">Where Do You Conduct The Pain Management Sessions?</span></strong></h2>\r\nNewcastle Hypnotherapy work from multiple therapy locations in the North East. Our main locations are The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval. We also work from Cramlington and Bedlington in Northumberland. We are flexible and can usually find a suitable location for you.\r\n<h2><strong><span style=\"color: #008000;\">Can You Help With Pain Management Online?</span>\r\n</strong></h2>\r\nYes, we do pain management and hypnotherapy work using Skype, Zoom and other video platforms. Clients do see excellent results using video and online sessions.\r\n<h2><strong><span style=\"color: #008000;\">Is It Safe To Switch Off Pain Signals?</span></strong></h2>\r\nPain signals are a very important part of our bodies natural health warning system as they tell us when things are wrong.\r\nWhen we start to work together we assess your pain issues and look at the best way forward for you.\r\nSome people are just overly sensitive to pain and this is fine to manage the pain down to a comfortable level.  In some cases, we will only work with you once your pain problem has been investigated by your doctor or other healthcare professional. We do work with other therapists and healthcare professionals to find the best way forward for each client.\r\nIt is wise to find out what can be causing pain and then decide how to proceed from there.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis Help With Pain Management?\r\n</span></strong></h2>\r\nCertainly, Self-Hypnosis is a very powerful set of tools that can quickly control pain, emotions, feelings and mental states. We do teach self-hypnosis techniques through private sessions and group workshops as it can be very helpful with pain issues and many other problems.\r\nNewcastle Hypnotherapy runs a regular <strong><a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #008000;\">Wednesday Workshops and Events</span></a> </strong>in Newcastle where we teach <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong></span> along with many other self-improvement subjects.\r\n<h2><span style=\"color: #008000;\">Why Is Pain Medication Not Effective For Many People?</span></h2>\r\nEvery person is different, with a different health history and a different diet. Some pain medications can be beneficial for one person and not effective again pain for others.\r\nMany of our clients approach us as a last resort after finding pain medication has not helped them or that the side effect of medications is causing problems.\r\nSometimes pain can be caused by emotional issues as well as physical issues. Hypnosis can be very effective for pain relief along with many other health problems.\r\n<h2><strong><span style=\"color: #008000;\">Will The NHS Help With Hypnotherapy Pain Management?</span></strong></h2>\r\nSadly hypnotherapy is not available on the NHS. Our clients do arrange their hypnotherapy for pain management for themselves. We do believe hypnotherapy should be provided by the NHS as the benefits are very effective for our clients.\r\n<h2><strong><span style=\"color: #008000;\">Can Hypnotherapy Help With Surgery Pain?</span></strong></h2>\r\nYes. Learning pain management techniques can make surgery much more comfortable and also reduce the stress and anxiety out of medical procedures, dental appointments and giving birth.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Pain?</strong></span></h2>\r\nDifferent health professionals use different terms or definitions to describe the pain. As a rough guide:\r\nAcute Pain is often short-term pain such as a sprained ankle.\r\nChronic Pain or Persistent Pain is longterm pain such as back pain or arthritis.\r\nRecurrent or Intermittent Pain comes and goes, such as a toothache.\r\n\r\nPain is a signal from a part of the body to let us know there is a problem, damage or injury.\r\nSometimes pain can be amplified or exaggerated when we are suffering from emotional issues, such as anxiety, stress and depression. Over time this can become a habit that is not always related to the cause of pain and sometimes there is not a cause of the pain. This is where pain management can be most useful to reset these pain signals or calm them down.\r\n<h2><strong><span style=\"color: #008000;\">Besides Pain Medication, What Else Can Help Pain Problems?</span></strong></h2>\r\nWe use a range of modern techniques to help manage pain including Meditation, Mindfulness, Self-Hypnosis, Hypnosis, Breathing Techniques, Diet, Nutrition, Excercise, Visualisation, Emotional Freedom Technique -EFT and NLP techniques.\r\nPart of the Hypnosis Pain Management Program is to find the right techniques that work well for you.\r\n<h2><span style=\"color: #008000;\"><strong>How Should We Move Forward?</strong></span></h2>\r\nWhen you are ready to take control of your pain you can call us on 07568 455 809 for your free consultation or complete the form below.\r\n[wpforms id=\"35\"]\r\n\r\nNewcastle Hypnotherapy is a member of <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on Social Media - <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div></div>\r\n&nbsp;\r\n\r\n&nbsp;','Pain Management & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 23:23:57','2018-08-17 23:23:57','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1288,1,'2018-08-17 23:29:07','2018-08-17 23:29:07','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Hypnosis Pain Management Program</span>\r\nQuestions and Answers</strong></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Long Does The Hypnosis Pain Management Program Take?</span></strong></h2>\r\nWe usually start with a program of 3 sessions over a period of 5 weeks.\r\nFor most people, this works really well with good results happening during the first session.\r\nWe do tailor the program to each client as each person\'s pain symptoms can be very different. We can assess this in more detail during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your free consultation</a>.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>What Happens During The Hypnosis Pain Management Program?</strong></span></h2>\r\nFirstly we assess how high your pain levels are and explore the different types of pain you experience over time. We then teach you the powerful pain management techniques and show you how to reduce your pain, step by step.\r\nOver time we assess which self-help pain techniques work the best for you and work to make them more effective.\r\nWe do use hypnosis and self-hypnosis techniques along with NLP and EFT for best results to take control and manage your pain levels.\r\n<h2><strong><span style=\"color: #008000;\">Will These Pain Management Techniques Work For Chronic Pain?</span></strong></h2>\r\nYes, the hypnosis pain management program will work on all types of pain including back pain, chronic pain, migraine, stress pain and other types of pain.\r\n<h2><strong><span style=\"color: #008000;\">Where Do You Conduct The Pain Management Sessions?</span></strong></h2>\r\nNewcastle Hypnotherapy work from multiple therapy locations in the North East. Our main locations are The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval. We also work from Cramlington and Bedlington in Northumberland. We are flexible and can usually find a suitable location for you.\r\n<h2><strong><span style=\"color: #008000;\">Can You Help With Pain Management Online?</span>\r\n</strong></h2>\r\nYes, we do pain management and hypnotherapy work using Skype, Zoom and other video platforms. Clients do see excellent results using video and online sessions.\r\n<h2><strong><span style=\"color: #008000;\">Is It Safe To Switch Off Pain Signals?</span></strong></h2>\r\nPain signals are a very important part of our bodies natural health warning system as they tell us when things are wrong.\r\nWhen we start to work together we assess your pain issues and look at the best way forward for you.\r\nSome people are just overly sensitive to pain and this is fine to manage the pain down to a comfortable level.  In some cases, we will only work with you once your pain problem has been investigated by your doctor or other healthcare professional. We do work with other therapists and healthcare professionals to find the best way forward for each client.\r\nIt is wise to find out what can be causing pain and then decide how to proceed from there.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis Help With Pain Management?\r\n</span></strong></h2>\r\nCertainly, Self-Hypnosis is a very powerful set of tools that can quickly control pain, emotions, feelings and mental states. We do teach self-hypnosis techniques through private sessions and group workshops as it can be very helpful with pain issues and many other problems.\r\nNewcastle Hypnotherapy runs a regular <strong><a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #008000;\">Wednesday Workshops and Events</span></a> </strong>in Newcastle where we teach <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong></span> along with many other self-improvement subjects.\r\n<h2><span style=\"color: #008000;\">Why Is Pain Medication Not Effective For Many People?</span></h2>\r\nEvery person is different, with a different health history and a different diet. Some pain medications can be beneficial for one person and not effective again pain for others.\r\nMany of our clients approach us as a last resort after finding pain medication has not helped them or that the side effect of medications is causing problems.\r\nSometimes pain can be caused by emotional issues as well as physical issues. Hypnosis can be very effective for pain relief along with many other health problems.\r\n<h2><strong><span style=\"color: #008000;\">Will The NHS Help With Hypnotherapy Pain Management?</span></strong></h2>\r\nSadly hypnotherapy is not available on the NHS. Our clients do arrange their hypnotherapy for pain management for themselves. We do believe hypnotherapy should be provided by the NHS as the benefits are very effective for our clients.\r\n<h2><strong><span style=\"color: #008000;\">Can Hypnotherapy Help With Surgery Pain?</span></strong></h2>\r\nYes. Learning pain management techniques can make surgery much more comfortable and also reduce the stress and anxiety out of medical procedures, dental appointments and giving birth.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Pain?</strong></span></h2>\r\nDifferent health professionals use different terms or definitions to describe the pain. As a rough guide:\r\nAcute Pain is often short-term pain such as a sprained ankle.\r\nChronic Pain or Persistent Pain is longterm pain such as back pain or arthritis.\r\nRecurrent or Intermittent Pain comes and goes, such as a toothache.\r\n\r\nPain is a signal from a part of the body to let us know there is a problem, damage or injury.\r\nSometimes pain can be amplified or exaggerated when we are suffering from emotional issues, such as anxiety, stress and depression. Over time this can become a habit that is not always related to the cause of pain and sometimes there is not a cause of the pain. This is where pain management can be most useful to reset these pain signals or calm them down.\r\n<h2><strong><span style=\"color: #008000;\">Besides Pain Medication, What Else Can Help Pain Problems?</span></strong></h2>\r\nWe use a range of modern techniques to help manage pain including Meditation, Mindfulness, Self-Hypnosis, Hypnosis, Breathing Techniques, Diet, Nutrition, Excercise, Visualisation, Emotional Freedom Technique -EFT and NLP techniques.\r\nPart of the Hypnosis Pain Management Program is to find the right techniques that work well for you.\r\n<h2><span style=\"color: #008000;\"><strong>How Should We Move Forward?</strong></span></h2>\r\nWhen you are ready to take control of your pain you can call us on 07568 455 809 for your free consultation or complete the form below.\r\n[wpforms id=\"35\"]\r\n\r\nNewcastle Hypnotherapy is a member of <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\nYou can also find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a> and <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n&nbsp;\r\n\r\n&nbsp;','Pain Management & Relief','','inherit','closed','closed','','1252-revision-v1','','','2018-08-17 23:29:07','2018-08-17 23:29:07','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1325,1,'2018-08-28 06:32:38','2018-08-28 06:32:38','<img class=\"alignleft size-medium wp-image-1326\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/38501253_2267421529952455_6461134429694722048_n-300x214.jpg\" alt=\"mind body spirit fair\" width=\"300\" height=\"214\" /><strong>Short Talk &amp; Demonstration @ The Mind, Body, Spirit Fair.</strong>\r\n<strong>Saturday the 1st September @ The Vault, Wallsend. 1.30pm.</strong>\r\n<strong>Free Entry - Newcastle Hypnotherapy.</strong>\r\n<h2><strong><span id=\"cch_fce60cc2fa6f4a\" class=\"_mh6 _wsc\" style=\"color: #008000;\"><span class=\"_3oh- _58nk\">Simple techniques to reduce Pain, Stress &amp; Anxiety</span></span></strong></h2>\r\n&nbsp;\r\n\r\nJoin us for another enjoyable talk and demonstration @The Vault.\r\nI am often asked how Hypnosis, Self-Hypnosis and NLP can help with Pain, Stress &amp; Anxiety?\r\n\r\nModern techniques like Hypnosis can be very effective as they can help you to control these issues.\r\nOnce you learn these modern tools and practice them, you have your own \"control panel in your mind\" allowing you to turn down pain, stress and anxiety on demand.\r\n\r\nDuring this short talk, I will explain how Self-Hypnosis, NLP and other modern techniques can put you back in control and how they quickly can give you great results.\r\n\r\nThis is a free talk &amp; demonstration, starting at 1.30 pm @ The Vault as part of the monthly Mind, Body, Spirit Fair.\r\n\r\nYou will also find 2 floors of stalls, food, gifts and more.\r\n\r\nIf you would like to learn about our other regular events please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. Your details will only be used to send you updates and you can unsubscribe at any time.\r\n\r\nYou can also find out more about our events on our <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/?fb_dtsg_ag=AdxnkwVfFHQJxhUGGUNwtUmnPD1BJkcd8K-7uP5L0aiDuA%3AAdzwYc087wLSKsQ4rRVO0HMt8bXkMKl09341hS5oifBdaQ\">Facebook Page</a></strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Simple techniques to reduce Pain, Stress & Anxiety','','publish','open','open','','simple-techniques-to-reduce-pain-stress-anxiety','','','2018-08-28 06:34:32','2018-08-28 06:34:32','',0,'https://www.newcastle-hypnotherapy.com/?p=1325',0,'post','',0),(1291,1,'2018-08-18 11:23:22','2018-08-18 11:23:22','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.\r\n</strong></span>During this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\n\r\n&nbsp;\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n<h2><em><span style=\"color: #008000;\"><strong>Workshop Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or PayPal.\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/pain-management-workshop-3rd-oct/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2></h2>\r\n<h2></h2>\r\nWant To Learn About The Other Events?\r\n\r\nComplete your details below and join the events newsletter.\r\nWe are GDPR compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nThe Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please <strong>Contact Us</strong> and we can look to schedule that in, if suitable, in the future.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting We do not offer refunds.  Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions and Answers - The Pain Management Workshop.</strong></span></h2>\r\n<h2><strong>Where and when is this Pain Management Workshop?</strong></h2>\r\nThis event is part of the Wednesday Workshop at The Vault Creative Wellbeing Centre, Station Road, Wallsend, Newcastle upon Tyne.\r\nIt is held on the 3rd of October 2018, starting at 7.30pm until 9.30pm. £8.50 per person with booking only in advance.\r\nThis event is organised by Newcastle Hypnotherapy.\r\nOnce you have booked your place, an email will be sent with directions and useful information for the evening.\r\n<h2><strong>Will this help with Chronic Pain?</strong></h2>\r\nThe techniques we will use should help will all sorts of physical and emotional pain.\r\nIf you have a serious pain problem you can gain greater benefit with a private session to focus on your individual needs.\r\nCall Mark on Call 07568 455 809 for more information or we can discuss private sessions and programs at this event.\r\n<h2><strong>How successful is Hypnosis for Pain Management?</strong></h2>\r\nOur clients find Hypnosis and Self-hypnosis very effective with pain management and for all sorts of pain.\r\nDuring this workshop, we will use Self-hypnosis and EFT as successful techniques to control your pain.\r\n<h2><strong>Can I just turn up in the evening to attend?</strong></h2>\r\nAs we have limited spaces we ask everyone to book their place in advance.\r\nThis saves time and effort on the evening to focus on the topic. Therefore, you must book in advance if you wish to attend. If you have any questions that are not answered here, simply <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong></span>\r\n<h2><strong>Do you run private sessions for Pain Management?</strong></h2>\r\nYes we run a dedicated Pain Management Hypnosis Program for those wanting faster results with pain issues.\r\nYou can learn more about the <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-pain-management-program/\"><strong><span style=\"color: #008000;\">Pain Management Hypnosis Program here.</span></strong></a>\r\n<h2><strong>Join the Newcastle Hypnotherapy </strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group Here</strong></a></h2>\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> is a member of </strong><a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\"><strong>UK Guild Of Hypnosis Practitioners</strong></a></h2>\r\n<img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />\r\n\r\nThe Vault Creative Wellness Centre.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe map for Newcastle Hypnotherapy\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>','Pain Management Workshop','','publish','closed','closed','','pain-management-workshop','','','2019-09-13 13:38:20','2019-09-13 13:38:20','',322,'https://www.newcastle-hypnotherapy.com/?page_id=1291',0,'page','',0),(3191,1,'2019-09-13 13:38:20','2019-09-13 13:38:20','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.\r\n</strong></span>During this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\n\r\n&nbsp;\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n<h2><em><span style=\"color: #008000;\"><strong>Workshop Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or PayPal.\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/pain-management-workshop-3rd-oct/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2></h2>\r\n<h2></h2>\r\nWant To Learn About The Other Events?\r\n\r\nComplete your details below and join the events newsletter.\r\nWe are GDPR compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nThe Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please <strong>Contact Us</strong> and we can look to schedule that in, if suitable, in the future.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting We do not offer refunds.  Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions and Answers - The Pain Management Workshop.</strong></span></h2>\r\n<h2><strong>Where and when is this Pain Management Workshop?</strong></h2>\r\nThis event is part of the Wednesday Workshop at The Vault Creative Wellbeing Centre, Station Road, Wallsend, Newcastle upon Tyne.\r\nIt is held on the 3rd of October 2018, starting at 7.30pm until 9.30pm. £8.50 per person with booking only in advance.\r\nThis event is organised by Newcastle Hypnotherapy.\r\nOnce you have booked your place, an email will be sent with directions and useful information for the evening.\r\n<h2><strong>Will this help with Chronic Pain?</strong></h2>\r\nThe techniques we will use should help will all sorts of physical and emotional pain.\r\nIf you have a serious pain problem you can gain greater benefit with a private session to focus on your individual needs.\r\nCall Mark on Call 07568 455 809 for more information or we can discuss private sessions and programs at this event.\r\n<h2><strong>How successful is Hypnosis for Pain Management?</strong></h2>\r\nOur clients find Hypnosis and Self-hypnosis very effective with pain management and for all sorts of pain.\r\nDuring this workshop, we will use Self-hypnosis and EFT as successful techniques to control your pain.\r\n<h2><strong>Can I just turn up in the evening to attend?</strong></h2>\r\nAs we have limited spaces we ask everyone to book their place in advance.\r\nThis saves time and effort on the evening to focus on the topic. Therefore, you must book in advance if you wish to attend. If you have any questions that are not answered here, simply <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong></span>\r\n<h2><strong>Do you run private sessions for Pain Management?</strong></h2>\r\nYes we run a dedicated Pain Management Hypnosis Program for those wanting faster results with pain issues.\r\nYou can learn more about the <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-pain-management-program/\"><strong><span style=\"color: #008000;\">Pain Management Hypnosis Program here.</span></strong></a>\r\n<h2><strong>Join the Newcastle Hypnotherapy </strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group Here</strong></a></h2>\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> is a member of </strong><a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\"><strong>UK Guild Of Hypnosis Practitioners</strong></a></h2>\r\n<img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />\r\n\r\nThe Vault Creative Wellness Centre.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe map for Newcastle Hypnotherapy\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>','Pain Management Workshop','','inherit','closed','closed','','1291-revision-v1','','','2019-09-13 13:38:20','2019-09-13 13:38:20','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1292,1,'2018-08-18 09:36:36','2018-08-18 09:36:36','','pain management workshop','','inherit','open','closed','','freedom-1886402_1280','','','2018-08-18 09:36:56','2018-08-18 09:36:56','',1291,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280.jpg',0,'attachment','image/jpeg',0),(1293,1,'2018-08-18 09:55:52','2018-08-18 09:55:52','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.</strong></span>\r\nDuring this enjoyable workshop you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\nThis will help with both physical pain and emotional pain.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8 per person to cover costs. Spaces are limited and booked on a first come first served basis.\r\n\r\nThe aim of this Pain Management Workshop is to teach you some simple skills to help manage and take control of your pain. Using the power of Self-Hypnosis and Emotion Freedom Technique -EFT, you can start to take control of your pain, emotions and feelings.\r\n\r\n\r\n\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-08-18 09:55:52','2018-08-18 09:55:52','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1294,1,'2018-08-18 09:57:02','2018-08-18 09:57:02','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.</strong></span>\r\nDuring this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\nThis will help with both physical pain and emotional pain.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8 per person to cover costs. Spaces are limited and booked on a first come first served basis.\r\n\r\nThe aim of this Pain Management Workshop is to teach you some powerful skills to help manage and take control of your pain. Using the power of Self-Hypnosis and Emotion Freedom Technique - EFT, you can start to take control of your pain, emotions and feelings.\r\n\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-08-18 09:57:02','2018-08-18 09:57:02','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1295,1,'2018-08-18 09:57:54','2018-08-18 09:57:54','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.</strong></span>\r\nDuring this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\n\r\nThis workshop will help with pain on a  physical and emotional level.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8 per person to cover costs. Spaces are limited and booked on a first come first served basis.\r\n\r\nThe aim of this Pain Management Workshop is to teach you some powerful skills to help manage and take control of your pain. Using the power of Self-Hypnosis and Emotion Freedom Technique - EFT, you can start to take control of your pain, emotions and feelings.\r\n\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-08-18 09:57:54','2018-08-18 09:57:54','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1296,1,'2018-08-18 10:14:37','2018-08-18 10:14:37','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.</strong></span>\r\nDuring this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\nThis workshop will help with pain on a  physical and emotional level.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>&nbsp;','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-08-18 10:14:37','2018-08-18 10:14:37','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1297,1,'2018-08-18 10:29:05','2018-08-18 10:29:05','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.</strong></span>\r\nDuring this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\nThis workshop will help with pain on a  physical and emotional level.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or paypal.\r\nYou can find answers to questions and terms below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>Want To Learn About The Other Events?\r\n\r\nComplete you details below. We are GDPR compliant and will only use your details to send you updates.\r\nYou may unsubscribe at anytime.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n&nbsp;\r\n\r\n&nbsp;','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-08-18 10:29:05','2018-08-18 10:29:05','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1298,1,'2018-08-18 10:30:09','2018-08-18 10:30:09','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.</strong></span>\r\nDuring this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\nThis workshop will help with pain on a  physical and emotional level.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or paypal.\r\nYou can find answers to questions and terms below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\r\n<h2><span style=\"color: #008000;\"><strong>Want To Learn About The Other Events?</strong></span></h2>\r\nComplete you details below and join the events newsletter.\r\nWe are GDPR compliant and will only use your details to send you updates.\r\nYou may unsubscribe at anytime.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n&nbsp;','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-08-18 10:30:09','2018-08-18 10:30:09','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1299,1,'2018-08-18 10:35:04','2018-08-18 10:35:04','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.</strong></span>\r\nDuring this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\nThis workshop will help with pain on a  physical and emotional level.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or PayPal.\r\nYou can find answers to questions and terms below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\r\n<h2><span style=\"color: #008000;\"><strong>Want To Learn About The Other Events?</strong></span></h2>\r\nComplete your details below and join the events newsletter.\r\nWe are GDPR compliant and will only use your details to send you updates.\r\nYou may unsubscribe at anytime.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nThe Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please <strong>Contact Us</strong> and we can look to schedule that in, if suitable, in the future.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting We do not offer refunds.  Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions and Answers - The Pain Management Workshop.</strong></span></h2>\r\n&nbsp;','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-08-18 10:35:04','2018-08-18 10:35:04','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1300,1,'2018-08-18 10:45:12','2018-08-18 10:45:12','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.</strong></span>\r\nDuring this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\nThis workshop will help with pain on a  physical and emotional level.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or PayPal.\r\nYou can find answers to questions and terms below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\r\n<h2><span style=\"color: #008000;\"><strong>Want To Learn About The Other Events?</strong></span></h2>\r\nComplete your details below and join the events newsletter.\r\nWe are GDPR compliant and will only use your details to send you updates.\r\nYou may unsubscribe at anytime.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nThe Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please <strong>Contact Us</strong> and we can look to schedule that in, if suitable, in the future.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting We do not offer refunds.  Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions and Answers - The Pain Management Workshop.</strong></span></h2>\r\n<h2><strong>Where and when is this Pain Management Workshop?</strong></h2>\r\nThis event is part of the Wednesday Workshop at The Vault Creative Wellbeing Centre.\r\nIt is held on the 3rd of October 2018, starting at 7.30pm until 9.30pm.','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-08-18 10:45:12','2018-08-18 10:45:12','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1301,1,'2018-08-18 10:52:03','2018-08-18 10:52:03','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.</strong></span>\r\nDuring this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\nThis workshop will help with pain on a  physical and emotional level.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or PayPal.\r\nYou can find answers to questions and terms below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\r\n<h2><span style=\"color: #008000;\"><strong>Want To Learn About The Other Events?</strong></span></h2>\r\nComplete your details below and join the events newsletter.\r\nWe are GDPR compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nThe Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please <strong>Contact Us</strong> and we can look to schedule that in, if suitable, in the future.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting We do not offer refunds.  Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions and Answers - The Pain Management Workshop.</strong></span></h2>\r\n<h2><strong>Where and when is this Pain Management Workshop?</strong></h2>\r\nThis event is part of the Wednesday Workshop at The Vault Creative Wellbeing Centre, Station Road, Wallsend, Newcastle upon Tyne.\r\nIt is held on the 3rd of October 2018, starting at 7.30pm until 9.30pm. £8.50 per person with booking only in advance.\r\nThis event is organised by Newcastle Hypnotherapy.\r\n<h2><strong>Will this help with Chronic Pain?</strong></h2>\r\nThe techniques we will use should help will all sorts of physical and emotional pain.\r\nIf you have a serious pain problem you gain great benenfit with a private session to focus on your needs.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-08-18 10:52:03','2018-08-18 10:52:03','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1303,1,'2018-08-18 11:05:55','2018-08-18 11:05:55','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.</strong></span>\r\nDuring this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\nThis workshop will help with pain on a  physical and emotional level.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><em><span style=\"color: #008000;\"><strong>Workshop Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or PayPal.\r\nYou can find answers to questions and terms below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\r\n<h2><span style=\"color: #008000;\"><strong>Want To Learn About The Other Events?</strong></span></h2>\r\nComplete your details below and join the events newsletter.\r\nWe are GDPR compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nThe Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please <strong>Contact Us</strong> and we can look to schedule that in, if suitable, in the future.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting We do not offer refunds.  Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions and Answers - The Pain Management Workshop.</strong></span></h2>\r\n<h2><strong>Where and when is this Pain Management Workshop?</strong></h2>\r\nThis event is part of the Wednesday Workshop at The Vault Creative Wellbeing Centre, Station Road, Wallsend, Newcastle upon Tyne.\r\nIt is held on the 3rd of October 2018, starting at 7.30pm until 9.30pm. £8.50 per person with booking only in advance.\r\nThis event is organised by Newcastle Hypnotherapy.\r\n<h2><strong>Will this help with Chronic Pain?</strong></h2>\r\nThe techniques we will use should help will all sorts of physical and emotional pain.\r\nIf you have a serious pain problem you can gain greater benefit with a private session to focus on your individual needs.\r\nCall Mark on Call 07568 455 809 for more information or we can discuss private sessions and programs at this event.\r\n<h2><strong>How successful is Hypnosis for Pain Management?</strong></h2>\r\nOur clients find Hypnosis and Self-hypnosis very effective with pain management and for all sorts of pain.\r\nDuring this workshop, we will use Self-hypnosis and EFT as methods to control your pain.\r\n<h2><strong>Can I just turn up </strong>on<strong> the evening to attend?</strong></h2>\r\nAs we have limited spaces we ask everyone to book their place in advance.\r\nThis saves time and effort and therefore, you must book in advance if you wish to attend. If you have any questions that are not answered here, simply <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-08-18 11:05:55','2018-08-18 11:05:55','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1304,1,'2018-08-18 11:16:59','2018-08-18 11:16:59','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.</strong></span>\r\nDuring this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\nThis workshop will help with pain on a  physical and emotional level.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><em><span style=\"color: #008000;\"><strong>Workshop Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or PayPal.\r\nYou can find answers to questions and terms below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\r\n<h2><span style=\"color: #008000;\"><strong>Want To Learn About The Other Events?</strong></span></h2>\r\nComplete your details below and join the events newsletter.\r\nWe are GDPR compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nThe Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please <strong>Contact Us</strong> and we can look to schedule that in, if suitable, in the future.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting We do not offer refunds.  Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions and Answers - The Pain Management Workshop.</strong></span></h2>\r\n<h2><strong>Where and when is this Pain Management Workshop?</strong></h2>\r\nThis event is part of the Wednesday Workshop at The Vault Creative Wellbeing Centre, Station Road, Wallsend, Newcastle upon Tyne.\r\nIt is held on the 3rd of October 2018, starting at 7.30pm until 9.30pm. £8.50 per person with booking only in advance.\r\nThis event is organised by Newcastle Hypnotherapy.\r\n<h2><strong>Will this help with Chronic Pain?</strong></h2>\r\nThe techniques we will use should help will all sorts of physical and emotional pain.\r\nIf you have a serious pain problem you can gain greater benefit with a private session to focus on your individual needs.\r\nCall Mark on Call 07568 455 809 for more information or we can discuss private sessions and programs at this event.\r\n<h2><strong>How successful is Hypnosis for Pain Management?</strong></h2>\r\nOur clients find Hypnosis and Self-hypnosis very effective with pain management and for all sorts of pain.\r\nDuring this workshop, we will use Self-hypnosis and EFT as successful techniques to control your pain.\r\n<h2><strong>Can I just turn up </strong>on<strong> the evening to attend?</strong></h2>\r\nAs we have limited spaces we ask everyone to book their place in advance.\r\nThis saves time and effort on the evening to focus on the topic. Therefore, you must book in advance if you wish to attend. If you have any questions that are not answered here, simply <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong></span>\r\n<h2><strong>Do you run private sessions for Pain Management?</strong></h2>\r\nYes we run a dedicated Pain Management Hypnosis Program for those wanting faster results with pain issues.\r\nYou can learn more about the <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-pain-management-program/\"><strong><span style=\"color: #008000;\">Pain Management Hypnosis Program here.</span></strong></a>\r\n<h2>\r\n<strong>Join the Newcastle Hypnotherapy </strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group Here</strong></a></h2>\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> is a member of </strong><a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\"><strong>UK Guild Of Hypnosis Practitioners</strong></a></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-08-18 11:16:59','2018-08-18 11:16:59','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1305,1,'2018-08-18 11:18:59','2018-08-18 11:18:59','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.</strong></span>\r\nDuring this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\nThis workshop will help with pain on a  physical and emotional level.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><em><span style=\"color: #008000;\"><strong>Workshop Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or PayPal.\r\nYou can find answers to questions and terms below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\r\n<h2><span style=\"color: #008000;\"><strong>Want To Learn About The Other Events?</strong></span></h2>\r\nComplete your details below and join the events newsletter.\r\nWe are GDPR compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nThe Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please <strong>Contact Us</strong> and we can look to schedule that in, if suitable, in the future.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting We do not offer refunds.  Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions and Answers - The Pain Management Workshop.</strong></span></h2>\r\n<h2><strong>Where and when is this Pain Management Workshop?</strong></h2>\r\nThis event is part of the Wednesday Workshop at The Vault Creative Wellbeing Centre, Station Road, Wallsend, Newcastle upon Tyne.\r\nIt is held on the 3rd of October 2018, starting at 7.30pm until 9.30pm. £8.50 per person with booking only in advance.\r\nThis event is organised by Newcastle Hypnotherapy.\r\n<h2><strong>Will this help with Chronic Pain?</strong></h2>\r\nThe techniques we will use should help will all sorts of physical and emotional pain.\r\nIf you have a serious pain problem you can gain greater benefit with a private session to focus on your individual needs.\r\nCall Mark on Call 07568 455 809 for more information or we can discuss private sessions and programs at this event.\r\n<h2><strong>How successful is Hypnosis for Pain Management?</strong></h2>\r\nOur clients find Hypnosis and Self-hypnosis very effective with pain management and for all sorts of pain.\r\nDuring this workshop, we will use Self-hypnosis and EFT as successful techniques to control your pain.\r\n<h2><strong>Can I just turn up </strong>on<strong> the evening to attend?</strong></h2>\r\nAs we have limited spaces we ask everyone to book their place in advance.\r\nThis saves time and effort on the evening to focus on the topic. Therefore, you must book in advance if you wish to attend. If you have any questions that are not answered here, simply <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong></span>\r\n<h2><strong>Do you run private sessions for Pain Management?</strong></h2>\r\nYes we run a dedicated Pain Management Hypnosis Program for those wanting faster results with pain issues.\r\nYou can learn more about the <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-pain-management-program/\"><strong><span style=\"color: #008000;\">Pain Management Hypnosis Program here.</span></strong></a>\r\n<h2><strong>Join the Newcastle Hypnotherapy </strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group Here</strong></a></h2>\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> is a member of </strong><a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\"><strong>UK Guild Of Hypnosis Practitioners</strong></a></h2>\r\n<img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-08-18 11:18:59','2018-08-18 11:18:59','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1306,1,'2018-08-18 11:19:42','2018-08-18 11:19:42','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.</strong></span>\r\nDuring this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\nThis workshop will help with pain on a  physical and emotional level.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><em><span style=\"color: #008000;\"><strong>Workshop Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or PayPal.\r\nYou can find answers to questions and terms below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\r\n<h2><span style=\"color: #008000;\"><strong>Want To Learn About The Other Events?</strong></span></h2>\r\nComplete your details below and join the events newsletter.\r\nWe are GDPR compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nThe Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please <strong>Contact Us</strong> and we can look to schedule that in, if suitable, in the future.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting We do not offer refunds.  Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions and Answers - The Pain Management Workshop.</strong></span></h2>\r\n<h2><strong>Where and when is this Pain Management Workshop?</strong></h2>\r\nThis event is part of the Wednesday Workshop at The Vault Creative Wellbeing Centre, Station Road, Wallsend, Newcastle upon Tyne.\r\nIt is held on the 3rd of October 2018, starting at 7.30pm until 9.30pm. £8.50 per person with booking only in advance.\r\nThis event is organised by Newcastle Hypnotherapy.\r\n<h2><strong>Will this help with Chronic Pain?</strong></h2>\r\nThe techniques we will use should help will all sorts of physical and emotional pain.\r\nIf you have a serious pain problem you can gain greater benefit with a private session to focus on your individual needs.\r\nCall Mark on Call 07568 455 809 for more information or we can discuss private sessions and programs at this event.\r\n<h2><strong>How successful is Hypnosis for Pain Management?</strong></h2>\r\nOur clients find Hypnosis and Self-hypnosis very effective with pain management and for all sorts of pain.\r\nDuring this workshop, we will use Self-hypnosis and EFT as successful techniques to control your pain.\r\n<h2><strong>Can I just turn up </strong>in<strong> the evening to attend?</strong></h2>\r\nAs we have limited spaces we ask everyone to book their place in advance.\r\nThis saves time and effort on the evening to focus on the topic. Therefore, you must book in advance if you wish to attend. If you have any questions that are not answered here, simply <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong></span>\r\n<h2><strong>Do you run private sessions for Pain Management?</strong></h2>\r\nYes we run a dedicated Pain Management Hypnosis Program for those wanting faster results with pain issues.\r\nYou can learn more about the <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-pain-management-program/\"><strong><span style=\"color: #008000;\">Pain Management Hypnosis Program here.</span></strong></a>\r\n<h2><strong>Join the Newcastle Hypnotherapy </strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group Here</strong></a></h2>\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> is a member of </strong><a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\"><strong>UK Guild Of Hypnosis Practitioners</strong></a></h2>\r\n<img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n&nbsp;\r\n\r\n&nbsp;','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-08-18 11:19:42','2018-08-18 11:19:42','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1307,1,'2018-08-18 11:20:09','2018-08-18 11:20:09','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.</strong></span>\r\nDuring this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\nThis workshop will help with pain on a  physical and emotional level.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><em><span style=\"color: #008000;\"><strong>Workshop Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or PayPal.\r\nYou can find answers to questions and terms below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\r\n<h2><span style=\"color: #008000;\"><strong>Want To Learn About The Other Events?</strong></span></h2>\r\nComplete your details below and join the events newsletter.\r\nWe are GDPR compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nThe Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please <strong>Contact Us</strong> and we can look to schedule that in, if suitable, in the future.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting We do not offer refunds.  Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions and Answers - The Pain Management Workshop.</strong></span></h2>\r\n<h2><strong>Where and when is this Pain Management Workshop?</strong></h2>\r\nThis event is part of the Wednesday Workshop at The Vault Creative Wellbeing Centre, Station Road, Wallsend, Newcastle upon Tyne.\r\nIt is held on the 3rd of October 2018, starting at 7.30pm until 9.30pm. £8.50 per person with booking only in advance.\r\nThis event is organised by Newcastle Hypnotherapy.\r\n<h2><strong>Will this help with Chronic Pain?</strong></h2>\r\nThe techniques we will use should help will all sorts of physical and emotional pain.\r\nIf you have a serious pain problem you can gain greater benefit with a private session to focus on your individual needs.\r\nCall Mark on Call 07568 455 809 for more information or we can discuss private sessions and programs at this event.\r\n<h2><strong>How successful is Hypnosis for Pain Management?</strong></h2>\r\nOur clients find Hypnosis and Self-hypnosis very effective with pain management and for all sorts of pain.\r\nDuring this workshop, we will use Self-hypnosis and EFT as successful techniques to control your pain.\r\n<h2><strong>Can I just turn up in the evening to attend?</strong></h2>\r\nAs we have limited spaces we ask everyone to book their place in advance.\r\nThis saves time and effort on the evening to focus on the topic. Therefore, you must book in advance if you wish to attend. If you have any questions that are not answered here, simply <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong></span>\r\n<h2><strong>Do you run private sessions for Pain Management?</strong></h2>\r\nYes we run a dedicated Pain Management Hypnosis Program for those wanting faster results with pain issues.\r\nYou can learn more about the <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-pain-management-program/\"><strong><span style=\"color: #008000;\">Pain Management Hypnosis Program here.</span></strong></a>\r\n<h2><strong>Join the Newcastle Hypnotherapy </strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group Here</strong></a></h2>\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> is a member of </strong><a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\"><strong>UK Guild Of Hypnosis Practitioners</strong></a></h2>\r\n<img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n&nbsp;','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-08-18 11:20:09','2018-08-18 11:20:09','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1308,1,'2018-08-18 11:21:54','2018-08-18 11:21:54','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.</strong></span>\r\nDuring this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\nThis workshop will help with pain on a  physical and emotional level.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><em><span style=\"color: #008000;\"><strong>Workshop Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or PayPal.\r\nYou can find answers to questions and terms below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\r\n<h2><span style=\"color: #008000;\"><strong>Want To Learn About The Other Events?</strong></span></h2>\r\nComplete your details below and join the events newsletter.\r\nWe are GDPR compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nThe Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please <strong>Contact Us</strong> and we can look to schedule that in, if suitable, in the future.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting We do not offer refunds.  Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions and Answers - The Pain Management Workshop.</strong></span></h2>\r\n<h2><strong>Where and when is this Pain Management Workshop?</strong></h2>\r\nThis event is part of the Wednesday Workshop at The Vault Creative Wellbeing Centre, Station Road, Wallsend, Newcastle upon Tyne.\r\nIt is held on the 3rd of October 2018, starting at 7.30pm until 9.30pm. £8.50 per person with booking only in advance.\r\nThis event is organised by Newcastle Hypnotherapy.\r\nOnce you have booked your place, an email will be sent with directions and useful information for the evening.\r\n<h2><strong>Will this help with Chronic Pain?</strong></h2>\r\nThe techniques we will use should help will all sorts of physical and emotional pain.\r\nIf you have a serious pain problem you can gain greater benefit with a private session to focus on your individual needs.\r\nCall Mark on Call 07568 455 809 for more information or we can discuss private sessions and programs at this event.\r\n<h2><strong>How successful is Hypnosis for Pain Management?</strong></h2>\r\nOur clients find Hypnosis and Self-hypnosis very effective with pain management and for all sorts of pain.\r\nDuring this workshop, we will use Self-hypnosis and EFT as successful techniques to control your pain.\r\n<h2><strong>Can I just turn up in the evening to attend?</strong></h2>\r\nAs we have limited spaces we ask everyone to book their place in advance.\r\nThis saves time and effort on the evening to focus on the topic. Therefore, you must book in advance if you wish to attend. If you have any questions that are not answered here, simply <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong></span>\r\n<h2><strong>Do you run private sessions for Pain Management?</strong></h2>\r\nYes we run a dedicated Pain Management Hypnosis Program for those wanting faster results with pain issues.\r\nYou can learn more about the <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-pain-management-program/\"><strong><span style=\"color: #008000;\">Pain Management Hypnosis Program here.</span></strong></a>\r\n<h2><strong>Join the Newcastle Hypnotherapy </strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group Here</strong></a></h2>\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> is a member of </strong><a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\"><strong>UK Guild Of Hypnosis Practitioners</strong></a></h2>\r\n<img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />\r\n\r\nThe Vault Creative Wellness Centre.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-08-18 11:21:54','2018-08-18 11:21:54','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1309,1,'2018-08-18 11:22:46','2018-08-18 11:22:46','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.</strong></span>\r\nDuring this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\nThis workshop will help with pain on a  physical and emotional level.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><em><span style=\"color: #008000;\"><strong>Workshop Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or PayPal.\r\nYou can find answers to questions and terms below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\r\n<h2><span style=\"color: #008000;\"><strong>Want To Learn About The Other Events?</strong></span></h2>\r\nComplete your details below and join the events newsletter.\r\nWe are GDPR compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nThe Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please <strong>Contact Us</strong> and we can look to schedule that in, if suitable, in the future.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting We do not offer refunds.  Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions and Answers - The Pain Management Workshop.</strong></span></h2>\r\n<h2><strong>Where and when is this Pain Management Workshop?</strong></h2>\r\nThis event is part of the Wednesday Workshop at The Vault Creative Wellbeing Centre, Station Road, Wallsend, Newcastle upon Tyne.\r\nIt is held on the 3rd of October 2018, starting at 7.30pm until 9.30pm. £8.50 per person with booking only in advance.\r\nThis event is organised by Newcastle Hypnotherapy.\r\nOnce you have booked your place, an email will be sent with directions and useful information for the evening.\r\n<h2><strong>Will this help with Chronic Pain?</strong></h2>\r\nThe techniques we will use should help will all sorts of physical and emotional pain.\r\nIf you have a serious pain problem you can gain greater benefit with a private session to focus on your individual needs.\r\nCall Mark on Call 07568 455 809 for more information or we can discuss private sessions and programs at this event.\r\n<h2><strong>How successful is Hypnosis for Pain Management?</strong></h2>\r\nOur clients find Hypnosis and Self-hypnosis very effective with pain management and for all sorts of pain.\r\nDuring this workshop, we will use Self-hypnosis and EFT as successful techniques to control your pain.\r\n<h2><strong>Can I just turn up in the evening to attend?</strong></h2>\r\nAs we have limited spaces we ask everyone to book their place in advance.\r\nThis saves time and effort on the evening to focus on the topic. Therefore, you must book in advance if you wish to attend. If you have any questions that are not answered here, simply <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong></span>\r\n<h2><strong>Do you run private sessions for Pain Management?</strong></h2>\r\nYes we run a dedicated Pain Management Hypnosis Program for those wanting faster results with pain issues.\r\nYou can learn more about the <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-pain-management-program/\"><strong><span style=\"color: #008000;\">Pain Management Hypnosis Program here.</span></strong></a>\r\n<h2><strong>Join the Newcastle Hypnotherapy </strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group Here</strong></a></h2>\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> is a member of </strong><a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\"><strong>UK Guild Of Hypnosis Practitioners</strong></a></h2>\r\n<img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />\r\n\r\nThe Vault Creative Wellness Centre.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe map for Newcastle Hypnotherapy\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-08-18 11:22:46','2018-08-18 11:22:46','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1311,1,'2018-08-18 11:28:30','2018-08-18 11:28:30','<h2>We run regular workshops &amp; events.\r\nFor the latest information by email please join our newsletter below.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Upcoming Events - You can book now</strong></span></h2>\r\n<h2><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/meditate-deeper-faster-using-self-hypnosis/\"><span style=\"color: #008000;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis - 5th September</strong></span></a></h2>\r\n<h2><a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/past-life-regression-workshop/\"><span style=\"color: #008000;\"><strong>Past Life Regression Workshop - 19th September</strong></span></a></h2>\r\n<h2><a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/pain-management-workshop/\"><span style=\"color: #008000;\"><strong>The Pain Management Workshop - 3rd October</strong></span></a></h2>\r\n<h2>\r\n\r\n<strong><span style=\"color: #ff6600;\">Events Coming Soon</span></strong>\r\n\r\n<a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>S</strong></a><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></a></h2>\r\n<h2><a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-for-weight-loss/\"><span style=\"color: #008000;\"><strong>Self-Hypnosis for Weight Loss </strong></span></a></h2>\r\n.[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-08-18 11:28:30','2018-08-18 11:28:30','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(1312,1,'2018-08-18 11:47:01','2018-08-18 11:47:01','','workshops & events newcastle hypnotherapy','','inherit','open','closed','','33020620_10155862105224398_5832396550940131328_n-2','','','2018-08-18 11:47:21','2018-08-18 11:47:21','',322,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n.jpg',0,'attachment','image/jpeg',0),(1313,1,'2018-08-18 12:22:09','2018-08-18 12:22:09','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Join us for regular events &amp; workshops <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> &amp; <a href=\"http://You toohttps://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshops.</a>\r\n</strong>\r\n\r\nLearn Life Enhancing Skills &amp; Improve Your Life.\r\nHandle Problems &amp; Challneges Better.\r\nBuild Confidence &amp; Make New Friends\r\n<h2></h2>\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.</strong></span>\r\n<h2><span style=\"color: #ff6600;\"><strong>\r\n<span style=\"color: #008000;\">Upcoming Events You Can Book Now</span>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/meditate-deeper-faster-using-self-hypnosis/\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis - 5th September</strong></a></span>\r\n\r\n<span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/events-workshops/past-life-regression-workshop/\"><strong>Past Life Regression Workshop - 19th September</strong></a></span>\r\n\r\n<span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/events-workshops/pain-management-workshop/\"><strong>The Pain Management Workshop - 3rd October</strong></a></span>\r\n<h2><strong><span style=\"color: #ff6600;\">\r\n</span><span style=\"color: #008000;\">Events Coming Soon</span></strong></h2>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong><span style=\"color: #ff6600;\">S</span></strong></a><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></a></span>\r\n\r\n<a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-for-weight-loss/\"><span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span></a>\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy Facebook Group.</strong></span></h2>\r\nYou can learn even more about events and take part in the discussion,\r\n<strong><a href=\"http://You toohttps://www.facebook.com/groups/NHwednesdayworkshop/\">here on our Facebook Group.</a></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy</strong></span></h2>\r\nThese events are designed to share life enchancing skills to improve life and help people handle problems better.\r\nWe share valuable skills such as Self-Hypnosis, Tapping, Emotional Freedom Technique, Neuro-Linguistic Programming, Meditation, Mindfullness and other modern techniques.\r\n\r\nThese events are organised by Mark at <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> and usually held at <a href=\"http://www.the-vault.org/\">The Vault Creative Wellbeing Centre</a>, Newcastle upon Tyne.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">do get in touch by emai</a></strong></span>l and we can discuss this further.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS - NEWCASTLE HYPNOTHERAPY','','inherit','closed','closed','','322-revision-v1','','','2018-08-18 12:22:09','2018-08-18 12:22:09','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(1314,1,'2018-08-18 12:24:58','2018-08-18 12:24:58','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Join us for regular events &amp; workshops <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> &amp; <a href=\"http://You toohttps://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshops.</a>\r\n</strong>\r\n\r\nLearn Life Enhancing Skills &amp; Improve Your Life.\r\nHandle Problems &amp; Challenges Better.\r\nBuild Confidence &amp; Make New Friends\r\n<h2></h2>\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.</strong></span>\r\n<h2><span style=\"color: #ff6600;\"><strong>\r\n<span style=\"color: #008000;\">Upcoming Events You Can Book Now</span>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/meditate-deeper-faster-using-self-hypnosis/\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis - 5th September</strong></a></span>\r\n\r\n<span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/events-workshops/past-life-regression-workshop/\"><strong>Past Life Regression Workshop - 19th September</strong></a></span>\r\n\r\n<span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/events-workshops/pain-management-workshop/\"><strong>The Pain Management Workshop - 3rd October</strong></a></span>\r\n<h2><strong><span style=\"color: #ff6600;\">\r\n</span><span style=\"color: #008000;\">Events Coming Soon</span></strong></h2>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong><span style=\"color: #ff6600;\">S</span></strong></a><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></a></span>\r\n\r\n<a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-for-weight-loss/\"><span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span></a>\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy Facebook Group.</strong></span></h2>\r\nYou can learn even more about events and take part in the discussion,\r\n<strong><a href=\"http://You toohttps://www.facebook.com/groups/NHwednesdayworkshop/\">here on our Facebook Group.</a></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy</strong></span></h2>\r\nThese events are designed to share skills to improve life and help people handle problems better.\r\nWe share valuable skills such as Self-Hypnosis, Tapping, Emotional Freedom Technique, Neuro-Linguistic Programming, Meditation, Mindfulness and other modern techniques.\r\n\r\nThese events are organised by Mark at <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> and usually held at <a href=\"http://www.the-vault.org/\">The Vault Creative Wellbeing Centre</a>, Newcastle upon Tyne.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by emai</a></strong></span>l and we can discuss this further.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS - NEWCASTLE HYPNOTHERAPY','','inherit','closed','closed','','322-revision-v1','','','2018-08-18 12:24:58','2018-08-18 12:24:58','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(1315,1,'2018-08-18 12:32:27','2018-08-18 12:32:27','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Join us for regular events &amp; workshops <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> &amp; <a href=\"http://You toohttps://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshops.</a>\r\n</strong>\r\n\r\nLearn Life Enhancing Skills &amp; Improve Your Life.\r\nHandle Problems &amp; Challenges Better.\r\nBuild Confidence &amp; Make New Friends\r\n<h2></h2>\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.</strong></span>\r\n<h2><span style=\"color: #ff6600;\"><strong>\r\n<span style=\"color: #008000;\">Upcoming Events You Can Book Now</span>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/meditate-deeper-faster-using-self-hypnosis/\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis - 5th September</strong></a></span>\r\n\r\n<span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/events-workshops/past-life-regression-workshop/\"><strong>Past Life Regression Workshop - 19th September</strong></a></span>\r\n\r\n<span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/events-workshops/pain-management-workshop/\"><strong>The Pain Management Workshop - 3rd October</strong></a></span>\r\n<h2><strong><span style=\"color: #ff6600;\">\r\n</span><span style=\"color: #008000;\">Events Coming Soon</span></strong></h2>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong><span style=\"color: #ff6600;\">S</span></strong></a><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></a></span>\r\n\r\n<a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-for-weight-loss/\"><span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span></a>\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy Facebook Group.</strong></span></h2>\r\nYou can learn even more about events and take part in the discussion,\r\n<strong><a href=\"http://You toohttps://www.facebook.com/groups/NHwednesdayworkshop/\">here on our Facebook Group.</a></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy</strong></span></h2>\r\nThese events are designed to share skills to improve life and help people handle problems better.\r\nWe share valuable skills such as Self-Hypnosis, Tapping, Emotional Freedom Technique, Neuro-Linguistic Programming, Meditation, Mindfulness and other modern techniques.\r\n\r\nThese events are organised by Mark at <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> and usually held at <a href=\"http://www.the-vault.org/\">The Vault Creative Wellbeing Centre</a>, Newcastle upon Tyne.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS - NEWCASTLE HYPNOTHERAPY','','inherit','closed','closed','','322-revision-v1','','','2018-08-18 12:32:27','2018-08-18 12:32:27','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(1317,1,'2018-08-24 18:00:33','2018-08-24 18:00:33','<h2><img class=\"alignleft size-medium wp-image-1318\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/partnership-300x200.jpg\" alt=\"partnership\" width=\"300\" height=\"200\" /><strong><span style=\"color: #008000;\">Happy Clients</span></strong></h2>\r\nOur aim is to make sure our clients get the best possible results from our services. As you will see many clients give us great feedback on the results they experience and the service we provide.\r\nIn order to make this happen for you, we need a good working partnership between us.\r\n\r\nIt is important to understand that to make Hypnotherapy, NLP and other treatments work there must be a commitment from both the client and the therapist.\r\n\r\nChange work takes place during the consultation sessions and through the homework given to the client between sessions.\r\n\r\nAs the client, when you agree to undertake a course of treatment you also agree to engage with the process, complete any homework that you are given, listen to the CDs at appropriate times and provide feedback as requested.\r\nIt is with commitment and partnership that you will see the best results.\r\n<h2><span style=\"color: #008000;\"><strong>Treatment Fees.</strong></span></h2>\r\nThe fee for your session or program of sessions will be agreed by us both in advance of the sessions commencing.\r\nEach session can take between an hour to an hour and a half. If this is to vary you will be informed in advance.\r\n<h2><span style=\"color: #008000;\"><strong>Rescheduling &amp; Cancellation Policy.</strong></span></h2>\r\nWe do ask all clients to give us at least 48 hours notice if you wish to reschedule a session. We may charge a rescheduling fee of £30 if you need to change your appointment when less than 48 hours notice is given.\r\nIf you wish to cancel a session or program we require 48 hours notice. Cancellations made less than 48 hours will be charged in full.\r\n<h2><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">Arriving Late For An Appointment</span>.</strong></span></h2>\r\nIf you arrive late for your appointment we will do our best to continue that session. This is not always possible as we usually have other clients booked in for ongoing sessions. Please notify us as soon as possible if you are going to be late.\r\nA fee may be charged if you are late for a session to reschedule your appointment.\r\n<h2><span style=\"color: #008000;\"><strong>Confidentiality.</strong></span></h2>\r\nAll sessions and information are kept confidential. We will not release any information to anyone without written authorisation for you, except as required by law.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','TERMS & CONDITIONS','','publish','closed','closed','','terms-conditions','','','2018-10-29 17:44:01','2018-10-29 17:44:01','',0,'https://www.newcastle-hypnotherapy.com/?page_id=1317',0,'page','',0),(1318,1,'2018-08-24 17:26:41','2018-08-24 17:26:41','','partnership','','inherit','open','closed','','partnership','','','2018-08-24 17:26:50','2018-08-24 17:26:50','',1317,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/partnership.jpg',0,'attachment','image/jpeg',0),(1319,1,'2018-08-24 18:00:33','2018-08-24 18:00:33','<img class=\"alignleft size-medium wp-image-1318\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/partnership-300x200.jpg\" alt=\"partnership\" width=\"300\" height=\"200\" />Our aim is to make sure our clients get the best possible results from our services.\r\nIn order to make this happen, it is important to understand that to make Hypnotherapy, NLP and other treatments work there must be a commitment from both the client and the therapist.\r\n\r\nChange work takes place during the consultation sessions and through the homework given to the client between sessions.\r\n\r\nAs the client, when you agree to undertake a course of treatment you also agree to engage with the process, complete any homework that you are given and listen to the CDs at appropriate times. It is with commitment and partnership that you will see the best results.\r\n<h2><span style=\"color: #008000;\"><strong>Treatment Fees.</strong></span></h2>\r\nThe fee for your session or program of sessions will be agreed by us both in advance of the sessions commencing.\r\nEach session can take between an hour to an hour and a half. If this is to vary you will be informed in advance.\r\n<h2><span style=\"color: #008000;\"><strong>Rescheduling &amp; Cancellation Policy.</strong></span></h2>\r\nWe do ask all clients to give us at least 48 hours notice if you wish to reschedule a session. We charge a rescheduling fee of £30 if you need to change your appointment when less than 48 hours notice is given.\r\nIf you wish to cancel a session or program we require 48 hours notice. Cancellations made less than 48 hours will be charged in full.\r\n<h2><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">Arriving Late For An Appointment</span>.</strong></span></h2>\r\nIf you arrive late for your appointment we will do our best to continue that session. This is not always possible as we usually have other clients booked in for ongoing sessions. Please notify us as soon as possible if you are going to be late.\r\nA fee may be charged if you are late for a session to reschedule your appointment.\r\n<h2><span style=\"color: #008000;\"><strong>Confidentiality.</strong></span></h2>\r\nAll sessions and information are kept confidential. We will not release any information to anyone without written authorisation for you, except as required by law.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Terms & Conditions','','inherit','closed','closed','','1317-revision-v1','','','2018-08-24 18:00:33','2018-08-24 18:00:33','',1317,'https://www.newcastle-hypnotherapy.com/1317-revision-v1/',0,'revision','',0),(1321,1,'2018-08-24 18:28:50','2018-08-24 18:28:50','<h2><img class=\"alignleft size-medium wp-image-1318\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/partnership-300x200.jpg\" alt=\"partnership\" width=\"300\" height=\"200\" /><strong><span style=\"color: #008000;\">Happy Clients</span></strong></h2>\nOur aim is to make sure our clients get the best possible results from our services.\nIn order to make this happen we need a good working partnership between us.\n\nIt is important to understand that to make Hypnotherapy, NLP and other treatments work there must be a commitment from both the client and the therapist.\n\nChange work takes place during the consultation sessions and through the homework given to the client between sessions.\n\nAs the client, when you agree to undertake a course of treatment you also agree to engage with the process, complete any homework that you are given, listen to the CDs at appropriate times and provide feedback as requested.\nIt is with commitment and partnership that you will see the best results.\n<h2><span style=\"color: #008000;\"><strong>Treatment Fees.</strong></span></h2>\nThe fee for your session or program of sessions will be agreed by us both in advance of the sessions commencing.\nEach session can take between an hour to an hour and a half. If this is to vary you will be informed in advance.\n<h2><span style=\"color: #008000;\"><strong>Rescheduling &amp; Cancellation Policy.</strong></span></h2>\nWe do ask all clients to give us at least 48 hours notice if you wish to reschedule a session. We charge a rescheduling fee of £30 if you need to change your appointment when less than 48 hours notice is given.\nIf you wish to cancel a session or program we require 48 hours notice. Cancellations made less than 48 hours will be charged in full.\n<h2><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">Arriving Late For An Appointment</span>.</strong></span></h2>\nIf you arrive late for your appointment we will do our best to continue that session. This is not always possible as we usually have other clients booked in for ongoing sessions. Please notify us as soon as possible if you are going to be late.\nA fee may be charged if you are late for a session to reschedule your appointment.\n<h2><span style=\"color: #008000;\"><strong>Confidentiality.</strong></span></h2>\nAll sessions and information are kept confidential. We will not release any information to anyone without written authorisation for you, except as required by law.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','Terms & Conditions','','inherit','closed','closed','','1317-autosave-v1','','','2018-08-24 18:28:50','2018-08-24 18:28:50','',1317,'https://www.newcastle-hypnotherapy.com/1317-autosave-v1/',0,'revision','',0),(1322,1,'2018-08-24 18:29:57','2018-08-24 18:29:57','<h2><img class=\"alignleft size-medium wp-image-1318\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/partnership-300x200.jpg\" alt=\"partnership\" width=\"300\" height=\"200\" /><strong><span style=\"color: #008000;\">Happy Clients</span></strong></h2>\r\nOur aim is to make sure our clients get the best possible results from our services.\r\nIn order to make this happen, we need a good working partnership between us.\r\n\r\nIt is important to understand that to make Hypnotherapy, NLP and other treatments work there must be a commitment from both the client and the therapist.\r\n\r\nChange work takes place during the consultation sessions and through the homework given to the client between sessions.\r\n\r\nAs the client, when you agree to undertake a course of treatment you also agree to engage with the process, complete any homework that you are given, listen to the CDs at appropriate times and provide feedback as requested.\r\nIt is with commitment and partnership that you will see the best results.\r\n<h2><span style=\"color: #008000;\"><strong>Treatment Fees.</strong></span></h2>\r\nThe fee for your session or program of sessions will be agreed by us both in advance of the sessions commencing.\r\nEach session can take between an hour to an hour and a half. If this is to vary you will be informed in advance.\r\n<h2><span style=\"color: #008000;\"><strong>Rescheduling &amp; Cancellation Policy.</strong></span></h2>\r\nWe do ask all clients to give us at least 48 hours notice if you wish to reschedule a session. We may charge a rescheduling fee of £30 if you need to change your appointment when less than 48 hours notice is given.\r\nIf you wish to cancel a session or program we require 48 hours notice. Cancellations made less than 48 hours will be charged in full.\r\n<h2><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">Arriving Late For An Appointment</span>.</strong></span></h2>\r\nIf you arrive late for your appointment we will do our best to continue that session. This is not always possible as we usually have other clients booked in for ongoing sessions. Please notify us as soon as possible if you are going to be late.\r\nA fee may be charged if you are late for a session to reschedule your appointment.\r\n<h2><span style=\"color: #008000;\"><strong>Confidentiality.</strong></span></h2>\r\nAll sessions and information are kept confidential. We will not release any information to anyone without written authorisation for you, except as required by law.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Terms & Conditions','','inherit','closed','closed','','1317-revision-v1','','','2018-08-24 18:29:57','2018-08-24 18:29:57','',1317,'https://www.newcastle-hypnotherapy.com/1317-revision-v1/',0,'revision','',0),(1323,1,'2018-08-24 18:30:44','2018-08-24 18:30:44','<h2><img class=\"alignleft size-medium wp-image-1318\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/partnership-300x200.jpg\" alt=\"partnership\" width=\"300\" height=\"200\" /><strong><span style=\"color: #008000;\">Happy Clients</span></strong></h2>\r\nOur aim is to make sure our clients get the best possible results from our services. As you will see many clients give us great feedback.\r\nIn order to make this happen for you, we need a good working partnership between us.\r\n\r\nIt is important to understand that to make Hypnotherapy, NLP and other treatments work there must be a commitment from both the client and the therapist.\r\n\r\nChange work takes place during the consultation sessions and through the homework given to the client between sessions.\r\n\r\nAs the client, when you agree to undertake a course of treatment you also agree to engage with the process, complete any homework that you are given, listen to the CDs at appropriate times and provide feedback as requested.\r\nIt is with commitment and partnership that you will see the best results.\r\n<h2><span style=\"color: #008000;\"><strong>Treatment Fees.</strong></span></h2>\r\nThe fee for your session or program of sessions will be agreed by us both in advance of the sessions commencing.\r\nEach session can take between an hour to an hour and a half. If this is to vary you will be informed in advance.\r\n<h2><span style=\"color: #008000;\"><strong>Rescheduling &amp; Cancellation Policy.</strong></span></h2>\r\nWe do ask all clients to give us at least 48 hours notice if you wish to reschedule a session. We may charge a rescheduling fee of £30 if you need to change your appointment when less than 48 hours notice is given.\r\nIf you wish to cancel a session or program we require 48 hours notice. Cancellations made less than 48 hours will be charged in full.\r\n<h2><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">Arriving Late For An Appointment</span>.</strong></span></h2>\r\nIf you arrive late for your appointment we will do our best to continue that session. This is not always possible as we usually have other clients booked in for ongoing sessions. Please notify us as soon as possible if you are going to be late.\r\nA fee may be charged if you are late for a session to reschedule your appointment.\r\n<h2><span style=\"color: #008000;\"><strong>Confidentiality.</strong></span></h2>\r\nAll sessions and information are kept confidential. We will not release any information to anyone without written authorisation for you, except as required by law.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Terms & Conditions','','inherit','closed','closed','','1317-revision-v1','','','2018-08-24 18:30:44','2018-08-24 18:30:44','',1317,'https://www.newcastle-hypnotherapy.com/1317-revision-v1/',0,'revision','',0),(1324,1,'2018-08-24 18:31:41','2018-08-24 18:31:41','<h2><img class=\"alignleft size-medium wp-image-1318\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/partnership-300x200.jpg\" alt=\"partnership\" width=\"300\" height=\"200\" /><strong><span style=\"color: #008000;\">Happy Clients</span></strong></h2>\r\nOur aim is to make sure our clients get the best possible results from our services. As you will see many clients give us great feedback on the results they experience and the service we provide.\r\nIn order to make this happen for you, we need a good working partnership between us.\r\n\r\nIt is important to understand that to make Hypnotherapy, NLP and other treatments work there must be a commitment from both the client and the therapist.\r\n\r\nChange work takes place during the consultation sessions and through the homework given to the client between sessions.\r\n\r\nAs the client, when you agree to undertake a course of treatment you also agree to engage with the process, complete any homework that you are given, listen to the CDs at appropriate times and provide feedback as requested.\r\nIt is with commitment and partnership that you will see the best results.\r\n<h2><span style=\"color: #008000;\"><strong>Treatment Fees.</strong></span></h2>\r\nThe fee for your session or program of sessions will be agreed by us both in advance of the sessions commencing.\r\nEach session can take between an hour to an hour and a half. If this is to vary you will be informed in advance.\r\n<h2><span style=\"color: #008000;\"><strong>Rescheduling &amp; Cancellation Policy.</strong></span></h2>\r\nWe do ask all clients to give us at least 48 hours notice if you wish to reschedule a session. We may charge a rescheduling fee of £30 if you need to change your appointment when less than 48 hours notice is given.\r\nIf you wish to cancel a session or program we require 48 hours notice. Cancellations made less than 48 hours will be charged in full.\r\n<h2><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">Arriving Late For An Appointment</span>.</strong></span></h2>\r\nIf you arrive late for your appointment we will do our best to continue that session. This is not always possible as we usually have other clients booked in for ongoing sessions. Please notify us as soon as possible if you are going to be late.\r\nA fee may be charged if you are late for a session to reschedule your appointment.\r\n<h2><span style=\"color: #008000;\"><strong>Confidentiality.</strong></span></h2>\r\nAll sessions and information are kept confidential. We will not release any information to anyone without written authorisation for you, except as required by law.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Terms & Conditions','','inherit','closed','closed','','1317-revision-v1','','','2018-08-24 18:31:41','2018-08-24 18:31:41','',1317,'https://www.newcastle-hypnotherapy.com/1317-revision-v1/',0,'revision','',0),(1326,1,'2018-08-28 06:31:26','2018-08-28 06:31:26','','mind body spirit fair','','inherit','open','closed','','38501253_2267421529952455_6461134429694722048_n','','','2018-08-28 06:31:47','2018-08-28 06:31:47','',1325,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/38501253_2267421529952455_6461134429694722048_n.jpg',0,'attachment','image/jpeg',0),(1327,1,'2018-08-28 06:32:38','2018-08-28 06:32:38','<img class=\"alignleft size-medium wp-image-1326\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/38501253_2267421529952455_6461134429694722048_n-300x214.jpg\" alt=\"mind body spirit fair\" width=\"300\" height=\"214\" /><strong>Short Talk &amp; Demonstration @ The Mind, Body, Spirit Fair.</strong>\r\n<strong>Saturday the 1st September @ The Vault, Wallsend. 1.30pm.</strong>\r\n<strong>Free Entry - Newcastle Hypnotherapy.</strong>\r\n<h2><strong><span id=\"cch_fce60cc2fa6f4a\" class=\"_mh6 _wsc\" style=\"color: #008000;\"><span class=\"_3oh- _58nk\">Simple techniques to reduce Pain, Stress &amp; Anxiety</span></span></strong></h2>\r\n&nbsp;\r\n\r\n\r\nJoin us for another enjoyable talk and demonstration @The Vault.\r\nI am often asked how Hypnosis, Self-Hypnosis and NLP can help with Pain, Stress &amp; Anxiety?\r\n\r\nModern techniques like Hypnosis can be very effective as they can help you to control these issues.\r\nOnce you learn these modern tools and practice them, you have your own \"control panel in your mind\" allowing you to turn down pain, stress and anxiety on demand.\r\n\r\nDuring this short talk, I will explain how Self-Hypnosis, NLP and other modern techniques can put you back in control and how they quickly can give you great results.\r\n\r\nThis is a free talk &amp; demonstration, starting at 1.30 pm @ The Vault as part of the monthly Mind, Body, Spirit Fair.\r\n\r\nYou will also find 2 floors of stalls, food, gifts and more.\r\n\r\nIf you would like to learn about our other regular events please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. Your details will only be used to send you updates and you can unsubscribe at any time.\r\n\r\n\r\nYou can also find out more about our events on our <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/?fb_dtsg_ag=AdxnkwVfFHQJxhUGGUNwtUmnPD1BJkcd8K-7uP5L0aiDuA%3AAdzwYc087wLSKsQ4rRVO0HMt8bXkMKl09341hS5oifBdaQ\">Facebook Page</a></strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Simple techniques to reduce Pain, Stress & Anxiety','','inherit','closed','closed','','1325-revision-v1','','','2018-08-28 06:32:38','2018-08-28 06:32:38','',1325,'https://www.newcastle-hypnotherapy.com/1325-revision-v1/',0,'revision','',0),(1329,1,'2018-09-02 14:44:51','2018-09-02 14:44:51','Newcastle Hypnotherapy Group Talks.\r\n\r\nWould your company, charirty, group or organisation like a talk or demonstration by a member of Newcastle Hypnotherapy?','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 14:44:51','2018-09-02 14:44:51','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1330,1,'2018-09-02 14:46:10','2018-09-02 14:46:10','Newcastle Hypnotherapy Group Talks.\r\n\r\nWould your company, charirty, group or organisation like a talk or demonstration by a member of the Newcastle Hypnotherapy team?','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 14:46:10','2018-09-02 14:46:10','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1331,1,'2018-09-02 14:46:39','2018-09-02 14:46:39','<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks.</strong></span></h2>\r\nWould your company, charirty, group or organisation like a talk or demonstration by a member of the Newcastle Hypnotherapy team?','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 14:46:39','2018-09-02 14:46:39','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1332,1,'2018-09-02 15:08:00','2018-09-02 15:08:00','<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks.</strong></span></h2>\r\nWould your company, charity, group or organisation value a talk, presentation or demonstration by a member of the Newcastle Hypnotherapy team?\r\n\r\nWe regularly give talks and demonstrations that can be tailored to your group or chosen topic.','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 15:08:00','2018-09-02 15:08:00','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1333,1,'2018-09-02 15:11:26','2018-09-02 15:11:26','<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks.</strong></span></h2>\r\nWould your company, charity, group or organisation value a talk, presentation or demonstration by a member of the Newcastle Hypnotherapy team?\r\n\r\nWe regularly give talks and demonstrations that can be tailored to your group or chosen topic.\r\n\r\nPopular subjects for talks and presentations\r\n\r\nSimply contact us through the form below, giving us a little information and a member of the team will contact you shortly.','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 15:11:26','2018-09-02 15:11:26','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1334,1,'2018-09-02 15:16:31','2018-09-02 15:16:31','<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks.</strong></span></h2>\r\nWould your company, charity, group or organisation value a talk, presentation or demonstration by a member of the Newcastle Hypnotherapy team?\r\n\r\nWe regularly give talks and demonstrations that can be tailored to your group or chosen topic.\r\n\r\nSimply contact us through the form below, giving us a little information and a member of the team will contact you shortly.','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 15:16:31','2018-09-02 15:16:31','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1335,1,'2018-09-02 15:20:03','2018-09-02 15:20:03','<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks.</strong></span></h2>\r\nWould your company, charity, group or organisation value a talk, presentation or demonstration by a member of the Newcastle Hypnotherapy team?\r\nNewcastle Hypnotherapy Group Talks are an entertaining way to explore a number of topics and even involve your group in new subjects.\r\n\r\nWe regularly give talks and demonstrations that can be tailored to your group or chosen topic.\r\n\r\nSimply contact us through the form below, giving us a little information and a member of the team will contact you shortly.','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 15:20:03','2018-09-02 15:20:03','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1336,1,'2018-09-02 15:28:51','2018-09-02 15:28:51','<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks.</strong></span></h2>\r\nWould your company, charity, group or organisation value a talk, presentation or demonstration by a member of our team?\r\nNewcastle Hypnotherapy Group Talks are an entertaining way to explore a number of topics and even involve your group in new subjects and learning new skills.\r\n<h2>We regularly give public talks and demonstrations that can be tailored to your group or chosen topic.\r\n\r\n<strong><span style=\"color: #008000;\">Popular Group Talk &amp; Presentation Subjects</span></strong></h2>\r\n<ul>\r\n 	<li>Hypnosis &amp; Hypnotherapy</li>\r\n 	<li>Self-Hypnosis</li>\r\n 	<li>NLP - Neuro Linguistic Programming</li>\r\n 	<li>EFT Tapping - Emotional Freedom Technique</li>\r\n 	<li>Meditation &amp; Mindfulness</li>\r\n 	<li>Anxiety Help</li>\r\n 	<li>Stress Management</li>\r\n 	<li>Depression Help</li>\r\n 	<li>Building Self-Confidence</li>\r\n 	<li>Public Speaking</li>\r\n 	<li>Peak Performance</li>\r\n 	<li>Changing Habits</li>\r\n 	<li>Pain Management</li>\r\n</ul>\r\n&nbsp;\r\n\r\nSimply contact us through the form below, giving us a little information and a member of the team will contact you shortly.','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 15:28:51','2018-09-02 15:28:51','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1337,1,'2018-09-02 15:30:47','2018-09-02 15:30:47','<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks.</strong></span></h2>\r\nWould your company, charity, group or organisation value a talk, presentation or demonstration by a member of our team?\r\nNewcastle Hypnotherapy Group Talks are an entertaining way to explore a number of topics and even involve your group in new subjects and learning new skills.\r\n\r\nWe regularly give public talks and demonstrations that can be tailored to your group or chosen topic.\r\n<h2><span style=\"color: #008000;\"><strong>Popular Group Talk &amp; Presentation Subjects</strong></span></h2>\r\n<ul>\r\n 	<li>Hypnosis &amp; Hypnotherapy</li>\r\n 	<li>Self-Hypnosis</li>\r\n 	<li>NLP - Neuro Linguistic Programming</li>\r\n 	<li>EFT Tapping - Emotional Freedom Technique</li>\r\n 	<li>Meditation &amp; Mindfulness</li>\r\n 	<li>Anxiety Help</li>\r\n 	<li>Stress Management</li>\r\n 	<li>Depression Help</li>\r\n 	<li>Building Self-Confidence</li>\r\n 	<li>Public Speaking</li>\r\n 	<li>Peak Performance</li>\r\n 	<li>Changing Habits</li>\r\n 	<li>Pain Management</li>\r\n</ul>\r\nAlternatively, we can tailor a talk to a chosen topic or subject to suit your group,\r\n\r\nSimply contact us through the form below, giving us a little information and a member of the team will contact you shortly.','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 15:30:47','2018-09-02 15:30:47','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1338,1,'2018-09-02 15:34:10','2018-09-02 15:34:10','','newcastle hypnotherapy group talks','','inherit','open','closed','','newcastle-hypnotherapy-group-talks-2','','','2018-09-02 15:34:23','2018-09-02 15:34:23','',1328,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/newcastle-hypnotherapy-group-talks.jpg',0,'attachment','image/jpeg',0),(1339,1,'2018-09-02 15:34:31','2018-09-02 15:34:31','<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks.</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1338\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/newcastle-hypnotherapy-group-talks-300x200.jpg\" alt=\"newcastle hypnotherapy group talks\" width=\"300\" height=\"200\" />Would your company, charity, group or organisation value a talk, presentation or demonstration by a member of our team?\r\nNewcastle Hypnotherapy Group Talks are an entertaining way to explore a number of topics and even involve your group in new subjects and learning new skills.\r\n\r\nWe regularly give public talks and demonstrations that can be tailored to your group or chosen topic.\r\n<h2><span style=\"color: #008000;\"><strong>Popular Group Talk &amp; Presentation Subjects</strong></span></h2>\r\n<ul>\r\n 	<li>Hypnosis &amp; Hypnotherapy</li>\r\n 	<li>Self-Hypnosis</li>\r\n 	<li>NLP - Neuro Linguistic Programming</li>\r\n 	<li>EFT Tapping - Emotional Freedom Technique</li>\r\n 	<li>Meditation &amp; Mindfulness</li>\r\n 	<li>Anxiety Help</li>\r\n 	<li>Stress Management</li>\r\n 	<li>Depression Help</li>\r\n 	<li>Building Self-Confidence</li>\r\n 	<li>Public Speaking</li>\r\n 	<li>Peak Performance</li>\r\n 	<li>Changing Habits</li>\r\n 	<li>Pain Management</li>\r\n</ul>\r\nAlternatively, we can tailor a talk to a chosen topic or subject to suit your group,\r\n\r\nSimply contact us through the form below, giving us a little information and a member of the team will contact you shortly.','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 15:34:31','2018-09-02 15:34:31','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1340,1,'2018-09-02 15:35:23','2018-09-02 15:35:23','<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks.</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1338\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/newcastle-hypnotherapy-group-talks-300x200.jpg\" alt=\"newcastle hypnotherapy group talks\" width=\"300\" height=\"200\" />Would your company, charity, group or organisation value a talk, presentation or demonstration by a member of our team?\r\nNewcastle Hypnotherapy Group Talks are an entertaining way to explore a number of topics and even involve your group in new subjects and learning new skills.\r\n\r\nWe regularly give public talks and demonstrations that can be tailored to your group or chosen topic.\r\n<h2><span style=\"color: #008000;\"><strong>Popular Group Talk &amp; Presentation Subjects</strong></span></h2>\r\n<ul>\r\n 	<li>Hypnosis &amp; Hypnotherapy</li>\r\n 	<li>Self-Hypnosis</li>\r\n 	<li>NLP - Neuro Linguistic Programming</li>\r\n 	<li>EFT Tapping - Emotional Freedom Technique</li>\r\n 	<li>Meditation &amp; Mindfulness</li>\r\n 	<li>Anxiety Help</li>\r\n 	<li>Stress Management</li>\r\n 	<li>Depression Help</li>\r\n 	<li>Building Self-Confidence</li>\r\n 	<li>Public Speaking</li>\r\n 	<li>Communication Skills</li>\r\n 	<li>Peak Performance</li>\r\n 	<li>Changing Habits</li>\r\n 	<li>Pain Management</li>\r\n</ul>\r\nAlternatively, we can tailor a talk to a chosen topic or subject to suit your group,\r\n\r\nSimply contact us through the form below, giving us a little information and a member of the team will contact you shortly.','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 15:35:23','2018-09-02 15:35:23','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1342,1,'2018-09-02 15:36:11','2018-09-02 15:36:11','<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks.</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1338\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/newcastle-hypnotherapy-group-talks-300x200.jpg\" alt=\"newcastle hypnotherapy group talks\" width=\"300\" height=\"200\" />Would your company, charity, group or organisation value a talk, presentation or demonstration by a member of our team?\r\nNewcastle Hypnotherapy Group Talks are an entertaining way to explore a number of topics and even involve your group in new subjects and learning new skills.\r\n\r\nWe regularly give public talks and demonstrations that can be tailored to your group or chosen topic.\r\n<h2><span style=\"color: #008000;\">Popular Group Talk &amp; Presentation Subjects</span></h2>\r\n<ul>\r\n 	<li>Hypnosis &amp; Hypnotherapy</li>\r\n 	<li>Self-Hypnosis</li>\r\n 	<li>NLP - Neuro Linguistic Programming</li>\r\n 	<li>EFT Tapping - Emotional Freedom Technique</li>\r\n 	<li>Meditation &amp; Mindfulness</li>\r\n 	<li>Anxiety Help</li>\r\n 	<li>Stress Management</li>\r\n 	<li>Depression Help</li>\r\n 	<li>Building Self-Confidence</li>\r\n 	<li>Public Speaking</li>\r\n 	<li>Communication Skills</li>\r\n 	<li>Peak Performance</li>\r\n 	<li>Changing Habits</li>\r\n 	<li>Pain Management</li>\r\n</ul>\r\nAlternatively, we can tailor a talk to a chosen topic or subject to suit your group,\r\n\r\nSimply contact us through the form below, giving us a little information and a member of the team will contact you shortly.','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 15:36:11','2018-09-02 15:36:11','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1341,1,'2018-09-02 15:35:39','2018-09-02 15:35:39','<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks.</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1338\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/newcastle-hypnotherapy-group-talks-300x200.jpg\" alt=\"newcastle hypnotherapy group talks\" width=\"300\" height=\"200\" />Would your company, charity, group or organisation value a talk, presentation or demonstration by a member of our team?\r\nNewcastle Hypnotherapy Group Talks are an entertaining way to explore a number of topics and even involve your group in new subjects and learning new skills.\r\n\r\nWe regularly give public talks and demonstrations that can be tailored to your group or chosen topic.\r\n<h2><span style=\"color: #008000;\"><strong>\r\n\r\nPopular Group Talk &amp; Presentation Subjects</strong></span></h2>\r\n<ul>\r\n 	<li>Hypnosis &amp; Hypnotherapy</li>\r\n 	<li>Self-Hypnosis</li>\r\n 	<li>NLP - Neuro Linguistic Programming</li>\r\n 	<li>EFT Tapping - Emotional Freedom Technique</li>\r\n 	<li>Meditation &amp; Mindfulness</li>\r\n 	<li>Anxiety Help</li>\r\n 	<li>Stress Management</li>\r\n 	<li>Depression Help</li>\r\n 	<li>Building Self-Confidence</li>\r\n 	<li>Public Speaking</li>\r\n 	<li>Communication Skills</li>\r\n 	<li>Peak Performance</li>\r\n 	<li>Changing Habits</li>\r\n 	<li>Pain Management</li>\r\n</ul>\r\nAlternatively, we can tailor a talk to a chosen topic or subject to suit your group,\r\n\r\nSimply contact us through the form below, giving us a little information and a member of the team will contact you shortly.','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 15:35:39','2018-09-02 15:35:39','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1343,1,'2018-09-02 15:36:35','2018-09-02 15:36:35','<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks.</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1338\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/newcastle-hypnotherapy-group-talks-300x200.jpg\" alt=\"newcastle hypnotherapy group talks\" width=\"300\" height=\"200\" />Would your company, charity, group or organisation value a talk, presentation or demonstration by a member of our team?\r\nNewcastle Hypnotherapy Group Talks are an entertaining way to explore a number of topics and even involve your group in new subjects and learning new skills.\r\n\r\nWe regularly give public talks and demonstrations that can be tailored to your group or chosen topic.\r\n<h2><strong><span style=\"color: #008000;\">Popular Group Talk &amp; Presentation Subjects</span></strong></h2>\r\n<ul>\r\n 	<li>Hypnosis &amp; Hypnotherapy</li>\r\n 	<li>Self-Hypnosis</li>\r\n 	<li>NLP - Neuro Linguistic Programming</li>\r\n 	<li>EFT Tapping - Emotional Freedom Technique</li>\r\n 	<li>Meditation &amp; Mindfulness</li>\r\n 	<li>Anxiety Help</li>\r\n 	<li>Stress Management</li>\r\n 	<li>Depression Help</li>\r\n 	<li>Building Self-Confidence</li>\r\n 	<li>Public Speaking</li>\r\n 	<li>Communication Skills</li>\r\n 	<li>Peak Performance</li>\r\n 	<li>Changing Habits</li>\r\n 	<li>Pain Management</li>\r\n</ul>\r\nAlternatively, we can tailor a talk to a chosen topic or subject to suit your group,\r\n\r\nSimply contact us through the form below, giving us a little information and a member of the team will contact you shortly.','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 15:36:35','2018-09-02 15:36:35','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1344,1,'2018-09-02 15:37:41','2018-09-02 15:37:41','<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks.</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1338\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/newcastle-hypnotherapy-group-talks-300x200.jpg\" alt=\"newcastle hypnotherapy group talks\" width=\"300\" height=\"200\" />Would your company, charity, group or organisation value a talk, presentation or demonstration by a member of our team?\r\nNewcastle Hypnotherapy Group Talks are an entertaining way to explore a number of topics and even involve your group in new subjects and learning new skills.\r\n\r\nWe regularly give public talks and demonstrations that can be tailored to your group or chosen topic.\r\n<h2><strong><span style=\"color: #008000;\">Popular Group Talk &amp; Presentation Subjects</span></strong></h2>\r\n<ul>\r\n 	<li>Hypnosis &amp; Hypnotherapy</li>\r\n 	<li>Self-Hypnosis</li>\r\n 	<li>NLP - Neuro Linguistic Programming</li>\r\n 	<li>EFT Tapping - Emotional Freedom Technique</li>\r\n 	<li>Meditation &amp; Mindfulness</li>\r\n 	<li>Anxiety Help</li>\r\n 	<li>Stress Management</li>\r\n 	<li>Depression Help</li>\r\n 	<li>Building Self-Confidence</li>\r\n 	<li>Public Speaking</li>\r\n 	<li>Communication Skills</li>\r\n 	<li>Peak Performance</li>\r\n 	<li>Changing Habits</li>\r\n 	<li>Pain Management</li>\r\n</ul>\r\nAlternatively, we can tailor a talk to a chosen topic or subject to suit your group,\r\n\r\nSimply contact us through the form below, giving us a little information and a member of the team will contact you shortly.\r\n\r\n[wpforms id=\"35\" title=\"true\"]','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 15:37:41','2018-09-02 15:37:41','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1345,1,'2018-09-02 15:45:55','2018-09-02 15:45:55','<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks.</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1338\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/newcastle-hypnotherapy-group-talks-300x200.jpg\" alt=\"newcastle hypnotherapy group talks\" width=\"300\" height=\"200\" />Would your company, charity, group or organisation value a talk, presentation or demonstration by a member of our team?\r\nNewcastle Hypnotherapy Group Talks are an entertaining way to explore a number of topics and even involve your group in new subjects and learning new skills.\r\n\r\nWe regularly give public talks and demonstrations that can be tailored to your group or chosen topic.\r\n<h2><strong><span style=\"color: #008000;\">Popular Group Talk &amp; Presentation Subjects</span></strong></h2>\r\n<ul>\r\n 	<li>Hypnosis &amp; Hypnotherapy</li>\r\n 	<li>Self-Hypnosis</li>\r\n 	<li>NLP - Neuro Linguistic Programming</li>\r\n 	<li>EFT Tapping - Emotional Freedom Technique</li>\r\n 	<li>Meditation &amp; Mindfulness</li>\r\n 	<li>Anxiety Help</li>\r\n 	<li>Stress Management</li>\r\n 	<li>Depression Help</li>\r\n 	<li>Building Self-Confidence</li>\r\n 	<li>Public Speaking</li>\r\n 	<li>Communication Skills</li>\r\n 	<li>Peak Performance</li>\r\n 	<li>Changing Habits</li>\r\n 	<li>Pain Management</li>\r\n</ul>\r\nAlternatively, we can tailor a talk to a chosen topic or subject to suit your group,\r\n\r\nSimply contact us through the form below, giving us a little information and a member of the team will contact you shortly.\r\n\r\n[wpforms id=\"35\" title=\"true\"]\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks</strong></span></h2>\r\nWe usually give a group talk and demonstration at the monthly Mind Body Spirit Fair that takes please at <a href=\"http://www.the-vault.org/\">The Vault</a>, Wallsend, Newcastle upon Tyne.','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 15:45:55','2018-09-02 15:45:55','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1346,1,'2018-09-02 15:47:26','2018-09-02 15:47:26','<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks.</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1338\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/newcastle-hypnotherapy-group-talks-300x200.jpg\" alt=\"newcastle hypnotherapy group talks\" width=\"300\" height=\"200\" />Would your company, charity, group or organisation value a talk, presentation or demonstration by a member of our team?\r\nNewcastle Hypnotherapy Group Talks are an entertaining way to explore a number of topics and even involve your group in new subjects and learning new skills.\r\n\r\nWe regularly give public talks and demonstrations that can be tailored to your group or chosen topic.\r\n<h2><strong><span style=\"color: #008000;\">Popular Group Talk &amp; Presentation Subjects</span></strong></h2>\r\n<ul>\r\n 	<li>Hypnosis &amp; Hypnotherapy</li>\r\n 	<li>Self-Hypnosis</li>\r\n 	<li>NLP - Neuro Linguistic Programming</li>\r\n 	<li>EFT Tapping - Emotional Freedom Technique</li>\r\n 	<li>Meditation &amp; Mindfulness</li>\r\n 	<li>Anxiety Help</li>\r\n 	<li>Stress Management</li>\r\n 	<li>Depression Help</li>\r\n 	<li>Building Self-Confidence</li>\r\n 	<li>Public Speaking</li>\r\n 	<li>Communication Skills</li>\r\n 	<li>Peak Performance</li>\r\n 	<li>Changing Habits</li>\r\n 	<li>Pain Management</li>\r\n</ul>\r\nAlternatively, we can tailor a talk to a chosen topic or subject to suit your group,\r\n\r\nSimply contact us through the form below, giving us a little information and a member of the team will contact you shortly.\r\n\r\n[wpforms id=\"35\" title=\"true\"]\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks</strong></span></h2>\r\nWe usually give a group talk and demonstration at the monthly Mind Body Spirit Fair that takes please at <a href=\"http://www.the-vault.org/\">The Vault</a>, Wallsend, Newcastle upon Tyne.\r\nYou can learn more about our other <strong>regular events and Wednesday Workshops here.</strong>','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 15:47:26','2018-09-02 15:47:26','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1347,1,'2018-09-02 15:48:02','2018-09-02 15:48:02','<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks.</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1338\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/newcastle-hypnotherapy-group-talks-300x200.jpg\" alt=\"newcastle hypnotherapy group talks\" width=\"300\" height=\"200\" />Would your company, charity, group or organisation value a talk, presentation or demonstration by a member of our team?\r\nNewcastle Hypnotherapy Group Talks are an entertaining way to explore a number of topics and even involve your group in new subjects and learning new skills.\r\n\r\nWe regularly give public talks and demonstrations that can be tailored to your group or chosen topic.\r\n<h2><strong><span style=\"color: #008000;\">Popular Group Talk &amp; Presentation Subjects</span></strong></h2>\r\n<ul>\r\n 	<li>Hypnosis &amp; Hypnotherapy</li>\r\n 	<li>Self-Hypnosis</li>\r\n 	<li>NLP - Neuro Linguistic Programming</li>\r\n 	<li>EFT Tapping - Emotional Freedom Technique</li>\r\n 	<li>Meditation &amp; Mindfulness</li>\r\n 	<li>Anxiety Help</li>\r\n 	<li>Stress Management</li>\r\n 	<li>Depression Help</li>\r\n 	<li>Building Self-Confidence</li>\r\n 	<li>Public Speaking</li>\r\n 	<li>Communication Skills</li>\r\n 	<li>Peak Performance</li>\r\n 	<li>Changing Habits</li>\r\n 	<li>Pain Management</li>\r\n</ul>\r\nAlternatively, we can tailor a talk to a chosen topic or subject to suit your group,\r\n\r\nSimply contact us through the form below, giving us a little information and a member of the team will contact you shortly.\r\n\r\n[wpforms id=\"35\" title=\"true\"]\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks</strong></span></h2>\r\nWe usually give a group talk and demonstration at the monthly Mind Body Spirit Fair that takes please at <a href=\"http://www.the-vault.org/\">The Vault</a>, Wallsend, Newcastle upon Tyne.\r\nYou can learn more about our other <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>regular events and Wednesday Workshops here.</strong></a>','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 15:48:02','2018-09-02 15:48:02','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1348,1,'2018-09-02 16:14:24','2018-09-02 16:14:24','<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks.</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1338\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/newcastle-hypnotherapy-group-talks-300x200.jpg\" alt=\"newcastle hypnotherapy group talks\" width=\"300\" height=\"200\" />Would your company, charity, group or organisation value a talk, presentation or demonstration by a member of our team?\r\nNewcastle Hypnotherapy Group Talks are an entertaining way to explore a number of topics and even involve your group in new subjects and learning new skills.\r\n\r\nWe regularly give public talks and demonstrations that can be tailored to your group or chosen topic.\r\n<h2><strong><span style=\"color: #008000;\">Popular Group Talk &amp; Presentation Subjects</span></strong></h2>\r\n<ul>\r\n 	<li>Hypnosis &amp; Hypnotherapy</li>\r\n 	<li>Self-Hypnosis</li>\r\n 	<li>NLP - Neuro Linguistic Programming</li>\r\n 	<li>EFT Tapping - Emotional Freedom Technique</li>\r\n 	<li>Meditation &amp; Mindfulness</li>\r\n 	<li>Anxiety Help</li>\r\n 	<li>Stress Management</li>\r\n 	<li>Depression Help</li>\r\n 	<li>Building Self-Confidence</li>\r\n 	<li>Public Speaking</li>\r\n 	<li>Communication Skills</li>\r\n 	<li>Peak Performance</li>\r\n 	<li>Changing Habits</li>\r\n 	<li>Pain Management</li>\r\n 	<li>Past Life Regression</li>\r\n 	<li>Improved Sleep</li>\r\n 	<li>Memory Issues</li>\r\n</ul>\r\nAlternatively, we can tailor a talk to a chosen topic or subject to suit your group,\r\n\r\nSimply contact us through the form below, giving us a little information and a member of the team will contact you shortly.\r\n\r\n[wpforms id=\"35\" title=\"true\"]\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks</strong></span></h2>\r\nWe usually give a group talk and demonstration at the monthly Mind Body Spirit Fair that takes please at <strong><a href=\"http://www.the-vault.org/\">The Vault</a>,</strong> Wallsend, Newcastle upon Tyne.\r\nYou can learn more about our other <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>regular events and The Wednesday Workshops here.</strong></a>\r\n<h2><span style=\"color: #008000;\"><strong>What Can Newcastle Hypnotherapy Help With?</strong></span></h2>\r\nWe help people to fix or improve problems for many issues such as anxiety, stress, depression, self-confidence, weight loss, stop smoking, phobias, IBS, chronic pain, addiction and many other health complaints.\r\nWe also work with many companies and groups to improve communication skills, reduce stress, improve well being and boost performance for staff and management.\r\n\r\nWe use a range of modern techniques that achieve great results quickly including Hypnosis, Self-Hypnosis, Emotional Freedom Technique - EFT, Neuro Linguistic Programming - NLP, Meditation, Mindfulness and others as appropriate.\r\n\r\nFor further infomration simply complete the form above or give us a call on 07568 455 809. We can even arrange a free phone consultation if required.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 16:14:24','2018-09-02 16:14:24','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1349,1,'2018-09-02 16:16:58','2018-09-02 16:16:58','<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks.</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1338\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/newcastle-hypnotherapy-group-talks-300x200.jpg\" alt=\"newcastle hypnotherapy group talks\" width=\"300\" height=\"200\" />Would your company, charity, group or organisation value a talk, presentation or demonstration by a member of our team?\r\nNewcastle Hypnotherapy Group Talks are an entertaining way to explore a number of topics and even involve your group in new subjects and learning new skills.\r\n\r\nWe regularly give public talks and demonstrations that can be tailored to your group or chosen topic.\r\n<h2><strong><span style=\"color: #008000;\">Popular Group Talk &amp; Presentation Subjects</span></strong></h2>\r\n<ul>\r\n 	<li>Hypnosis &amp; Hypnotherapy</li>\r\n 	<li>Self-Hypnosis</li>\r\n 	<li>NLP - Neuro Linguistic Programming</li>\r\n 	<li>EFT Tapping - Emotional Freedom Technique</li>\r\n 	<li>Meditation &amp; Mindfulness</li>\r\n 	<li>Anxiety Help</li>\r\n 	<li>Stress Management</li>\r\n 	<li>Depression Help</li>\r\n 	<li>Building Self-Confidence</li>\r\n 	<li>Public Speaking</li>\r\n 	<li>Communication Skills</li>\r\n 	<li>Peak Performance</li>\r\n 	<li>Changing Habits</li>\r\n 	<li>Pain Management</li>\r\n 	<li>Past Life Regression</li>\r\n 	<li>Improved Sleep</li>\r\n 	<li>Memory Issues</li>\r\n</ul>\r\nAlternatively, we can tailor a talk to a chosen topic or subject to suit your group,\r\n\r\nSimply contact us through the form below, giving us a little information and a member of the team will contact you shortly.\r\n\r\n[wpforms id=\"35\" title=\"true\"]\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks</strong></span></h2>\r\nWe usually give a group talk and demonstration at the monthly Mind Body Spirit Fair that takes please at <strong><a href=\"http://www.the-vault.org/\">The Vault</a>,</strong> Wallsend, Newcastle upon Tyne.\r\nYou can learn more about our other <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>regular events and The Wednesday Workshops here.</strong></a>\r\n<h2><span style=\"color: #008000;\"><strong>What Can Newcastle Hypnotherapy Help With?</strong></span></h2>\r\nWe help people to fix or improve problems for many issues such as anxiety, stress, depression, self-confidence, weight loss, stop smoking, phobias, IBS, chronic pain, addiction and many other health complaints.\r\nWe also work with many companies and groups to improve communication skills, reduce stress, improve well being and boost performance for staff and management.\r\n\r\nWe use a range of modern techniques that achieve great results quickly including Hypnosis, Self-Hypnosis, Emotional Freedom Technique - EFT, Neuro Linguistic Programming - NLP, Meditation, Mindfulness and others as appropriate.\r\n\r\nFor further infomration simply complete the form above or give us a call on 07568 455 809. We can even arrange a free phone consultation if required.\r\n<div>\r\n<h2><a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy\'s <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop\'s <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n&nbsp;\r\n\r\n&nbsp;','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 16:16:58','2018-09-02 16:16:58','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1350,1,'2018-09-02 16:19:51','2018-09-02 16:19:51','<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks.</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1338\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/newcastle-hypnotherapy-group-talks-300x200.jpg\" alt=\"newcastle hypnotherapy group talks\" width=\"300\" height=\"200\" />Would your company, charity, group or organisation value a talk, presentation or demonstration by a member of our team?\r\nNewcastle Hypnotherapy Group Talks are an entertaining way to explore a number of topics and even involve your group in new subjects and learning new skills.\r\n\r\nWe regularly give public talks and demonstrations that can be tailored to your group or chosen topic.\r\n<h2><strong><span style=\"color: #008000;\">Popular Group Talk &amp; Presentation Subjects</span></strong></h2>\r\n<ul>\r\n 	<li>Hypnosis &amp; Hypnotherapy</li>\r\n 	<li>Self-Hypnosis</li>\r\n 	<li>NLP - Neuro Linguistic Programming</li>\r\n 	<li>EFT Tapping - Emotional Freedom Technique</li>\r\n 	<li>Meditation &amp; Mindfulness</li>\r\n 	<li>Anxiety Help</li>\r\n 	<li>Stress Management</li>\r\n 	<li>Depression Help</li>\r\n 	<li>Building Self-Confidence</li>\r\n 	<li>Public Speaking</li>\r\n 	<li>Communication Skills</li>\r\n 	<li>Peak Performance</li>\r\n 	<li>Changing Habits</li>\r\n 	<li>Pain Management</li>\r\n 	<li>Past Life Regression</li>\r\n 	<li>Improved Sleep</li>\r\n 	<li>Memory Issues</li>\r\n</ul>\r\nAlternatively, we can tailor a talk to a chosen topic or subject to suit your group,\r\n\r\nSimply contact us through the form below, giving us a little information and a member of the team will contact you shortly.\r\n\r\n[wpforms id=\"35\" title=\"true\"]\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks</strong></span></h2>\r\nWe usually give a group talk and demonstration at the monthly Mind Body Spirit Fair that takes please at <strong><a href=\"http://www.the-vault.org/\">The Vault</a>,</strong> Wallsend, Newcastle upon Tyne.\r\nYou can learn more about our other <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>regular events and The Wednesday Workshops here.</strong></a>\r\n<h2><span style=\"color: #008000;\"><strong>What Can Newcastle Hypnotherapy Help With?</strong></span></h2>\r\nWe help people to fix or improve problems for many issues. These include anxiety, stress, depression, self-confidence, weight loss, stop smoking, phobias, IBS, chronic pain, addiction and many other health complaints.\r\n\r\nNewcastle Hypnotherapy works with many companies and groups to improve communication skills, reduce stress, improve well being and boost performance for staff and management.\r\n\r\nWe use a range of modern techniques that achieve great results quickly including Hypnosis, Self-Hypnosis, Emotional Freedom Technique - EFT, Neuro Linguistic Programming - NLP, Meditation, Mindfulness and others as appropriate.\r\n\r\nFor further infomration simply complete the form above or give us a call on 07568 455 809. We can even arrange a free phone consultation if required.\r\n<div>\r\n<h2><a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy\'s <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop\'s <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n&nbsp;\r\n\r\n&nbsp;','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 16:19:51','2018-09-02 16:19:51','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1351,1,'2018-09-02 16:20:52','2018-09-02 16:20:52','<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks.</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1338\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/newcastle-hypnotherapy-group-talks-300x200.jpg\" alt=\"newcastle hypnotherapy group talks\" width=\"300\" height=\"200\" />Would your company, charity, group or organisation value a talk, presentation or demonstration by a member of our team?\r\nNewcastle Hypnotherapy Group Talks are an entertaining way to explore a number of topics and even involve your group in new subjects and learning new skills.\r\n\r\nWe regularly give public talks and demonstrations that can be tailored to your group or chosen topic.\r\n<h2><strong><span style=\"color: #008000;\">Popular Group Talk &amp; Presentation Subjects</span></strong></h2>\r\n<ul>\r\n 	<li>Hypnosis &amp; Hypnotherapy</li>\r\n 	<li>Self-Hypnosis</li>\r\n 	<li>NLP - Neuro Linguistic Programming</li>\r\n 	<li>EFT Tapping - Emotional Freedom Technique</li>\r\n 	<li>Meditation &amp; Mindfulness</li>\r\n 	<li>Anxiety Help</li>\r\n 	<li>Stress Management</li>\r\n 	<li>Depression Help</li>\r\n 	<li>Building Self-Confidence</li>\r\n 	<li>Public Speaking</li>\r\n 	<li>Communication Skills</li>\r\n 	<li>Peak Performance</li>\r\n 	<li>Changing Habits</li>\r\n 	<li>Pain Management</li>\r\n 	<li>Past Life Regression</li>\r\n 	<li>Improved Sleep</li>\r\n 	<li>Memory Issues</li>\r\n</ul>\r\nAlternatively, we can tailor a talk to a chosen topic or subject to suit your group,\r\n\r\nSimply contact us through the form below, giving us a little information and a member of the team will contact you shortly.\r\n\r\n[wpforms id=\"35\" title=\"true\"]\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks</strong></span></h2>\r\nWe usually give a group talk and demonstration at the monthly Mind Body Spirit Fair that takes please at <strong><a href=\"http://www.the-vault.org/\">The Vault</a>,</strong> Wallsend, Newcastle upon Tyne.\r\nYou can learn more about our other <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>regular events and The Wednesday Workshops here.</strong></a>\r\n<h2><span style=\"color: #008000;\"><strong>What Can Newcastle Hypnotherapy Help With?</strong></span></h2>\r\nWe help people to fix or improve problems for many issues. These include anxiety, stress, depression, self-confidence, weight loss, stop smoking, phobias, IBS, chronic pain, addiction and many other health complaints.\r\n\r\nNewcastle Hypnotherapy works with many companies and groups to improve communication skills, reduce stress, improve well being and boost performance for staff and management.\r\n\r\nUsing a range of modern techniques, we can help you achieve great results quickly. These include Hypnosis, Self-Hypnosis, Emotional Freedom Technique - EFT, Neuro Linguistic Programming - NLP, Meditation, Mindfulness and others as appropriate.\r\n\r\nFor further infomration simply complete the form above or give us a call on 07568 455 809. We can even arrange a free phone consultation if required.\r\n<div>\r\n<h2><a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy\'s <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop\'s <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n&nbsp;\r\n\r\n&nbsp;','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 16:20:52','2018-09-02 16:20:52','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1352,1,'2018-09-02 16:22:24','2018-09-02 16:22:24','<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks.</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1338\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/newcastle-hypnotherapy-group-talks-300x200.jpg\" alt=\"newcastle hypnotherapy group talks\" width=\"300\" height=\"200\" />Would your company, charity, group or organisation value a talk, presentation or demonstration by a member of our team?\r\nNewcastle Hypnotherapy Group Talks are an entertaining way to explore a number of topics and even involve your group in new subjects and learning new skills.\r\n\r\nWe regularly give public talks and demonstrations that can be tailored to your group or chosen topic.\r\n<h2><strong><span style=\"color: #008000;\">Popular Group Talk &amp; Presentation Subjects</span></strong></h2>\r\n<ul>\r\n 	<li>Hypnosis &amp; Hypnotherapy</li>\r\n 	<li>Self-Hypnosis</li>\r\n 	<li>NLP - Neuro Linguistic Programming</li>\r\n 	<li>EFT Tapping - Emotional Freedom Technique</li>\r\n 	<li>Meditation &amp; Mindfulness</li>\r\n 	<li>Anxiety Help</li>\r\n 	<li>Stress Management</li>\r\n 	<li>Depression Help</li>\r\n 	<li>Building Self-Confidence</li>\r\n 	<li>Public Speaking</li>\r\n 	<li>Communication Skills</li>\r\n 	<li>Peak Performance</li>\r\n 	<li>Changing Habits</li>\r\n 	<li>Pain Management</li>\r\n 	<li>Past Life Regression</li>\r\n 	<li>Improved Sleep</li>\r\n 	<li>Memory Issues</li>\r\n</ul>\r\nAlternatively, we can tailor a talk to a chosen topic or subject to suit your group,\r\n\r\nSimply contact us through the form below, giving us a little information and a member of the team will contact you shortly.\r\n\r\n[wpforms id=\"35\" title=\"true\"]\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Group Talks</strong></span></h2>\r\nWe usually give a group talk and demonstration at the monthly Mind Body Spirit Fair that takes please at <strong><a href=\"http://www.the-vault.org/\">The Vault</a>,</strong> Wallsend, Newcastle upon Tyne.\r\nYou can learn more about our other <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>regular events and The Wednesday Workshops here.</strong></a>\r\n<h2><span style=\"color: #008000;\"><strong>What Can Newcastle Hypnotherapy Help With?</strong></span></h2>\r\nWe help people to fix or improve problems for many issues. These include anxiety, stress, depression, self-confidence, weight loss, stop smoking, phobias, IBS, chronic pain, addiction and many other health complaints.\r\n\r\nNewcastle Hypnotherapy works with companies and groups to improve communication skills, reduce stress, improve well being and boost performance for staff and management.\r\n\r\nUsing a range of modern techniques, we can help you achieve great results quickly. These include Hypnosis, Self-Hypnosis, Emotional Freedom Technique - EFT, Neuro Linguistic Programming - NLP, Meditation, Mindfulness and others as appropriate.\r\n\r\nFor further infomration simply complete the form above or give us a call on 07568 455 809. We can even arrange a free phone consultation if required.\r\n<div>\r\n<h2><a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy\'s <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop\'s <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n&nbsp;\r\n\r\n&nbsp;','GROUP TALKS','','inherit','closed','closed','','1328-revision-v1','','','2018-09-02 16:22:24','2018-09-02 16:22:24','',1328,'https://www.newcastle-hypnotherapy.com/1328-revision-v1/',0,'revision','',0),(1354,1,'2018-09-02 16:24:25','2018-09-02 16:24:25','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems.</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Hypnosis Pain Management Program</span>\r\nQuestions and Answers</strong></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Long Does The Hypnosis Pain Management Program Take?</span></strong></h2>\r\nWe usually start with a program of 3 sessions over a period of 5 weeks.\r\nFor most people, this works really well with good results happening during the first session.\r\nWe do tailor the program to each client as each person\'s pain symptoms can be very different. We can assess this in more detail during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your free consultation</a>.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>What Happens During The Hypnosis Pain Management Program?</strong></span></h2>\r\nFirstly we assess how high your pain levels are and explore the different types of pain you experience over time. We then teach you the powerful pain management techniques and show you how to reduce your pain, step by step.\r\nOver time we assess which self-help pain techniques work the best for you and work to make them more effective.\r\nWe do use hypnosis and self-hypnosis techniques along with NLP and EFT for best results to take control and manage your pain levels.\r\n<h2><strong><span style=\"color: #008000;\">Will These Pain Management Techniques Work For Chronic Pain?</span></strong></h2>\r\nYes, the hypnosis pain management program will work on all types of pain including back pain, chronic pain, migraine, stress pain and other types of pain.\r\n<h2><strong><span style=\"color: #008000;\">Where Do You Conduct The Pain Management Sessions?</span></strong></h2>\r\nNewcastle Hypnotherapy work from multiple therapy locations in the North East. Our main locations are The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval. We also work from Cramlington and Bedlington in Northumberland. We are flexible and can usually find a suitable location for you.\r\n<h2><strong><span style=\"color: #008000;\">Can You Help With Pain Management Online?</span>\r\n</strong></h2>\r\nYes, we do pain management and hypnotherapy work using Skype, Zoom and other video platforms. Clients do see excellent results using video and online sessions.\r\n<h2><strong><span style=\"color: #008000;\">Is It Safe To Switch Off Pain Signals?</span></strong></h2>\r\nPain signals are a very important part of our bodies natural health warning system as they tell us when things are wrong.\r\nWhen we start to work together we assess your pain issues and look at the best way forward for you.\r\nSome people are just overly sensitive to pain and this is fine to manage the pain down to a comfortable level.  In some cases, we will only work with you once your pain problem has been investigated by your doctor or other healthcare professional. We do work with other therapists and healthcare professionals to find the best way forward for each client.\r\nIt is wise to find out what can be causing pain and then decide how to proceed from there.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis Help With Pain Management?\r\n</span></strong></h2>\r\nCertainly, Self-Hypnosis is a very powerful set of tools that can quickly control pain, emotions, feelings and mental states. We do teach self-hypnosis techniques through private sessions and group workshops as it can be very helpful with pain issues and many other problems.\r\nNewcastle Hypnotherapy runs a regular <strong><a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #008000;\">Wednesday Workshops and Events</span></a> </strong>in Newcastle where we teach <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong></span> along with many other self-improvement subjects.\r\n<h2><span style=\"color: #008000;\">Why Is Pain Medication Not Effective For Many People?</span></h2>\r\nEvery person is different, with a different health history and a different diet. Some pain medications can be beneficial for one person and not effective again pain for others.\r\nMany of our clients approach us as a last resort after finding pain medication has not helped them or that the side effect of medications is causing problems.\r\nSometimes pain can be caused by emotional issues as well as physical issues. Hypnosis can be very effective for pain relief along with many other health problems.\r\n<h2><strong><span style=\"color: #008000;\">Will The NHS Help With Hypnotherapy Pain Management?</span></strong></h2>\r\nSadly hypnotherapy is not available on the NHS. Our clients do arrange their hypnotherapy for pain management for themselves. We do believe hypnotherapy should be provided by the NHS as the benefits are very effective for our clients.\r\n<h2><strong><span style=\"color: #008000;\">Can Hypnotherapy Help With Surgery Pain?</span></strong></h2>\r\nYes. Learning pain management techniques can make surgery much more comfortable and also reduce the stress and anxiety out of medical procedures, dental appointments and giving birth.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Pain?</strong></span></h2>\r\nDifferent health professionals use different terms or definitions to describe the pain. As a rough guide:\r\nAcute Pain is often short-term pain such as a sprained ankle.\r\nChronic Pain or Persistent Pain is longterm pain such as back pain or arthritis.\r\nRecurrent or Intermittent Pain comes and goes, such as a toothache.\r\n\r\nPain is a signal from a part of the body to let us know there is a problem, damage or injury.\r\nSometimes pain can be amplified or exaggerated when we are suffering from emotional issues, such as anxiety, stress and depression. Over time this can become a habit that is not always related to the cause of pain and sometimes there is not a cause of the pain. This is where pain management can be most useful to reset these pain signals or calm them down.\r\n<h2><strong><span style=\"color: #008000;\">Besides Pain Medication, What Else Can Help Pain Problems?</span></strong></h2>\r\nWe use a range of modern techniques to help manage pain including Meditation, Mindfulness, Self-Hypnosis, Hypnosis, Breathing Techniques, Diet, Nutrition, Excercise, Visualisation, Emotional Freedom Technique -EFT and NLP techniques.\r\nPart of the Hypnosis Pain Management Program is to find the right techniques that work well for you.\r\n<h2><span style=\"color: #008000;\"><strong>How Should We Move Forward?</strong></span></h2>\r\nWhen you are ready to take control of your pain you can call us on 07568 455 809 for your free consultation or complete the form below.\r\n[wpforms id=\"35\"]\r\n\r\nNewcastle Hypnotherapy is a member of <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\nYou can also find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a> and <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n&nbsp;\r\n\r\n&nbsp;','PAIN MANAGEMENT & RELIEF','','inherit','closed','closed','','1252-revision-v1','','','2018-09-02 16:24:25','2018-09-02 16:24:25','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(1355,1,'2018-09-02 16:25:01','2018-09-02 16:25:01','<h2><img class=\"alignleft size-medium wp-image-1318\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/partnership-300x200.jpg\" alt=\"partnership\" width=\"300\" height=\"200\" /><strong><span style=\"color: #008000;\">Happy Clients</span></strong></h2>\r\nOur aim is to make sure our clients get the best possible results from our services. As you will see many clients give us great feedback on the results they experience and the service we provide.\r\nIn order to make this happen for you, we need a good working partnership between us.\r\n\r\nIt is important to understand that to make Hypnotherapy, NLP and other treatments work there must be a commitment from both the client and the therapist.\r\n\r\nChange work takes place during the consultation sessions and through the homework given to the client between sessions.\r\n\r\nAs the client, when you agree to undertake a course of treatment you also agree to engage with the process, complete any homework that you are given, listen to the CDs at appropriate times and provide feedback as requested.\r\nIt is with commitment and partnership that you will see the best results.\r\n<h2><span style=\"color: #008000;\"><strong>Treatment Fees.</strong></span></h2>\r\nThe fee for your session or program of sessions will be agreed by us both in advance of the sessions commencing.\r\nEach session can take between an hour to an hour and a half. If this is to vary you will be informed in advance.\r\n<h2><span style=\"color: #008000;\"><strong>Rescheduling &amp; Cancellation Policy.</strong></span></h2>\r\nWe do ask all clients to give us at least 48 hours notice if you wish to reschedule a session. We may charge a rescheduling fee of £30 if you need to change your appointment when less than 48 hours notice is given.\r\nIf you wish to cancel a session or program we require 48 hours notice. Cancellations made less than 48 hours will be charged in full.\r\n<h2><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">Arriving Late For An Appointment</span>.</strong></span></h2>\r\nIf you arrive late for your appointment we will do our best to continue that session. This is not always possible as we usually have other clients booked in for ongoing sessions. Please notify us as soon as possible if you are going to be late.\r\nA fee may be charged if you are late for a session to reschedule your appointment.\r\n<h2><span style=\"color: #008000;\"><strong>Confidentiality.</strong></span></h2>\r\nAll sessions and information are kept confidential. We will not release any information to anyone without written authorisation for you, except as required by law.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','TERMS & CONDITIONS','','inherit','closed','closed','','1317-revision-v1','','','2018-09-02 16:25:01','2018-09-02 16:25:01','',1317,'https://www.newcastle-hypnotherapy.com/1317-revision-v1/',0,'revision','',0),(1356,1,'2018-09-02 16:25:40','2018-09-02 16:25:40','<strong><img class=\"alignleft size-medium wp-image-1088\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/IMG_20180519_154207-300x225.jpg\" alt=\"what is hypnosis\" width=\"300\" height=\"225\" />\"What is hypnosis and how can hypnotherapy help me?\" is probably the most common question I am asked on a regular basis.</strong>\r\nI also find many people have incorrect ideas about hypnosis and hypnotherapy due to exaggerated ideas in films, books and stage hypnosis.\r\nHere are some answers to the most popular questions about hypnosis and hypnotherapy.\r\n<h2><span style=\"color: #008000;\"><strong>What is Hypnosis?</strong></span></h2>\r\nHypnosis is a naturally occurring state of mind that we all experience on a regular basis. A good example is being immersed in a good movie, a great book, our favourite music or an activity. Time may pass more quickly or you may be totally oblivious to things happening around you.\r\nDuring hypnotherapy your hypnotherapist is able to guide you into this state, where you are relaxed and also very aware of your thoughts and suggestions, to modify behaviours or habits for the better.\r\n<h2><span style=\"color: #008000;\"><strong>What does it feel like to be hypnotised?</strong></span></h2>\r\nMost clients report they experience deep relaxation, being in control, being more aware than normal and feeling refreshed and positive as the session comes to an end.\r\nClients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.\r\n<h2><strong><span style=\"color: #008000;\">Will I lose control?</span></strong></h2>\r\nNo. Hypnosis is a state of consent and you a totally aware, awake and in control at all times.\r\n<h2><span style=\"color: #008000;\"><strong>How quickly does change happen with hypnosis?</strong></span></h2>\r\nChanges usually happen from the very first session as change can happen very quickly with some clients and with others it can take place across a short period of time over a few session.\r\n<h2><span style=\"color: #008000;\"><strong>Is hypnosis dangerous?</strong></span></h2>\r\nHypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognized by the American Medical Association since 1958<strong>.</strong>  Hypnosis can be dangerous if used while operating machinery or driving.\r\n<h2><span style=\"color: #008000;\"><strong>What is the difference between hypnosis and self-hypnosis?</strong></span></h2>\r\nWhen you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life. <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>What is hypnosis able to help with?</strong></span></h2>\r\nHypnosis can help with a wide range of problems and issues or can be used to improve already useful habits.\r\nOur clients see amazing success with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">depression</a>, bad habits, confidence, PTSD, confidence, weight loss, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">stop smoking</a>, addiction, tinnitus, sleep issues, relaxation, alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">candida</a>, digestive issues, nerves, allergies, intolerances, weight management, happiness, destructive behaviours, public speaking, IBS and so much more.\r\n<h2><span style=\"color: #008000;\"><strong>Can hypnosis be conducted successfully online?</strong></span></h2>\r\nCertainly. We find results are just as successfull over Skype and other online platforms for cleints who are unable to meet with us in person.\r\n<h2><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h2>\r\nSimply <strong><em>give Mark a call on 07568 455 809</em></strong> to arrange a <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\"><span style=\"color: #008000;\">free phone consultation</span></a></strong> to explore how hypnosis and hypnotherapy can help you.\r\n\r\nWould you like to learn about the regular events we run at <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/\">Newcastle Hypnotherapy?</a>\r\nComplete your details below for more information.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nWe are GDPR compliant. We will only use your details to send you information regarding events and news of our services. You may unsubscribe at any time using the link in an email.\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','WHAT IS HYPNOSIS','','inherit','closed','closed','','1079-revision-v1','','','2018-09-02 16:25:40','2018-09-02 16:25:40','',1079,'https://www.newcastle-hypnotherapy.com/1079-revision-v1/',0,'revision','',0),(1357,1,'2018-09-02 16:25:57','2018-09-02 16:25:57','<h2><span style=\"color: #008000;\"><strong><img class=\"alignleft size-thumbnail wp-image-813\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/Cleint-feedback-150x150.jpg\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming.\r\n</strong></span></h2>\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong><span style=\"color: #000000;\">\"<span class=\"Linkify\">Thankyou for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce\"</span></span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback  by Gary</span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;','CLIENT FEEDBACK','','inherit','closed','closed','','200-revision-v1','','','2018-09-02 16:25:57','2018-09-02 16:25:57','',200,'https://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(1358,1,'2018-09-02 16:26:14','2018-09-02 16:26:14','<h2><strong><span style=\"color: #008000;\">Are</span><span style=\"color: #008000;\"> you looking to take control and reduce your anxiety today?</span></strong></h2>\n<p><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.<br />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.<br /></strong><br /><strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong></p>\n<p>Anxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.</p>\n<p><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong></p>\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety<br /></span></strong></h2>\n<p>Many of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.</p>\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\n<p><strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.<br /></strong></p>\n<ul>\n<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\n<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\n<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\n</ul>\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\n<p>As anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.<br />One of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.<br />We also teach you some great skills to put you back in control and take charge of your anxiety symptoms.<br /><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span></p>\n<p><img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]</p>\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\n<p>The first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.<br />We usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.<br />Once we have dealt with the most serious issue the rest is usually easier to deal with.<br />The aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.<br />The program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.</p>\n<p><strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong></p>\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\n<p>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.<br />With a little work, we can create awareness of your cause of anxiety and show you how to take control.<br />Anxiety can have many symptoms including:</p>\n<ul>\n<li>Sleep problems</li>\n<li>Switching off at night</li>\n<li>Unable to relax</li>\n<li>Being afraid of the wrong things</li>\n<li>Becoming stressed easily</li>\n<li>Rapid breathing</li>\n<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\n<li>Digestive problems</li>\n<li>Panic Attacks</li>\n<li>Bruxism and muscle clenching</li>\n<li>Reduced immune system</li>\n<li>Cold, sweaty, numb or tingling hands or feet</li>\n<li>Heart palpitations</li>\n<li>Dry mouth</li>\n<li>Nausea</li>\n</ul>\n<p>Thankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.</p>\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\n<p>Certainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.<br />NLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.<br />The benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.</p>\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\n<p>Yes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.</p>\n<p><span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span><br /><span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span></p>\n<p><strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a></p>\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.<br /></strong></span></h2>\n<p><span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.<br /></span>[wpforms id=\"35\"]<br /></strong></span></p>\n<p>We are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.</p>\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\n<p>We are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.</p>\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\n<p>Hypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.</p>\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\n<p><span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.<br /></span></p>\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong><br /></span></h2>\n<p><span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.<br /></span></p>\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong><br /></span></h2>\n<p>Yes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.</p>\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\n<p>Anxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.</p>\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\n<p>They may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. <br />Our clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.</p>\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\n<p>Yes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.</p>\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?<br /></span></strong></h2>\n<p>Self-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.<br />We also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a></p>\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span><br /></em></h2>\n<p><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em></p>\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\n<p>Your first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues. <br /></em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong></p>\n<p><br /><br />Newcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a></p>\n<p> </p>\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-02 16:26:14','2018-09-02 16:26:14','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1359,1,'2018-09-02 16:26:36','2018-09-02 16:26:36','<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Mark, stress management therapist\" width=\"150\" height=\"150\" />\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','STRESS & STRESS MANAGEMENT','','inherit','closed','closed','','106-revision-v1','','','2018-09-02 16:26:36','2018-09-02 16:26:36','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(1360,1,'2018-09-02 16:26:51','2018-09-02 16:26:51','<img class=\"alignleft size-medium wp-image-1119\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/cereal-898073_1280-300x200.jpg\" alt=\"Lose Weight With Hypnosis\" width=\"300\" height=\"200\" /><strong>Who else is is ready to Lose Weight &amp; Feel Great?</strong>\r\nThe \"Lose Weight With Hypnosis\" program will help you to feel good, look better and increase your energy.\r\nThis program will show you the tricks to maintaining a healthy weight while still enjoying your favourite foods and taking control of those food cravings.\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Gary </strong></span><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong><strong>sugar-free</strong></em><strong><em>’ for over two weeks”</em> </strong>\r\n<h2><span style=\"color: #008000;\"><strong>Lose Weight With Hypnosis.</strong></span></h2>\r\nHypnosis is a powerful tool that puts you back in control while also taking control of emotional eating and beating those food cravings. Hypnotherapy will help you:\r\n<ul>\r\n 	<li>Learn when hunger is real or emotional</li>\r\n 	<li>Give you control over your cravings</li>\r\n 	<li>Give you the willpower you need</li>\r\n 	<li>Choose the right foods to eat</li>\r\n 	<li>Make you aware of unconscious eating</li>\r\n 	<li>Eliminate unwanted behaviours &amp; bad habits</li>\r\n 	<li>Control stress or anxiety that may make things worse</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to get started and lose weight with hypnosis?</strong></span></h2>\r\nYour first step is to arrange your free phone consultation. This is where we can discuss any issues that may have held you back in the past, decide how you want to move forward and see if hypnotherapy is right for you.\r\n<strong>To get started simply call Mark on 07568 455 809 to arrange your free consultation.</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Joyce</span> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Lose Weight With Hypnosis - Questions &amp; Answers.</span>\r\n</strong></h2>\r\n<strong>Will I have to go hungry?</strong>\r\nNo. When you are hungry you need to eat. This program will help you recognise when you are really hungry and when you are eating out of habit or emotion.\r\n\r\n<strong>Is the Weight Loss With Hypnosis Program the same for everyone?</strong>\r\nNo. We tailor the program to your individual needs as everyone is different and we all have a different history.\r\n\r\n<strong>How does anxiety &amp; stress affect weight loss?</strong>\r\nEveryone experiences anxiety &amp; stress on a daily basis and most people handle these naturally.\r\nIf you handle anxiety &amp; stress badly, we need to work on these together as this really increases your weight loss results.\r\n\r\n<strong>Is the Weight Loss With Hypnosis program the same as the Hypnotic Gastric Band?</strong>\r\nNo. The hypnotic gastric band program has been very successful, for many people. However, it is not suitable for everyone.  You may have health issues or suffer from anxiety, stress or depression. We need to evaluate these and tailor the program to suit your needs.\r\n\r\n<strong>How long does this program take?</strong>\r\nUsually, the Weight Loss With Hypnosis program takes 3 to 4 sessions of about 1 hour, depending on your needs.\r\n\r\n<strong>How fast will I lose weight?</strong>\r\nYour weight loss should always be at a speed that is comfortable for you and we prefer to work on healthy weight loss for long-term results.\r\n\r\n<strong>How does hypnosis help with weight loss?</strong>\r\nHypnosis is a powerful way to change your behaviours and habits that may be causing your weight gain.\r\nHypnotherapy will make you aware of these behaviours and give you self-control.\r\n\r\n<strong>What is my next step?</strong>\r\nYour next step is to arrange your free phone consultation with Mark, to look at the best way forward for you and answer your questions. <strong>Call 07568 455 809 today or complete the form below.</strong>\r\n\r\n[wpforms id=\"35\"]\r\n<div>\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"color: #008000;\"><strong>Why is obesity and being overweight loss becoming such a big issue?</strong></span></h2>\r\nFirstly we are being pushed repeatedly to buy more and more products, including food.\r\nMany adverts now link emotion to food and as a result, many of us use food to change our emotions. This means we eat at the wrong times or when we feel unhappy.\r\n\r\nAnother issue is our modern busy lives. Time is often short and very often we eat unconsciously without recognising how much and exactly what we are eating. As a result, we become less aware of when we are full and often eat food despite being full.\r\n<h2><span style=\"color: #008000;\"><strong>Why Do Slimming Clubs Not Work?</strong></span></h2>\r\nMany people turn to slimming clubs when they need help with weight loss. Statistically, most of those people end up gaining more weight long-term, than when they started.\r\nOne of the issues with these clubs is the constant magazines and messages about food. Rather than focus on being healthy, fit and energetic the focus is on food, food and more food. Very often these foods are those being sold by the clubs themselves.\r\n\r\nAnother big issue is changing peoples self-image. A big part of what we do is to allow clients to see themselves as a healthier, fitter, slimmer person. If a person has a negative self-image or always believes they will be overweight, unfit and unhealthy, they will most likely revert back to that old behaviour.\r\n<h2><strong><span style=\"color: #008000;\">How can hypnosis make things easier?</span></strong></h2>\r\nHypnosis and hypnotherapy are so wonderful as we can change how a person sees themselves. Once this new belief has been created, changing beliefs, habits and behaviours are so much easier and results are seen so much faster.\r\n\r\nIf you are now ready to also change your life, lose weight with hypnosis, increase your energy and feel so much better, give Mark a call on 07568 455 809 and we can arrange your free consultation.','LOSE WEIGHT WITH HYPNOSIS','','inherit','closed','closed','','556-revision-v1','','','2018-09-02 16:26:51','2018-09-02 16:26:51','',556,'https://www.newcastle-hypnotherapy.com/556-revision-v1/',0,'revision','',0),(1361,1,'2018-09-02 16:27:10','2018-09-02 16:27:10','<h2><strong><span style=\"color: #008000;\">\r\n<img class=\"alignleft size-medium wp-image-874\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/belly-3186730_1280-300x200.jpg\" alt=\"Hypnosis for Candida Relief\" width=\"300\" height=\"200\" />Do you find Candida Confusing?</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><span style=\"color: #000000;\">You may be aware that</span><strong> </strong></span>Candida, also known as a Yeast Infection, is becoming more common as a health problem and that there are many conflicting ideas on how to treat it. Candida Diets often don\'t work well and can be very hard to follow.\r\nCandida Drugs often have no benefits leaving people frustrated and confused.\r\nMedical Professionals are often confused by Candida with some claiming it does not exist at all.\r\nExpensive Supplements often don\'t work why some people never beat Candida despite it being linked to many other health issues.\r\nThere are many possible causes of Candida because of our current lifestyles, food production methods and prescribed medications.\r\nThe good news is that you can beat Candida, with a little help from the Hypnosis for Candida Relief Program.\r\n\r\n<img class=\"alignleft wp-image-877 size-medium\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/candid-hypnosis-relief-300x229.jpg\" alt=\"candida hypnosis relief\" width=\"300\" height=\"229\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #ff6600;\"><strong>Get 3 FREE Fast Tips for Candida Relief and even more Candida Help when you join the Candida Relief Newsletter below.</strong></span>\r\n\r\nYour data is always safe with us and we are GDPR Compliant.\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"875\" title=\"Candida Tips Newsletter\"]\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Hypnosis For Candida Relief - The Program</strong></span></h2>\r\nIn order to successfully treat Candida issues and symptoms, we need to look at the full picture including your diet, your lifestyle, your nutrition, your environment, related health issues and your Stress &amp; Anxiety levels. This is where the Hypnosis for Candida Relief Program can really help.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Hypnosis for Candida Relief Program can</strong></span>\r\n<ul>\r\n 	<li>Speed up recovery time</li>\r\n 	<li>Quickly reduces candida symptoms</li>\r\n 	<li>Help to improve digestive issues</li>\r\n 	<li>Reduces your stress &amp; anxiety levels</li>\r\n 	<li>Give you a clear plan of action</li>\r\n 	<li>Save your money on expensive foods, supplements &amp; drugs</li>\r\n 	<li>Show you fast &amp; continuing results</li>\r\n 	<li>Put you back in control of your health</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Candida and start feeling better?</strong></span></h2>\r\nThe best way forward is to arrange your free phone consultation so we can discuss your Candida problems and see how the Hypnosis for Candida Relief Program will help you.\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation. Alternatively, fill in the contact form at the bottom of the page and please let me know the best time to call you.\r\n<h2><strong><span style=\"color: #008000;\"><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Hypnosis for Candida Relief\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Hypnosis for Candida Relief \" width=\"150\" height=\"150\" />My Personal Candida Journey &amp; How I Beat It</span></strong></h2>\r\nSeveral years ago I discovered I had Candida because of a new year health program.\r\nPart of that program was to consume healthy juices and smoothies and as usual, I was flushing out those toxins nicely but the weight was not coming off as usual. Then I noticed the itching that increased every time I consumed certain foods. I had completed these health programs on several occasions and this one was very different. My mood was awful, my energy didn\'t increase, as usual, my digestive system was all over the place and the mind fog was really awful.\r\nI expected this all to pass over the week but instead, it appeared to be getting stronger each day.\r\n\r\nOn contacting a qualified friend I was tested and it was confirmed that my Candida levels were very high.\r\nI started to read everything I could find about Candida health issues and found the conflicting opinions of the many doctors, nutritionists, dietitians and other Candia experts very confusing. Almost every one of them had very different views with some stating that Candida did not exist at all.\r\n\r\nAfter almost a weeks research I put my Candida Diet plan together, purchased a fortune\'s worth of health supplements and stocked up on healthier foods. I was now aware that the Candida had been a problem for a few years and the new year health program had just highlighted the Candida problem.\r\n<h2><strong><span style=\"color: #008000;\">Things Started To Improve, BUT</span></strong></h2>\r\nI started to feel a little better within a few days and the itching had reduced. The mind fog and digestive issues got better although I really struggled at work with very low energy and my mental focus was awful.\r\nSlowly things did start to improve in many areas but my energy was so low, my productivity was awful and my mood was up and down each hour.\r\n\r\nAfter several weeks I was better than I was but I was really fed up with the horrible diet and my energy levels we not getting better. At the gym, I could only do about 10% of what I normally did before crawling out exhausted.\r\nI was also catching colds every few days and the supplements were clearly not helping.\r\nAfter six months and I went back to my research to find exactly the same story for hundreds of others. Like me they were all trying various different Candida diets and regimes.\r\nSome of them made great progress, some made no progress at all. One common factor was as soon as they went back to their regular food, the Candida issues started again.\r\nEven worse, many had got worse and the health problems had accelerated into something else.\r\n<h2><span style=\"color: #008000;\"><strong>The Answer To Candida Problems - Hypnosis For Candida Relief</strong></span></h2>\r\nI eventually found a few dozen people stating they had beaten Candida. Most in a short period of time  and they were still eating many of the bad Candida foods.\r\nStress &amp; Anxiety made progress with Candida very difficult and Candida is a perfect problem to create Stress &amp; Anxiety.\r\n\r\n<strong><span style=\"color: #ff6600;\">So, I tried it and it worked by doing the following.</span></strong>\r\n<ul>\r\n 	<li>I added back in my favourite foods and used my bodies natural feedback to see which caused the Candida flare-ups.</li>\r\n 	<li>Worked on those I managed to slowly reintroduce the problematic foods step by step.</li>\r\n 	<li>I worked on my gut health and restored the natural gut flora.</li>\r\n 	<li>Creating a Stress Relief routine, I practised this twice per day as part of a Self-Hypnosis Program.</li>\r\n 	<li>I changed the way I ate to a conscious process, allowing me to enjoy my foods more.</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Call me on 07568 455 809 today</span></strong> to book your free phone consultation.\r\nAlternatively, fill in this contact form and please let me know the best time to call you.\r\n<h2>[wpforms id=\"35\"]</h2>\r\nNewcastle Hypnotherapy operates from a number of locations in Newcastle upon Tyne, Northumberland and Online.\r\nWe most commonly work from <a href=\"http://www.the-vault.org/\">The Vault</a>, &amp; <a href=\"http://www.food-for-thought-uk.co.uk/\">Food For Thought  </a>and other locations across the North East\r\nWe can also work with you Online or through our regular Workshops &amp; Events.\r\nContact us to find out more.','CANDIDA RELIEF PROGRAM','','inherit','closed','closed','','824-revision-v1','','','2018-09-02 16:27:10','2018-09-02 16:27:10','',824,'https://www.newcastle-hypnotherapy.com/824-revision-v1/',0,'revision','',0),(1362,1,'2018-09-02 16:27:25','2018-09-02 16:27:25','<h1><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h1>\r\n<h2><span style=\"color: #008000;\"><strong>We help people with depression to take control and make their lives better.\r\n</strong></span></h2>\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n<h2><strong><span style=\"color: #008000;\">The good news is,  we can help with your depression.</span></strong></h2>\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n<h2><span style=\"color: #008000;\"><strong>Jenny’s experience.</strong></span></h2>\r\n<em><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to make that call. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span></em>\r\n\r\n<em><span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span></em>\r\n<h2><strong><span style=\"color: #008000;\">Depression You Have The Choice &amp; We Have The Skills.</span></strong></h2>\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n<h2><strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?\r\n</span></strong></h2>\r\nWorking with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n<h2><span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How can Depression affect you &amp; What are the symptoms?\r\n</strong></span></h2>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms. Depression can give us a very distorted view of the world and our lives.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\nSome studies and research show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\nThe good news is that there are many techniques and therapies we use to help you with your depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','DEPRESSION','','inherit','closed','closed','','122-revision-v1','','','2018-09-02 16:27:25','2018-09-02 16:27:25','',122,'https://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(1363,1,'2018-09-02 16:27:40','2018-09-02 16:27:40','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\r\n\r\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with the Stop Smoking Hypnosis Guaranteed program.\r\nInterestingly, smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed.</strong><b>\r\n</b></span></h2>\r\nAre you ready to stop smoking? The Stop Smoking Hypnotherapy Program includes a lifetime guarantee. If you ever smoke again or have cravings to smoke, simply get in touch and I will see you again for free.\r\n<span style=\"color: #ff6600;\"><strong>How can I afford to do this?</strong></span> This program is so successful that less than 8% of my stop smoking clients need to see me again once you have completed the program. <strong>Look at this research below</strong>\r\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\r\n</li>\r\n</ul>\r\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\r\n</li>\r\n</ul>\r\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\r\n</li>\r\n</ul>\r\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\r\n\r\n</div>\r\n</div>\r\n<div class=\"wpb_text_column wpb_content_element\">\r\n<div class=\"wpb_wrapper\">\r\n<ul>\r\n 	<li>\r\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\r\n</li>\r\n</ul>\r\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\r\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\r\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\r\n</strong></span></h3>\r\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\r\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in an email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\r\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis </b><strong>Guaranteed - Your First Steps.</strong></span><b>\r\n</b></h2>\r\nYour first step is to arrange a free phone consultation to see if this stop smoking program is right for you.\r\nCall me today on 07568 455 809 or complete the form below to arrange your consultation and explore how Stop Smoking Guaranteed can work for you.\r\nDuring this relaxed consultation, I will explain how your stop smoking hypnosis sessions will work and evaluate exactly what you would like from this program. Hypnosis is a wonderful experience that will leave you feeling relaxed, calm and confident with the ability to take control.\r\n\r\nUsually, I work with clients from our locations in Newcastle upon Tyne, Northumberland and even Online.\r\n\r\n&nbsp;\r\n\r\nCall me today on 07568 455 809 or complete the form below and please let me know the best time to call you back.\r\n\r\n[wpforms id=\"35\"]\r\n\r\nNewcastle Hypnotherapy offer a range of Hypnsosis &amp; NLP services throughout the North East and can help with a wide range of issues, problems and challenges including Stop Smoking Hypnosis Guaranteed.\r\n\r\nWe are proud members of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>.','STOP SMOKING HYPNOSIS','','inherit','closed','closed','','948-revision-v1','','','2018-09-02 16:27:40','2018-09-02 16:27:40','',948,'https://www.newcastle-hypnotherapy.com/948-revision-v1/',0,'revision','',0),(1364,1,'2018-09-02 16:27:52','2018-09-02 16:27:52','[caption id=\"attachment_103\" align=\"alignleft\" width=\"150\"]<img class=\"wp-image-103 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"About Mark Therapist\" width=\"150\" height=\"150\" /> Mark -Therapist[/caption]\r\n\r\n[caption id=\"attachment_104\" align=\"alignleft\" width=\"150\"]<img class=\"wp-image-104 size-thumbnail\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-150x150.jpg\" alt=\"About Yvette - Therapist\" width=\"150\" height=\"150\" /> Yvette - Therapist[/caption]\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Mark &amp; Yvette\r\n</strong></span><strong>How do we work &amp; what do we do?</strong></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including:</span>\r\nNLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><span style=\"color: #008000;\"><strong>Where do we work?</strong></span></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><span style=\"color: #008000;\"><strong>How do I pay?</strong></span></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 or complete the form below to see what we can do for you.</span>\r\n[wpforms id=\"35\"]\r\n</strong></h3>','ABOUT','','inherit','closed','closed','','43-revision-v1','','','2018-09-02 16:27:52','2018-09-02 16:27:52','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(1365,1,'2018-09-02 16:28:16','2018-09-02 16:28:16','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1244\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />To arrange your free consultation <em>simply call <strong>07568 455 809</strong> today.</em> Alternatively, you may complete your details in the contact form below.\r\nWe will come back to you as quickly as possible.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div><span style=\"color: #ffffff;\">.</span></div>\r\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\r\n<div>Hypnotherapy near me?\r\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\r\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\r\nSimply ask and we can usually find a suitable location perfect for you.</div>\r\n<div></div>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<div></div>','FREE CONSULTATION','','inherit','closed','closed','','378-revision-v1','','','2018-09-02 16:28:16','2018-09-02 16:28:16','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1366,1,'2018-09-02 16:28:40','2018-09-02 16:28:40','<script type=\"text/javascript\" src=\"//downloads.mailchimp.com/js/signup-forms/popup/embed.js\" data-dojo-config=\"usePlainJson: true, isDebug: false\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></script><script type=\"text/javascript\">require([\"mojo/signup-forms/Loader\"], function(L) { L.start({\"baseUrl\":\"mc.us17.list-manage.com\",\"uuid\":\"40aa05bd1c8984cc46693bcdf\",\"lid\":\"aefe7dc142\"}) })</script>\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/nW4U7CSngJY?rel=0&amp;controls=0\" width=\"300\" height=\"169\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<div></div>\r\n<h2><span style=\"color: #008000;\"><strong>\r\nImagine the ability to learn Self-Hypnosis and feel the way you want to feel.</strong></span></h2>\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Lean Self-Hypnosis\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Learn Self-hypnosis Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" />Many clients are asking to learn Self-hypnosis these days and it has so many benefits for our health and wellbeing.\r\nOur self-hypnosis program helps you to make improvements in the areas of your life that you choose.\r\nThis could be helping you to reduce anxiety and stress or helping with focus and concentration, building confidence or changing those habits and behaviors.\r\n\r\nWe run regular workshops for Self-hypnosis - <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #ff9900;\"><strong>SELF-HYPNOSIS EVENTS</strong></span></a>\r\nwhere you can learn with others some really useful self-hypnosis skills and techniques that you can use for yourself.\r\nOnce you practice these skills you can learn to relax quickly, anytime, anywhere and change your thoughts and actions.\r\nYou can also direct your mind to make major changes in habits and behavior, such as weight loss, smoking etc.\r\nLook for a <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\"><strong>Self-Hypnosis Event</strong></a></span> or call us on <strong>07568 455 809</strong> today to ask about our <strong>individual sessions</strong> or even <strong>online sessions.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis Helps To Put You In Control Of Your Life.</strong></span></h2>\r\nThe first thing to ask yourself is \"What would I like to change or improve in life\"?\r\nMake a list of all of the things you would like to work on. What would you like to become? How would the new you behave? Which habits and behaviors would you like to change?\r\nThen give them a score of how important they are for you. Then you can start working on the top 2 or 3 as a start.\r\nonce you learn the self-hypnosis skills you can work on these at your pace and with some daily practice, you can see changes very quickly.\r\n<h2><strong><span style=\"color: #008000;\">What Is Self-Hypnosis?</span></strong></h2>\r\nHypnosis is a natural ability of the mind. As we go through our day we naturally move from state to state and we all have many different states. We have a state for driving, a parenting state, a working state, a sleeping state and many problem states.\r\nSome of our states are positive and somethings can send us into a negative state. When we are in a positive state we can really handle problems and challenges better and our immune and repair systems work so much better in a positive state.  Negative states can really damage our performance and this is when stress, anxiety, and depression appear. These states can be very habitual and they become stronger the more we stay in them.\r\n\r\nA good hypnosis practitioner can move people into useful states to resolve problems, increase learning speeds and into deep relaxation. <strong>Self-hypnosis</strong> is a skill we can all learn, to move from state to state ourselves and choose the states we wish to access. The more we practice the skills, the easier it becomes and the faster we can change our states with greater beneficial results, anytime and anywhere.\r\n<h2><strong><span style=\"color: #008000;\">What Is The Difference Between Self-Hypnosis, Meditation &amp; Mindfulness?</span></strong></h2>\r\nMeditation and Mindfulness are very useful tools for life improvement although many people find both take a lot of time and practice for life-changing results. Self-hypnosis is a much faster way to relax, far deeper for most people, in a much shorter period of time.\r\nOne of the things you will love about self-hypnosis is that when we combine it with meditation and mindfulness we can speed up the process quickly, relax deeper on demand, anytime, anywhere.\r\n<h2><span style=\"color: #008000;\"><strong>What Is The Next Step?</strong></span></h2>\r\nSimply decide if you would like to learn Self-Hypnosis in one of our workshops or in a one to one session or even by an online session. <strong><em>Call us on 07568 455 809</em> today to discuss which option is better for you.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Can You Create A Workshop For A Private Group Or Business Training To Learn Self-Hypnosis?</span></strong></h2>\r\nOf course. We do many workshops and talks for businesses, groups, charities and private bookings for self-hypnosis and specific themes. Call us on 07568 455 809 to discuss this and we can work on something together.\r\n<h2><strong><span style=\"color: #008000;\">What Issues Can Self-Hypnosis Help Me With?</span></strong></h2>\r\nSelf-hypnosis has many powerful benefits and can quickly put you in control of your thoughts and actions, giving you choices of behavior and thoughts.\r\nMost importantly it gives you the power to relax very quickly anytime, anywhere. This really helps to relieve stress, anxiety, depression, tensions, headaches, pain, tinnitus, sleep issues, relationship problems, confidence, eating issues, addiction, smoking cessation, digestive issues, food intolerances, allergies along with many other issues. With the right training, we can show you how to use Self-hypnosis for many issues or to help your friends and family.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How Effective Is Self Hypnosis For Weight Loss &amp; Weight Management?</strong></span></h2>\r\nSelf-Hypnosis is often very effective for weight loss, depending on the issues involved and most can be helped.\r\nWe can change our habits and beliefs when it comes to food and many of our eating patterns also.\r\nFood has become emotional for many of us and another way we change our states and feelings. Thankfully we can also change the emotions and feelings certain foods bring us to choose foods that are better for us and our weight management.\r\n<h2><strong><span style=\"color: #008000;\">Can Children &amp; Teenagers Learn &amp; Use Self-Hypnosis?</span></strong></h2>\r\nAbsolutely. Self-Hypnosis skills can be very useful in all stages of our lives. We do help clients of all ages including children and teenagers benefit greatly in exams, learning, and confidence by managing their states.  Young people can often become very stressed with exams and this can really affect their exam results. Learning to be relaxed and calm can really make learning and examinations much easier. Spelling and numeracy levels can really be improved with self-hypnosis in a short period of time. Young people can really master self-hypnosis skills really well including those with Dyslexia and learning challenges.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss how we can help you with self-hypnosis in many areas.</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>For more information to learn Self-Hypnosis and our regular events, <em>join the newsletter below</em></strong></span>\r\n\r\n[contact-form-7 id=\"447\" title=\"SH anxiety stress events form\"]\r\nA member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','LEARN SELF-HYPNOSIS','','inherit','closed','closed','','486-revision-v1','','','2018-09-02 16:28:40','2018-09-02 16:28:40','',486,'https://www.newcastle-hypnotherapy.com/486-revision-v1/',0,'revision','',0),(1367,1,'2018-09-02 16:28:56','2018-09-02 16:28:56','It is so easy to contact us.\r\n<strong>Telephone 07568 455 809</strong>\r\n\r\nEmail us\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','CONTACT US','','inherit','closed','closed','','366-revision-v1','','','2018-09-02 16:28:56','2018-09-02 16:28:56','',366,'https://www.newcastle-hypnotherapy.com/366-revision-v1/',0,'revision','',0),(1368,1,'2018-09-02 16:29:16','2018-09-02 16:29:16','Here are some free tools you may find useful\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply right click and save</strong>\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\nYou can download the <a href=\"http://www.newcastle-hypnotherapy.com/downloads/sleep.mp3\"><strong>Deep Sleep Hypnosis Audio Program Here</strong></a>. Simply Right Click &amp; Save\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','FREE TOOLS & RESOURCES','','inherit','closed','closed','','471-revision-v1','','','2018-09-02 16:29:16','2018-09-02 16:29:16','',471,'https://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(1369,1,'2018-09-02 16:29:33','2018-09-02 16:29:33','<article class=\"page type-page entry\"><header class=\"entry-header\">\r\n<h1 class=\"entry-title\"> <img class=\"alignleft size-medium wp-image-896\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/relax-newcastle-hypnotherapy-300x225.jpg\" alt=\"relax newcastle hypnotherapy\" width=\"300\" height=\"225\" />Relax.\r\nWe are looking after you &amp; your privacy.</h1>\r\n</header>\r\n<div class=\"entry-content\">\r\n\r\nYour privacy is very important to us. We do not store any sensitive data online and we want you to feel comfortable in all respects when using our services.\r\n\r\n&nbsp;\r\n\r\nHere at Newcastle Hypnotherapy we have a few fundamental principles that we follow:\r\n<ul>\r\n 	<li>We don’t ask you for personal information unless we truly need it.</li>\r\n 	<li>We don’t share your personal information with anyone.</li>\r\n 	<li>We don’t store personal information on our website or server unless you sign up for one of our newsletters and then we only store your name and your emaill address. This is for our use only.</li>\r\n</ul>\r\n<strong>Website Visitors</strong>\r\n\r\nLike most website operators, Newcastle Hypnotherapy collects non-personally-identifying information of the sort that web browsers and servers typically make available, such as the browser type, language preference, referring site, and the date and time of each visitor request. Newcastle Hypnotherapy’s purpose in collecting non-personally identifying information is to better understand how Newcastle Hypnotherapy’s visitors use its website. From time to time, Newcastle Hypnotherapy may release non-personally-identifying information in the aggregate, e.g., by publishing a report on trends in the usage of its website.\r\n\r\nNewcastle Hypnotherapy also collects potentially personally-identifying information like Internet Protocol (IP) addresses for logged in users and for users leaving comments on our blogs. Newcastle Hypnotherapy only discloses logged in user and commenter IP addresses under the same circumstances that it uses and discloses personally-identifying information as described below, except that blog commenter IP addresses are visible and disclosed to the administrators of the blog where the comment was left.\r\n\r\n<strong>Gathering of Personally-Identifying Information</strong>\r\n\r\nCertain visitors to Newcastle Hypnotherapy’s websites choose to interact with us in ways that require us to gather personally-identifying information. The amount and type of information that we gather depends on the nature of the interaction. For example, we ask visitors who comment on our blog to provide a username and email address. Those who wish to receive updates via email, we collect their emails. In each case, Newcastle Hypnotherapy collects such information only insofar as is necessary or appropriate to fulfill the purpose of the visitor’s interaction with us. Newcastle Hypnotherapy does not disclose personally-identifying information other than as described below. And visitors can always refuse to supply personally-identifying information, with the caveat that it may prevent them from engaging in certain website-related activities.\r\n\r\n<strong>Aggregated Statistics</strong>\r\n\r\nNewcastle Hypnotherapy may collect statistics about the behavior of visitors to its websites. For instance, we may monitor the most popular pages on the list25.com site or use spam screened by the Akismet service to help identify spam. We may display this information publicly or provide it to others. However, Newcastle Hypnotherapy does not disclose personally-identifying information other than as described below.\r\n\r\n<strong>Protection of Certain Personally-Identifying Information</strong>\r\n\r\nNewcastle Hypnotherapy discloses potentially personally-identifying and personally-identifying information only to those of its employees, contractors and affiliated organizations that (i) need to know that information in order to process it on Newcastle Hypnotherapy’s behalf or to provide services available at Newcastle Hypnotherapys websites, and (ii) that have agreed not to disclose it to others. Some of those employees, contractors and affiliated organizations may be located outside of your home country; by using Newcastle Hypnotherapy’s websites, you consent to the transfer of such information to them. Newcastle Hypnotherapy will not rent or sell potentially personally-identifying and personally-identifying information to anyone. Other than to its employees, contractors and affiliated organizations, as described above, Newcastle Hypnotherapy discloses potentially personally-identifying and personally-identifying information only in response to a court order or other governmental request, or when Newcastle Hypnotherapy believes in good faith that disclosure is reasonably necessary to protect the property or rights of Newcastle Hypnotherapy, third parties or the public at large. If you are a registered user of an Newcastle Hypnotherapy website and have supplied your email address, Newcastle Hypnotherapy may occasionally send you an email to tell you about new features, solicit your feedback, or just keep you up to date with what’s going on with Newcastle Hypnotherapy and our products. We primarily use our various product blogs to communicate this type of information, so we expect to keep this type of email to a minimum. If you send us a request (for example via a support email or via one of our feedback mechanisms), we reserve the right to publish it in order to help us clarify or respond to your request or to help us support other users. Newcastle Hypnotherapy takes all measures reasonably necessary to protect against the unauthorized access, use, alteration or destruction of potentially personally-identifying and personally-identifying information.\r\n\r\n<strong>Cookies</strong>\r\n\r\nA cookie is a string of information that a website stores on a visitor’s computer, and that the visitor’s browser provides to the website each time the visitor returns. Newcastle Hypnotherapy uses cookies to help us identify and track visitors, their usage of the website, and their website access preferences. Newcastle Hypnotherapy visitors who do not wish to have cookies placed on their computers should set their browsers to refuse cookies before using websites, with the drawback that certain features of these websites may not function properly without the aid of cookies.\r\n\r\n<strong>Business Transfers</strong>\r\n\r\nIf Awesome Motive, or substantially all of its assets were acquired, or in the unlikely event that Newcastle Hypnotherapy goes out of business, user information would be one of the assets that is transferred or acquired by a third party. You acknowledge that such transfers may occur, and that any acquirer of Newcastle Hypnotherapy may continue to use your personal information as set forth in this policy.\r\n\r\n<strong>Ads</strong>\r\n\r\nAds appearing on any of our websites may be delivered to users by advertising partners, who may set cookies. These cookies allow the ad server to recognize your computer each time they send you an online advertisement to compile information about you or others who use your computer. This information allows ad networks to, among other things, deliver targeted advertisements that they believe will be of most interest to you. This Privacy Policy covers the use of cookies by Newcastle Hypnotherapy and does not cover the use of cookies by any advertisers.\r\n\r\n<strong>Comments</strong>\r\n\r\nComments and other content submitted to Akismet anti-spam service are not saved on our servers unless they were marked as false positives, in which case we store them long enough to use them to improve the service to avoid future false positives.\r\n\r\n<strong>Privacy Policy Changes</strong>\r\n\r\nAlthough most changes are likely to be minor, Newcastle Hypnotherapy may change its Privacy Policy from time to time, We encourage visitors to frequently check this page for any changes to its Privacy Policy. Your continued use of this site after any change in this Privacy Policy will constitute your acceptance of such change.\r\n\r\n</div>\r\n</article>','PRIVACY POLICY','','inherit','closed','closed','','892-revision-v1','','','2018-09-02 16:29:33','2018-09-02 16:29:33','',892,'https://www.newcastle-hypnotherapy.com/892-revision-v1/',0,'revision','',0),(1370,1,'2018-09-02 16:29:51','2018-09-02 16:29:51','<h2><strong><span style=\"color: #008000;\">About Our Business</span></strong></h2>\r\n<img class=\"alignleft wp-image-1010 size-large\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/newcastle-upon-tyne-1024x400.jpg\" alt=\"Newcastle upon Tyne\" width=\"1024\" height=\"400\" />\r\nNewcastle Hypnotherapy is based in Newcastle upon Tyne and provides Expert Clinical Hypnosis Services and other modern therapies.\r\nWe can help you with a wide range of issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a>, <a href=\"http://www.newcastle-hypnotherapy.com/stress-management/\">stress</a>, <a href=\"http://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">depression</a>, weight loss, <a href=\"http://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">stop smoking</a>, confidence, pain management, sleep problems, addictions, IBS, digestive issues and many others.\r\n\r\nNewcastle Hypnotherapy uses powerful, modern techniques including Hypnosis, Self Hypnosis, Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Meditation, Mindfulness and more.\r\n<h2><strong><span style=\"color: #008000;\">Location</span></strong></h2>\r\nNewcastle Hypnotherapy, <span class=\"LrzXr\">31 Station Road, Wallsend, Newcastle upon Tyne. NE28 6SZ,\r\n</span> Telephone 07568 455 809.\r\n<h2><span style=\"color: #008000;\"><strong>Proudly Serving Newcastle Upon Tyne\r\n</strong></span></h2>\r\n<a href=\"https://www.chroniclelive.co.uk/all-about/newcastle-upon-tyne\">Newcastle upon Tyne</a>, <a href=\"https://www.visitnorthumberland.com/\">Northumberland,</a> <a href=\"https://www.chroniclelive.co.uk/all-about/sunderland-city-centre\">Sunderland</a>, <a href=\"https://en.wikipedia.org/wiki/North_East_England\">North East England,</a> <a href=\"https://en.wikipedia.org/wiki/Tyne_and_Wear\">Tyne &amp; Wear</a>,\r\n<h2><strong><span style=\"color: #008000;\">Google Map</span></strong></h2>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Opening Hours</span></strong></h2>\r\n<div class=\"ak\">\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>\r\n</div>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Services We Provide</span></strong></h2>\r\nHypnotherapy Service\r\nHealth Consultant\r\nLife Coach\r\nCounsellor Services\r\nSelf Hypnosis\r\nNeuro-Linguistic Programming - NLP\r\nEmotional Freedom Technique - EFT,\r\nMediMindfulness\r\nfullness and more.\r\n<h2><span style=\"color: #008000;\"><strong>Nearby Places - Newcastle upon Tyne\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Restaurants\r\n</strong></span><strong>Pulp Fiction - </strong><strong><a href=\"https://www.pulpfictionfuturefood.com/\">Whole Food, Health Food Cafe</a>\r\n</strong><a href=\"https://www.facebook.com/Super-Natural-Cafe-788599297887313/\"><strong>Supernatural Kitchen</strong></a><strong>\r\n</strong><a href=\"http://www.skyapple.co.uk/\"><strong>Sky Apple Cafe</strong></a><strong>\r\n</strong><strong><a href=\"http://www.iloveboho.co.uk/\">The Bohemian</a></strong><span style=\"color: #008000;\"><strong>\r\nThe Linskill Centre - <a href=\"https://www.linskillcentre.co.uk/\">North Sheilds Community Centre</a>\r\n</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Community Places</strong></span>\r\n<strong>The Vault - <a href=\"http://www.the-vault.org/\">Creative Wellbeing Centre</a>\r\nThe Linskill Centre - <a href=\"https://www.linskillcentre.co.uk/\">North Sheilds Community Centre</a></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Good Pubs</strong></span>\r\n<strong><a href=\"https://trilliansnewcastle.co.uk/\">Trillions Rock Bar</a></strong>\r\n<a href=\"http://www.citytavern.co.uk/\"><strong>The City Tavern - Newcastle</strong></a>\r\n<a href=\"https://www.newcastlegateshead.com/food-and-drink/the-ship-inn-p888571\"><strong>The Ship Ouseburn</strong></a>\r\n\r\n<span style=\"color: #008000;\"><strong>Events &amp; Places To Visit</strong></span>\r\n<strong>Segedunum - <a href=\"https://segedunumromanfort.org.uk/\">Roman Fort and Museum</a>\r\nStephenson - <a href=\"https://stephensonrailwaymuseum.org.uk/\">Railway Museum</a>\r\nFood For Thought - <a href=\"https://www.food-for-thought-uk.co.uk/\">Health Foods &amp; Organic Bakery</a>\r\n<a href=\"http://www.the-vault.org/fairs.html\">The Newcastle Mind Body Spirit Fair @ The Vault</a>\r\n<a href=\"http://www.newcastlecastle.co.uk/\">Newcastle Castle</a>\r\n<a href=\"http://baltic.art/\">The Baltic</a></strong>\r\n<strong><a href=\"https://greatnorthmuseum.org.uk/\">The Great North Museum</a></strong>\r\n<strong><a href=\"http://stnicholascathedral.co.uk/\">Newcastle Cathedral</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">There are so many great places to visit in Newcastle and Northumberland.\r\nDo take the time to find some of the great beaches, country walks, beautiful forests, local attractions, museums, eating places, theatres and so much more.</span></strong>\r\n\r\nFind Us On\r\n\r\n<a href=\"https://www.facebook.com/newcastlehypnosis/\">Newcastle Hypnotherapy Facebook</a>\r\n<a href=\"https://twitter.com/Newcastlehypno\">Newcastle Hypnotherapy Twitter</a>\r\n<a href=\"https://foursquare.com/v/newcastle-hypnotherapy/5b17ba1b2619ee002c938eff\">Newcastle Hypnotherapy Foursquare</a>\r\n<a href=\"https://www.yell.com/biz/newcastle-hypnotherapy-wallsend-9119041/\">Newcastle Hypnotherapy Yell</a>\r\n\r\n&nbsp;\r\n\r\nIf you would like a free consultation to see how hypnosis &amp; hypnotherapy can help you, simply call 07568 455 809 today.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','NEWCASTLE UPON TYNE','','inherit','closed','closed','','1003-revision-v1','','','2018-09-02 16:29:51','2018-09-02 16:29:51','',1003,'https://www.newcastle-hypnotherapy.com/1003-revision-v1/',0,'revision','',0),(1371,1,'2018-09-02 20:13:43','0000-00-00 00:00:00','<h1 style=\"text-align: left;\"><strong><span style=\"color: #008000;\"><img class=\"alignleft size-medium wp-image-1421\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-freedom-300x200.jpg\" alt=\"anxiety freedom\" width=\"300\" height=\"200\" /></span></strong></h1>\r\n<h1><span style=\"color: #008000;\"><strong>Congratulations!</strong></span></h1>\r\n<h2 style=\"text-align: left;\">You have made a powerful decision that will improve the quality of your life now.</h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2 style=\"text-align: left;\"><span style=\"color: #008000;\">The Anxiety Relief Program Includes:</span></h2>\r\n<ul>\r\n 	<li style=\"text-align: left;\">Your Assesment Questionaire</li>\r\n 	<li style=\"text-align: left;\">3 Private Sessions - choice of face to face or online if required</li>\r\n 	<li style=\"text-align: left;\">Personalised Audio Track - to strengthen your results</li>\r\n 	<li style=\"text-align: left;\">Your Personalised Exercises - for greater improvements over time</li>\r\n</ul>\r\n<h2 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Choose Your Payment Option Below</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong>A Single Payment of £230 Today Saving £55</strong>\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img class=\"aligncenter\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n<p style=\"text-align: center;\"><input name=\"on0\" type=\"hidden\" value=\"Anxiety Relief Program Saver\" /><img class=\"aligncenter\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n&nbsp;\r\n\r\nor\r\n\r\n£95 x 3 Sessions\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"></p>','Booking Form - Anxiety Relief Program','','draft','closed','closed','','','','','2018-09-02 20:13:43','2018-09-02 20:13:43','',0,'https://www.newcastle-hypnotherapy.com/?page_id=1371',0,'page','',0),(1372,1,'2018-09-02 17:19:42','2018-09-02 17:19:42','<p style=\"text-align: center;\">Congratulations!\r\nYou have made a powerful decision that will imporve the quality of your life now.\r\n\r\nThe Anxiety Relief Program can really make a difference, fast.\r\n\r\nIt includes 3 private sessions, personalised audio track &amp;\r\n\r\nYou can book online below\r\nChoose</p>','Booking Form - Anxiety Relief Program','','inherit','closed','closed','','1371-revision-v1','','','2018-09-02 17:19:42','2018-09-02 17:19:42','',1371,'https://www.newcastle-hypnotherapy.com/1371-revision-v1/',0,'revision','',0),(1373,1,'2018-09-02 17:29:20','2018-09-02 17:29:20','<h2 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Congratulations!\r\n</span></strong>You have made a powerful decision that\r\nwill improve the quality of your life now.</h2>\r\n<p style=\"text-align: center;\">The Anxiety Relief Program can really make a difference, fast.</p>\r\n<p style=\"text-align: center;\">It includes:\r\n\r\n3 Private Sessions\r\nPersonalised Audio Track\r\nYour Excercises.\r\n\r\n</p>\r\n<p style=\"text-align: center;\">You can book online below\r\nChoose</p>','Booking Form - Anxiety Relief Program','','inherit','closed','closed','','1371-revision-v1','','','2018-09-02 17:29:20','2018-09-02 17:29:20','',1371,'https://www.newcastle-hypnotherapy.com/1371-revision-v1/',0,'revision','',0),(1374,1,'2018-09-02 17:39:42','2018-09-02 17:39:42','<h2></h2>\r\n<h2></h2>\r\n<h2 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">\r\nCongratulations!\r\n</span></strong>You have made a powerful decision that\r\nwill improve the quality of your life now.</h2>\r\n<p style=\"text-align: center;\">The Anxiety Relief Program can really make a difference, fast.</p>\r\n<p style=\"text-align: center;\">It includes:\r\n\r\nAssesment Questionaire\r\n3 Private Sessions\r\nPersonalised Audio Track\r\nYour Exercises.\r\n\r\n\r\n</p>\r\n<p style=\"text-align: center;\">Choose Your Payment Option\r\n\r\nSingle Payment of £230 Today\r\nSaving £55\r\n\r\nor\r\n\r\n£95 x 3 Sessions</p>\r\n&nbsp;\r\n<p style=\"text-align: center;\"></p>','Booking Form - Anxiety Relief Program','','inherit','closed','closed','','1371-revision-v1','','','2018-09-02 17:39:42','2018-09-02 17:39:42','',1371,'https://www.newcastle-hypnotherapy.com/1371-revision-v1/',0,'revision','',0),(1375,1,'2018-09-02 17:43:58','2018-09-02 17:43:58','','Shop','','publish','closed','closed','','shop','','','2018-09-02 17:43:58','2018-09-02 17:43:58','',0,'https://www.newcastle-hypnotherapy.com/shop/',0,'page','',0),(1376,1,'2018-09-02 17:43:58','2018-09-02 17:43:58','[woocommerce_cart]','Basket','','publish','closed','closed','','basket','','','2018-09-20 17:59:19','2018-09-20 17:59:19','',0,'https://www.newcastle-hypnotherapy.com/basket/',0,'page','',0),(1377,1,'2018-09-02 17:43:58','2018-09-02 17:43:58','[woocommerce_checkout]','Checkout','','publish','closed','closed','','checkout','','','2018-09-20 17:58:09','2018-09-20 17:58:09','',0,'https://www.newcastle-hypnotherapy.com/checkout/',0,'page','',0),(1378,1,'2018-09-02 17:43:58','2018-09-02 17:43:58','[woocommerce_my_account]','My account','','publish','closed','closed','','my-account','','','2018-09-02 17:43:58','2018-09-02 17:43:58','',0,'https://www.newcastle-hypnotherapy.com/my-account/',0,'page','',0),(1379,1,'2018-09-02 17:47:35','0000-00-00 00:00:00','','widget_image','','draft','closed','closed','','','','','2018-09-02 17:47:35','0000-00-00 00:00:00','a:1:{s:12:\"_multiwidget\";i:1;}',0,'https://www.newcastle-hypnotherapy.com/?post_type=jetpack_migration&p=1379',0,'jetpack_migration','',0),(1380,1,'2018-09-02 17:47:35','0000-00-00 00:00:00','','sidebars_widgets','','draft','closed','closed','','','','','2018-09-02 17:47:35','0000-00-00 00:00:00','a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:13:\"media_image-6\";i:1;s:13:\"media_image-4\";i:2;s:8:\"search-2\";i:3;s:14:\"recent-posts-2\";i:4;s:12:\"categories-2\";}s:8:\"header-1\";a:0:{}s:8:\"footer-1\";a:1:{i:0;s:6:\"text-2\";}s:8:\"footer-2\";a:1:{i:0;s:13:\"custom_html-2\";}s:8:\"footer-3\";a:1:{i:0;s:6:\"text-4\";}s:8:\"footer-4\";a:0:{}}',0,'https://www.newcastle-hypnotherapy.com/?post_type=jetpack_migration&p=1380',0,'jetpack_migration','',0),(1382,1,'2018-09-02 17:53:54','2018-09-02 17:53:54','','Beanie','','inherit','open','closed','','beanie-image','','','2018-09-02 17:53:54','2018-09-02 17:53:54','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/beanie.jpg',0,'attachment','image/jpeg',0),(1383,1,'2018-09-02 17:53:54','2018-09-02 17:53:54','','Belt','','inherit','open','closed','','belt-image','','','2018-09-02 17:53:54','2018-09-02 17:53:54','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/belt.jpg',0,'attachment','image/jpeg',0),(1384,1,'2018-09-02 17:53:54','2018-09-02 17:53:54','','Cap','','inherit','open','closed','','cap-image','','','2018-09-02 17:53:54','2018-09-02 17:53:54','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/cap.jpg',0,'attachment','image/jpeg',0),(1385,1,'2018-09-02 17:53:54','2018-09-02 17:53:54','','Hoodie with Logo','','inherit','open','closed','','hoodie-with-logo-image','','','2018-09-02 17:53:54','2018-09-02 17:53:54','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/hoodie-with-logo.jpg',0,'attachment','image/jpeg',0),(1386,1,'2018-09-02 17:53:54','2018-09-02 17:53:54','','Hoodie with Pocket','','inherit','open','closed','','hoodie-with-pocket-image','','','2018-09-02 17:53:54','2018-09-02 17:53:54','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/hoodie-with-pocket.jpg',0,'attachment','image/jpeg',0),(1387,1,'2018-09-02 17:53:54','2018-09-02 17:53:54','','Hoodie with Zipper','','inherit','open','closed','','hoodie-with-zipper-image','','','2018-09-02 17:53:54','2018-09-02 17:53:54','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/hoodie-with-zipper.jpg',0,'attachment','image/jpeg',0),(1388,1,'2018-09-02 17:53:54','2018-09-02 17:53:54','','Hoodie','','inherit','open','closed','','hoodie-image','','','2018-09-02 17:53:54','2018-09-02 17:53:54','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/hoodie.jpg',0,'attachment','image/jpeg',0),(1389,1,'2018-09-02 17:53:54','2018-09-02 17:53:54','','Long Sleeve Tee','','inherit','open','closed','','long-sleeve-tee-image','','','2018-09-02 17:53:54','2018-09-02 17:53:54','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/long-sleeve-tee.jpg',0,'attachment','image/jpeg',0),(1390,1,'2018-09-02 17:53:54','2018-09-02 17:53:54','','Polo','','inherit','open','closed','','polo-image','','','2018-09-02 17:53:54','2018-09-02 17:53:54','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/polo.jpg',0,'attachment','image/jpeg',0),(1391,1,'2018-09-02 17:53:54','2018-09-02 17:53:54','','Sunglasses','','inherit','open','closed','','sunglasses-image','','','2018-09-02 17:53:54','2018-09-02 17:53:54','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/sunglasses.jpg',0,'attachment','image/jpeg',0),(1392,1,'2018-09-02 17:53:54','2018-09-02 17:53:54','','Tshirt','','inherit','open','closed','','tshirt-image','','','2018-09-02 17:53:54','2018-09-02 17:53:54','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/tshirt.jpg',0,'attachment','image/jpeg',0),(1393,1,'2018-09-02 17:53:54','2018-09-02 17:53:54','','Vneck Tshirt','','inherit','open','closed','','vneck-tee-image','','','2018-09-02 17:53:54','2018-09-02 17:53:54','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/vneck-tee.jpg',0,'attachment','image/jpeg',0),(1394,1,'2018-09-02 17:53:54','2018-09-02 17:53:54','','Hero','','inherit','open','closed','','hero-image','','','2018-09-02 17:53:54','2018-09-02 17:53:54','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/hero.jpg',0,'attachment','image/jpeg',0),(1395,1,'2018-09-02 17:53:54','2018-09-02 17:53:54','','Accessories','','inherit','open','closed','','accessories-image','','','2018-09-02 17:53:54','2018-09-02 17:53:54','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/accessories.jpg',0,'attachment','image/jpeg',0),(1396,1,'2018-09-02 17:53:54','2018-09-02 17:53:54','','T-shirts','','inherit','open','closed','','tshirts-image','','','2018-09-02 17:53:54','2018-09-02 17:53:54','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/tshirts.jpg',0,'attachment','image/jpeg',0),(1397,1,'2018-09-02 17:53:54','2018-09-02 17:53:54','','Hoodies','','inherit','open','closed','','hoodies-image','','','2018-09-02 17:53:54','2018-09-02 17:53:54','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/hoodies.jpg',0,'attachment','image/jpeg',0),(1398,1,'2018-09-02 17:53:54','2018-09-02 17:53:54','This is your homepage which is what most visitors will see when they first visit your shop.\r\n\r\nYou can change this text by editing the \"Welcome\" page via the \"Pages\" menu in your dashboard.','Welcome','','publish','closed','closed','','welcome','','','2018-10-29 17:46:05','2018-10-29 17:46:05','',0,'https://www.newcastle-hypnotherapy.com/?page_id=1398',0,'page','',0),(1399,1,'2018-09-02 17:53:54','2018-09-02 17:53:54','','Blog','','publish','closed','closed','','blog','','','2018-09-02 17:53:54','2018-09-02 17:53:54','',0,'https://www.newcastle-hypnotherapy.com/?page_id=1399',0,'page','',0),(1755,1,'2018-10-04 07:51:06','2018-10-04 07:51:06','<img class=\"alignleft wp-image-1750 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/memory-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\nSome people have a great memory and they rarely forget anything.\r\nThey remember everything, important dates, events, names with ease.\r\nOthers are great at remembering certain things and have trouble remembering the simple things.\r\nSome of us find our memory starts to get worse as we age. What can we do to stop this?\r\n\r\n<strong>Having a good memory is often a set of skills that with a little practice, can really help to improve memory function.</strong>\r\nWant to learn these skills? <em>Join us for this Memory Improving Workshop.</em>\r\n\r\n<strong>When? 17th October.</strong>\r\n<strong>Where? The Vault, Wallsend.</strong>\r\n<strong>What Time? 7.30pm to 9.30pm</strong>\r\n<strong>How Much? £8.50 by advance booking.</strong>\r\n\r\nThe Wednesday Workshop is a regular set of events that run on the 1st &amp; 3rd Wednesday each month.\r\nBooking in advance is required at the link below. Places are limited.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/nlp-memory-improvement/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events.</strong>\r\nSubscribe to the events newsletter below.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWea re GDPR compliant. Your details are always kept private. You can unsubscribe for this newsletter at any time.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Improving The Memory','','inherit','closed','closed','','1749-revision-v1','','','2018-10-04 07:51:06','2018-10-04 07:51:06','',1749,'https://www.newcastle-hypnotherapy.com/1749-revision-v1/',0,'revision','',0),(1756,1,'2018-10-04 07:51:48','2018-10-04 07:51:48','','Improving The Memory – \\tba','','publish','closed','closed','','1756','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=1756',29,'nav_menu_item','',0),(1757,1,'2018-10-04 07:51:59','2018-10-04 07:51:59','<img class=\"alignleft wp-image-1750 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/memory-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\nSome people have a great memory and they rarely forget anything.\r\nThey remember everything, important dates, events, names with ease.\r\nOthers are great at remembering certain things and have trouble remembering the simple things.\r\nSome of us find our memory starts to get worse as we age. What can we do to stop this?\r\n\r\n<strong>Having a good memory is often a set of skills that with a little practice, can really help to improve memory function.</strong>\r\nWant to learn these skills? <em>Join us for this Memory Improving Workshop.</em>\r\n\r\n<strong>When? 17th October.</strong>\r\n<strong>Where? The Vault, Wallsend.</strong>\r\n<strong>What Time? 7.30pm to 9.30pm</strong>\r\n<strong>How Much? £8.50 by advance booking.</strong>\r\n\r\nThe Wednesday Workshop is a regular set of events that run on the 1st &amp; 3rd Wednesday each month.\r\nBooking in advance is required at the link below. Places are limited.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/nlp-memory-improvement/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events.</strong>\r\nSubscribe to the events newsletter below.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWea re GDPR compliant. Your details are always kept private. You can unsubscribe for this newsletter at any time.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Improving The Memory - 17th October','','inherit','closed','closed','','1749-revision-v1','','','2018-10-04 07:51:59','2018-10-04 07:51:59','',1749,'https://www.newcastle-hypnotherapy.com/1749-revision-v1/',0,'revision','',0),(1753,1,'2018-10-11 12:22:42','2018-10-11 12:22:42','<img class=\"alignleft wp-image-1750 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/memory-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\nSome people have a great memory and they rarely forget anything.\nThey remember everything, important dates, events, names with ease.\nOthers are great at remembering certain things and have trouble remembering the simple things.\nSome of us find our memory starts to get worse as we age. What can we do to stop this?\n\n<strong>Having a good memory is often a set of skills that with a little practice, can really help to improve memory function.</strong>\nWant to learn these skills? <em>Join us for this Memory Improving Workshop.</em>\n\n<strong>When? 21st November.</strong>\n<strong>Where? The Vault, Wallsend.</strong>\n<strong>What Time? 7.30pm to 9.30pm</strong>\n<strong>How Much? £8.50 by advance booking.</strong>\n\nThe Wednesday Workshop is a regular set of events that run on the 1st &amp; 3rd Wednesday each month.\nBooking in advance is required at the link below. Places are limited.\n\n<a href=\"https://www.newcastle-hypnotherapy.com/product/nlp-memory-improvement/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<strong>Learn more about our regular events.</strong>\nSubscribe to the events newsletter below.\n\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\nWe are GDPR compliant. Your details are always kept private. You can unsubscribe from this newsletter at any time.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','Improving Your Memory - 21st November.','','inherit','closed','closed','','1749-autosave-v1','','','2018-10-11 12:22:42','2018-10-11 12:22:42','',1749,'https://www.newcastle-hypnotherapy.com/1749-autosave-v1/',0,'revision','',0),(1754,1,'2018-10-04 07:48:46','2018-10-04 07:48:46','<img class=\"alignleft wp-image-1750 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/memory-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\nSome people have a great memory and they rarely forget anything.\r\nThey remember everything, important dates, events, names with ease.\r\nOthers are great at remembering certain things and have trouble remembering the simple things.\r\nSome of us find our memory starts to get worse as we age. What can we do to stop this?\r\n\r\n<strong>Having a good memory is often a set of skills that with a little practice, can really help to improve memory function.</strong>\r\nWant to learn these skills? <em>Join us for this Memory Improving Workshop.</em>\r\n\r\n<strong>When? 17th October.</strong>\r\n<strong>Where? The Vault, Wallsend.</strong>\r\n<strong>What Time? 7.30pm to 9.30pm</strong>\r\n<strong>How Much? £8.50 by advance booking.</strong>\r\n\r\nThe Wednesday Workshop is a regular set of events that run on the 1st &amp; 3rd Wednesday each month.\r\nBooking in advance is required at the link below. Places are limited.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/nlp-memory-improvement/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Improving The Memory','','inherit','closed','closed','','1749-revision-v1','','','2018-10-04 07:48:46','2018-10-04 07:48:46','',1749,'https://www.newcastle-hypnotherapy.com/1749-revision-v1/',0,'revision','',0),(1896,1,'2018-10-29 17:46:05','2018-10-29 17:46:05','This is your homepage which is what most visitors will see when they first visit your shop.\r\n\r\nYou can change this text by editing the \"Welcome\" page via the \"Pages\" menu in your dashboard.','Welcome','','inherit','closed','closed','','1398-revision-v1','','','2018-10-29 17:46:05','2018-10-29 17:46:05','',1398,'https://www.newcastle-hypnotherapy.com/1398-revision-v1/',0,'revision','',0),(1413,1,'2018-09-02 17:53:54','2018-09-02 17:53:54','This is your homepage which is what most visitors will see when they first visit your shop.\n\nYou can change this text by editing the &quot;Welcome&quot; page via the &quot;Pages&quot; menu in your dashboard.','Welcome','','inherit','closed','closed','','1398-revision-v1','','','2018-09-02 17:53:54','2018-09-02 17:53:54','',1398,'https://www.newcastle-hypnotherapy.com/1398-revision-v1/',0,'revision','',0),(1414,1,'2018-09-02 17:53:54','2018-09-02 17:53:54','','Blog','','inherit','closed','closed','','1399-revision-v1','','','2018-09-02 17:53:54','2018-09-02 17:53:54','',1399,'https://www.newcastle-hypnotherapy.com/1399-revision-v1/',0,'revision','',0),(1750,1,'2018-10-04 07:36:07','2018-10-04 07:36:07','','memory','','inherit','open','closed','','memory','','','2018-10-04 07:36:07','2018-10-04 07:36:07','',1749,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/memory.jpg',0,'attachment','image/jpeg',0),(1751,1,'2018-10-04 07:41:12','2018-10-04 07:41:12','<img class=\"alignleft wp-image-1750 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/memory-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\nSome people have a great memory and they rarely forget anything.\r\nThey remember everything, important dates, events, names with ease.\r\nOthers are great at remembering certain things and have trouble remembering the simple things.\r\nSome of us find our memory starts to get worse as we age. What can we do to stop this?\r\n\r\n<strong>Having a good memory is often a set of skills that with a little practice, can really help to improve memory function.</strong>\r\nWant to learn these skills? <em>Join us for this Memory Improving Workshop.</em>\r\n\r\n<strong>When? 17th October.</strong>\r\n<strong>Where? The Vault, Wallsend.</strong>\r\n<strong>What Time? 7.30pm to 9.30pm</strong>\r\n<strong>How Much? £8.50 by advance booking.</strong>\r\n\r\nThe Wednesday Workshop is a regular set of events that run on the 1st &amp; 3rd Wednesday each month.\r\nBooking in advance is required at the link below.\r\n\r\n<img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Improving The Memory','','inherit','closed','closed','','1749-revision-v1','','','2018-10-04 07:41:12','2018-10-04 07:41:12','',1749,'https://www.newcastle-hypnotherapy.com/1749-revision-v1/',0,'revision','',0),(1420,1,'2018-09-02 19:32:44','2018-09-02 19:32:44','<h2></h2>\r\n<h2></h2>\r\n<h2 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">\r\nCongratulations!\r\n</span></strong>You have made a powerful decision that\r\nwill improve the quality of your life now.</h2>\r\n<p style=\"text-align: center;\">The Anxiety Relief Program can really make a difference, fast.</p>\r\n<p style=\"text-align: center;\">It includes:</p>\r\n<p style=\"text-align: center;\">Assesment Questionaire\r\n3 Private Sessions\r\nPersonalised Audio Track\r\nYour Personalised Exercises.</p>\r\n<p style=\"text-align: center;\">Choose Your Payment Option Below</p>\r\n<p style=\"text-align: center;\">Single Payment of £230 Today Saving £55</p>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"25VQQQA8KYZGS\" />\r\n<table class=\" aligncenter\">\r\n<tbody>\r\n<tr>\r\n<td><input name=\"on0\" type=\"hidden\" value=\"Anxiety Relief Program Saver\" />Anxiety Relief Program Saver</td>\r\n</tr>\r\n<tr>\r\n<td><input maxlength=\"200\" name=\"os0\" type=\"text\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img class=\"aligncenter\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;\r\n\r\n&nbsp;\r\n\r\nor\r\n\r\n£95 x 3 Sessions\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"></p>','Booking Form - Anxiety Relief Program','','inherit','closed','closed','','1371-revision-v1','','','2018-09-02 19:32:44','2018-09-02 19:32:44','',1371,'https://www.newcastle-hypnotherapy.com/1371-revision-v1/',0,'revision','',0),(1421,1,'2018-09-02 19:38:43','2018-09-02 19:38:43','','anxiety freedom','','inherit','open','closed','','anxiety-freedom','','','2018-09-02 19:38:55','2018-09-02 19:38:55','',1371,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-freedom.jpg',0,'attachment','image/jpeg',0),(1427,1,'2018-09-02 20:06:14','2018-09-02 20:06:14','<h1 style=\"text-align: left;\"><strong><span style=\"color: #008000;\"><img class=\"alignleft size-medium wp-image-1421\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-freedom-300x200.jpg\" alt=\"anxiety freedom\" width=\"300\" height=\"200\" /></span></strong></h1>\r\n<h1><span style=\"color: #008000;\"><strong>Congratulations!</strong></span></h1>\r\n<h2 style=\"text-align: left;\">You have made a powerful decision that will improve the quality of your life now.</h2>\r\n&nbsp;\r\n<p style=\"text-align: left;\">The Anxiety Relief Program can really make a difference, fast.</p>\r\n<p style=\"text-align: left;\">It includes:</p>\r\n<p style=\"text-align: left;\">Assesment Questionaire\r\n3 Private Sessions\r\nPersonalised Audio Track\r\nYour Personalised Exercises.</p>\r\n<p style=\"text-align: left;\">Choose Your Payment Option Below</p>\r\n<p style=\"text-align: left;\">Single Payment of £230 Today Saving £55\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img class=\"aligncenter\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n<p style=\"text-align: center;\"><input name=\"on0\" type=\"hidden\" value=\"Anxiety Relief Program Saver\" /><img class=\"aligncenter\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n&nbsp;\r\n\r\nor\r\n\r\n£95 x 3 Sessions\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"></p>','Booking Form - Anxiety Relief Program','','inherit','closed','closed','','1371-revision-v1','','','2018-09-02 20:06:14','2018-09-02 20:06:14','',1371,'https://www.newcastle-hypnotherapy.com/1371-revision-v1/',0,'revision','',0),(1422,1,'2018-09-02 19:39:33','2018-09-02 19:39:33','<h1 style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Congratulations!\r\n<img class=\"alignleft size-medium wp-image-1421\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-freedom-300x200.jpg\" alt=\"anxiety freedom\" width=\"300\" height=\"200\" />\r\n</span></strong>You have made a powerful decision that\r\nwill improve the quality of your life now.</h1>\r\n&nbsp;\r\n<p style=\"text-align: left;\">The Anxiety Relief Program can really make a difference, fast.</p>\r\n<p style=\"text-align: left;\">It includes:</p>\r\n<p style=\"text-align: left;\">Assesment Questionaire\r\n3 Private Sessions\r\nPersonalised Audio Track\r\nYour Personalised Exercises.</p>\r\n<p style=\"text-align: left;\">Choose Your Payment Option Below</p>\r\n<p style=\"text-align: left;\">Single Payment of £230 Today Saving £55</p>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"25VQQQA8KYZGS\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img class=\"aligncenter\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\r\n<p style=\"text-align: center;\"><input name=\"on0\" type=\"hidden\" value=\"Anxiety Relief Program Saver\" /><img class=\"aligncenter\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n<p style=\"text-align: center;\"></p>\r\n&nbsp;\r\n\r\nor\r\n\r\n£95 x 3 Sessions\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"></p>','Booking Form - Anxiety Relief Program','','inherit','closed','closed','','1371-revision-v1','','','2018-09-02 19:39:33','2018-09-02 19:39:33','',1371,'https://www.newcastle-hypnotherapy.com/1371-revision-v1/',0,'revision','',0),(1423,1,'2018-09-02 19:40:26','2018-09-02 19:40:26','<h1 style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Congratulations!\r\n<img class=\"alignleft size-medium wp-image-1421\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-freedom-300x200.jpg\" alt=\"anxiety freedom\" width=\"300\" height=\"200\" /></span></strong></h1>\r\n<h2 style=\"text-align: left;\"><strong><span style=\"color: #008000;\">\r\n</span></strong>You have made a powerful decision that\r\nwill improve the quality of your life now.</h2>\r\n&nbsp;\r\n<p style=\"text-align: left;\">The Anxiety Relief Program can really make a difference, fast.</p>\r\n<p style=\"text-align: left;\">It includes:</p>\r\n<p style=\"text-align: left;\">Assesment Questionaire\r\n3 Private Sessions\r\nPersonalised Audio Track\r\nYour Personalised Exercises.</p>\r\n<p style=\"text-align: left;\">Choose Your Payment Option Below</p>\r\n<p style=\"text-align: left;\">Single Payment of £230 Today Saving £55</p>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"25VQQQA8KYZGS\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img class=\"aligncenter\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\r\n<p style=\"text-align: center;\"><input name=\"on0\" type=\"hidden\" value=\"Anxiety Relief Program Saver\" /><img class=\"aligncenter\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n&nbsp;\r\n\r\nor\r\n\r\n£95 x 3 Sessions\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"></p>','Booking Form - Anxiety Relief Program','','inherit','closed','closed','','1371-revision-v1','','','2018-09-02 19:40:26','2018-09-02 19:40:26','',1371,'https://www.newcastle-hypnotherapy.com/1371-revision-v1/',0,'revision','',0),(1424,1,'2018-09-02 19:41:36','2018-09-02 19:41:36','<h1 style=\"text-align: left;\"><strong><span style=\"color: #008000;\"><img class=\"alignleft size-medium wp-image-1421\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-freedom-300x200.jpg\" alt=\"anxiety freedom\" width=\"300\" height=\"200\" /></span></strong></h1>\r\n<h1><span style=\"color: #008000;\"><strong>Congratulations!</strong></span></h1>\r\n<h2 style=\"text-align: left;\">You have made a powerful decision that will improve the quality of your life now.</h2>\r\n&nbsp;\r\n<p style=\"text-align: left;\">The Anxiety Relief Program can really make a difference, fast.</p>\r\n<p style=\"text-align: left;\">It includes:</p>\r\n<p style=\"text-align: left;\">Assesment Questionaire\r\n3 Private Sessions\r\nPersonalised Audio Track\r\nYour Personalised Exercises.</p>\r\n<p style=\"text-align: left;\">Choose Your Payment Option Below</p>\r\n<p style=\"text-align: left;\">Single Payment of £230 Today Saving £55</p>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"25VQQQA8KYZGS\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img class=\"aligncenter\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\r\n<p style=\"text-align: center;\"><input name=\"on0\" type=\"hidden\" value=\"Anxiety Relief Program Saver\" /><img class=\"aligncenter\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n&nbsp;\r\n\r\nor\r\n\r\n£95 x 3 Sessions\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"></p>','Booking Form - Anxiety Relief Program','','inherit','closed','closed','','1371-revision-v1','','','2018-09-02 19:41:36','2018-09-02 19:41:36','',1371,'https://www.newcastle-hypnotherapy.com/1371-revision-v1/',0,'revision','',0),(1426,1,'2018-09-02 19:56:39','2018-09-02 19:56:39','<h1 style=\"text-align: left;\"><strong><span style=\"color: #008000;\"><img class=\"alignleft size-medium wp-image-1421\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-freedom-300x200.jpg\" alt=\"anxiety freedom\" width=\"300\" height=\"200\" /></span></strong></h1>\r\n<h1><span style=\"color: #008000;\"><strong>Congratulations!</strong></span></h1>\r\n<h2 style=\"text-align: left;\">You have made a powerful decision that will improve the quality of your life now.</h2>\r\n&nbsp;\r\n<p style=\"text-align: left;\">The Anxiety Relief Program can really make a difference, fast.</p>\r\n<p style=\"text-align: left;\">It includes:</p>\r\n<p style=\"text-align: left;\">Assesment Questionaire\r\n3 Private Sessions\r\nPersonalised Audio Track\r\nYour Personalised Exercises.</p>\r\n<p style=\"text-align: left;\">Choose Your Payment Option Below</p>\r\n<p style=\"text-align: left;\">Single Payment of £230 Today Saving £55</p>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"25VQQQA8KYZGS\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img class=\"aligncenter\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\r\n<p style=\"text-align: center;\"><input name=\"on0\" type=\"hidden\" value=\"Anxiety Relief Program Saver\" /><img class=\"aligncenter\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n&nbsp;\r\n\r\nor\r\n\r\n£95 x 3 Sessions\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"></p>','Booking Form - Anxiety Relief Program','','inherit','closed','closed','','1371-revision-v1','','','2018-09-02 19:56:39','2018-09-02 19:56:39','',1371,'https://www.newcastle-hypnotherapy.com/1371-revision-v1/',0,'revision','',0),(1425,1,'2018-09-02 19:56:10','2018-09-02 19:56:10','<h1 style=\"text-align: left;\"><strong><span style=\"color: #008000;\">Congratulations!\r\n<img class=\"alignleft size-medium wp-image-1421\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-freedom-300x200.jpg\" alt=\"anxiety freedom\" width=\"300\" height=\"200\" /></span></strong></h1>\r\n<h2 style=\"text-align: left;\"><strong><span style=\"color: #008000;\">\r\n</span></strong>You have made a powerful decision that\r\nwill improve the quality of your life now.</h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Our </strong><strong>clients</strong><strong> find the Anxiety Relief Program can really make a difference, fast.</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong>It includes:</strong></p>\r\n\r\n<ul>\r\n 	<li style=\"text-align: left;\">Assesment Questionaire</li>\r\n 	<li style=\"text-align: left;\">3 Private Sessions - you can choose either in person or online by video call</li>\r\n 	<li style=\"text-align: left;\">Personalised Audio Track</li>\r\n 	<li style=\"text-align: left;\">Your Personalised Exercises</li>\r\n</ul>\r\n<p style=\"text-align: left;\">Choose Your Payment Option Below</p>\r\n<p style=\"text-align: left;\"><strong>Single Investment of just £230 Today Saving £55</strong></p>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img class=\"aligncenter\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>\r\n<p style=\"text-align: center;\"><input name=\"on0\" type=\"hidden\" value=\"Anxiety Relief Program Saver\" /><img class=\"aligncenter\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\nor\r\n\r\n£95 x 3 Sessions\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"></p>','Booking Form - Anxiety Relief Program','','inherit','closed','closed','','1371-revision-v1','','','2018-09-02 19:56:10','2018-09-02 19:56:10','',1371,'https://www.newcastle-hypnotherapy.com/1371-revision-v1/',0,'revision','',0),(1428,1,'2018-09-02 20:07:13','2018-09-02 20:07:13','<h1 style=\"text-align: left;\"><strong><span style=\"color: #008000;\"><img class=\"alignleft size-medium wp-image-1421\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-freedom-300x200.jpg\" alt=\"anxiety freedom\" width=\"300\" height=\"200\" /></span></strong></h1>\r\n<h1><span style=\"color: #008000;\"><strong>Congratulations!</strong></span></h1>\r\n<h2 style=\"text-align: left;\">You have made a powerful decision that will improve the quality of your life now.</h2>\r\n&nbsp;\r\n<p style=\"text-align: left;\">The Anxiety Relief Program can really make a difference, fast.</p>\r\n<p style=\"text-align: left;\">It includes:</p>\r\n<p style=\"text-align: left;\">Assesment Questionaire\r\n3 Private Sessions (Online sessions are available on request)\r\nPersonalised Audio Track\r\nYour Personalised Exercises.</p>\r\n<p style=\"text-align: left;\">Choose Your Payment Option Below</p>\r\n<p style=\"text-align: left;\"><strong>Single Payment of £230 Today Saving £55</strong>\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img class=\"aligncenter\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n<p style=\"text-align: center;\"><input name=\"on0\" type=\"hidden\" value=\"Anxiety Relief Program Saver\" /><img class=\"aligncenter\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n&nbsp;\r\n\r\nor\r\n\r\n£95 x 3 Sessions\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"></p>','Booking Form - Anxiety Relief Program','','inherit','closed','closed','','1371-revision-v1','','','2018-09-02 20:07:13','2018-09-02 20:07:13','',1371,'https://www.newcastle-hypnotherapy.com/1371-revision-v1/',0,'revision','',0),(1429,1,'2018-09-02 20:13:43','2018-09-02 20:13:43','<h1 style=\"text-align: left;\"><strong><span style=\"color: #008000;\"><img class=\"alignleft size-medium wp-image-1421\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-freedom-300x200.jpg\" alt=\"anxiety freedom\" width=\"300\" height=\"200\" /></span></strong></h1>\r\n<h1><span style=\"color: #008000;\"><strong>Congratulations!</strong></span></h1>\r\n<h2 style=\"text-align: left;\">You have made a powerful decision that will improve the quality of your life now.</h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2 style=\"text-align: left;\"><span style=\"color: #008000;\">The Anxiety Relief Program Includes:</span></h2>\r\n<ul>\r\n 	<li style=\"text-align: left;\">Your Assesment Questionaire</li>\r\n 	<li style=\"text-align: left;\">3 Private Sessions - choice of face to face or online if required</li>\r\n 	<li style=\"text-align: left;\">Personalised Audio Track - to strengthen your results</li>\r\n 	<li style=\"text-align: left;\">Your Personalised Exercises - for greater improvements over time</li>\r\n</ul>\r\n<h2 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Choose Your Payment Option Below</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong>A Single Payment of £230 Today Saving £55</strong>\r\n<input alt=\"PayPal – The safer, easier way to pay online!\" name=\"submit\" src=\"https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif\" type=\"image\" />\r\n<img class=\"aligncenter\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n<p style=\"text-align: center;\"><input name=\"on0\" type=\"hidden\" value=\"Anxiety Relief Program Saver\" /><img class=\"aligncenter\" src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></p>\r\n&nbsp;\r\n\r\nor\r\n\r\n£95 x 3 Sessions\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"></p>','Booking Form - Anxiety Relief Program','','inherit','closed','closed','','1371-revision-v1','','','2018-09-02 20:13:43','2018-09-02 20:13:43','',1371,'https://www.newcastle-hypnotherapy.com/1371-revision-v1/',0,'revision','',0),(1749,1,'2018-10-04 07:47:18','2018-10-04 07:47:18','<img class=\"alignleft wp-image-1750 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/memory-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\nSome people have a great memory and they rarely forget anything.\r\nThey remember everything, important dates, events, names with ease.\r\nOthers are great at remembering certain things and have trouble remembering the simple things.\r\nSome of us find our memory starts to get worse as we age. What can we do to stop this?\r\n\r\n<strong>Having a good memory is often a set of skills that with a little practice, can really help to improve memory function.</strong>\r\nWant to learn these skills? <em>Join us for this Memory Improving Workshop.</em>\r\n\r\n<strong>When? 21st November.</strong>\r\n<strong>Where? The Vault, Wallsend.</strong>\r\n<strong>What Time? 7.30pm to 9.30pm</strong>\r\n<strong>How Much? £8.50 by advance booking.</strong>\r\n\r\nThe Wednesday Workshop is a regular set of events that run on the 1st &amp; 3rd Wednesday each month.\r\nBooking in advance is required at the link below. Places are limited.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/nlp-memory-improvement/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events.</strong>\r\nSubscribe to the events newsletter below.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. Your details are always kept private. You can unsubscribe from this newsletter at any time.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Improving Your Memory - TBA','','publish','open','open','','improving-the-memory-21st-november','','','2019-09-13 13:42:30','2019-09-13 13:42:30','',0,'https://www.newcastle-hypnotherapy.com/?page_id=1749',0,'page','',0),(1430,1,'2018-09-02 21:23:50','2018-09-02 21:23:50','<strong>Congratulations on taking the first step in taking control of your anxiety.</strong>\r\nOur clients find the Anxiety Relief Program a very effective way to quickly reduce anxiety symptoms. As we progress with the program we can take control of your anxiety and replace it with feelings of calm, control and relaxation.\r\n\r\n<strong><span style=\"color: #008000;\">Steve\'s Anxiety Client Feedback.</span> <em>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does the Anxiety Relief Program Work?</strong></span></h2>\r\nOnce you have <em>booked your program</em>, you will be sent your anxiety assessment questionnaire to complete.\r\nOnce completed we will arrange your first session and answer any question you may have.\r\nDuring your first session, we will discuss your anxiety problems in depth and decide together on your chosen outcome.\r\nWe will also assess which techniques are most suited for you and start your first treatment.\r\nShortly after we will send your personalised audio track with instructions on how to use it for best results.','Anxiety Relief Program - Single Payment Option','<span style=\"color: #008000;\"><strong>The Anxiety Relief Program Includes</strong></span>\r\n<ul>\r\n 	<li>Your anxiety assessment questionnaire</li>\r\n 	<li>3 Private individual sessions - choose in person or online via video</li>\r\n 	<li>A personalised anxiety audio track</li>\r\n 	<li>Your plan of personal exercises</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Save £55 with 1 easy payment</strong></span>','private','closed','closed','','anxiety-relief-program','','','2018-09-25 17:03:11','2018-09-25 17:03:11','',0,'https://www.newcastle-hypnotherapy.com/?post_type=product&#038;p=1430',0,'product','',0),(1432,1,'2018-09-03 07:57:05','2018-09-03 07:57:05','<strong>Congratulations on taking the first step in taking control of your anxiety.</strong>\nOur clients find the Anxiety Relief Program a very effective way to quickly reduce anxiety symptoms. As we progress with the program we can take control of your anxiety and replace it with feelings of calm, control and relaxation.\n\n<strong><span style=\"color: #008000;\">Steve\'s Anxiety Client Feedback.</span> <em>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></strong>\n<h2><span style=\"color: #008000;\"><strong>How does the Anxiety Relief Program Work?</strong></span></h2>\nOnce you have <em>booked your program</em>, you will be sent your anxiety assessment questionnaire to complete.\nOnce completed we will arrange your first session and answer any question you may have.\nDuring your first session, we will discuss your anxiety problems in depth and decide together on your chosen outcome.\nWe will also assess which techniques are most suited for you and start your first treatment.\nShortly after we will send your personalised audio track with instructions on how to use it for best results.','Anxiety Relief Program - Single Payment','<span style=\"color: #008000;\"><strong>The Anxiety Relief Program Includes</strong></span>\n<ul>\n 	<li>Your anxiety assessment questionnaire</li>\n 	<li>3 Private individual sessions - choose in person or online via video</li>\n 	<li>A personalised anxiety audio track</li>\n 	<li>Your plan of personal exercises</li>\n</ul>','inherit','closed','closed','','1430-autosave-v1','','','2018-09-03 07:57:05','2018-09-03 07:57:05','',1430,'https://www.newcastle-hypnotherapy.com/1430-autosave-v1/',0,'revision','',0),(1589,1,'2018-09-25 14:43:17','2018-09-25 14:43:17','','New Client Form NH','','inherit','open','closed','','new-client-form-nh','','','2018-09-25 14:43:17','2018-09-25 14:43:17','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc',0,'attachment','application/msword',0),(1436,1,'2018-09-07 13:56:45','2018-09-07 13:56:45','https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/cropped-smiley-2979107_1280.jpg','cropped-smiley-2979107_1280.jpg','','inherit','open','closed','','cropped-smiley-2979107_1280-jpg','','','2018-09-07 13:56:45','2018-09-07 13:56:45','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/cropped-smiley-2979107_1280.jpg',0,'attachment','image/jpeg',0),(1437,1,'2018-09-07 20:11:08','2018-09-07 20:11:08','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></h4>\r\n<p style=\"text-align: center;\"><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span></p>\r\n<p style=\"text-align: center;\"><strong>People ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.\r\n<span style=\"color: #008000;\">Read our 5-star client feedback reviews below</span></strong></p>\r\nhttps://www.youtube.com/watch?v=QaMdJmT0Ibw\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nTo help you with this we offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation.</strong></span></a> This helps us to explore your issues and look at the best way forward for you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Simply call <strong>07568 455</strong> <strong>809</strong></span></a> to arrange your phone consultation or book online -<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nThis means we will look at all of the factors that may be causing you an issue. We often look at your diet, your lifestyle, your relationships, habits and more. We can then evaluate the areas that may be causing or adding to your problem and then suggest the best ways forward for the best results.<strong><em>\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our <strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend Hypnotherapy Practice</a></strong> as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Learn more about The Secret Workshops.</span></strong></h4>\r\nNewcastle Hypnotherapy organise regular events known as The Secret Workshops across the  North East and in Newcastle upon Tyne. You can join The Secret Workshops Newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time using the link in the email.\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smartphone and you can also enjoy hypnotherapy and NLP sessions online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n&nbsp;\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis?</strong></span></h4>\r\nHypnosis is a natural mental state that we all experience every day.\r\nImagine being totally focused on a good film, TV programme, driving a car or listening to your favourite music. These are all a form of hypnosis.\r\nA hypnotherapist or hypnotist will guide you into a hypnotic trance using a hypnotic induction. While enjoying this relaxed and focused state, we work together to make the changes in your mind to modify behaviours and habits for the better.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Hypnosis or NLP Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Secret Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Opening Times</strong></span></h4>\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>','Newcastle Hypnotherapy','','publish','closed','closed','','hypnotherapy-in-newcastle-upon-tyne-northumberland-online','','','2019-05-29 16:49:53','2019-05-29 16:49:53','',0,'https://www.newcastle-hypnotherapy.com/?page_id=1437',0,'page','',0),(1513,1,'2018-09-19 15:19:16','2018-09-19 15:19:16','<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist,\r\n&amp; Master NLP Practitioner</span></strong>\r\n</span></h2>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy With A Difference.\r\n</span></strong></span></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.\r\n</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-19 15:19:16','2018-09-19 15:19:16','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1438,1,'2018-09-07 20:07:42','2018-09-07 20:07:42','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, Master NLP Practitioner at Newcastle Hypnotherapy.</span></strong>\r\n</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy With A Difference.\r\n</span></strong></span></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong>\r\n</span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.\r\n</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-07 20:07:42','2018-09-07 20:07:42','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1440,1,'2018-09-07 20:13:59','2018-09-07 20:13:59','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, Master NLP Practitioner at Newcastle Hypnotherapy. T</span></strong>\r\n</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy With A Difference.\r\n</span></strong></span></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong>\r\n</span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.\r\n</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-07 20:13:59','2018-09-07 20:13:59','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1442,1,'2018-09-07 20:25:06','2018-09-07 20:25:06','Welcome to Newcastle Hypnotherapy.\r\n\r\n&nbsp;\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - CMH MPNLP\r\nClinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong>\r\nWe help people just like you, to make major changes and overcome problems. Let\'s make life enjoyable again. <strong>Hypnosis and Neuro-Linguistic Programming</strong> are powerful tools to change bad habits and behaviours, fast.</span></p>\r\n\r\n<div style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong> <strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></div>\r\n<span style=\"color: #000000;\">\r\nAs well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.</strong></span></span>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings. </span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more more aware.Many report they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n\r\nYou can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a>\r\n\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span>\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist, Master NLP Practitioner &amp; Director at Newcastle Hypnotherapy.</span></strong></span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Your privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy testst','','inherit','closed','closed','','1054-revision-v1','','','2018-09-07 20:25:06','2018-09-07 20:25:06','',1054,'https://www.newcastle-hypnotherapy.com/1054-revision-v1/',0,'revision','',0),(1769,1,'2018-10-11 10:09:14','2018-10-11 10:09:14','<h2 style=\"text-align: center;\"><img class=\"aligncenter wp-image-1758 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/ANXIETY-FINGERS-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\r\n<span style=\"color: #008000;\"><strong>The New Anxiety Relief Program</strong></span></h2>\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy free consultation\" width=\"150\" height=\"150\" /><strong>Hi, my name is Mark &amp; I successfully help people with Anxiety, Stress and other issues.</strong>\r\nOur clients have been enjoying great results and lately, I have been working on some new techniques to really speed up the control and elimination of Anxiety problems.\r\n\r\nMy goal is to help thousands of people to take control of anxiety and stress, to do this in a faster way than before.\r\nI have suffered from anxiety and stress myself and I know how miserable anxiety can make your life.\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>20 Places At A Reduced Price</strong></span></h2>\r\n<p style=\"text-align: left;\">As part of our <strong>Anxiety Awareness Month</strong>, we are offering <strong>20 people the chance to test drive The New Anxiety Relief Program at cost price.</strong>\r\nIn return, we simply ask you to supply us with honest feedback on the benefits you have experienced, to be used on our websites and for a new anxiety report. Your details will, of course, remain confidential and the data will be used anonymously as part of a new anxiety report I am putting together.</p>\r\n<span style=\"color: #008000;\"><strong>Anxiety Relief Program - Client Feedback by Steve </strong></span><strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></strong>\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\">Are You Serious About Conquering Your Anxiety? </span></h2>\r\nThe program is conducted online via 3, 1 hour video sessions over 3 weeks with email &amp; phone support available between each session.\r\nYou will be supplied with a personalised audio track &amp; exercises to work with between your sessions.\r\nYou can be anywhere in the UK to take part in the program if chosen.\r\nAll you need is a PC or smartphone with a quiet space for each session.\r\n\r\n<strong>The total cost to you</strong> <strong>is just £79 and includes 3 sessions</strong> rather than our current of £237.00 for this program.\r\n\r\n<strong>Please note, we are only picking 20 people at this point from those that complete the form below.\r\n</strong>\r\n\r\nAs a thank you for your application, we will send you some anxiety help tips, techniques and videos by email shortly.\r\n\r\n<strong>Simply enter your details below and we will email you the application questionnaire now.</strong>\r\n\r\n<strong>[contact-form-7 id=\"1668\" title=\"New Anxiety Relief Program\"]</strong>','New Anxiety Program','','inherit','closed','closed','','1665-revision-v1','','','2018-10-11 10:09:14','2018-10-11 10:09:14','',1665,'https://www.newcastle-hypnotherapy.com/1665-revision-v1/',0,'revision','',0),(1815,1,'2018-10-28 12:04:45','2018-10-28 12:04:45','You can also find Newcastle Hypnotherapy in Seaton Delaval.\r\n\r\nWe are located at <span class=\"LrzXr\">28 Astley Road, Seaton Delaval, Whitley Bay NE25 0DG as part of Food For Thought, the health food store.\r\nWe offer all of the Hypnotherapy Services as detailed on our <a href=\"https://www.newcastle-hypnotherapy.com/\"><strong>Website Main Page</strong></a>.\r\n\r\n\r\n</span>','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 12:04:45','2018-10-28 12:04:45','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1814,1,'2018-10-28 12:02:24','2018-10-28 12:02:24','You can also find Newcastle Hypnotherapy in Seaton Delaval.\r\n\r\nWe are located at <span class=\"LrzXr\">28 Astley Road, Seaton Delaval, Whitley Bay NE25 0DG as part of Food For Thought, the health food store.\r\nWe offer all of the Hypnotherapy Services as detailed on our Website Main Page.</span>','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 12:02:24','2018-10-28 12:02:24','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1813,1,'2018-10-28 17:51:53','2018-10-28 17:51:53','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\n<span style=\"color: #008000;\"><strong>You can find our Seaton Delaval Practice at:</strong></span>\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail.  Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnotherapy work for everyone?\r\n</strong>Hypnosis works for most people and provides good results for most people. However, hypnotherapy is not always the best route for every client or always the best route for every issue. The good news is that we have many alternatives we can use. NLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval can be found at\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.3049713848686!2d-1.528295284095749!3d55.07291028037695!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb671e16403c025d4!2sNewcastle+Hypnotherapy+in+Seaton+Delaval!5e0!3m2!1sen!2suk!4v1540751587955\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\r\n</div>','NEWCASTLE HYPNOTHERAPY IN SEATON DELAVAL','','publish','closed','closed','','newcastle-hypnotherapy-in-seaton-delaval','','','2018-10-29 16:46:30','2018-10-29 16:46:30','',0,'https://www.newcastle-hypnotherapy.com/?page_id=1813',0,'page','',0),(1446,1,'2018-09-18 17:28:13','2018-09-18 17:28:13','','cropped-ggl-logo.png','','inherit','open','closed','','cropped-ggl-logo-png','','','2018-09-18 17:28:13','2018-09-18 17:28:13','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/cropped-ggl-logo.png',0,'attachment','image/png',0),(1650,1,'2018-09-26 16:17:23','2018-09-26 16:17:23','Thank you for making your payment.\r\n\r\nPlease choose a suitable time for your session below &amp; then complete the New Client Form.\r\n\r\n[ssa_booking type=hypnotherapy-session-upto-90-minutes]\r\n\r\n<strong>Once you have booked your session please complete this form.</strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\"><span style=\"color: #008000;\"><strong>NEW CLIENT FORM</strong></span></a>\r\n\r\nThe form can easily be edited in word or any document editor.\r\n\r\n\r\nI look forward to seeing you at your appointment.\r\n\r\nMark','Booking Your Time Slot','','inherit','closed','closed','','1639-revision-v1','','','2018-09-26 16:17:23','2018-09-26 16:17:23','',1639,'https://www.newcastle-hypnotherapy.com/1639-revision-v1/',0,'revision','',0),(1651,1,'2018-09-26 16:18:06','2018-09-26 16:18:06','Thank you for making your payment.\r\n\r\nPlease choose a suitable time for your session below &amp; then complete the New Client Form below.\r\n\r\n[ssa_booking type=hypnotherapy-session-upto-90-minutes]\r\n\r\n<strong>Once you have booked your session please complete this form.</strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\"><span style=\"color: #008000;\"><strong>NEW CLIENT FORM</strong></span></a>\r\n\r\nThe form can easily be edited in word or any document editor.\r\n\r\nI look forward to seeing you at your appointment.\r\n\r\nMark','Booking Your Time Slot','','inherit','closed','closed','','1639-revision-v1','','','2018-09-26 16:18:06','2018-09-26 16:18:06','',1639,'https://www.newcastle-hypnotherapy.com/1639-revision-v1/',0,'revision','',0),(1647,1,'2018-09-26 16:15:17','2018-09-26 16:15:17','Thank you for making your payment.\r\n\r\nPlease choose a suitable time for your session below &amp; then complete the New Client Form.\r\n\r\n[ssa_booking type=hypnotherapy-session-upto-90-minutes]\r\n\r\n&nbsp;\r\n\r\nOnce you have booked your session please complete this form.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\"><span style=\"color: #008000;\"><strong>NEW CLIENT FORM</strong></span></a>\r\n\r\n&nbsp;','Booking Your Time Slot','','inherit','closed','closed','','1639-revision-v1','','','2018-09-26 16:15:17','2018-09-26 16:15:17','',1639,'https://www.newcastle-hypnotherapy.com/1639-revision-v1/',0,'revision','',0),(1648,1,'2018-09-26 16:15:36','2018-09-26 16:15:36','Thank you for making your payment.\r\n\r\nPlease choose a suitable time for your session below &amp; then complete the New Client Form.\r\n\r\n[ssa_booking type=hypnotherapy-session-upto-90-minutes]\r\n\r\nOnce you have booked your session please complete this form.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\"><span style=\"color: #008000;\"><strong>NEW CLIENT FORM</strong></span></a>\r\n\r\n&nbsp;','Booking Your Time Slot','','inherit','closed','closed','','1639-revision-v1','','','2018-09-26 16:15:36','2018-09-26 16:15:36','',1639,'https://www.newcastle-hypnotherapy.com/1639-revision-v1/',0,'revision','',0),(1649,1,'2018-09-26 16:16:43','2018-09-26 16:16:43','Thank you for making your payment.\r\n\r\nPlease choose a suitable time for your session below &amp; then complete the New Client Form.\r\n\r\n[ssa_booking type=hypnotherapy-session-upto-90-minutes]\r\n\r\n<strong>Once you have booked your session please complete this form.</strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\"><span style=\"color: #008000;\"><strong>NEW CLIENT FORM</strong></span></a>\r\n\r\nThe form can easily be edited in word or any document editor.','Booking Your Time Slot','','inherit','closed','closed','','1639-revision-v1','','','2018-09-26 16:16:43','2018-09-26 16:16:43','',1639,'https://www.newcastle-hypnotherapy.com/1639-revision-v1/',0,'revision','',0),(1645,1,'2018-09-26 16:13:52','2018-09-26 16:13:52','Thank you for making your payment.\r\n\r\nPlease choose a suitable time for your session below &amp; then complete the New Client Form.\r\n\r\n[ssa_booking type=hypnotherapy-session-upto-90-minutes]\r\n\r\n&nbsp;\r\n\r\nOnce you have booked your session please complete this form.\r\nNEW CLIENT FORM\r\n\r\n&nbsp;','Book Your Time Slot','','inherit','closed','closed','','1639-revision-v1','','','2018-09-26 16:13:52','2018-09-26 16:13:52','',1639,'https://www.newcastle-hypnotherapy.com/1639-revision-v1/',0,'revision','',0),(1646,1,'2018-09-26 16:14:07','2018-09-26 16:14:07','Thank you for making your payment.\r\n\r\nPlease choose a suitable time for your session below &amp; then complete the New Client Form.\r\n\r\n[ssa_booking type=hypnotherapy-session-upto-90-minutes]\r\n\r\n&nbsp;\r\n\r\nOnce you have booked your session please complete this form.\r\nNEW CLIENT FORM\r\n\r\n&nbsp;','Booking Your Time Slot','','inherit','closed','closed','','1639-revision-v1','','','2018-09-26 16:14:07','2018-09-26 16:14:07','',1639,'https://www.newcastle-hypnotherapy.com/1639-revision-v1/',0,'revision','',0),(1451,1,'2018-09-18 18:02:09','2018-09-18 18:02:09','','HYPNOSIS SERVICES','','publish','closed','closed','','hypnosis-services','','','2018-10-29 17:35:56','2018-10-29 17:35:56','',0,'https://www.newcastle-hypnotherapy.com/?page_id=1451',0,'page','',0),(1452,1,'2018-09-18 18:02:09','2018-09-18 18:02:09','','HYPNOSIS SERVICES','','inherit','closed','closed','','1451-revision-v1','','','2018-09-18 18:02:09','2018-09-18 18:02:09','',1451,'https://www.newcastle-hypnotherapy.com/1451-revision-v1/',0,'revision','',0),(1644,1,'2018-09-26 16:09:27','2018-09-26 16:09:27','Thank you for making your payment.\r\n\r\nPlease choose a suitable time for your appointment below &amp; then complete the New Client Form.\r\n\r\n[ssa_booking type=hypnotherapy-session-upto-90-minutes]','Book Your Time Slot','','inherit','closed','closed','','1639-revision-v1','','','2018-09-26 16:09:27','2018-09-26 16:09:27','',1639,'https://www.newcastle-hypnotherapy.com/1639-revision-v1/',0,'revision','',0),(1643,1,'2018-09-26 16:09:01','2018-09-26 16:09:01','Thank you for making your payment.\r\n\r\nPlease choose a suitable time for your appointment below &amp; then complete the New Client Form.\r\n\r\n\r\n&nbsp;\r\n\r\nclient form before or after\r\n\r\n[ssa_booking type=hypnotherapy-session-upto-90-minutes]','Book Your Time Slot','','inherit','closed','closed','','1639-revision-v1','','','2018-09-26 16:09:01','2018-09-26 16:09:01','',1639,'https://www.newcastle-hypnotherapy.com/1639-revision-v1/',0,'revision','',0),(1639,1,'2018-09-26 16:01:48','2018-09-26 16:01:48','Thank you for making your payment.\r\n\r\nPlease choose a suitable time for your session below &amp; then complete the New Client Form below.\r\n\r\n[ssa_booking type=hypnotherapy-session-upto-90-minutes]\r\n\r\n<strong>Once you have booked your session please complete this form.</strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\"><span style=\"color: #008000;\"><strong>NEW CLIENT FORM</strong></span></a>\r\n\r\nThe form can easily be edited in word or any document editor.\r\n\r\nI look forward to seeing you at your appointment.\r\n\r\nMark','Booking Your Time Slot','','publish','closed','closed','','book-your-time-slot','','','2018-10-29 17:34:10','2018-10-29 17:34:10','',0,'https://www.newcastle-hypnotherapy.com/?page_id=1639',0,'page','',0),(1640,1,'2018-09-26 16:01:48','2018-09-26 16:01:48','test text\r\n\r\n&nbsp;\r\n\r\nclient form before or after\r\n\r\n[ssa_booking type=Hypnotherapy Session upto 90 minutes.]','Book Your Time Slot','','inherit','closed','closed','','1639-revision-v1','','','2018-09-26 16:01:48','2018-09-26 16:01:48','',1639,'https://www.newcastle-hypnotherapy.com/1639-revision-v1/',0,'revision','',0),(1641,1,'2018-09-26 16:03:22','2018-09-26 16:03:22','test text\r\n\r\n&nbsp;\r\n\r\nclient form before or after\r\n\r\n[ssa_booking type=hypnotherapy-session-upto-90-minutes]','Book Your Time Slot','','inherit','closed','closed','','1639-revision-v1','','','2018-09-26 16:03:22','2018-09-26 16:03:22','',1639,'https://www.newcastle-hypnotherapy.com/1639-revision-v1/',0,'revision','',0),(1642,1,'2018-09-26 16:13:49','2018-09-26 16:13:49','Thank you for making your payment.\n\nPlease choose a suitable time for your session below &amp; then complete the New Client Form.\n\n[ssa_booking type=hypnotherapy-session-upto-90-minutes]\n\n&nbsp;\n\nOnce you have booked your session please complete this form.\nNEW CLIENT FORM\n\n&nbsp;','Book Your Time Slot','','inherit','closed','closed','','1639-autosave-v1','','','2018-09-26 16:13:49','2018-09-26 16:13:49','',1639,'https://www.newcastle-hypnotherapy.com/1639-autosave-v1/',0,'revision','',0),(1460,1,'2018-09-19 12:43:24','2018-09-19 12:43:24','','Newcastle Hypnotherapy','','inherit','open','closed','','1115_newcastlehypnotherapy_logo_da_01','','','2018-09-19 12:43:46','2018-09-19 12:43:46','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/1115_NewcastleHypnotherapy_Logo_DA_01.png',0,'attachment','image/png',0),(1461,1,'2018-09-19 12:46:59','2018-09-19 12:46:59','','Newcastle Hypnotherapy','','inherit','open','closed','','newcastle-hypnotherapy-500','','','2018-09-19 12:47:20','2018-09-19 12:47:20','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Newcastle-Hypnotherapy-500.png',0,'attachment','image/png',0),(1463,1,'2018-09-19 12:50:30','2018-09-19 12:50:30','','Newcastle Hypnotherapy','','inherit','open','closed','','newcastle-hypnotherapy-400','','','2018-09-19 12:50:51','2018-09-19 12:50:51','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Newcastle-Hypnotherapy-400.png',0,'attachment','image/png',0),(1464,1,'2018-09-19 12:55:25','2018-09-19 12:55:25','','Newcastle Hypnotherapy','','inherit','open','closed','','1115_newcastlehypnotherapy300','','','2018-09-19 12:55:46','2018-09-19 12:55:46','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/1115_NewcastleHypnotherapy300.png',0,'attachment','image/png',0),(1466,1,'2018-09-19 13:02:51','2018-09-19 13:02:51','<h2><strong><span style=\"color: #008000;\">Are</span><span style=\"color: #008000;\"> you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<p><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.<br />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.<br /></strong><br /><strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong></p>\r\n<p>Anxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.</p>\r\n<p><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong></p>\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety<br /></span></strong></h2>\r\n<p>Many of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.</p>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<p><strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.<br /></strong></p>\r\n<ul>\r\n<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\n<p>As anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.<br />One of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.<br />We also teach you some great skills to put you back in control and take charge of your anxiety symptoms.<br /><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span></p>\r\n<p><img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]</p>\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\n<p>The first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.<br />We usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.<br />Once we have dealt with the most serious issue the rest is usually easier to deal with.<br />The aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.<br />The program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.</p>\r\n<p><strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong></p>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\n<p>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.<br />With a little work, we can create awareness of your cause of anxiety and show you how to take control.<br />Anxiety can have many symptoms including:</p>\r\n<ul>\r\n<li>Sleep problems</li>\r\n<li>Switching off at night</li>\r\n<li>Unable to relax</li>\r\n<li>Being afraid of the wrong things</li>\r\n<li>Becoming stressed easily</li>\r\n<li>Rapid breathing</li>\r\n<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n<li>Digestive problems</li>\r\n<li>Panic Attacks</li>\r\n<li>Bruxism and muscle clenching</li>\r\n<li>Reduced immune system</li>\r\n<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n<li>Heart palpitations</li>\r\n<li>Dry mouth</li>\r\n<li>Nausea</li>\r\n</ul>\r\n<p>Thankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.</p>\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\n<p>Certainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.<br />NLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.<br />The benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.</p>\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\n<p>Yes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.</p>\r\n<p><span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span><br /><span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span></p>\r\n<p><strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a></p>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.<br /></strong></span></h2>\r\n<p><span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.<br /></span>[wpforms id=\"35\"]<br /></strong></span></p>\r\n<p>We are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.</p>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\n<p>We are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.</p>\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\n<p>Hypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.</p>\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<p><span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.<br /></span></p>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong><br /></span></h2>\r\n<p><span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.<br /></span></p>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong><br /></span></h2>\r\n<p>Yes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.</p>\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\n<p>Anxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.</p>\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\n<p>They may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. <br />Our clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.</p>\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\n<p>Yes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.</p>\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?<br /></span></strong></h2>\r\n<p>Self-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.<br />We also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a></p>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span><br /></em></h2>\r\n<p><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em></p>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\n<p>Your first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues. <br /></em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong></p>\r\n<p><br /><br />Newcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a></p>\r\n<p>&nbsp;</p>\r\n<!-- wp:paragraph -->\r\n<p>&nbsp;</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>&nbsp;</p>\r\n<!-- /wp:paragraph -->','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-19 13:02:51','2018-09-19 13:02:51','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1470,1,'2018-09-19 13:43:19','2018-09-19 13:43:19',' ','','','publish','closed','closed','','1470','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',1451,'https://www.newcastle-hypnotherapy.com/?p=1470',4,'nav_menu_item','',0),(1472,1,'2018-09-19 13:50:21','2018-09-19 13:50:21',' ','','','publish','closed','closed','','1472','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',1451,'https://www.newcastle-hypnotherapy.com/?p=1472',3,'nav_menu_item','',0),(1473,1,'2018-09-19 13:50:21','2018-09-19 13:50:21',' ','','','publish','closed','closed','','1473','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',1451,'https://www.newcastle-hypnotherapy.com/?p=1473',5,'nav_menu_item','',0),(1474,1,'2018-09-19 13:50:21','2018-09-19 13:50:21',' ','','','publish','closed','closed','','1474','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',1451,'https://www.newcastle-hypnotherapy.com/?p=1474',6,'nav_menu_item','',0),(1475,1,'2018-09-19 13:50:21','2018-09-19 13:50:21',' ','','','publish','closed','closed','','1475','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',1451,'https://www.newcastle-hypnotherapy.com/?p=1475',7,'nav_menu_item','',0),(1476,1,'2018-09-19 13:50:21','2018-09-19 13:50:21',' ','','','publish','closed','closed','','1476','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',1451,'https://www.newcastle-hypnotherapy.com/?p=1476',8,'nav_menu_item','',0),(1477,1,'2018-09-19 13:50:21','2018-09-19 13:50:21',' ','','','publish','closed','closed','','1477','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',1451,'https://www.newcastle-hypnotherapy.com/?p=1477',9,'nav_menu_item','',0),(1478,1,'2018-09-19 13:50:21','2018-09-19 13:50:21',' ','','','publish','closed','closed','','1478','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=1478',10,'nav_menu_item','',0),(1479,1,'2018-09-19 13:56:30','2018-09-19 13:56:30',' ','','','publish','closed','closed','','pain-management-workshop-october-3rd','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',322,'https://www.newcastle-hypnotherapy.com/?p=1479',31,'nav_menu_item','',0),(1480,1,'2018-09-19 13:56:30','2018-09-19 13:56:30','','Past Life Regression Workshop – 9th October','','publish','closed','closed','','1480','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',322,'https://www.newcastle-hypnotherapy.com/?p=1480',19,'nav_menu_item','',0),(1481,1,'2018-09-19 13:56:30','2018-09-19 13:56:30','','Secrets Of Self Hypnosis Workshop - 6th Feb','','publish','closed','closed','','1481','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',322,'https://www.newcastle-hypnotherapy.com/?p=1481',28,'nav_menu_item','',0),(1482,1,'2018-09-19 13:56:30','2018-09-19 13:56:30','','The Wednesday Workshop – Meditate Deeper & Faster Using Self Hypnosis','','publish','closed','closed','','the-wednesday-workshop-meditate-deeper-faster-using-self-hypnosis','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',322,'https://www.newcastle-hypnotherapy.com/?p=1482',33,'nav_menu_item','',0),(1483,1,'2018-09-19 13:56:30','2018-09-19 13:56:30','','Self Hypnosis For Stress & Anxiety – 19th May','','publish','closed','closed','','self-hypnosis-for-stress-anxiety-19th-may','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',322,'https://www.newcastle-hypnotherapy.com/?p=1483',32,'nav_menu_item','',0),(1484,1,'2018-09-19 13:56:30','2018-09-19 13:56:30','','The Healing Pool & The Mental Message - 24th July','','publish','closed','closed','','1484','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',322,'https://www.newcastle-hypnotherapy.com/?p=1484',24,'nav_menu_item','',0),(1488,1,'2018-09-19 14:08:23','2018-09-19 14:08:23','','Learn More Newcastle Hypnotherapy','','inherit','open','closed','','sq','','','2018-09-25 17:31:37','2018-09-25 17:31:37','',1595,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/sq.png',0,'attachment','image/png',0),(1489,1,'2018-09-19 14:08:54','2018-09-19 14:08:54','https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/cropped-sq.png','cropped-sq.png','','inherit','open','closed','','cropped-sq-png','','','2018-09-19 14:08:54','2018-09-19 14:08:54','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/cropped-sq.png',0,'attachment','image/png',0),(1493,1,'2018-09-19 14:34:33','2018-09-19 14:34:33','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, Master NLP Practitioner at Newcastle Hypnotherapy. </span></strong>\r\n</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy With A Difference.\r\n</span></strong></span></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong>\r\n</span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.\r\n</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-19 14:34:33','2018-09-19 14:34:33','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1495,1,'2018-09-19 14:43:02','2018-09-19 14:43:02','Learn More','LEARN MORE','','publish','closed','closed','','learn-more','','','2018-09-19 14:43:02','2018-09-19 14:43:02','',0,'https://www.newcastle-hypnotherapy.com/?page_id=1495',0,'page','',0),(1496,1,'2018-09-19 14:43:02','2018-09-19 14:43:02','Learn More','LEARN MORE','','inherit','closed','closed','','1495-revision-v1','','','2018-09-19 14:43:02','2018-09-19 14:43:02','',1495,'https://www.newcastle-hypnotherapy.com/1495-revision-v1/',0,'revision','',0),(1497,1,'2018-09-19 14:44:14','2018-09-19 14:44:14',' ','','','publish','closed','closed','','1497','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=1497',34,'nav_menu_item','',0),(1498,1,'2018-09-19 14:49:11','2018-09-19 14:49:11','','BLOG ARTICLES','','publish','closed','closed','','blog-articles','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=1498',37,'nav_menu_item','',0),(1500,1,'2018-09-19 14:57:57','2018-09-19 14:57:57',' ','','','publish','closed','closed','','1500','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=1500',39,'nav_menu_item','',0),(1501,1,'2018-09-19 14:57:57','2018-09-19 14:57:57',' ','','','publish','closed','closed','','1501','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=1501',40,'nav_menu_item','',0),(1504,1,'2018-09-19 14:57:57','2018-09-19 14:57:57',' ','','','publish','closed','closed','','1504','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=1504',38,'nav_menu_item','',0),(1511,1,'2018-09-19 15:09:14','2018-09-19 15:09:14','<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist,\r\n&amp; Master NLP Practitioner </span></strong>\r\n</span></h2>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy With A Difference.\r\n</span></strong></span></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong>\r\n</span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.\r\n</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-19 15:09:14','2018-09-19 15:09:14','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1508,1,'2018-09-19 15:06:20','2018-09-19 15:06:20','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, Master NLP Practitioner at Newcastle Hypnotherapy. </span></strong>\r\n</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy With A Difference.\r\n</span></strong></span></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong>\r\n</span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.\r\n</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-19 15:06:20','2018-09-19 15:06:20','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1509,1,'2019-05-29 16:49:09','2019-05-29 16:49:09','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\n</span></strong></span></h4>\n<p style=\"text-align: center;\"><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span></p>\n<p style=\"text-align: center;\"><strong>People ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.\n<span style=\"color: #008000;\">Read our 5-star client feedback reviews below</span></strong></p>\nhttps://www.youtube.com/watch?v=QaMdJmT0Ibw\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n</strong></span></h4>\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\n</span></strong></span></h4>\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\n</strong></span></h4>\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\nTo help you with this we offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation.</strong></span></a> This helps us to explore your issues and look at the best way forward for you.\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Simply call <strong>07568 455</strong> <strong>809</strong></span></a> to arrange your phone consultation or  rnatively, some clients prefer to book a session straight away. You can pick the best option for you below.\n<ol>\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\n</strong></li>\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\n</ol>\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\n</strong></h4>\nOur clients tell us that we are a little different from other hypnosis practitioners.\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\n\nThis means we will look at all of the factors that may be causing you an issue. We often look at your diet, your lifestyle, your relationships, habits and more. We can then evaluate the areas that may be causing or adding to your problem and then suggest the best ways forward for the best results.<strong><em>\n</em></strong>\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\n\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\n\n<ul>\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\n</strong></li>\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\n</strong></li>\n 	<li><strong>Newcastle City Centre</strong></li>\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\n</ul>\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\nThere is also plenty of parking at our <strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend Hypnotherapy Practice</a></strong> as there is a dedicated parking area.</span></p>\n\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\n</strong></h4>\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\n\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\n\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\n\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\n\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\n<strong>Newcastle Hypnotherapy</strong>\n<span class=\"LrzXr\"><strong>31 Station Road,\nWallsend,\nNewcastle upon Tyne,\nNE28 6SZ</strong></span>\n\n<strong>Tel 07568 455 809</strong>\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\n<h4><strong><span style=\"color: #008000;\">Learn more about The Secret Workshops.</span></strong></h4>\nNewcastle Hypnotherapy organise regular events known as The Secret Workshops across the  North East and in Newcastle upon Tyne. You can join The Secret Workshops Newsletter below.\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\nYour privacy is safe and you can unsubscribe at any time using the link in the email.\n<h4></h4>\n<h4></h4>\n<h4></h4>\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\n</strong></span></span></h4>\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\nAll you need is a PC or smartphone and you can also enjoy hypnotherapy and NLP sessions online.\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\n<ol>\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\n</strong></li>\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\n</ol>\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\n</strong></span></span>\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\n\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\n&nbsp;\n<div></div>\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\n</strong></span></h2>\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\n</span></strong></h4>\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis?</strong></span></h4>\nHypnosis is a natural mental state that we all experience every day.\nImagine being totally focused on a good film, TV programme, driving a car or listening to your favourite music. These are all a form of hypnosis.\nA hypnotherapist or hypnotist will guide you into a hypnotic trance using a hypnotic induction. While enjoying this relaxed and focused state, we work together to make the changes in your mind to modify behaviours and habits for the better.\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\n</span></strong></h4>\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\n<h4><strong><span style=\"color: #008000;\">How Long Do Hypnosis or NLP Sessions Take?</span></strong></h4>\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\n<div>\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\n</strong></span></h4>\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\n</strong>\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\nSimply call us on 07568 455 809 to discuss this.\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\n</div>\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\n<div>The Secret Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\n</span></h4>\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\n</span>\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\n</span></h4>\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\n\n<span style=\"color: #008000;\">Clinical Hypnotherapist\nMaster NLP Practitioner\nDirector at Newcastle Hypnotherapy\nMember - UK Guild of Hypnosis Practitioners\n</span>\n\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\n\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\n\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\n\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\n\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\n\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\n</strong></h4>\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\n\n&nbsp;\n\n&nbsp;\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\n</span></strong></h4>\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\nYour privacy is important to us and your data will never be shared or sold.\nWe are GDPR compliant at all times.\n</span></div>\n[wpforms id=\"35\"]\n\n<strong>Newcastle Hypnotherapy</strong>\n<span class=\"LrzXr\"><strong>31 Station Road,\nWallsend,\nNewcastle upon Tyne,\nNE28 6SZ</strong></span>\n\n<strong>Tel 07568 455 809</strong>\n\n&nbsp;\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Opening Times</strong></span></h4>\n<div class=\"ak\">\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\n</div>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-autosave-v1','','','2019-05-29 16:49:09','2019-05-29 16:49:09','',1437,'https://www.newcastle-hypnotherapy.com/1437-autosave-v1/',0,'revision','',0),(1510,1,'2018-09-19 15:08:29','2018-09-19 15:08:29','<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist,\r\nMaster NLP Practitioner at Newcastle Hypnotherapy.</span></strong>\r\n</span></h2>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy With A Difference.\r\n</span></strong></span></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Client Feedback by Steve</span></strong>\r\n</span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.\r\n</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-19 15:08:29','2018-09-19 15:08:29','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1638,1,'2018-09-26 15:55:09','2018-09-26 15:55:09','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Vault,31, Station Roadm Wallsend,<span class=\"LrzXr\"> NE28 6RL</span>.</strong>\r\n</span>The Vault is just a 1 minute walk from Wallsend Metro. Car parking is normally available at The Vault.<span style=\"color: #ff6600;\">\r\n</span>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong><span style=\"color: #008000;\">Book your single session </span> - </strong><strong>Click Here</strong></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><strong><span style=\"color: #008000;\">Book your 2 sessions </span></strong><strong>Click Here (<span style=\"color: #ff6600;\">Saving You £18</span></strong><strong>)</strong></a>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Food For Thought,</strong> Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG.\r\nOn street parking is always available.</span></span>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft1/\"><span style=\"color: #008000;\"><strong>Book your single session</strong></span> - <span style=\"color: #008000;\"><strong>Click Here</strong></span></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft2/\"><strong><span style=\"color: #008000;\">Book your 2 sessions - </span></strong><span style=\"color: #008000;\"><strong>Click Here <span style=\"color: #ff6600;\">(Saving You £18)</span></strong></span></a>\r\n<h4><strong><span style=\"color: #ff6600;\">Online Sessions - Via Skype or Zoom</span></strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/osx1/\"><strong><span style=\"color: #008000;\">Book your single session - Click Here</span></strong></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/osx2/\"><span style=\"color: #008000;\"><strong>Book your 2 sessions - Click Here (Saving You £18)</strong> </span></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-26 15:55:09','2018-09-26 15:55:09','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1528,1,'2018-09-20 16:24:02','2018-09-20 16:24:02','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feedback by Steve</strong></span>\r\n</em></h2>\r\n<em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.\r\n</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-20 16:24:02','2018-09-20 16:24:02','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1518,1,'2018-09-19 15:29:48','2018-09-19 15:29:48','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy</span></strong>\r\n</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feedback by Steve</strong></span>\r\n</em></h2>\r\n<em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.\r\n</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-19 15:29:48','2018-09-19 15:29:48','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0);
INSERT INTO `wpqj_posts` VALUES (1514,1,'2018-09-19 15:20:42','2018-09-19 15:20:42','<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist,\r\n&amp; Master NLP Practitioner</span></strong>\r\n</span></h2>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2><strong>Clinical Hypnotherapy With A Difference.\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2><em><strong>Client Feedback by Steve</strong>\r\n</em></h2>\r\n<em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.\r\n</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-19 15:20:42','2018-09-19 15:20:42','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1515,1,'2018-09-19 15:21:57','2018-09-19 15:21:57','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft size-thumbnail wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"150\" height=\"150\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy.</span></strong>\r\n</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2><strong>Clinical Hypnotherapy With A Difference.\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2><em><strong>Client Feedback by Steve</strong>\r\n</em></h2>\r\n<em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.\r\n</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-19 15:21:57','2018-09-19 15:21:57','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1516,1,'2018-09-19 15:25:45','2018-09-19 15:25:45','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy.</span></strong>\r\n</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2><strong>Clinical Hypnotherapy With A Difference.\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2><em><strong>Client Feedback by Steve</strong>\r\n</em></h2>\r\n<em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.\r\n</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-19 15:25:45','2018-09-19 15:25:45','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1517,1,'2018-09-19 15:26:12','2018-09-19 15:26:12','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy</span></strong>\r\n</span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2><strong>Clinical Hypnotherapy With A Difference.\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2><em><strong>Client Feedback by Steve</strong>\r\n</em></h2>\r\n<em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.\r\n</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-19 15:26:12','2018-09-19 15:26:12','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1519,1,'2018-09-19 16:40:49','2018-09-19 16:40:49','','Newcastle Hypnotherapy 270','','inherit','open','closed','','newcastle-hypnotherapy-270','','','2018-09-19 16:41:08','2018-09-19 16:41:08','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Newcastle-Hypnotherapy-270.png',0,'attachment','image/png',0),(1522,1,'2018-09-19 16:43:55','2018-09-19 16:43:55','','cropped-1115_NewcastleHypnotherapy-3001.png','','inherit','open','closed','','cropped-1115_newcastlehypnotherapy-3001-png','','','2018-09-19 16:43:55','2018-09-19 16:43:55','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/cropped-1115_NewcastleHypnotherapy-3001.png',0,'attachment','image/png',0),(1521,1,'2018-09-19 16:43:19','2018-09-19 16:43:19','','Newcastle Hypnotherapy 3001','','inherit','open','closed','','1115_newcastlehypnotherapy-3001','','','2018-09-19 16:43:38','2018-09-19 16:43:38','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/1115_NewcastleHypnotherapy-3001.png',0,'attachment','image/png',0),(1524,1,'2018-09-19 17:01:19','2018-09-19 17:01:19','','Newcastle Hypnotherapy','','inherit','open','closed','','nhw01','','','2018-09-19 17:01:38','2018-09-19 17:01:38','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NHw01.png',0,'attachment','image/png',0),(1668,1,'2018-09-27 15:20:48','2018-09-27 15:20:48','<fieldset>\r\n	<legend>Contact Form</legend>\r\n	<ol>\r\n		<li> Your Name (required) [text* cf7s-name] </li>\r\n		<li> Email Address (required) [email* cf7s-email-address] </li>\r\n		\r\n	</ol>\r\n	[submit \"Submit\"]\r\n	<p>* Required</p>\r\n</fieldset>\r\n<p>We are GDPR Compliant. Your details will only be used to send your information as stated above. </p>\n1\nNARP\n[your-name] <mark@newcastle-hypnotherapy.com>\nmark@newcastle-hypnotherapy.com\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Newcastle Hypnotherapy  (https://www.newcastle-hypnotherapy.com)\nReply-To: <mark@newcastle-hypnotherapy.com>\n\n\n\n\nNewcastle Hypnotherapy  \"[your-subject]\"\nNewcastle Hypnotherapy  <mark@newcastle-hypnotherapy.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Newcastle Hypnotherapy  (https://www.newcastle-hypnotherapy.com)\nReply-To: mark@newcastle-hypnotherapy.com\n\n\n\nThank you. Please check your email for your information.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','New Anxiety Relief Program','','publish','closed','closed','','untitled-2','','','2018-09-28 12:49:51','2018-09-28 12:49:51','',0,'https://www.newcastle-hypnotherapy.com/?post_type=wpcf7_contact_form&#038;p=1668',0,'wpcf7_contact_form','',0),(1529,1,'2018-09-20 16:35:43','2018-09-20 16:35:43','fdksjhfsdkjhfk\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0&amp;controls=0\" width=\"560\" height=\"315\" frameborder=\"0\" ></iframe>','test video','','publish','closed','closed','','test-video','','','2018-09-20 16:46:15','2018-09-20 16:46:15','',0,'https://www.newcastle-hypnotherapy.com/?page_id=1529',0,'page','',0),(1534,1,'2018-09-20 16:46:15','2018-09-20 16:46:15','fdksjhfsdkjhfk\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0&amp;controls=0\" width=\"560\" height=\"315\" frameborder=\"0\" ></iframe>','test video','','inherit','closed','closed','','1529-revision-v1','','','2018-09-20 16:46:15','2018-09-20 16:46:15','',1529,'https://www.newcastle-hypnotherapy.com/1529-revision-v1/',0,'revision','',0),(1530,1,'2018-09-20 16:28:04','2018-09-20 16:28:04','fdksjhfsdkjhfk\r\n\r\n&lt;iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0&amp;amp;controls=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen&gt;&lt;/iframe&gt;','test video','','inherit','closed','closed','','1529-revision-v1','','','2018-09-20 16:28:04','2018-09-20 16:28:04','',1529,'https://www.newcastle-hypnotherapy.com/1529-revision-v1/',0,'revision','',0),(1531,1,'2018-09-20 16:28:40','2018-09-20 16:28:40','fdksjhfsdkjhfk\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0&amp;controls=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','test video','','inherit','closed','closed','','1529-revision-v1','','','2018-09-20 16:28:40','2018-09-20 16:28:40','',1529,'https://www.newcastle-hypnotherapy.com/1529-revision-v1/',0,'revision','',0),(1796,1,'2018-10-26 12:15:49','0000-00-00 00:00:00','&nbsp;\r\n\r\nIntroduction To Neuro Linguistic Programming, presented by Master Practitioners of NLP - Si Evans &amp; Mark Morley.\r\nWednesday the 5th December. 7.30pm to 9.30pm. The Vault, Wallsend. Advance booking required. £10 per person.\r\n\r\nIn this enjoyable, interactive workshop we will answer many questions, including:\r\n\r\nWhat Is Neuro Linguistic Programming - NLP?\r\nHow can I use NLP to improve my work &amp; make changes?\r\nWhy is NLP so powerful?\r\nWhy are so many people talking about NLP skills?\r\nWhat issues and problems can NLP put right?\r\n\r\nFor the final Wednesday Workshop of 2018, we will answer all of your questions and share some powerful NLP skills that you can start to practice and use straight away.','Introduction To Neuro Linguistic Programming 5th December','','draft','closed','closed','','','','','2018-10-26 12:15:49','2018-10-26 12:15:49','',0,'https://www.newcastle-hypnotherapy.com/?page_id=1796',0,'page','',0),(1540,1,'2018-09-20 17:58:09','2018-09-20 17:58:09','[woocommerce_checkout]','Checkout','','inherit','closed','closed','','1377-revision-v1','','','2018-09-20 17:58:09','2018-09-20 17:58:09','',1377,'https://www.newcastle-hypnotherapy.com/1377-revision-v1/',0,'revision','',0),(1541,1,'2018-09-20 17:59:19','2018-09-20 17:59:19','[woocommerce_cart]','Basket','','inherit','closed','closed','','1376-revision-v1','','','2018-09-20 17:59:19','2018-09-20 17:59:19','',1376,'https://www.newcastle-hypnotherapy.com/1376-revision-v1/',0,'revision','',0),(1797,1,'2018-10-24 18:59:49','2018-10-24 18:59:49','&nbsp;\r\n\r\nIntroduction To Neuro Linguistic Programming, presented by Master Practitioners of NLP - Si Evans &amp; Mark Morley.\r\nWednesday the 5th December. 7.30pm to 9.30pm. The Vault, Wallsend. Advance booking required. £10 per person.\r\n\r\nIn this enjoyable, interactive workshop we will answer many questions, including:\r\n\r\nWhat Is Neuro Linguistic Programming - NLP?\r\nHow can I use NLP to improve my work &amp; make changes?\r\nWhy is NLP so powerful?\r\nWhy are so many people talking about NLP skills?\r\nWhat issues and problems can NLP put right?\r\n\r\nFor the final Wednesday Workshop of 2018, we will answer all of your questions and share some powerful NLP skills that you can start to practice and use straight away.','Introduction To Neuro Linguistic Programming 5th December','','inherit','closed','closed','','1796-revision-v1','','','2018-10-24 18:59:49','2018-10-24 18:59:49','',1796,'https://www.newcastle-hypnotherapy.com/1796-revision-v1/',0,'revision','',0),(1549,1,'2018-10-11 12:07:22','2018-10-11 12:07:22','Terms &amp; Conditions.\nThe Wednesday Workshop is a non-profit event running on the 1st and 3rd Wednesday of each month.\nAttendance is strictly by advance booking on a first come first served basis.\n\nOnce you have booked your place, the website will send you a confirmation.\nUseful notes regarding each workshop are sent out a few days in advance.\n\nRefund Policy. Please note we do not offer refunds if you are unable to attend.\nYou may transfer your place to someone else if required.','Memory Improvement - 21st November','The Wednesday Workshop - Memory Improvement Skills.\nBook your place here','inherit','closed','closed','','1548-autosave-v1','','','2018-10-11 12:07:22','2018-10-11 12:07:22','',1548,'https://www.newcastle-hypnotherapy.com/1548-autosave-v1/',0,'revision','',0),(1752,1,'2018-10-04 07:47:18','2018-10-04 07:47:18','<img class=\"alignleft wp-image-1750 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/memory-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\nSome people have a great memory and they rarely forget anything.\r\nThey remember everything, important dates, events, names with ease.\r\nOthers are great at remembering certain things and have trouble remembering the simple things.\r\nSome of us find our memory starts to get worse as we age. What can we do to stop this?\r\n\r\n<strong>Having a good memory is often a set of skills that with a little practice, can really help to improve memory function.</strong>\r\nWant to learn these skills? <em>Join us for this Memory Improving Workshop.</em>\r\n\r\n<strong>When? 17th October.</strong>\r\n<strong>Where? The Vault, Wallsend.</strong>\r\n<strong>What Time? 7.30pm to 9.30pm</strong>\r\n<strong>How Much? £8.50 by advance booking.</strong>\r\n\r\nThe Wednesday Workshop is a regular set of events that run on the 1st &amp; 3rd Wednesday each month.\r\nBooking in advance is required at the link below.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/nlp-memory-improvement/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Improving The Memory','','inherit','closed','closed','','1749-revision-v1','','','2018-10-04 07:47:18','2018-10-04 07:47:18','',1749,'https://www.newcastle-hypnotherapy.com/1749-revision-v1/',0,'revision','',0),(1550,1,'2018-09-29 15:30:01','2018-09-29 15:30:01','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.\n</strong></span>During this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\n\n&nbsp;\n\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\n\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\nSpaces are limited and strictly booked on a first come, first served basis.\nYou can book your place below while spaces are still available.\n<h2><em><span style=\"color: #008000;\"><strong>Workshop Feeback from Hayley</strong>.</span>\n</em></h2>\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or PayPal.\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\n<a href=\"https://www.newcastle-hypnotherapy.com/product/pain-management-workshop-3rd-oct/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\n\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\n<h2></h2>\n<h2></h2>\nWant To Learn About The Other Events?\n\nComplete your details below and join the events newsletter.\nWe are GDPR compliant and will only use your details to send you updates.\nYou may unsubscribe at any time.\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\nThe Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\nFeel free to suggest a topic or something you would like a workshop to focus on.\nIf you could run a workshop please <strong>Contact Us</strong> and we can look to schedule that in, if suitable, in the future.\n\n<strong>Terms &amp; Conditions.</strong>\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting We do not offer refunds.  Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\n<h2><span style=\"color: #008000;\"><strong>Questions and Answers - The Pain Management Workshop.</strong></span></h2>\n<h2><strong>Where and when is this Pain Management Workshop?</strong></h2>\nThis event is part of the Wednesday Workshop at The Vault Creative Wellbeing Centre, Station Road, Wallsend, Newcastle upon Tyne.\nIt is held on the 3rd of October 2018, starting at 7.30pm until 9.30pm. £8.50 per person with booking only in advance.\nThis event is organised by Newcastle Hypnotherapy.\nOnce you have booked your place, an email will be sent with directions and useful information for the evening.\n<h2><strong>Will this help with Chronic Pain?</strong></h2>\nThe techniques we will use should help will all sorts of physical and emotional pain.\nIf you have a serious pain problem you can gain greater benefit with a private session to focus on your individual needs.\nCall Mark on Call 07568 455 809 for more information or we can discuss private sessions and programs at this event.\n<h2><strong>How successful is Hypnosis for Pain Management?</strong></h2>\nOur clients find Hypnosis and Self-hypnosis very effective with pain management and for all sorts of pain.\nDuring this workshop, we will use Self-hypnosis and EFT as successful techniques to control your pain.\n<h2><strong>Can I just turn up in the evening to attend?</strong></h2>\nAs we have limited spaces we ask everyone to book their place in advance.\nThis saves time and effort on the evening to focus on the topic. Therefore, you must book in advance if you wish to attend. If you have any questions that are not answered here, simply <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong></span>\n<h2><strong>Do you run private sessions for Pain Management?</strong></h2>\nYes we run a dedicated Pain Management Hypnosis Program for those wanting faster results with pain issues.\nYou can learn more about the <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-pain-management-program/\"><strong><span style=\"color: #008000;\">Pain Management Hypnosis Program here.</span></strong></a>\n<h2><strong>Join the Newcastle Hypnotherapy </strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group Here</strong></a></h2>\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> is a member of </strong><a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\"><strong>UK Guild Of Hypnosis Practitioners</strong></a></h2>\n<img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />\n\nThe Vault Creative Wellness Centre.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\nThe map for Newcastle Hypnotherapy\n\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>','Pain, Stress, Anxiety Management Workshop - October 3rd','','inherit','closed','closed','','1291-autosave-v1','','','2018-09-29 15:30:01','2018-09-29 15:30:01','',1291,'https://www.newcastle-hypnotherapy.com/1291-autosave-v1/',0,'revision','',0),(1551,1,'2018-09-20 20:28:05','2018-09-20 20:28:05','','book workshop now','','inherit','open','closed','','book-workshop-now','','','2018-09-20 20:28:20','2018-09-20 20:28:20','',1291,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now.png',0,'attachment','image/png',0),(1552,1,'2018-09-20 20:29:13','2018-09-20 20:29:13','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.</strong></span>\r\nDuring this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\nThis workshop will help with pain on a  physical and emotional level.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><em><span style=\"color: #008000;\"><strong>Workshop Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or PayPal.\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/pain-management-workshop-3rd-oct/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Want To Learn About The Other Events?</strong></span></h2>\r\nComplete your details below and join the events newsletter.\r\nWe are GDPR compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nThe Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please <strong>Contact Us</strong> and we can look to schedule that in, if suitable, in the future.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting We do not offer refunds.  Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions and Answers - The Pain Management Workshop.</strong></span></h2>\r\n<h2><strong>Where and when is this Pain Management Workshop?</strong></h2>\r\nThis event is part of the Wednesday Workshop at The Vault Creative Wellbeing Centre, Station Road, Wallsend, Newcastle upon Tyne.\r\nIt is held on the 3rd of October 2018, starting at 7.30pm until 9.30pm. £8.50 per person with booking only in advance.\r\nThis event is organised by Newcastle Hypnotherapy.\r\nOnce you have booked your place, an email will be sent with directions and useful information for the evening.\r\n<h2><strong>Will this help with Chronic Pain?</strong></h2>\r\nThe techniques we will use should help will all sorts of physical and emotional pain.\r\nIf you have a serious pain problem you can gain greater benefit with a private session to focus on your individual needs.\r\nCall Mark on Call 07568 455 809 for more information or we can discuss private sessions and programs at this event.\r\n<h2><strong>How successful is Hypnosis for Pain Management?</strong></h2>\r\nOur clients find Hypnosis and Self-hypnosis very effective with pain management and for all sorts of pain.\r\nDuring this workshop, we will use Self-hypnosis and EFT as successful techniques to control your pain.\r\n<h2><strong>Can I just turn up in the evening to attend?</strong></h2>\r\nAs we have limited spaces we ask everyone to book their place in advance.\r\nThis saves time and effort on the evening to focus on the topic. Therefore, you must book in advance if you wish to attend. If you have any questions that are not answered here, simply <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong></span>\r\n<h2><strong>Do you run private sessions for Pain Management?</strong></h2>\r\nYes we run a dedicated Pain Management Hypnosis Program for those wanting faster results with pain issues.\r\nYou can learn more about the <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-pain-management-program/\"><strong><span style=\"color: #008000;\">Pain Management Hypnosis Program here.</span></strong></a>\r\n<h2><strong>Join the Newcastle Hypnotherapy </strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group Here</strong></a></h2>\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> is a member of </strong><a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\"><strong>UK Guild Of Hypnosis Practitioners</strong></a></h2>\r\n<img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />\r\n\r\nThe Vault Creative Wellness Centre.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe map for Newcastle Hypnotherapy\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-09-20 20:29:13','2018-09-20 20:29:13','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1554,1,'2018-09-20 20:35:55','2018-09-20 20:35:55','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.\r\n</strong></span>During this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\n\r\n\r\n\r\n&nbsp;\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n<h2><em><span style=\"color: #008000;\"><strong>Workshop Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or PayPal.\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/pain-management-workshop-3rd-oct/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Want To Learn About The Other Events?</strong></span></h2>\r\nComplete your details below and join the events newsletter.\r\nWe are GDPR compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nThe Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please <strong>Contact Us</strong> and we can look to schedule that in, if suitable, in the future.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting We do not offer refunds.  Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions and Answers - The Pain Management Workshop.</strong></span></h2>\r\n<h2><strong>Where and when is this Pain Management Workshop?</strong></h2>\r\nThis event is part of the Wednesday Workshop at The Vault Creative Wellbeing Centre, Station Road, Wallsend, Newcastle upon Tyne.\r\nIt is held on the 3rd of October 2018, starting at 7.30pm until 9.30pm. £8.50 per person with booking only in advance.\r\nThis event is organised by Newcastle Hypnotherapy.\r\nOnce you have booked your place, an email will be sent with directions and useful information for the evening.\r\n<h2><strong>Will this help with Chronic Pain?</strong></h2>\r\nThe techniques we will use should help will all sorts of physical and emotional pain.\r\nIf you have a serious pain problem you can gain greater benefit with a private session to focus on your individual needs.\r\nCall Mark on Call 07568 455 809 for more information or we can discuss private sessions and programs at this event.\r\n<h2><strong>How successful is Hypnosis for Pain Management?</strong></h2>\r\nOur clients find Hypnosis and Self-hypnosis very effective with pain management and for all sorts of pain.\r\nDuring this workshop, we will use Self-hypnosis and EFT as successful techniques to control your pain.\r\n<h2><strong>Can I just turn up in the evening to attend?</strong></h2>\r\nAs we have limited spaces we ask everyone to book their place in advance.\r\nThis saves time and effort on the evening to focus on the topic. Therefore, you must book in advance if you wish to attend. If you have any questions that are not answered here, simply <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong></span>\r\n<h2><strong>Do you run private sessions for Pain Management?</strong></h2>\r\nYes we run a dedicated Pain Management Hypnosis Program for those wanting faster results with pain issues.\r\nYou can learn more about the <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-pain-management-program/\"><strong><span style=\"color: #008000;\">Pain Management Hypnosis Program here.</span></strong></a>\r\n<h2><strong>Join the Newcastle Hypnotherapy </strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group Here</strong></a></h2>\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> is a member of </strong><a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\"><strong>UK Guild Of Hypnosis Practitioners</strong></a></h2>\r\n<img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />\r\n\r\nThe Vault Creative Wellness Centre.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe map for Newcastle Hypnotherapy\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-09-20 20:35:55','2018-09-20 20:35:55','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1553,1,'2018-09-20 20:30:26','2018-09-20 20:30:26','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.</strong></span>\r\nDuring this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\nThis workshop will help with pain on a  physical and emotional level.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><em><span style=\"color: #008000;\"><strong>Workshop Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or PayPal.\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/pain-management-workshop-3rd-oct/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Want To Learn About The Other Events?</strong></span></h2>\r\nComplete your details below and join the events newsletter.\r\nWe are GDPR compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nThe Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please <strong>Contact Us</strong> and we can look to schedule that in, if suitable, in the future.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting We do not offer refunds.  Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions and Answers - The Pain Management Workshop.</strong></span></h2>\r\n<h2><strong>Where and when is this Pain Management Workshop?</strong></h2>\r\nThis event is part of the Wednesday Workshop at The Vault Creative Wellbeing Centre, Station Road, Wallsend, Newcastle upon Tyne.\r\nIt is held on the 3rd of October 2018, starting at 7.30pm until 9.30pm. £8.50 per person with booking only in advance.\r\nThis event is organised by Newcastle Hypnotherapy.\r\nOnce you have booked your place, an email will be sent with directions and useful information for the evening.\r\n<h2><strong>Will this help with Chronic Pain?</strong></h2>\r\nThe techniques we will use should help will all sorts of physical and emotional pain.\r\nIf you have a serious pain problem you can gain greater benefit with a private session to focus on your individual needs.\r\nCall Mark on Call 07568 455 809 for more information or we can discuss private sessions and programs at this event.\r\n<h2><strong>How successful is Hypnosis for Pain Management?</strong></h2>\r\nOur clients find Hypnosis and Self-hypnosis very effective with pain management and for all sorts of pain.\r\nDuring this workshop, we will use Self-hypnosis and EFT as successful techniques to control your pain.\r\n<h2><strong>Can I just turn up in the evening to attend?</strong></h2>\r\nAs we have limited spaces we ask everyone to book their place in advance.\r\nThis saves time and effort on the evening to focus on the topic. Therefore, you must book in advance if you wish to attend. If you have any questions that are not answered here, simply <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong></span>\r\n<h2><strong>Do you run private sessions for Pain Management?</strong></h2>\r\nYes we run a dedicated Pain Management Hypnosis Program for those wanting faster results with pain issues.\r\nYou can learn more about the <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-pain-management-program/\"><strong><span style=\"color: #008000;\">Pain Management Hypnosis Program here.</span></strong></a>\r\n<h2><strong>Join the Newcastle Hypnotherapy </strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group Here</strong></a></h2>\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> is a member of </strong><a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\"><strong>UK Guild Of Hypnosis Practitioners</strong></a></h2>\r\n<img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />\r\n\r\nThe Vault Creative Wellness Centre.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe map for Newcastle Hypnotherapy\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-09-20 20:30:26','2018-09-20 20:30:26','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1735,1,'2018-09-29 16:32:39','2018-09-29 16:32:39','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feedback by Steve</strong></span>\r\n</em></h2>\r\n<em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.\r\n</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-29 16:32:39','2018-09-29 16:32:39','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1734,1,'2018-09-29 16:32:13','2018-09-29 16:32:13','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe><img class=\"alignleft size-thumbnail wp-image-1730\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" />\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feedback by Steve</strong></span>\r\n</em></h2>\r\n<em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.\r\n</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-29 16:32:13','2018-09-29 16:32:13','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1555,1,'2018-09-20 20:36:16','2018-09-20 20:36:16','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.\r\n</strong></span>During this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\n\r\n&nbsp;\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n<h2><em><span style=\"color: #008000;\"><strong>Workshop Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or PayPal.\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/pain-management-workshop-3rd-oct/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Want To Learn About The Other Events?</strong></span></h2>\r\nComplete your details below and join the events newsletter.\r\nWe are GDPR compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nThe Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please <strong>Contact Us</strong> and we can look to schedule that in, if suitable, in the future.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting We do not offer refunds.  Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions and Answers - The Pain Management Workshop.</strong></span></h2>\r\n<h2><strong>Where and when is this Pain Management Workshop?</strong></h2>\r\nThis event is part of the Wednesday Workshop at The Vault Creative Wellbeing Centre, Station Road, Wallsend, Newcastle upon Tyne.\r\nIt is held on the 3rd of October 2018, starting at 7.30pm until 9.30pm. £8.50 per person with booking only in advance.\r\nThis event is organised by Newcastle Hypnotherapy.\r\nOnce you have booked your place, an email will be sent with directions and useful information for the evening.\r\n<h2><strong>Will this help with Chronic Pain?</strong></h2>\r\nThe techniques we will use should help will all sorts of physical and emotional pain.\r\nIf you have a serious pain problem you can gain greater benefit with a private session to focus on your individual needs.\r\nCall Mark on Call 07568 455 809 for more information or we can discuss private sessions and programs at this event.\r\n<h2><strong>How successful is Hypnosis for Pain Management?</strong></h2>\r\nOur clients find Hypnosis and Self-hypnosis very effective with pain management and for all sorts of pain.\r\nDuring this workshop, we will use Self-hypnosis and EFT as successful techniques to control your pain.\r\n<h2><strong>Can I just turn up in the evening to attend?</strong></h2>\r\nAs we have limited spaces we ask everyone to book their place in advance.\r\nThis saves time and effort on the evening to focus on the topic. Therefore, you must book in advance if you wish to attend. If you have any questions that are not answered here, simply <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong></span>\r\n<h2><strong>Do you run private sessions for Pain Management?</strong></h2>\r\nYes we run a dedicated Pain Management Hypnosis Program for those wanting faster results with pain issues.\r\nYou can learn more about the <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-pain-management-program/\"><strong><span style=\"color: #008000;\">Pain Management Hypnosis Program here.</span></strong></a>\r\n<h2><strong>Join the Newcastle Hypnotherapy </strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group Here</strong></a></h2>\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> is a member of </strong><a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\"><strong>UK Guild Of Hypnosis Practitioners</strong></a></h2>\r\n<img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />\r\n\r\nThe Vault Creative Wellness Centre.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe map for Newcastle Hypnotherapy\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-09-20 20:36:16','2018-09-20 20:36:16','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1556,1,'2018-09-20 20:36:41','2018-09-20 20:36:41','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.\r\n</strong></span>During this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\n\r\n&nbsp;\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n<h2><em><span style=\"color: #008000;\"><strong>Workshop Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or PayPal.\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/pain-management-workshop-3rd-oct/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Want To Learn About The Other Events?</strong></span></h2>\r\nComplete your details below and join the events newsletter.\r\nWe are GDPR compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nThe Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please <strong>Contact Us</strong> and we can look to schedule that in, if suitable, in the future.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting We do not offer refunds.  Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions and Answers - The Pain Management Workshop.</strong></span></h2>\r\n<h2><strong>Where and when is this Pain Management Workshop?</strong></h2>\r\nThis event is part of the Wednesday Workshop at The Vault Creative Wellbeing Centre, Station Road, Wallsend, Newcastle upon Tyne.\r\nIt is held on the 3rd of October 2018, starting at 7.30pm until 9.30pm. £8.50 per person with booking only in advance.\r\nThis event is organised by Newcastle Hypnotherapy.\r\nOnce you have booked your place, an email will be sent with directions and useful information for the evening.\r\n<h2><strong>Will this help with Chronic Pain?</strong></h2>\r\nThe techniques we will use should help will all sorts of physical and emotional pain.\r\nIf you have a serious pain problem you can gain greater benefit with a private session to focus on your individual needs.\r\nCall Mark on Call 07568 455 809 for more information or we can discuss private sessions and programs at this event.\r\n<h2><strong>How successful is Hypnosis for Pain Management?</strong></h2>\r\nOur clients find Hypnosis and Self-hypnosis very effective with pain management and for all sorts of pain.\r\nDuring this workshop, we will use Self-hypnosis and EFT as successful techniques to control your pain.\r\n<h2><strong>Can I just turn up in the evening to attend?</strong></h2>\r\nAs we have limited spaces we ask everyone to book their place in advance.\r\nThis saves time and effort on the evening to focus on the topic. Therefore, you must book in advance if you wish to attend. If you have any questions that are not answered here, simply <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong></span>\r\n<h2><strong>Do you run private sessions for Pain Management?</strong></h2>\r\nYes we run a dedicated Pain Management Hypnosis Program for those wanting faster results with pain issues.\r\nYou can learn more about the <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-pain-management-program/\"><strong><span style=\"color: #008000;\">Pain Management Hypnosis Program here.</span></strong></a>\r\n<h2><strong>Join the Newcastle Hypnotherapy </strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group Here</strong></a></h2>\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> is a member of </strong><a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\"><strong>UK Guild Of Hypnosis Practitioners</strong></a></h2>\r\n<img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />\r\n\r\nThe Vault Creative Wellness Centre.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe map for Newcastle Hypnotherapy\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-09-20 20:36:41','2018-09-20 20:36:41','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1557,1,'2018-09-20 20:37:49','2018-09-20 20:37:49','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.\r\n</strong></span>During this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\n\r\n&nbsp;\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n<h2><em><span style=\"color: #008000;\"><strong>Workshop Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or PayPal.\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/pain-management-workshop-3rd-oct/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>\r\nWant To Learn About The Other Events?</strong></span></h2>\r\nComplete your details below and join the events newsletter.\r\nWe are GDPR compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nThe Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please <strong>Contact Us</strong> and we can look to schedule that in, if suitable, in the future.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting We do not offer refunds.  Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions and Answers - The Pain Management Workshop.</strong></span></h2>\r\n<h2><strong>Where and when is this Pain Management Workshop?</strong></h2>\r\nThis event is part of the Wednesday Workshop at The Vault Creative Wellbeing Centre, Station Road, Wallsend, Newcastle upon Tyne.\r\nIt is held on the 3rd of October 2018, starting at 7.30pm until 9.30pm. £8.50 per person with booking only in advance.\r\nThis event is organised by Newcastle Hypnotherapy.\r\nOnce you have booked your place, an email will be sent with directions and useful information for the evening.\r\n<h2><strong>Will this help with Chronic Pain?</strong></h2>\r\nThe techniques we will use should help will all sorts of physical and emotional pain.\r\nIf you have a serious pain problem you can gain greater benefit with a private session to focus on your individual needs.\r\nCall Mark on Call 07568 455 809 for more information or we can discuss private sessions and programs at this event.\r\n<h2><strong>How successful is Hypnosis for Pain Management?</strong></h2>\r\nOur clients find Hypnosis and Self-hypnosis very effective with pain management and for all sorts of pain.\r\nDuring this workshop, we will use Self-hypnosis and EFT as successful techniques to control your pain.\r\n<h2><strong>Can I just turn up in the evening to attend?</strong></h2>\r\nAs we have limited spaces we ask everyone to book their place in advance.\r\nThis saves time and effort on the evening to focus on the topic. Therefore, you must book in advance if you wish to attend. If you have any questions that are not answered here, simply <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong></span>\r\n<h2><strong>Do you run private sessions for Pain Management?</strong></h2>\r\nYes we run a dedicated Pain Management Hypnosis Program for those wanting faster results with pain issues.\r\nYou can learn more about the <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-pain-management-program/\"><strong><span style=\"color: #008000;\">Pain Management Hypnosis Program here.</span></strong></a>\r\n<h2><strong>Join the Newcastle Hypnotherapy </strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group Here</strong></a></h2>\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> is a member of </strong><a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\"><strong>UK Guild Of Hypnosis Practitioners</strong></a></h2>\r\n<img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />\r\n\r\nThe Vault Creative Wellness Centre.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe map for Newcastle Hypnotherapy\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-09-20 20:37:49','2018-09-20 20:37:49','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1558,1,'2018-09-20 20:38:13','2018-09-20 20:38:13','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.\r\n</strong></span>During this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\n\r\n&nbsp;\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n<h2><em><span style=\"color: #008000;\"><strong>Workshop Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or PayPal.\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/pain-management-workshop-3rd-oct/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>\r\n&nbsp;\r\nWant To Learn About The Other Events?</strong></span></h2>\r\nComplete your details below and join the events newsletter.\r\nWe are GDPR compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nThe Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please <strong>Contact Us</strong> and we can look to schedule that in, if suitable, in the future.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting We do not offer refunds.  Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions and Answers - The Pain Management Workshop.</strong></span></h2>\r\n<h2><strong>Where and when is this Pain Management Workshop?</strong></h2>\r\nThis event is part of the Wednesday Workshop at The Vault Creative Wellbeing Centre, Station Road, Wallsend, Newcastle upon Tyne.\r\nIt is held on the 3rd of October 2018, starting at 7.30pm until 9.30pm. £8.50 per person with booking only in advance.\r\nThis event is organised by Newcastle Hypnotherapy.\r\nOnce you have booked your place, an email will be sent with directions and useful information for the evening.\r\n<h2><strong>Will this help with Chronic Pain?</strong></h2>\r\nThe techniques we will use should help will all sorts of physical and emotional pain.\r\nIf you have a serious pain problem you can gain greater benefit with a private session to focus on your individual needs.\r\nCall Mark on Call 07568 455 809 for more information or we can discuss private sessions and programs at this event.\r\n<h2><strong>How successful is Hypnosis for Pain Management?</strong></h2>\r\nOur clients find Hypnosis and Self-hypnosis very effective with pain management and for all sorts of pain.\r\nDuring this workshop, we will use Self-hypnosis and EFT as successful techniques to control your pain.\r\n<h2><strong>Can I just turn up in the evening to attend?</strong></h2>\r\nAs we have limited spaces we ask everyone to book their place in advance.\r\nThis saves time and effort on the evening to focus on the topic. Therefore, you must book in advance if you wish to attend. If you have any questions that are not answered here, simply <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong></span>\r\n<h2><strong>Do you run private sessions for Pain Management?</strong></h2>\r\nYes we run a dedicated Pain Management Hypnosis Program for those wanting faster results with pain issues.\r\nYou can learn more about the <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-pain-management-program/\"><strong><span style=\"color: #008000;\">Pain Management Hypnosis Program here.</span></strong></a>\r\n<h2><strong>Join the Newcastle Hypnotherapy </strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group Here</strong></a></h2>\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> is a member of </strong><a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\"><strong>UK Guild Of Hypnosis Practitioners</strong></a></h2>\r\n<img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />\r\n\r\nThe Vault Creative Wellness Centre.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe map for Newcastle Hypnotherapy\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>','Pain Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-09-20 20:38:13','2018-09-20 20:38:13','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1559,0,'2018-09-20 21:36:24','2018-09-20 21:36:24','','Order &ndash; September 20, 2018 @ 09:36 PM','','wc-processing','open','closed','order_5ba412d807fdf','order-sep-20-2018-0936-pm','','','2018-09-20 21:37:57','2018-09-20 21:37:57','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=1559',0,'shop_order','',2),(1898,0,'2018-11-05 18:48:04','2018-11-05 18:48:04','','Order &ndash; November 5, 2018 @ 06:48 PM','','wc-processing','open','closed','order_5be09064b77ca','order-nov-05-2018-0648-pm','','','2018-11-05 18:48:55','2018-11-05 18:48:55','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=1898',0,'shop_order','',2),(1561,1,'2018-09-22 16:46:03','2018-09-22 16:46:03','Test page\r\n<pre><code>[ea_standard]</code></pre>','test P','','inherit','closed','closed','','695-revision-v1','','','2018-09-22 16:46:03','2018-09-22 16:46:03','',695,'https://www.newcastle-hypnotherapy.com/695-revision-v1/',0,'revision','',0),(1562,1,'2018-09-22 17:01:57','2018-09-22 17:01:57','Test page\r\n<pre><code></code></pre>\r\n<pre><code>[ea_bootstrap]</code></pre>\r\n<pre><code></code></pre>','test P','','inherit','closed','closed','','695-revision-v1','','','2018-09-22 17:01:57','2018-09-22 17:01:57','',695,'https://www.newcastle-hypnotherapy.com/695-revision-v1/',0,'revision','',0),(1565,1,'2018-09-22 18:29:14','2018-09-22 18:29:14','Test page\r\n<pre></pre>','test P','','inherit','closed','closed','','695-revision-v1','','','2018-09-22 18:29:14','2018-09-22 18:29:14','',695,'https://www.newcastle-hypnotherapy.com/695-revision-v1/',0,'revision','',0),(1564,1,'2018-09-22 17:22:27','2018-09-22 17:22:27','Test page\r\n<pre><code></code></pre>\r\n<pre><code>[ea_bootstrap]\r\n\r\n2\r\n\r\n</code></pre>\r\n<pre><code></code></pre>','test P','','inherit','closed','closed','','695-revision-v1','','','2018-09-22 17:22:27','2018-09-22 17:22:27','',695,'https://www.newcastle-hypnotherapy.com/695-revision-v1/',0,'revision','',0),(1563,1,'2018-09-22 17:12:38','2018-09-22 17:12:38','Test page\r\n<pre><code></code></pre>\r\n<pre><code>[ea_bootstrap]\r\n\r\n2\r\n\r\nexample : [ea_bootstrap width=”800px” scroll_off=”true” layout_cols=”2″]</code></pre>\r\n<pre><code></code></pre>','test P','','inherit','closed','closed','','695-revision-v1','','','2018-09-22 17:12:38','2018-09-22 17:12:38','',695,'https://www.newcastle-hypnotherapy.com/695-revision-v1/',0,'revision','',0),(1566,1,'2018-09-22 18:42:25','2018-09-22 18:42:25','Test page\r\n<pre>[CPABC_APPOINTMENT_CALENDAR calendar=\"1\"]</pre>','test P','','inherit','closed','closed','','695-revision-v1','','','2018-09-22 18:42:25','2018-09-22 18:42:25','',695,'https://www.newcastle-hypnotherapy.com/695-revision-v1/',0,'revision','',0),(1567,0,'2018-09-23 08:23:28','2018-09-23 08:23:28','','Order &ndash; September 23, 2018 @ 08:23 AM','','wc-on-hold','open','closed','order_5ba74d80b7b87','order-sep-23-2018-0823-am','','','2018-09-23 08:23:28','2018-09-23 08:23:28','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=1567',0,'shop_order','',1),(1568,1,'2018-09-23 14:03:00','2018-09-23 14:03:00','<strong>Past Life Regression Hypnosis Sessions\r\n</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\n<strong>Past Life Regression Hypnosis is fascinating and we run sessions in different ways to suit different needs.</strong>\r\n<ul>\r\n 	<li><strong>Group sessions </strong></li>\r\n 	<li><strong>Individual sessions</strong></li>\r\n 	<li><strong>Private group sessions</strong></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>We use Past Life Regression for both therapy purposes or just for your curiosity.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.\r\n</strong>\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<h2><span style=\"color: #008000;\"><strong>Laura - Past Life Regression Hypnosis Session</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2>Dec 2018 The Wednesday Workshop @ The Vault</h2>\r\n<h2><span style=\"color: #008000;\">Eileen</span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/Xv67oDBxrK8?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Morgan</strong></span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/j864XFS5pLQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></h2>\r\n<h2><span style=\"color: #008000;\">Mark</span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/xjoHiK41pJY?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></h2>\r\nYou can learn more about our regular Wednesday Workshops and other events by Newcastle Hypnotherapy by simply joining the newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe with us. You can remove yourself at any time from the newsletter.','Past Life Regression Hypnosis Sessions','','publish','closed','closed','','past-life-regression-hypnosis-sessions','','','2019-01-06 18:56:14','2019-01-06 18:56:14','',1451,'https://www.newcastle-hypnotherapy.com/?page_id=1568',0,'page','',0),(1569,1,'2018-09-23 14:03:00','2018-09-23 14:03:00','Past Life Regression Sessions from The Wednesday Workshop\r\n\r\nLaura\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n&nbsp;\r\n\r\n&nbsp;','Past Life Regression','','inherit','closed','closed','','1568-revision-v1','','','2018-09-23 14:03:00','2018-09-23 14:03:00','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(1570,1,'2018-12-09 18:01:02','2018-12-09 18:01:02','<strong>Past Life Regression Hypnosis Sessions\n</strong>\n\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\n\n<strong>Past Life Regression Hypnosis is fascinating and we run sessions in different ways to suit different needs.</strong>\n<ul>\n 	<li><strong>Group sessions during <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop</a></strong></li>\n 	<li><strong>Individual sessions</strong></li>\n 	<li><strong>Private group sessions.</strong></li>\n</ul>\n<strong>We use Past Life Regression for both therapy purposes or just for your curiosity.\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.\n</strong>\n\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\n<h2><span style=\"color: #008000;\"><strong>Laura - Past Life Regression Hypnosis Session</strong></span>\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n<h2>Dec 2018 The Wednesday Workshop @ The Vault</h2>\n<h2><span style=\"color: #008000;\">Eileen</span></h2>\n<h2><iframe src=\"https://www.youtube.com/embed/Xv67oDBxrK8?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\n<h2><span style=\"color: #008000;\"><strong>Morgan</strong></span></h2>\n<h2><iframe src=\"https://www.youtube.com/embed/j864XFS5pLQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></h2>\n&nbsp;\n<h2><iframe src=\"https://www.youtube.com/embed/j864XFS5pLQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></h2>\n\nYou can learn more about our regular Wednesday Workshops and other events by Newcastle Hypnotherapy by simply joining the newsletter below.\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\nYour privacy is always safe with us. You can remove yourself at any time from the newsletter.','Past Life Regression Hypnosis Sessions','','inherit','closed','closed','','1568-autosave-v1','','','2018-12-09 18:01:02','2018-12-09 18:01:02','',1568,'https://www.newcastle-hypnotherapy.com/1568-autosave-v1/',0,'revision','',0),(1571,1,'2018-09-23 15:35:53','2018-09-23 15:35:53','Past Life Regression Sessions from The Wednesday Workshop\r\n\r\nLaura\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\nTracy\r\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Past Life Regression','','inherit','closed','closed','','1568-revision-v1','','','2018-09-23 15:35:53','2018-09-23 15:35:53','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(1572,1,'2018-09-23 15:36:28','2018-09-23 15:36:28','Past Life Regression Sessions from The Wednesday Workshop\r\n\r\n<strong>Laura</strong>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Past Life Regression','','inherit','closed','closed','','1568-revision-v1','','','2018-09-23 15:36:28','2018-09-23 15:36:28','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(1573,1,'2018-09-23 16:22:50','2018-09-23 16:22:50','Past Life Regression Sessions from The Wednesday Workshop\r\n<h2><strong>Laura - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\r\n&nbsp;\r\n\r\n&nbsp;','Past Life Regression','','inherit','closed','closed','','1568-revision-v1','','','2018-09-23 16:22:50','2018-09-23 16:22:50','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(1574,1,'2018-09-23 17:10:07','2018-09-23 17:10:07','Past Life Regression Sessions from The Wednesday Workshop\r\n<h2><strong>Laura - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','Past Life Regression','','inherit','closed','closed','','1568-revision-v1','','','2018-09-23 17:10:07','2018-09-23 17:10:07','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(1575,0,'2018-09-23 17:50:55','2018-09-23 17:50:55','','Order &ndash; September 23, 2018 @ 05:50 PM','','wc-on-hold','open','closed','order_5ba7d27fd39c2','order-sep-23-2018-0550-pm','','','2018-09-23 17:50:56','2018-09-23 17:50:56','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=1575',0,'shop_order','',1),(1578,1,'2018-09-25 11:47:24','2018-09-25 11:47:24','Test page\r\n<pre>[ea_bootstrap scroll_off=\"true\"]</pre>','test P','','inherit','closed','closed','','695-revision-v1','','','2018-09-25 11:47:24','2018-09-25 11:47:24','',695,'https://www.newcastle-hypnotherapy.com/695-revision-v1/',0,'revision','',0),(1579,1,'2018-09-25 12:24:08','2018-09-25 12:24:08','[ssa_booking]','Schedule an Appointment','','publish','closed','closed','','appointments','','','2018-09-25 12:24:08','2018-09-25 12:24:08','',0,'https://www.newcastle-hypnotherapy.com/appointments/',0,'page','',0),(1576,1,'2018-09-23 20:11:05','2018-09-23 20:11:05','Test page\r\n\r\n<a id=\"TTE-d6fa7f93-09f3-4450-abc4-37b43e166b3f\" href=\"https://10to8.com/book/czxjsrejlrzqcltcnbpjg-free/\" target=\"_blank\" rel=\"noopener\">See Online Booking Page</a> <script src=\"https://d3saea0ftg7bjt.cloudfront.net/embed/js/embed.min.js\"></script> <script> window.TTE.init({ targetDivId: \"TTE-d6fa7f93-09f3-4450-abc4-37b43e166b3f\", uuid: \"d6fa7f93-09f3-4450-abc4-37b43e166b3f\", }); </script>','test P','','inherit','closed','closed','','695-revision-v1','','','2018-09-23 20:11:05','2018-09-23 20:11:05','',695,'https://www.newcastle-hypnotherapy.com/695-revision-v1/',0,'revision','',0),(1577,0,'2018-09-23 20:23:46','2018-09-23 20:23:46','','Order &ndash; September 23, 2018 @ 08:23 PM','','wc-processing','open','closed','order_5ba7f65270e45','order-sep-23-2018-0823-pm','','','2018-09-23 20:25:23','2018-09-23 20:25:23','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=1577',0,'shop_order','',2),(1580,1,'2018-09-25 12:32:22','2018-09-25 12:32:22','Test page\r\n<pre><code>[ssa_booking type=free-15-minute-phone-strategy-session]</code></pre>','test P','','inherit','closed','closed','','695-revision-v1','','','2018-09-25 12:32:22','2018-09-25 12:32:22','',695,'https://www.newcastle-hypnotherapy.com/695-revision-v1/',0,'revision','',0),(1581,1,'2018-09-25 12:50:22','2018-09-25 12:50:22','test text\r\n\r\n[ssa_booking type=hypnotherapy-session-90-minutes-the-vault-wallsend-79]','Test Booking Step 2','','publish','closed','closed','','test-booking-step-2','','','2018-09-25 12:50:22','2018-09-25 12:50:22','',0,'https://www.newcastle-hypnotherapy.com/?page_id=1581',0,'page','',0),(1582,1,'2018-09-25 12:50:22','2018-09-25 12:50:22','test text\r\n\r\n[ssa_booking type=hypnotherapy-session-90-minutes-the-vault-wallsend-79]','Test Booking Step 2','','inherit','closed','closed','','1581-revision-v1','','','2018-09-25 12:50:22','2018-09-25 12:50:22','',1581,'https://www.newcastle-hypnotherapy.com/1581-revision-v1/',0,'revision','',0),(1583,1,'2018-09-25 13:20:09','2018-09-25 13:20:09','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n\r\nFREE 15 Minute Phone Strategy Session\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1244\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />To arrange your free consultation simply complete the form below and let us know the times best suited for you.<em>\r\n</em>You can also call us on <em><strong>07568 455 809</strong></em>.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div><span style=\"color: #ffffff;\">.</span></div>\r\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\r\n<div>Hypnotherapy near me?\r\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\r\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\r\nSimply ask and we can usually find a suitable location perfect for you.</div>\r\n<div></div>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<div></div>','FREE CONSULTATION','','inherit','closed','closed','','378-revision-v1','','','2018-09-25 13:20:09','2018-09-25 13:20:09','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1584,1,'2018-09-25 13:20:59','2018-09-25 13:20:59','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n<pre><code>[ssa_booking type=free-15-minute-phone-strategy-session]</code></pre>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1244\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />To arrange your free consultation simply complete the form below and let us know the times best suited for you.<em>\r\n</em>You can also call us on <em><strong>07568 455 809</strong></em>.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div><span style=\"color: #ffffff;\">.</span></div>\r\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\r\n<div>Hypnotherapy near me?\r\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\r\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\r\nSimply ask and we can usually find a suitable location perfect for you.</div>\r\n<div></div>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<div></div>','FREE CONSULTATION','','inherit','closed','closed','','378-revision-v1','','','2018-09-25 13:20:59','2018-09-25 13:20:59','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1587,1,'2018-09-25 13:33:56','2018-09-25 13:33:56','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nPlease follow the instructions below to arrange your free consultation with me - it\'s fast and easy.\r\n<h2><span style=\"color: #008000;\"><strong>Simply Pick Your Time Slot Below</strong></span></h2>\r\n<pre><code>[ssa_booking type=free-15-minute-phone-strategy-session]</code></pre>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1244\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />To arrange your free consultation simply pick a time above for the the time best suited for you.<em>\r\n</em>You can also call us on <em><strong>07568 455 809</strong></em>.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div><span style=\"color: #ffffff;\">.</span></div>\r\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\r\n<div>Hypnotherapy near me?\r\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\r\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\r\nSimply ask and we can usually find a suitable location perfect for you.</div>\r\n<div></div>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<div></div>','FREE CONSULTATION','','inherit','closed','closed','','378-revision-v1','','','2018-09-25 13:33:56','2018-09-25 13:33:56','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1585,1,'2018-09-25 13:24:29','2018-09-25 13:24:29','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n<h2><span style=\"color: #008000;\"><strong>Simply Pick Your Time Slot Below</strong></span></h2>\r\n<pre><code>[ssa_booking type=free-15-minute-phone-strategy-session]</code></pre>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1244\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />To arrange your free consultation simply complete the form below and let us know the times best suited for you.<em>\r\n</em>You can also call us on <em><strong>07568 455 809</strong></em>.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n[wpforms id=\"35\"]\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div><span style=\"color: #ffffff;\">.</span></div>\r\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\r\n<div>Hypnotherapy near me?\r\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\r\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\r\nSimply ask and we can usually find a suitable location perfect for you.</div>\r\n<div></div>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<div></div>','FREE CONSULTATION','','inherit','closed','closed','','378-revision-v1','','','2018-09-25 13:24:29','2018-09-25 13:24:29','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1586,1,'2018-09-25 13:26:20','2018-09-25 13:26:20','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\nYour free consultation helps us to decide if a single session approach or a program of sessions is best for you.\r\nThere is no obligation to take our services and the consultation is confidential.\r\nWe simply evaluate your situation and advise the best way forward at a pace comfortable for you.\r\n<h2><span style=\"color: #008000;\"><strong>Simply Pick Your Time Slot Below</strong></span></h2>\r\n<pre><code>[ssa_booking type=free-15-minute-phone-strategy-session]</code></pre>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1244\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />To arrange your free consultation simply pick a time above for the the time best suited for you.<em>\r\n</em>You can also call us on <em><strong>07568 455 809</strong></em>.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div><span style=\"color: #ffffff;\">.</span></div>\r\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\r\n<div>Hypnotherapy near me?\r\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\r\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\r\nSimply ask and we can usually find a suitable location perfect for you.</div>\r\n<div></div>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<div></div>','FREE CONSULTATION','','inherit','closed','closed','','378-revision-v1','','','2018-09-25 13:26:20','2018-09-25 13:26:20','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1588,1,'2018-09-25 13:34:31','2018-09-25 13:34:31','<img class=\"alignleft wp-image-103 size-thumbnail\" title=\"Free Consultation Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span>\r\nOur clients tell us they love the initial free consultation.\r\nIt allows us to discuss your issue, decide on what you would like to achieve and look at the best way forward for you.\r\n\r\nIt gives you the chance to ask your questions, to understand how we will move forward to resolve your issues and the sort of results you can expect.\r\n\r\n<strong>Please follow the instructions below to arrange your free consultation with me - it\'s fast and easy.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Simply Pick Your Time Slot Below</strong></span></h2>\r\n<pre><code>[ssa_booking type=free-15-minute-phone-strategy-session]</code></pre>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy</strong></span></h2>\r\n<img class=\"alignleft size-medium wp-image-1244\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />To arrange your free consultation simply pick a time above for the the time best suited for you.<em>\r\n</em>You can also call us on <em><strong>07568 455 809</strong></em>.\r\n\r\nI look forward to speaking with you soon to discuss how we can help you.\r\n<div class=\"page-desc\">\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong></span></a>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n</div>\r\n<h2><span style=\"color: #008000;\"><strong>Free Consultation Newcastle Hypnotherapy\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\nNewcastle Hypnotherapy is a member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a></div>\r\n<div></div>\r\n<div>Find Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy &amp; The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div><span style=\"color: #ffffff;\">.</span></div>\r\n<h2><span style=\"color: #008000;\"><strong>Where to find Newcastle Hypnotherapy?</strong></span></h2>\r\n<div>Hypnotherapy near me?\r\nWe mainly work from The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval.\r\nWe also work from other locations such as Cramlington and Bedlington in Northumberland.\r\nSimply ask and we can usually find a suitable location perfect for you.</div>\r\n<div></div>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<div></div>','FREE CONSULTATION','','inherit','closed','closed','','378-revision-v1','','','2018-09-25 13:34:31','2018-09-25 13:34:31','',378,'https://www.newcastle-hypnotherapy.com/378-revision-v1/',0,'revision','',0),(1590,1,'2018-09-25 14:46:47','2018-09-25 14:46:47','','NH Questionnaire','','inherit','open','closed','','nh-questionnaire','','','2018-09-25 14:46:47','2018-09-25 14:46:47','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Questionnaire.doc',0,'attachment','application/msword',0),(1591,1,'2018-09-25 15:12:26','2018-09-25 15:12:26','You are booking 1 Hypnotherapy &amp; NLP session @The Vault, <span class=\"LrzXr\">31 Station Rd, Wallsend NE28 6RL</span>.\r\nYou can choose your date and time once payment is complete.\r\nOnce you have made your booking please check for your email with your next step.\r\nIf you have any questions please call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\r\n\r\nTerms &amp; Conditions.\r\nWe do ask all clients to give us at least 48 hours notice if you wish to reschedule a session.\r\nWe may charge a rescheduling fee of £20 if you need to change your appointment when less than 48 hours notice is given.\r\nIf you wish to cancel a session or program we require 48 hours notice. Cancellations made less than 48 hours will be charged in full.','1 Hypnosis Session @ The Vault','<strong>It\'s quick and easy to book your session.</strong>\r\n1. Simply make your payment - Debit or Credit Card, Paypal or Bank Transfer.\r\n2. Choose a session time convenient for you.','draft','closed','closed','','hstvx1','','','2019-05-06 15:28:37','2019-05-06 15:28:37','',0,'https://www.newcastle-hypnotherapy.com/?post_type=product&#038;p=1591',5,'product','',0),(1592,1,'2018-09-26 18:18:57','2018-09-26 18:18:57','You are booking 1 Hypnotherapy &amp; NLP session @The Vault, <span class=\"LrzXr\">31 Station Rd, Wallsend NE28 6RL</span>.\nYou can choose your date and time once payment is complete.\nOnce you have made your booking please check for your email with your next step.\nIf you have any questions please call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\n\nTerms &amp; Conditions.\nWe do ask all clients to give us at least 48 hours notice if you wish to reschedule a session.\nWe may charge a rescheduling fee of £20 if you need to change your appointment when less than 48 hours notice is given.\nIf you wish to cancel a session or program we require 48 hours notice. Cancellations made less than 48 hours will be charged in full.','1 Hypnosis Session @ The Vault','<strong>It\'s quick and easy to book your session.</strong>\n1. Simply make your payment - Debit or Credit Card, Paypal or Bank Transfer.\n2. Choose a session time convenient for you.','inherit','closed','closed','','1591-autosave-v1','','','2018-09-26 18:18:57','2018-09-26 18:18:57','',1591,'https://www.newcastle-hypnotherapy.com/1591-autosave-v1/',0,'revision','',0),(1593,1,'2018-09-25 15:49:26','2018-09-25 15:49:26','<div class=\"woocommerce-product-details__short-description\">\r\n\r\nYou are booking 2 Hypnotherapy &amp; NLP sessions @The Vault, <span class=\"LrzXr\">31 Station Rd, Wallsend NE28 6RL</span>.\r\nYou can choose your date and time once payment is complete.\r\nOnce you have made your booking an email and receipt will be sent to you.\r\nIf you have any questions please call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\r\n\r\nTerms &amp; Conditions.\r\nWe do ask all clients to give us at least 48 hours notice if you wish to reschedule a session.\r\nWe may charge a rescheduling fee of £20 if you need to change your appointment when less than 48 hours notice is given.\r\nIf you wish to cancel a session or program we require 48 hours notice. Cancellations made less than 48 hours will be charged in full.\r\n\r\n</div>','2 Hypnosis Sessions @ The Vault','<strong>It’s quick and easy to book your session.</strong>\r\n1. Simply make your payment – Debit or Credit Card, Paypal or Bank Transfer.\r\n2. Choose a session time convenient for you as direct.','draft','closed','closed','','hstvx2','','','2019-05-06 15:28:37','2019-05-06 15:28:37','',0,'https://www.newcastle-hypnotherapy.com/?post_type=product&#038;p=1593',10,'product','',0),(1594,1,'2018-09-25 15:51:38','2018-09-25 15:51:38','<strong>You save £18 when booking your two sessions!</strong>\n\nIt\'s quick and easy to book your session.\n1. Simply make your payment - Debit or Credit Card, Paypal or Bank Transfer.\n2. Choose a session time convenient for you.','Hypnotherapy & NLP Session x2 @ The Vault','You are booking 2 Hypnotherapy & NLP sessions @The Vault, <span class=\"LrzXr\">31 Station Rd, Wallsend NE28 6RL</span>.\nYou can choose your date and time once payment is complete.\nOnce you have made your booking an email and receipt will be sent to you.\nIf you have any questions please call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\n\nTerms & Conditions.\nWe do ask all clients to give us at least 48 hours notice if you wish to reschedule a session.\nWe may charge a rescheduling fee of £20 if you need to change your appointment when less than 48 hours notice is given.\nIf you wish to cancel a session or program we require 48 hours notice. Cancellations made less than 48 hours will be charged in full.','inherit','closed','closed','','1593-autosave-v1','','','2018-09-25 15:51:38','2018-09-25 15:51:38','',1593,'https://www.newcastle-hypnotherapy.com/1593-autosave-v1/',0,'revision','',0),(1595,1,'2018-09-25 16:20:20','2018-09-25 16:20:20','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Vault,31, Station Roadm Wallsend,<span class=\"LrzXr\"> NE28 6RL</span>.</strong>\r\n</span>The Vault is just a 1 minute walk from Wallsend Metro. Car parking is normally available at The Vault.<span style=\"color: #ff6600;\">\r\n</span>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong><span style=\"color: #008000;\">Book your single session </span> - </strong><strong>Click Here</strong></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><strong><span style=\"color: #008000;\">Book your 2 sessions </span></strong><strong>Click Here (<span style=\"color: #ff6600;\">Saving You £18</span></strong><strong>)</strong></a>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Food For Thought,</strong> Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG.\r\nOn street parking is always available.</span></span>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft1/\"><span style=\"color: #008000;\"><strong>Book your single session</strong></span> - <span style=\"color: #008000;\"><strong>Click Here</strong></span></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft2/\"><strong><span style=\"color: #008000;\">Book your 2 sessions - </span></strong><span style=\"color: #008000;\"><strong>Click Here <span style=\"color: #ff6600;\">(Saving You £18)</span></strong></span></a>\r\n<h4><strong><span style=\"color: #ff6600;\">Online Sessions - Via Skype or Zoom</span></strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/osx1/\"><strong><span style=\"color: #008000;\">Book your single session - Click Here</span></strong></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/osx2/\"><span style=\"color: #008000;\"><strong>Book your 2 sessions - Click Here (Saving You £18)</strong> </span></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','publish','closed','closed','','book-your-hypnosis-nlp-session','','','2018-10-29 17:33:14','2018-10-29 17:33:14','',0,'https://www.newcastle-hypnotherapy.com/?page_id=1595',0,'page','',0),(1596,1,'2018-09-25 16:19:34','2018-09-25 16:19:34','','Newcastle Hypnotherapy','','inherit','open','closed','','button-100','','','2018-09-25 16:19:54','2018-09-25 16:19:54','',1595,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/button-100.jpg',0,'attachment','image/jpeg',0),(1597,1,'2018-09-25 16:20:20','2018-09-25 16:20:20','&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-1596 alignnone\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/button-100.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"100\" height=\"98\" />','Book Your Hypnosis NLP Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 16:20:20','2018-09-25 16:20:20','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1598,1,'2018-09-26 15:54:43','2018-09-26 15:54:43','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\nBooking your session is simple and easy.\nPick the location you want below, make your payment and then choose your time slot.\n\n<span style=\"color: #ff6600;\"><strong>The Vault, Wallsend,<span class=\"LrzXr\"> NE28 6RL</span>.</strong>\n</span>The Vault is just a 1 minute walk from Wallsend Metro. Car parking is normally available at The Vault.<span style=\"color: #ff6600;\">\n</span>\n\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong><span style=\"color: #008000;\">Book your single session </span> - </strong><strong>Click Here</strong></a>\n\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><strong><span style=\"color: #008000;\">Book your 2 sessions </span></strong><strong>Click Here (<span style=\"color: #ff6600;\">Saving You £18</span></strong><strong>)</strong></a>\n\n<span style=\"color: #ff6600;\"><strong>Food For Thought,</strong> Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG.\nOn street parking is always available.</span></span>\n\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft1/\"><span style=\"color: #008000;\"><strong>Book your single session</strong></span> - <span style=\"color: #008000;\"><strong>Click Here</strong></span></a>\n\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft2/\"><strong><span style=\"color: #008000;\">Book your 2 sessions - </span></strong><span style=\"color: #008000;\"><strong>Click Here <span style=\"color: #ff6600;\">(Saving You £18)</span></strong></span></a>\n<h4><strong><span style=\"color: #ff6600;\">Online Sessions - Via Skype or Zoom</span></strong></h4>\n<a href=\"https://www.newcastle-hypnotherapy.com/product/osx1/\"><strong><span style=\"color: #008000;\">Book your single session - Click Here</span></strong></a>\n\n<a href=\"https://www.newcastle-hypnotherapy.com/product/osx2/\"><span style=\"color: #008000;\"><strong>Book your 2 sessions - Click Here (Saving You £18)</strong> </span></a>\n\n&nbsp;\n\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-autosave-v1','','','2018-09-26 15:54:43','2018-09-26 15:54:43','',1595,'https://www.newcastle-hypnotherapy.com/1595-autosave-v1/',0,'revision','',0),(1599,1,'2018-09-25 16:28:47','2018-09-25 16:28:47','','Newcastle Hypnptherapy Hypnosis Session','','inherit','open','closed','','nh-button-3','','','2018-09-25 16:29:48','2018-09-25 16:29:48','',1595,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png',0,'attachment','image/png',0),(1600,1,'2018-09-25 16:36:38','2018-09-25 16:36:38','&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">To book a single  session @ The Vault</span> - </strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><strong>Click Here</strong></a>\r\n\r\n<img class=\"alignleft wp-image-1599 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3-300x72.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"300\" height=\"72\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">To Book 2 sessions @ The Vault</span> = <a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\">Click Here (Saving £18)</a></strong>\r\n\r\n<img class=\"alignleft wp-image-1599 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3-300x72.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"300\" height=\"72\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Book Your Hypnosis NLP Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 16:36:38','2018-09-25 16:36:38','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1601,1,'2018-09-25 16:36:57','2018-09-25 16:36:57','&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">To book a single  session @ The Vault</span> - </strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><strong>Click Here</strong></a>\r\n\r\n<img class=\"alignleft wp-image-1599 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3-300x72.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"300\" height=\"72\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">To Book 2 sessions @ The Vault</span> = <a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\">Click Here (Saving £18)</a></strong>\r\n\r\n<img class=\"alignleft wp-image-1599 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3-300x72.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"300\" height=\"72\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Hypnosis NLP Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 16:36:57','2018-09-25 16:36:57','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1604,1,'2018-09-25 17:12:19','2018-09-25 17:12:19','<img class=\"alignleft size-medium wp-image-1599\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3-300x72.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"300\" height=\"72\" />\r\nBooking your  session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n\r\n<strong><span style=\"color: #008000;\">To book a single  session @ The Vault</span> - </strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong>Click Here</strong></a>\r\n\r\n<strong><span style=\"color: #008000;\">To Book 2 sessions @ The Vault</span> = <a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\">Click Here (Saving £18)</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 17:12:19','2018-09-25 17:12:19','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1602,1,'2018-09-25 16:39:59','2018-09-25 16:39:59','&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">To book a single  session @ The Vault</span> - </strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><strong>Click Here</strong></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><img class=\"alignleft wp-image-1599 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3-300x72.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"300\" height=\"72\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">To Book 2 sessions @ The Vault</span> = <a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\">Click Here (Saving £18)</a></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><img class=\"alignleft wp-image-1599 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3-300x72.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"300\" height=\"72\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Hypnosis NLP Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 16:39:59','2018-09-25 16:39:59','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1603,1,'2018-09-25 16:40:43','2018-09-25 16:40:43','&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">To book a single  session @ The Vault</span> - </strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong>Click Here</strong></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><img class=\"alignleft wp-image-1599 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3-300x72.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"300\" height=\"72\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">To Book 2 sessions @ The Vault</span> = <a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\">Click Here (Saving £18)</a></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><img class=\"alignleft wp-image-1599 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3-300x72.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"300\" height=\"72\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Hypnosis NLP Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 16:40:43','2018-09-25 16:40:43','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1608,1,'2018-09-25 17:17:15','2018-09-25 17:17:15','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n\r\nThe Vault, Wallsend, <span class=\"LrzXr\">NE28 6RL</span>. 1Minute from Wallsend Metro\r\n\r\n<strong><span style=\"color: #008000;\">Book your single session </span> - </strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong>Click Here</strong></a>\r\n\r\n<strong><span style=\"color: #008000;\"> Book your 2 sessions </span> <a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\">Click Here (Saving You £18)</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 17:17:15','2018-09-25 17:17:15','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1605,1,'2018-09-25 17:12:52','2018-09-25 17:12:52','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\nBooking your  session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n\r\n<strong><span style=\"color: #008000;\">To book a single  session @ The Vault</span> - </strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong>Click Here</strong></a>\r\n\r\n<strong><span style=\"color: #008000;\">To Book 2 sessions @ The Vault</span> = <a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\">Click Here (Saving £18)</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 17:12:52','2018-09-25 17:12:52','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1606,1,'2018-09-25 17:13:33','2018-09-25 17:13:33','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your  session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n\r\n<strong><span style=\"color: #008000;\">To book a single  session @ The Vault</span> - </strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong>Click Here</strong></a>\r\n\r\n<strong><span style=\"color: #008000;\">To Book 2 sessions @ The Vault</span> = <a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\">Click Here (Saving £18)</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 17:13:33','2018-09-25 17:13:33','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1607,1,'2018-09-25 17:14:01','2018-09-25 17:14:01','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n\r\n<strong><span style=\"color: #008000;\">To book a single  session @ The Vault</span> - </strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong>Click Here</strong></a>\r\n\r\n<strong><span style=\"color: #008000;\">To Book 2 sessions @ The Vault</span> = <a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\">Click Here (Saving £18)</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 17:14:01','2018-09-25 17:14:01','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1609,1,'2018-09-25 17:18:10','2018-09-25 17:18:10','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n<h2><span style=\"color: #008000;\"><strong>The Vault, Wallsend,</strong> <span class=\"LrzXr\">NE28 6RL</span>. 1 Minute from Wallsend Metro</span>.</h2>\r\n<strong><span style=\"color: #008000;\">Book your single session </span> - </strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong>Click Here</strong></a>\r\n\r\n<strong><span style=\"color: #008000;\"> Book your 2 sessions </span> <a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\">Click Here (Saving You £18)</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 17:18:10','2018-09-25 17:18:10','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1610,1,'2018-09-25 17:21:18','2018-09-25 17:21:18','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Vault, Wallsend,</strong> <span class=\"LrzXr\">NE28 6RL</span>. 1 Minute from Wallsend Metro.</span>\r\n\r\n<strong><span style=\"color: #008000;\">Book your single session </span> - </strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong>Click Here</strong></a>\r\n\r\n<strong><span style=\"color: #008000;\">Book your 2 sessions </span> <a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\">Click Here (Saving You £18)</a></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Food For  Thought,</strong> Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG</span></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 17:21:18','2018-09-25 17:21:18','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1611,1,'2018-09-25 17:21:59','2018-09-25 17:21:59','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Vault, Wallsend,</strong> <span class=\"LrzXr\">NE28 6RL</span>. 1 Minute from Wallsend Metro.</span>\r\n\r\n<strong><span style=\"color: #008000;\">Book your single session </span> - </strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong>Click Here</strong></a>\r\n\r\n<strong><span style=\"color: #008000;\">Book your 2 sessions </span></strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><strong>Click Here (Saving You £18)</strong></a>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Food For  Thought,</strong> Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG</span></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 17:21:59','2018-09-25 17:21:59','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1612,1,'2018-09-25 17:31:59','2018-09-25 17:31:59','You are booking 2 Hypnotherapy &amp; NLP sessions @ <strong>Food For Thought, </strong>26 Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG</span>\r\n\r\nYou can choose your date and time once payment is complete.\r\nOnce you have made your booking an email and receipt will be sent to you.\r\nIf you have any questions please call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\r\n\r\nTerms &amp; Conditions.\r\nWe do ask all clients to give us at least 48 hours notice if you wish to reschedule a session.\r\nWe may charge a rescheduling fee of £20 if you need to change your appointment when less than 48 hours notice is given.\r\nIf you wish to cancel a session or program we require 48 hours notice. Cancellations made less than 48 hours will be charged in full.','2 Sessions @ Food For Thought','You save £18 when booking your two sessions!\r\n\r\nIt’s quick and easy to book your session.\r\n1. Simply make your payment – Debit or Credit Card, Paypal or Bank Transfer.\r\n2. Choose a session time convenient for you.','draft','closed','closed','','hsfft2','','','2019-05-06 15:28:37','2019-05-06 15:28:37','',0,'https://www.newcastle-hypnotherapy.com/?post_type=product&#038;p=1612',0,'product','',0),(1613,1,'2018-09-25 17:28:41','2018-09-25 17:28:41','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Vault, Wallsend,</strong> <span class=\"LrzXr\">NE28 6RL</span>. 1 Minute from Wallsend Metro. Carpark available.\r\n</span>\r\n\r\n<strong><span style=\"color: #008000;\">Book your single session </span> - </strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong>Click Here</strong></a>\r\n\r\n<strong><span style=\"color: #008000;\">Book your 2 sessions </span></strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><strong>Click Here (Saving You £18)</strong></a>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Food For Thought,</strong> Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG. On street parking available.\r\n\r\nBook\r\n\r\nBook\r\n\r\nOnline Sessions - Via Skype or Zoom\r\n</span></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 17:28:41','2018-09-25 17:28:41','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1614,1,'2018-09-25 17:33:07','2018-09-25 17:33:07','You are booking 1 Hypnotherapy &amp; NLP session @ <strong>Food For Thought, </strong>26 Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG.</span>\r\n\r\nYou can choose your date and time once payment is complete.\r\nOnce you have made your booking an email and receipt will be sent to you.\r\nIf you have any questions please call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\r\n\r\nTerms &amp; Conditions.\r\nWe do ask all clients to give us at least 48 hours notice if you wish to reschedule a session.\r\nWe may charge a rescheduling fee of £20 if you need to change your appointment when less than 48 hours notice is given.\r\nIf you wish to cancel a session or program we require 48 hours notice. Cancellations made less than 48 hours will be charged in full.','1 Session @ Food For Thought','<strong>It’s quick and easy to book your session.</strong>\r\n1. Simply make your payment – Debit or Credit Card, Paypal or Bank Transfer.\r\n2. Choose a session time convenient for you.','draft','closed','closed','','hsfft1','','','2019-05-06 15:28:37','2019-05-06 15:28:37','',0,'https://www.newcastle-hypnotherapy.com/?post_type=product&#038;p=1614',0,'product','',0),(1615,1,'2018-09-25 17:44:30','2018-09-25 17:44:30','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Vault, Wallsend,</strong> <span class=\"LrzXr\">NE28 6RL</span>. 1 Minute from Wallsend Metro. Carpark available.\r\n</span>\r\n\r\n<strong><span style=\"color: #008000;\">Book your single session </span> - </strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong>Click Here</strong></a>\r\n\r\n<strong><span style=\"color: #008000;\">Book your 2 sessions </span></strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><strong>Click Here (Saving You £18)</strong></a>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Food For Thought,</strong> Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG. On street parking available.</span></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Book your single session</strong></span> - <a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft1/\"><span style=\"color: #008000;\"><strong>Click Here</strong></span></a>\r\n\r\n<strong><span style=\"color: #008000;\">Book your 2 sessions - </span></strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft2/\"><span style=\"color: #008000;\"><strong>Click Here (Saving You £18)</strong></span></a>\r\n\r\nOnline Sessions - Via Skype or Zoom\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 17:44:30','2018-09-25 17:44:30','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1616,1,'2018-09-25 17:46:23','2018-09-25 17:46:23','You are booking 2 Hypnotherapy &amp; NLP sessions via Online Video Call.\r\n\r\nYou can choose your date and time once payment is complete.\r\nOnce you have made your booking an email and receipt will be sent to you.\r\nIf you have any questions please call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\r\n\r\nTo conduct this online session, you will need to be in a quiet space, free from distractions for up to 90 minutes.\r\nYou will need a PC or device with a microphone &amp; video camera that can run Skype or Zoom.\r\n\r\nTerms &amp; Conditions.\r\nWe do ask all clients to give us at least 48 hours notice if you wish to reschedule a session.\r\nWe may charge a rescheduling fee of £20 if you need to change your appointment when less than 48 hours notice is given.\r\nIf you wish to cancel a session or program we require 48 hours notice. Cancellations made less than 48 hours will be charged in full.','2 Sessions Online Video Call','You are saving £18 when booking your two sessions!\r\n\r\nIt’s quick and easy to book your session.\r\n1. Simply make your payment – Debit or Credit Card, Paypal or Bank Transfer.\r\n2. Choose a session time convenient for you.','draft','closed','closed','','osx2','','','2019-05-06 15:28:37','2019-05-06 15:28:37','',0,'https://www.newcastle-hypnotherapy.com/?post_type=product&#038;p=1616',0,'product','',0),(1617,1,'2018-09-25 17:46:23','2018-09-25 17:46:23','You are booking 2 Hypnotherapy &amp; NLP sessions @ <strong>Food For Thought, </strong>26 Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG</span>\n\nYou can choose your date and time once payment is complete.\nOnce you have made your booking an email and receipt will be sent to you.\nIf you have any questions please call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\n\nTerms &amp; Conditions.\nWe do ask all clients to give us at least 48 hours notice if you wish to reschedule a session.\nWe may charge a rescheduling fee of £20 if you need to change your appointment when less than 48 hours notice is given.\nIf you wish to cancel a session or program we require 48 hours notice. Cancellations made less than 48 hours will be charged in full.','2 Sessions @ Food For Thought','<p>You save £18 when booking your two sessions!</p><p>It’s quick and easy to book your session.<br>1. Simply make your payment – Debit or Credit Card, Paypal or Bank Transfer.<br>2. Choose a session time convenient for you.</p>','inherit','closed','closed','','1612-autosave-v1','','','2018-09-25 17:46:23','2018-09-25 17:46:23','',1612,'https://www.newcastle-hypnotherapy.com/1612-autosave-v1/',0,'revision','',0),(1618,1,'2018-09-25 17:57:09','2018-09-25 17:57:09','You are booking 1 Hypnotherapy &amp; NLP session via Online Video Call.\r\n\r\nYou can choose your date and time once payment is complete.\r\nOnce you have made your booking an email and receipt will be sent to you.\r\nIf you have any questions please call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\r\n\r\nTo conduct this online session, you will need to be in a quiet space, free from distractions for up to 90 minutes.\r\nYou will need a PC or device with a microphone &amp; video camera that can run Skype or Zoom.\r\n\r\nTerms &amp; Conditions.\r\nWe do ask all clients to give us at least 48 hours notice if you wish to reschedule a session.\r\nWe may charge a rescheduling fee of £20 if you need to change your appointment when less than 48 hours notice is given.\r\nIf you wish to cancel a session or program we require 48 hours notice. Cancellations made less than 48 hours will be charged in full.','1 Session Online Video Call','It’s quick and easy to book your session.\r\n1. Simply make your payment – Debit or Credit Card, Paypal or Bank Transfer.\r\n2. Choose a session time convenient for you.','draft','closed','closed','','osx1','','','2019-05-06 15:25:50','2019-05-06 15:25:50','',0,'https://www.newcastle-hypnotherapy.com/?post_type=product&#038;p=1618',0,'product','',0),(1619,1,'2018-09-25 17:57:11','2018-09-25 17:57:11','You are booking 2 Hypnotherapy &amp; NLP sessions via Online Video Call.\n\nYou can choose your date and time once payment is complete.\nOnce you have made your booking an email and receipt will be sent to you.\nIf you have any questions please call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\n\nTo conduct this online session, you will need to be in a quiet space, free from distractions for up to 90 minutes.\nYou will need a PC or device with a microphone &amp; video camera that can run Skype or Zoom.\n\nTerms &amp; Conditions.\nWe do ask all clients to give us at least 48 hours notice if you wish to reschedule a session.\nWe may charge a rescheduling fee of £20 if you need to change your appointment when less than 48 hours notice is given.\nIf you wish to cancel a session or program we require 48 hours notice. Cancellations made less than 48 hours will be charged in full.','2 Sessions Online Video Call','<p>You save £18 when booking your two sessions!</p><p>It’s quick and easy to book your session.<br>1. Simply make your payment – Debit or Credit Card, Paypal or Bank Transfer.<br>2. Choose a session time convenient for you.</p>','inherit','closed','closed','','1616-autosave-v1','','','2018-09-25 17:57:11','2018-09-25 17:57:11','',1616,'https://www.newcastle-hypnotherapy.com/1616-autosave-v1/',0,'revision','',0),(1620,1,'2018-09-25 18:01:05','2018-09-25 18:01:05','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Vault, Wallsend,</strong> <span class=\"LrzXr\">NE28 6RL</span>. 1 Minute from Wallsend Metro. Carpark available.\r\n</span>\r\n\r\n<strong><span style=\"color: #008000;\">Book your single session </span> - </strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong>Click Here</strong></a>\r\n\r\n<strong><span style=\"color: #008000;\">Book your 2 sessions </span></strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><strong>Click Here (Saving You £18)</strong></a>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Food For Thought,</strong> Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG. On street parking available.</span></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Book your single session</strong></span> - <a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft1/\"><span style=\"color: #008000;\"><strong>Click Here</strong></span></a>\r\n\r\n<strong><span style=\"color: #008000;\">Book your 2 sessions - </span></strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft2/\"><span style=\"color: #008000;\"><strong>Click Here (Saving You £18)</strong></span></a>\r\n\r\nOnline Sessions - Via Skype or Zoom\r\n\r\n<strong><span style=\"color: #008000;\">Book your single session - <a href=\"https://www.newcastle-hypnotherapy.com/?post_type=product&amp;p=1618&amp;preview=true\">Click Here</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Book your 2 sessions - <a href=\"https://www.newcastle-hypnotherapy.com/product/osx2/\">Click Here (Saving You £18)</a></strong> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 18:01:05','2018-09-25 18:01:05','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1621,1,'2018-09-25 18:14:05','2018-09-25 18:14:05','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Vault, Wallsend,</strong> <span class=\"LrzXr\">NE28 6RL</span>. 1 Minute from Wallsend Metro. Carpark available.\r\n</span>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong><span style=\"color: #008000;\">Book your single session </span> - </strong><strong>Click Here</strong></a>\r\n\r\n<strong><span style=\"color: #008000;\">Book your 2 sessions </span></strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><strong>Click Here (Saving You £18)</strong></a>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Food For Thought,</strong> Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG. On street parking available.</span></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Book your single session</strong></span> - <a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft1/\"><span style=\"color: #008000;\"><strong>Click Here</strong></span></a>\r\n\r\n<strong><span style=\"color: #008000;\">Book your 2 sessions - </span></strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft2/\"><span style=\"color: #008000;\"><strong>Click Here (Saving You £18)</strong></span></a>\r\n\r\nOnline Sessions - Via Skype or Zoom\r\n\r\n<strong><span style=\"color: #008000;\">Book your single session - <a href=\"https://www.newcastle-hypnotherapy.com/?post_type=product&amp;p=1618&amp;preview=true\">Click Here</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Book your 2 sessions - <a href=\"https://www.newcastle-hypnotherapy.com/product/osx2/\">Click Here (Saving You £18)</a></strong> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 18:14:05','2018-09-25 18:14:05','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1622,1,'2018-09-25 18:20:25','2018-09-25 18:20:25','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Vault, Wallsend,</strong> <span class=\"LrzXr\">NE28 6RL</span>. 1 Minute from Wallsend Metro. Carpark available.\r\n</span>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong><span style=\"color: #008000;\">Book your single session </span> - </strong><strong>Click Here</strong></a>\r\n\r\n<strong><span style=\"color: #008000;\">Book your 2 sessions </span></strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><strong>Click Here (<span style=\"color: #ff6600;\">Saving You £18</span>)</strong></a>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Food For Thought,</strong> Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG. On street parking available.</span></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Book your single session</strong></span> - <a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft1/\"><span style=\"color: #008000;\"><strong>Click Here</strong></span></a>\r\n\r\n<strong><span style=\"color: #008000;\">Book your 2 sessions - </span></strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft2/\"><span style=\"color: #008000;\"><strong>Click Here (Saving You £18)</strong></span></a>\r\n\r\nOnline Sessions - Via Skype or Zoom\r\n\r\n<strong><span style=\"color: #008000;\">Book your single session - <a href=\"https://www.newcastle-hypnotherapy.com/?post_type=product&amp;p=1618&amp;preview=true\">Click Here</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Book your 2 sessions - <a href=\"https://www.newcastle-hypnotherapy.com/product/osx2/\">Click Here (Saving You £18)</a></strong> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 18:20:25','2018-09-25 18:20:25','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1623,1,'2018-09-25 18:21:24','2018-09-25 18:21:24','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Vault, Wallsend,</strong> <span class=\"LrzXr\">NE28 6RL</span>. 1 Minute from Wallsend Metro. Carpark available.\r\n</span>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong><span style=\"color: #008000;\">Book your single session </span> - </strong><strong>Click Here</strong></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><strong><span style=\"color: #008000;\">Book your 2 sessions </span></strong><strong>Click Here (<span style=\"color: #ff6600;\">Saving You £18</span></strong><strong>)</strong></a>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Food For Thought,</strong> Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG. On street parking available.</span></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Book your single session</strong></span> - <a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft1/\"><span style=\"color: #008000;\"><strong>Click Here</strong></span></a>\r\n\r\n<strong><span style=\"color: #008000;\">Book your 2 sessions - </span></strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft2/\"><span style=\"color: #008000;\"><strong>Click Here (Saving You £18)</strong></span></a>\r\n\r\nOnline Sessions - Via Skype or Zoom\r\n\r\n<strong><span style=\"color: #008000;\">Book your single session - <a href=\"https://www.newcastle-hypnotherapy.com/?post_type=product&amp;p=1618&amp;preview=true\">Click Here</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Book your 2 sessions - <a href=\"https://www.newcastle-hypnotherapy.com/product/osx2/\">Click Here (Saving You £18)</a></strong> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 18:21:24','2018-09-25 18:21:24','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1624,1,'2018-09-25 18:21:59','2018-09-25 18:21:59','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n<h3><span style=\"color: #ff6600;\"><strong>The Vault, Wallsend,</strong> <span class=\"LrzXr\">NE28 6RL</span>. 1 Minute from Wallsend Metro. Carpark available.\r\n</span></h3>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong><span style=\"color: #008000;\">Book your single session </span> - </strong><strong>Click Here</strong></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><strong><span style=\"color: #008000;\">Book your 2 sessions </span></strong><strong>Click Here (<span style=\"color: #ff6600;\">Saving You £18</span></strong><strong>)</strong></a>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Food For Thought,</strong> Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG. On street parking available.</span></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Book your single session</strong></span> - <a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft1/\"><span style=\"color: #008000;\"><strong>Click Here</strong></span></a>\r\n\r\n<strong><span style=\"color: #008000;\">Book your 2 sessions - </span></strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft2/\"><span style=\"color: #008000;\"><strong>Click Here (Saving You £18)</strong></span></a>\r\n\r\nOnline Sessions - Via Skype or Zoom\r\n\r\n<strong><span style=\"color: #008000;\">Book your single session - <a href=\"https://www.newcastle-hypnotherapy.com/?post_type=product&amp;p=1618&amp;preview=true\">Click Here</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Book your 2 sessions - <a href=\"https://www.newcastle-hypnotherapy.com/product/osx2/\">Click Here (Saving You £18)</a></strong> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 18:21:59','2018-09-25 18:21:59','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1625,1,'2018-09-25 18:22:24','2018-09-25 18:22:24','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n<h4><span style=\"color: #ff6600;\"><strong>The Vault, Wallsend,</strong> <span class=\"LrzXr\">NE28 6RL</span>. 1 Minute from Wallsend Metro. Carpark available.\r\n</span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong><span style=\"color: #008000;\">Book your single session </span> - </strong><strong>Click Here</strong></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><strong><span style=\"color: #008000;\">Book your 2 sessions </span></strong><strong>Click Here (<span style=\"color: #ff6600;\">Saving You £18</span></strong><strong>)</strong></a>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Food For Thought,</strong> Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG. On street parking available.</span></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Book your single session</strong></span> - <a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft1/\"><span style=\"color: #008000;\"><strong>Click Here</strong></span></a>\r\n\r\n<strong><span style=\"color: #008000;\">Book your 2 sessions - </span></strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft2/\"><span style=\"color: #008000;\"><strong>Click Here (Saving You £18)</strong></span></a>\r\n\r\nOnline Sessions - Via Skype or Zoom\r\n\r\n<strong><span style=\"color: #008000;\">Book your single session - <a href=\"https://www.newcastle-hypnotherapy.com/?post_type=product&amp;p=1618&amp;preview=true\">Click Here</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Book your 2 sessions - <a href=\"https://www.newcastle-hypnotherapy.com/product/osx2/\">Click Here (Saving You £18)</a></strong> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 18:22:24','2018-09-25 18:22:24','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1626,1,'2018-09-25 18:22:58','2018-09-25 18:22:58','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n<h4><span style=\"color: #ff6600;\"><strong>The Vault, Wallsend,</strong> <span class=\"LrzXr\">NE28 6RL</span>.\r\n1 Minute from Wallsend Metro. Carpark available.\r\n</span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong><span style=\"color: #008000;\">Book your single session </span> - </strong><strong>Click Here</strong></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><strong><span style=\"color: #008000;\">Book your 2 sessions </span></strong><strong>Click Here (<span style=\"color: #ff6600;\">Saving You £18</span></strong><strong>)</strong></a>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Food For Thought,</strong> Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG. On street parking available.</span></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Book your single session</strong></span> - <a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft1/\"><span style=\"color: #008000;\"><strong>Click Here</strong></span></a>\r\n\r\n<strong><span style=\"color: #008000;\">Book your 2 sessions - </span></strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft2/\"><span style=\"color: #008000;\"><strong>Click Here (Saving You £18)</strong></span></a>\r\n\r\nOnline Sessions - Via Skype or Zoom\r\n\r\n<strong><span style=\"color: #008000;\">Book your single session - <a href=\"https://www.newcastle-hypnotherapy.com/?post_type=product&amp;p=1618&amp;preview=true\">Click Here</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Book your 2 sessions - <a href=\"https://www.newcastle-hypnotherapy.com/product/osx2/\">Click Here (Saving You £18)</a></strong> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 18:22:58','2018-09-25 18:22:58','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1627,1,'2018-09-25 18:23:40','2018-09-25 18:23:40','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n<h4><span style=\"color: #ff6600;\"><strong>The Vault, Wallsend,</strong> <span class=\"LrzXr\">NE28 6RL</span>.\r\n1 Minute from Wallsend Metro. Carpark available.\r\n</span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong><span style=\"color: #008000;\">Book your single session </span> - </strong><strong>Click Here</strong></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><strong><span style=\"color: #008000;\">Book your 2 sessions </span></strong><strong>Click Here (<span style=\"color: #ff6600;\">Saving You £18</span></strong><strong>)</strong></a>\r\n<h4><span style=\"color: #ff6600;\"><strong>Food For Thought,</strong> Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG.\r\nOn street parking available.</span></span></h4>\r\n<span style=\"color: #008000;\"><strong>Book your single session</strong></span> - <a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft1/\"><span style=\"color: #008000;\"><strong>Click Here</strong></span></a>\r\n\r\n<strong><span style=\"color: #008000;\">Book your 2 sessions - </span></strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft2/\"><span style=\"color: #008000;\"><strong>Click Here (Saving You £18)</strong></span></a>\r\n\r\nOnline Sessions - Via Skype or Zoom\r\n\r\n<strong><span style=\"color: #008000;\">Book your single session - <a href=\"https://www.newcastle-hypnotherapy.com/?post_type=product&amp;p=1618&amp;preview=true\">Click Here</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Book your 2 sessions - <a href=\"https://www.newcastle-hypnotherapy.com/product/osx2/\">Click Here (Saving You £18)</a></strong> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 18:23:40','2018-09-25 18:23:40','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1628,1,'2018-09-25 18:25:21','2018-09-25 18:25:21','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n<h4><span style=\"color: #ff6600;\"><strong>The Vault, Wallsend,</strong> <span class=\"LrzXr\">NE28 6RL</span>.\r\n1 Minute from Wallsend Metro. Carpark available.\r\n</span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong><span style=\"color: #008000;\">Book your single session </span> - </strong><strong>Click Here</strong></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><strong><span style=\"color: #008000;\">Book your 2 sessions </span></strong><strong>Click Here (<span style=\"color: #ff6600;\">Saving You £18</span></strong><strong>)</strong></a>\r\n<h4><span style=\"color: #ff6600;\"><strong>Food For Thought,</strong> Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG.\r\nOn street parking available.</span></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft1/\"><span style=\"color: #008000;\"><strong>Book your single session</strong></span> - <span style=\"color: #008000;\"><strong>Click Here</strong></span></a>\r\n\r\n<strong><span style=\"color: #008000;\">Book your 2 sessions - </span></strong><a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft2/\"><span style=\"color: #008000;\"><strong>Click Here (Saving You £18)</strong></span></a>\r\n\r\nOnline Sessions - Via Skype or Zoom\r\n\r\n<strong><span style=\"color: #008000;\">Book your single session - <a href=\"https://www.newcastle-hypnotherapy.com/?post_type=product&amp;p=1618&amp;preview=true\">Click Here</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Book your 2 sessions - <a href=\"https://www.newcastle-hypnotherapy.com/product/osx2/\">Click Here (Saving You £18)</a></strong> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 18:25:21','2018-09-25 18:25:21','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1629,1,'2018-09-25 18:26:26','2018-09-25 18:26:26','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n<h4><span style=\"color: #ff6600;\"><strong>The Vault, Wallsend,</strong> <span class=\"LrzXr\">NE28 6RL</span>.\r\n1 Minute from Wallsend Metro. Carpark available.\r\n</span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong><span style=\"color: #008000;\">Book your single session </span> - </strong><strong>Click Here</strong></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><strong><span style=\"color: #008000;\">Book your 2 sessions </span></strong><strong>Click Here (<span style=\"color: #ff6600;\">Saving You £18</span></strong><strong>)</strong></a>\r\n<h4><span style=\"color: #ff6600;\"><strong>Food For Thought,</strong> Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG.\r\nOn street parking available.</span></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft1/\"><span style=\"color: #008000;\"><strong>Book your single session</strong></span> - <span style=\"color: #008000;\"><strong>Click Here</strong></span></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft2/\"><strong><span style=\"color: #008000;\">Book your 2 sessions - </span></strong><span style=\"color: #008000;\"><strong>Click Here <span style=\"color: #ff6600;\">(Saving You £18)</span></strong></span></a>\r\n\r\nOnline Sessions - Via Skype or Zoom\r\n\r\n<strong><span style=\"color: #008000;\">Book your single session - <a href=\"https://www.newcastle-hypnotherapy.com/?post_type=product&amp;p=1618&amp;preview=true\">Click Here</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Book your 2 sessions - <a href=\"https://www.newcastle-hypnotherapy.com/product/osx2/\">Click Here (Saving You £18)</a></strong> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 18:26:26','2018-09-25 18:26:26','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1630,1,'2018-09-25 18:29:10','2018-09-25 18:29:10','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n<h4><span style=\"color: #ff6600;\"><strong>The Vault, Wallsend,</strong> <span class=\"LrzXr\">NE28 6RL</span>.\r\n1 Minute from Wallsend Metro. Carpark available.\r\n</span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong><span style=\"color: #008000;\">Book your single session </span> - </strong><strong>Click Here</strong></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><strong><span style=\"color: #008000;\">Book your 2 sessions </span></strong><strong>Click Here (<span style=\"color: #ff6600;\">Saving You £18</span></strong><strong>)</strong></a>\r\n<h4><span style=\"color: #ff6600;\"><strong>Food For Thought,</strong> Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG.\r\nOn street parking available.</span></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft1/\"><span style=\"color: #008000;\"><strong>Book your single session</strong></span> - <span style=\"color: #008000;\"><strong>Click Here</strong></span></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft2/\"><strong><span style=\"color: #008000;\">Book your 2 sessions - </span></strong><span style=\"color: #008000;\"><strong>Click Here <span style=\"color: #ff6600;\">(Saving You £18)</span></strong></span></a>\r\n<h4><strong><span style=\"color: #ff6600;\">Online Sessions - Via Skype or Zoom</span></strong></h4>\r\n<strong><span style=\"color: #008000;\">Book your single session - <a href=\"https://www.newcastle-hypnotherapy.com/?post_type=product&amp;p=1618&amp;preview=true\">Click Here</a></span></strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Book your 2 sessions - <a href=\"https://www.newcastle-hypnotherapy.com/product/osx2/\">Click Here (Saving You £18)</a></strong> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 18:29:10','2018-09-25 18:29:10','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1631,1,'2018-09-25 18:33:31','2018-09-25 18:33:31','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n<h4><span style=\"color: #ff6600;\"><strong>The Vault, Wallsend,</strong> <span class=\"LrzXr\">NE28 6RL</span>.\r\n1 Minute from Wallsend Metro. Carpark available.\r\n</span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong><span style=\"color: #008000;\">Book your single session </span> - </strong><strong>Click Here</strong></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><strong><span style=\"color: #008000;\">Book your 2 sessions </span></strong><strong>Click Here (<span style=\"color: #ff6600;\">Saving You £18</span></strong><strong>)</strong></a>\r\n<h4><span style=\"color: #ff6600;\"><strong>Food For Thought,</strong> Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG.\r\nOn street parking available.</span></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft1/\"><span style=\"color: #008000;\"><strong>Book your single session</strong></span> - <span style=\"color: #008000;\"><strong>Click Here</strong></span></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft2/\"><strong><span style=\"color: #008000;\">Book your 2 sessions - </span></strong><span style=\"color: #008000;\"><strong>Click Here <span style=\"color: #ff6600;\">(Saving You £18)</span></strong></span></a>\r\n<h4><strong><span style=\"color: #ff6600;\">Online Sessions - Via Skype or Zoom</span></strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/osx1/\"><strong><span style=\"color: #008000;\">Book your single session - Click Here</span></strong></a>\r\n\r\n<span style=\"color: #008000;\"><strong>Book your 2 sessions - <a href=\"https://www.newcastle-hypnotherapy.com/product/osx2/\">Click Here (Saving You £18)</a></strong> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 18:33:31','2018-09-25 18:33:31','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1632,1,'2018-09-25 18:36:13','2018-09-25 18:36:13','<img class=\"alignleft wp-image-1599 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/NH-Button-3.png\" alt=\"Newcastle Hypnptherapy Hypnosis Session\" width=\"500\" height=\"120\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBooking your session is simple and easy.\r\nPick the location you want below, make your payment and then choose your time slot.\r\n<h4><span style=\"color: #ff6600;\"><strong>The Vault, Wallsend,</strong> <span class=\"LrzXr\">NE28 6RL</span>.\r\n1 Minute from Wallsend Metro. Carpark available.\r\n</span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx1/\"><strong><span style=\"color: #008000;\">Book your single session </span> - </strong><strong>Click Here</strong></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hstvx2/\"><strong><span style=\"color: #008000;\">Book your 2 sessions </span></strong><strong>Click Here (<span style=\"color: #ff6600;\">Saving You £18</span></strong><strong>)</strong></a>\r\n<h4><span style=\"color: #ff6600;\"><strong>Food For Thought,</strong> Front Street, Seaton Delaval. <span class=\"LrzXr\">NE25 0DG.\r\nOn street parking available.</span></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft1/\"><span style=\"color: #008000;\"><strong>Book your single session</strong></span> - <span style=\"color: #008000;\"><strong>Click Here</strong></span></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/hsfft2/\"><strong><span style=\"color: #008000;\">Book your 2 sessions - </span></strong><span style=\"color: #008000;\"><strong>Click Here <span style=\"color: #ff6600;\">(Saving You £18)</span></strong></span></a>\r\n<h4><strong><span style=\"color: #ff6600;\">Online Sessions - Via Skype or Zoom</span></strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/osx1/\"><strong><span style=\"color: #008000;\">Book your single session - Click Here</span></strong></a>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/osx2/\"><span style=\"color: #008000;\"><strong>Book your 2 sessions - Click Here (Saving You £18)</strong> </span></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Booking Your Session','','inherit','closed','closed','','1595-revision-v1','','','2018-09-25 18:36:13','2018-09-25 18:36:13','',1595,'https://www.newcastle-hypnotherapy.com/1595-revision-v1/',0,'revision','',0),(1791,0,'2018-10-11 19:45:44','2018-10-11 19:45:44','','Order &ndash; October 11, 2018 @ 07:45 PM','Edgar Cayce evening','wc-on-hold','open','closed','order_5bbfa868cdfc7','order-oct-11-2018-0745-pm','','','2018-10-11 19:45:45','2018-10-11 19:45:45','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=1791',0,'shop_order','',1),(2529,1,'2019-01-18 20:00:07','2019-01-18 20:00:07','','Order &ndash; January 18, 2019 @ 08:00 PM','','wc-on-hold','open','closed','order_5c4230470b79c','order-jan-18-2019-0800-pm','','','2019-01-18 20:00:07','2019-01-18 20:00:07','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2529',0,'shop_order','',1),(2523,1,'2019-01-15 06:29:03','2019-01-15 06:29:03','','Order &ndash; January 15, 2019 @ 06:29 AM','','wc-processing','open','closed','order_5c3d7dafdfa70','order-jan-15-2019-0629-am','','','2019-01-15 06:30:58','2019-01-15 06:30:58','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2523',0,'shop_order','',3),(1635,1,'2018-09-25 19:12:28','0000-00-00 00:00:00','<div class=\"header-custom-container\"><strong>Call </strong><span style=\"color: #0000ff;\"><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" style=\"color: #0000ff;\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a></span><strong> today to get started</strong></div>\n<div class=\"header-custom-container\"><strong> or </strong><b><span style=\"color: #ff6600;\"><em><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em></span> to arrange Your\nFREE 15 Minute Phone Strategy Session</b>.</div>','','','draft','closed','closed','','','','','2018-09-25 19:12:28','2018-09-25 19:12:28','',0,'https://www.newcastle-hypnotherapy.com/?post_type=product&#038;p=1635',0,'product','',0),(1819,1,'2018-10-28 12:13:30','2018-10-28 12:13:30','You can also find Newcastle Hypnotherapy in Seaton Delaval.\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find us at, <span class=\"LrzXr\">28 Astley Road, Seaton Delaval, Whitley Bay NE25 0DG as part of <a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a>, the popular health food store.\r\nWe offer all of the Hypnotherapy Services as detailed on our <a href=\"https://www.newcastle-hypnotherapy.com/\"><strong>Website Main Page</strong></a>.</span>\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 12:13:30','2018-10-28 12:13:30','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1820,1,'2018-10-28 12:14:02','2018-10-28 12:14:02','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find us at, <span class=\"LrzXr\">28 Astley Road, Seaton Delaval, Whitley Bay NE25 0DG as part of <a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a>, the popular health food store.\r\nWe offer all of the Hypnotherapy Services as detailed on our <a href=\"https://www.newcastle-hypnotherapy.com/\"><strong>Website Main Page</strong></a>.</span>\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 12:14:02','2018-10-28 12:14:02','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1816,1,'2018-10-28 12:09:50','2018-10-28 12:09:50','You can also find Newcastle Hypnotherapy in Seaton Delaval.\r\n\r\nYou can find us at, <span class=\"LrzXr\">28 Astley Road, Seaton Delaval, Whitley Bay NE25 0DG as part of Food For Thought, the popular health food store.\r\nWe offer all of the Hypnotherapy Services as detailed on our <a href=\"https://www.newcastle-hypnotherapy.com/\"><strong>Website Main Page</strong></a>.</span>\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 12:09:50','2018-10-28 12:09:50','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1817,1,'2018-10-28 12:11:39','2018-10-28 12:11:39','You can also find Newcastle Hypnotherapy in Seaton Delaval.\r\n\r\nYou can find us at, <span class=\"LrzXr\">28 Astley Road, Seaton Delaval, Whitley Bay NE25 0DG as part of <a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a>, the popular health food store.\r\nWe offer all of the Hypnotherapy Services as detailed on our <a href=\"https://www.newcastle-hypnotherapy.com/\"><strong>Website Main Page</strong></a>.</span>\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 12:11:39','2018-10-28 12:11:39','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1818,1,'2018-10-28 12:12:39','2018-10-28 12:12:39','','Choosing Your Hypnotherapist','','inherit','open','closed','','head2','','','2018-12-29 20:09:15','2018-12-29 20:09:15','',1813,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2.jpg',0,'attachment','image/jpeg',0),(1812,1,'2018-10-28 11:45:44','0000-00-00 00:00:00','You can find Newcastle Hypnotherapy in Seaton Delaval.\nWe provide all of the services as detailed on our Main Page at our Seaton Delaval Location.','Newcastle Hypnotherapy in Seaton Delaval','','draft','closed','closed','','','','','2018-10-28 11:45:44','2018-10-28 11:45:44','',0,'https://www.newcastle-hypnotherapy.com/?page_id=1812',0,'page','',0),(1659,1,'2018-09-26 19:26:19','2018-09-26 19:26:19','','book workshop now','','inherit','open','closed','','book-workshop-now-2','','','2018-09-26 19:26:19','2018-09-26 19:26:19','',68,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1.png',0,'attachment','image/png',0),(1662,1,'2018-09-26 19:32:02','2018-09-26 19:32:02','<h2><strong><span style=\"color: #008000;\">Are</span><span style=\"color: #008000;\"> you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.\r\n</strong>\r\n<strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong>\r\n<h2><strong><span style=\"color: #008000;\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-26 19:32:02','2018-09-26 19:32:02','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1661,1,'2018-09-26 19:27:32','2018-09-26 19:27:32','<h2><strong><span style=\"color: #008000;\">Are</span><span style=\"color: #008000;\"> you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<p><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.<br />Hypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.<br /></strong><br /><strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong></p>\r\n<p>Anxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.</p>\r\n<p><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong></p>\r\n<h2><strong><span style=\"color: #008000;\"><img class=\"alignleft size-medium wp-image-1660\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />Hypnotherapy for Anxiety<br /></span></strong></h2>\r\n<p>Many of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.</p>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<p><strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.<br /></strong></p>\r\n<ul>\r\n<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\n<p>As anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.<br />One of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.<br />We also teach you some great skills to put you back in control and take charge of your anxiety symptoms.<br /><span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span></p>\r\n<p><img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]</p>\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\n<p>The first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.<br />We usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.<br />Once we have dealt with the most serious issue the rest is usually easier to deal with.<br />The aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.<br />The program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.</p>\r\n<p><strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong></p>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\n<p>Anxiety is different to stress as often the cause is unclear or can take a little time to understand.<br />With a little work, we can create awareness of your cause of anxiety and show you how to take control.<br />Anxiety can have many symptoms including:</p>\r\n<ul>\r\n<li>Sleep problems</li>\r\n<li>Switching off at night</li>\r\n<li>Unable to relax</li>\r\n<li>Being afraid of the wrong things</li>\r\n<li>Becoming stressed easily</li>\r\n<li>Rapid breathing</li>\r\n<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n<li>Digestive problems</li>\r\n<li>Panic Attacks</li>\r\n<li>Bruxism and muscle clenching</li>\r\n<li>Reduced immune system</li>\r\n<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n<li>Heart palpitations</li>\r\n<li>Dry mouth</li>\r\n<li>Nausea</li>\r\n</ul>\r\n<p>Thankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.</p>\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\n<p>Certainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.<br />NLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.<br />The benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.</p>\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\n<p>Yes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.</p>\r\n<p><span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span><br /><span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span></p>\r\n<p><strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a></p>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.<br /></strong></span></h2>\r\n<p><span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.<br /></span>[wpforms id=\"35\"]<br /></strong></span></p>\r\n<p>We are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.</p>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\n<p>We are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.</p>\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\n<p>Hypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.</p>\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<p><span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.<br /></span></p>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong><br /></span></h2>\r\n<p><span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.<br /></span></p>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong><br /></span></h2>\r\n<p>Yes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.</p>\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\n<p>Anxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.</p>\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\n<p>They may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. <br />Our clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.</p>\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\n<p>Yes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.</p>\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?<br /></span></strong></h2>\r\n<p>Self-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.<br />We also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a></p>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span><br /></em></h2>\r\n<p><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em></p>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\n<p>Your first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues. <br /></em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong></p>\r\n<p><br /><br />Newcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a></p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-26 19:27:32','2018-09-26 19:27:32','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1680,1,'2018-09-29 12:13:33','2018-09-29 12:13:33','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.\r\n</strong>\r\n<strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong>\r\n<h2><strong><span style=\"color: #008000;\"><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:13:33','2018-09-29 12:13:33','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1663,1,'2018-09-26 19:33:39','2018-09-26 19:33:39','<h2><strong><span style=\"color: #008000;\">Are</span><span style=\"color: #008000;\"> you looking to take control and reduce your anxiety today?</span></strong></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the Anxiety Relief Hypnosis Program is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.\r\n</strong>\r\n<strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong>\r\n<h2><strong><span style=\"color: #008000;\"><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-26 19:33:39','2018-09-26 19:33:39','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1665,1,'2018-09-27 15:33:50','2018-09-27 15:33:50','<h2 style=\"text-align: center;\"><img class=\"aligncenter wp-image-1758 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/ANXIETY-FINGERS-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\r\n<span style=\"color: #008000;\"><strong>The New Anxiety Relief Program</strong></span></h2>\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy free consultation\" width=\"150\" height=\"150\" /><strong>Hi, my name is Mark &amp; I successfully help people with Anxiety, Stress and other issues.</strong>\r\nOur clients have been enjoying great results and lately, I have been working on some new techniques to really speed up the control and elimination of Anxiety problems.\r\n\r\nMy goal is to help thousands of people to take control of anxiety and stress, to do this in a faster way than before.\r\nI have suffered from anxiety and stress myself and I know how miserable anxiety can make your life.\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>20 Places At A Reduced Price</strong></span></h2>\r\n<p style=\"text-align: left;\">As part of our <strong>Anxiety Awareness Month</strong>, we are offering <strong>20 people the chance to test drive The New Anxiety Relief Program at cost price.</strong>\r\nIn return, we simply ask you to supply us with honest feedback on the benefits you have experienced, to be used on our websites and for a new anxiety report. Your details will, of course, remain confidential and the data will be used anonymously as part of a new anxiety report I am putting together.</p>\r\n<span style=\"color: #008000;\"><strong>Anxiety Relief Program - Client Feedback by Steve </strong></span><strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></strong>\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\">Are You Serious About Conquering Your Anxiety? </span></h2>\r\nThe program is conducted online via 3, 1 hour video sessions over 3 weeks with email &amp; phone support available between each session.\r\nYou will be supplied with a personalised audio track &amp; exercises to work with between your sessions.\r\nYou can be anywhere in the UK to take part in the program if chosen.\r\nAll you need is a PC or smartphone with a quiet space for each session.\r\n\r\n<strong>The total cost to you</strong> <strong>is just £79 and includes 3 sessions</strong> rather than our current of £237.00 for this program.\r\n\r\n<strong>Please note, we are only picking 20 people at this point from those that complete the form below.\r\n</strong>\r\n\r\nAs a thank you for your application, we will send you some anxiety help tips, techniques and videos by email shortly.\r\n\r\n<strong>Simply enter your details below and we will email you the application questionnaire now.</strong>\r\n\r\n<strong>[contact-form-7 id=\"1668\" title=\"New Anxiety Relief Program\"]</strong>','New Anxiety Program','','publish','closed','closed','','new-anxiety-program-testers-page','','','2018-10-11 10:09:14','2018-10-11 10:09:14','',0,'https://www.newcastle-hypnotherapy.com/?page_id=1665',0,'page','',0),(1666,1,'2018-09-27 14:41:49','2018-09-27 14:41:49','&nbsp;\r\n\r\nHi, my name is Mark &amp; I  successfully help people with Anxiety, Stress and other issues.\r\nOur clients have been enjoying great results and lately, I have been working on some new techniques to really speed up the control and elimination of Anxiety problems.\r\n\r\nMy goal is to help thousands of people to take control of anxiety and stress, to do this in a faster way than before.\r\nI have suffered from anxiety myself and I know how miserable anxiety can make your life.\r\n\r\nI am now looking for 10 people who would like to test drive this new program at cost price.\r\nIn return, we are asking for an honest review of the benefits you experience as your anxiety reduces and how your life improves as you use the new program.\r\n\r\nYour details will, of course, remain confidential and the data will be used anonymously as part of a new anxiety report I am putting together.\r\n\r\nInterested?\r\nThe next step is to simply complete a short questionnaire and from this we will pick 10 people to take part in the program.\r\n\r\nThe program is conducted online via 3 1 hour video sessions over 3 weeks with email &amp; phone support available between each session.\r\nYou can be anywhere in the UK to take part in the program if chose.\r\n\r\nPlease note, we are only picking 10 people at this point.\r\nAs a thank you for your application, we will send you some anxiety help tips, techniques and video by email shortly.\r\n\r\nSimply enter your details below and we will email you the application questionaire now.','New Anxiety Program Testers Page','','inherit','closed','closed','','1665-revision-v1','','','2018-09-27 14:41:49','2018-09-27 14:41:49','',1665,'https://www.newcastle-hypnotherapy.com/1665-revision-v1/',0,'revision','',0),(1667,1,'2018-09-27 14:56:35','2018-09-27 14:56:35','','New Anxiety Program Application Form','','inherit','open','closed','','new-anxiety-program-application-form','','','2018-09-27 14:56:35','2018-09-27 14:56:35','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Anxiety-Program-Application-Form.doc',0,'attachment','application/msword',0),(1669,1,'2018-09-27 15:25:42','2018-09-27 15:25:42','&nbsp;\r\n\r\nHi, my name is Mark &amp; I  successfully help people with Anxiety, Stress and other issues.\r\nOur clients have been enjoying great results and lately, I have been working on some new techniques to really speed up the control and elimination of Anxiety problems.\r\n\r\nMy goal is to help thousands of people to take control of anxiety and stress, to do this in a faster way than before.\r\nI have suffered from anxiety myself and I know how miserable anxiety can make your life.\r\n\r\nI am now looking for 10 people who would like to test drive this new program at cost price.\r\nIn return, we are asking for an honest review of the benefits you experience as your anxiety reduces and how your life improves as you use the new program.\r\n\r\nYour details will, of course, remain confidential and the data will be used anonymously as part of a new anxiety report I am putting together.\r\n\r\nInterested?\r\nThe next step is to simply complete a short questionnaire and from this we will pick 10 people to take part in the program.\r\n\r\nThe program is conducted online via 3 1 hour video sessions over 3 weeks with email &amp; phone support available between each session.\r\nYou can be anywhere in the UK to take part in the program if chose.\r\n\r\nPlease note, we are only picking 10 people at this point.\r\nAs a thank you for your application, we will send you some anxiety help tips, techniques and video by email shortly.\r\n\r\nSimply enter your details below and we will email you the application questionaire now.\r\n\r\n[contact-form-7 id=\"1668\" title=\"New Anxiety Relief Program\"]','New Anxiety Program Testers Page','','inherit','closed','closed','','1665-revision-v1','','','2018-09-27 15:25:42','2018-09-27 15:25:42','',1665,'https://www.newcastle-hypnotherapy.com/1665-revision-v1/',0,'revision','',0),(1670,1,'2018-09-27 15:31:18','2018-09-27 15:31:18','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy free consultation\" width=\"150\" height=\"150\" />Hi, my name is Mark &amp; I  successfully help people with Anxiety, Stress and other issues.\r\nOur clients have been enjoying great results and lately, I have been working on some new techniques to really speed up the control and elimination of Anxiety problems.\r\n\r\nMy goal is to help thousands of people to take control of anxiety and stress, to do this in a faster way than before.\r\nI have suffered from anxiety and stress myself and I know how miserable anxiety can make your life.\r\n\r\n<strong>I am now looking for 10 people who would like to test drive this new program.</strong>\r\nIn return, we are asking for an honest review of the benefits you experience as your anxiety reduces and how your life improves as you use the new program.\r\n\r\nYour details will, of course, remain confidential and the data will be used anonymously as part of a new anxiety report I am putting together.\r\n\r\n<strong>Interested?</strong>\r\nThe next step is to simply complete a short questionnaire and from this, we will pick 10 people to take part in the program.\r\n\r\nThe program is conducted online via 3 1 hour video sessions over 3 weeks with email &amp; phone support available between each session.\r\nYou can be anywhere in the UK to take part in the program if chose.\r\n\r\n<strong>Please note, we are only picking 10 people at this point. </strong>As a thank you for your application, we will send you some anxiety help tips, techniques and video by email shortly.\r\n\r\nSimply enter your details below and we will email you the application questionnaire now.\r\n\r\n[contact-form-7 id=\"1668\" title=\"New Anxiety Relief Program\"]','New Anxiety Program Testers Page','','inherit','closed','closed','','1665-revision-v1','','','2018-09-27 15:31:18','2018-09-27 15:31:18','',1665,'https://www.newcastle-hypnotherapy.com/1665-revision-v1/',0,'revision','',0),(1671,1,'2018-09-27 15:33:50','2018-09-27 15:33:50','&nbsp;\r\n\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy free consultation\" width=\"150\" height=\"150\" />Hi, my name is Mark &amp; I successfully help people with Anxiety, Stress and other issues.\r\nOur clients have been enjoying great results and lately, I have been working on some new techniques to really speed up the control and elimination of Anxiety problems.\r\n\r\nMy goal is to help thousands of people to take control of anxiety and stress, to do this in a faster way than before.\r\nI have suffered from anxiety and stress myself and I know how miserable anxiety can make your life.\r\n\r\n<strong>I am now looking for 10 people who would like to test drive this new program.</strong>\r\nIn return, we are asking for an honest review of the benefits you experience as your anxiety reduces and how your life improves as you use the new program.\r\n\r\nYour details will, of course, remain confidential and the data will be used anonymously as part of a new anxiety report I am putting together.\r\n\r\n<strong>Interested?</strong>\r\nThe next step is to simply complete a short questionnaire and from this, we will pick 10 people to take part in the program.\r\n\r\nThe program is conducted online via 3 1 hour video sessions over 3 weeks with email &amp; phone support available between each session.\r\nYou can be anywhere in the UK to take part in the program if chose.\r\n\r\n<strong>Please note, we are only picking 10 people at this point. </strong>As a thank you for your application, we will send you some anxiety help tips, techniques and video by email shortly.\r\n\r\nSimply enter your details below and we will email you the application questionnaire now.\r\n\r\n[contact-form-7 id=\"1668\" title=\"New Anxiety Relief Program\"]','New Anxiety Program Testers Page','','inherit','closed','closed','','1665-revision-v1','','','2018-09-27 15:33:50','2018-09-27 15:33:50','',1665,'https://www.newcastle-hypnotherapy.com/1665-revision-v1/',0,'revision','',0),(1672,1,'2018-09-27 16:48:07','2018-09-27 16:48:07','','anxiety w logo','','inherit','open','closed','','anxiety-w-logo','','','2018-09-27 16:48:07','2018-09-27 16:48:07','',1665,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-w-logo.jpg',0,'attachment','image/jpeg',0),(1673,1,'2018-10-06 18:31:39','2018-10-06 18:31:39','<h2 style=\"text-align: center;\"><img class=\"aligncenter wp-image-1758 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/ANXIETY-FINGERS-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\n<span style=\"color: #008000;\"><strong>The New Anxiety Relief Program</strong></span></h2>\n<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy free consultation\" width=\"150\" height=\"150\" /><strong>Hi, my name is Mark &amp; I successfully help people with Anxiety, Stress and other issues.</strong>\nOur clients have been enjoying great results and lately, I have been working on some new techniques to really speed up the control and elimination of Anxiety problems.\n\nMy goal is to help thousands of people to take control of anxiety and stress, to do this in a faster way than before.\nI have suffered from anxiety and stress myself and I know how miserable anxiety can make your life.\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>20 Places At A Reduced Price</strong></span></h2>\n<p style=\"text-align: left;\">As part of our <strong>Anxiety Awareness Month</strong>, we are offering <strong>20 people the chance to test drive The New Anxiety Relief Program at cost price.</strong>\nIn return, we simply ask you to supply us with honest feedback on the benefits you have experienced, to be used on our websites and for a new anxiety report. Your details will, of course, remain confidential and the data will be used anonymously as part of a new anxiety report I am putting together.</p>\n<span style=\"color: #008000;\"><strong>Anxiety Relief Program - Client Feedback by Steve </strong></span><strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></strong>\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\">Are You Serious About Conquering Your Anxiety? </span></h2>\nThe program is conducted online via 3, 1 hour video sessions over 3 weeks with email &amp; phone support available between each session.\nYou will be supplied with a personalised audio track &amp; exercises to work with between your sessions.\nYou can be anywhere in the UK to take part in the program if chosen.\nAll you need is a PC or smartphone with a quiet space for each session.\n\n<strong>The total cost to you</strong> <strong>is just £79 for the 3 sessions</strong> rather than our current of £237.00 for this program.\n\n<strong>Please note, we are only picking 20 people at this point from those that complete the form below.\n</strong>\n\nAs a thank you for your application, we will send you some anxiety help tips, techniques and videos by email shortly.\n\n<strong>Simply enter your details below and we will email you the application questionnaire now.</strong>\n\n<strong>[contact-form-7 id=\"1668\" title=\"New Anxiety Relief Program\"]</strong>','New Anxiety Program','','inherit','closed','closed','','1665-autosave-v1','','','2018-10-06 18:31:39','2018-10-06 18:31:39','',1665,'https://www.newcastle-hypnotherapy.com/1665-autosave-v1/',0,'revision','',0),(1674,1,'2018-09-27 16:48:28','2018-09-27 16:48:28','<img class=\"size-medium wp-image-1672 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-w-logo-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" />\r\n\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy free consultation\" width=\"150\" height=\"150\" />Hi, my name is Mark &amp; I successfully help people with Anxiety, Stress and other issues.\r\nOur clients have been enjoying great results and lately, I have been working on some new techniques to really speed up the control and elimination of Anxiety problems.\r\n\r\nMy goal is to help thousands of people to take control of anxiety and stress, to do this in a faster way than before.\r\nI have suffered from anxiety and stress myself and I know how miserable anxiety can make your life.\r\n\r\n<strong>I am now looking for 10 people who would like to test drive this new program.</strong>\r\nIn return, we are asking for an honest review of the benefits you experience as your anxiety reduces and how your life improves as you use the new program.\r\n\r\nYour details will, of course, remain confidential and the data will be used anonymously as part of a new anxiety report I am putting together.\r\n\r\n<strong>Interested?</strong>\r\nThe next step is to simply complete a short questionnaire and from this, we will pick 10 people to take part in the program.\r\n\r\nThe program is conducted online via 3 1 hour video sessions over 3 weeks with email &amp; phone support available between each session.\r\nYou can be anywhere in the UK to take part in the program if chose.\r\n\r\n<strong>Please note, we are only picking 10 people at this point. </strong>As a thank you for your application, we will send you some anxiety help tips, techniques and video by email shortly.\r\n\r\nSimply enter your details below and we will email you the application questionnaire now.\r\n\r\n[contact-form-7 id=\"1668\" title=\"New Anxiety Relief Program\"]','New Anxiety Program Testers Page','','inherit','closed','closed','','1665-revision-v1','','','2018-09-27 16:48:28','2018-09-27 16:48:28','',1665,'https://www.newcastle-hypnotherapy.com/1665-revision-v1/',0,'revision','',0),(1675,1,'2018-09-27 16:49:54','2018-09-27 16:49:54','<img class=\"size-medium wp-image-1672 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-w-logo-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" />\r\n\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy free consultation\" width=\"150\" height=\"150\" />Hi, my name is Mark &amp; I successfully help people with Anxiety, Stress and other issues.\r\nOur clients have been enjoying great results and lately, I have been working on some new techniques to really speed up the control and elimination of Anxiety problems.\r\n\r\nMy goal is to help thousands of people to take control of anxiety and stress, to do this in a faster way than before.\r\nI have suffered from anxiety and stress myself and I know how miserable anxiety can make your life.\r\n\r\n<strong>I am now looking for 10 people who would like to test drive this new program.</strong>\r\nIn return, we are asking for an honest review of the benefits you experience as your anxiety reduces and how your life improves as you use the new program.\r\n\r\nYour details will, of course, remain confidential and the data will be used anonymously as part of a new anxiety report I am putting together.\r\n\r\n<strong>Interested?</strong>\r\nThe next step is to simply complete a short questionnaire. From this, we will pick 10 people to take part in the program.\r\n\r\nThe program is conducted online via 3 1 hour video sessions over 3 weeks with email &amp; phone support available between each session.\r\nYou can be anywhere in the UK to take part in the program if chose.\r\n\r\n<strong>Please note, we are only picking 10 people at this point.\r\n\r\nAs a thank you for your application,</strong> we will send you some anxiety help tips, techniques and videos by email shortly.\r\n\r\nSimply enter your details below and we will email you the application questionnaire now.\r\n\r\n[contact-form-7 id=\"1668\" title=\"New Anxiety Relief Program\"]','New Anxiety Program Testers Page','','inherit','closed','closed','','1665-revision-v1','','','2018-09-27 16:49:54','2018-09-27 16:49:54','',1665,'https://www.newcastle-hypnotherapy.com/1665-revision-v1/',0,'revision','',0),(1676,1,'2018-09-27 17:24:56','2018-09-27 17:24:56','<img class=\"size-medium wp-image-1672 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-w-logo-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" />\r\n\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy free consultation\" width=\"150\" height=\"150\" /><strong>Hi, my name is Mark &amp; I successfully help people with Anxiety, Stress and other issues.</strong>\r\nOur clients have been enjoying great results and lately, I have been working on some new techniques to really speed up the control and elimination of Anxiety problems.\r\n\r\nMy goal is to help thousands of people to take control of anxiety and stress, to do this in a faster way than before.\r\nI have suffered from anxiety and stress myself and I know how miserable anxiety can make your life.\r\n\r\n<strong>I am now looking for 10 people who would like to test drive this new program.</strong>\r\nIn return, we are asking for an honest review of the benefits you experience as your anxiety reduces and how your life improves as you use the new program.\r\n\r\nYour details will, of course, remain confidential and the data will be used anonymously as part of a new anxiety report I am putting together.\r\n\r\n<strong>Interested?</strong>\r\nThe next step is to simply complete a short questionnaire. From this, we will pick 10 people to take part in the program.\r\n\r\nThe program is conducted online via 3 1 hour video sessions over 3 weeks with email &amp; phone support available between each session.\r\nYou can be anywhere in the UK to take part in the program if chose.\r\n\r\n<strong>Please note, we are only picking 10 people at this point.</strong>\r\n\r\nAs a thank you for your application, we will send you some anxiety help tips, techniques and videos by email shortly.\r\n\r\nSimply enter your details below and we will email you the application questionnaire now.\r\n\r\n[contact-form-7 id=\"1668\" title=\"New Anxiety Relief Program\"]','New Anxiety Program Testers Page','','inherit','closed','closed','','1665-revision-v1','','','2018-09-27 17:24:56','2018-09-27 17:24:56','',1665,'https://www.newcastle-hypnotherapy.com/1665-revision-v1/',0,'revision','',0),(1677,0,'2018-09-27 18:02:39','2018-09-27 18:02:39','','Order &ndash; September 27, 2018 @ 06:02 PM','','wc-on-hold','open','closed','order_5bad1b3fb036b','order-sep-27-2018-0602-pm','','','2018-09-27 18:02:39','2018-09-27 18:02:39','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=1677',0,'shop_order','',1),(1879,1,'2018-10-29 16:16:59','2018-10-29 16:16:59','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre</strong> in Wallsend, Newcastle upon Tyne.\r\n\r\nWe also work from <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nWe can also offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside</span></p>\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-29 16:16:59','2018-10-29 16:16:59','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1681,1,'2018-09-29 12:14:04','2018-09-29 12:14:04','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.\r\n</strong>\r\n<strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong>\r\n\r\nAnxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong>\r\n<h2><strong><span style=\"color: #008000;\"><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:14:04','2018-09-29 12:14:04','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1682,1,'2018-09-29 12:28:40','2018-09-29 12:28:40','','anxiety tips','','inherit','open','closed','','anxiety-tips','','','2018-09-29 12:29:00','2018-09-29 12:29:00','',68,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips.jpg',0,'attachment','image/jpeg',0),(1685,1,'2018-09-29 12:32:15','2018-09-29 12:32:15','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.\r\n</strong>\r\n<strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Anxiety Client Feedback. <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n\r\n<img class=\"aligncenter wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\"><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:32:15','2018-09-29 12:32:15','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1683,1,'2018-09-29 12:29:12','2018-09-29 12:29:12','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.\r\n</strong>\r\n<strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong>\r\n\r\n<img class=\"aligncenter size-medium wp-image-1682\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-300x300.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"300\" height=\"300\" />\r\n\r\n\r\n\r\nAnxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong>\r\n<h2><strong><span style=\"color: #008000;\"><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:29:12','2018-09-29 12:29:12','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1684,1,'2018-09-29 12:29:59','2018-09-29 12:29:59','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.\r\n</strong>\r\n<strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong>\r\n\r\n<img class=\"aligncenter wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />\r\n\r\nAnxiety can be very different for each person and why we personalise the program to you. <span style=\"color: #008000;\"><strong>Call us on 07568 455 809 today</strong></span>, for your free, confidential phone consultation and discover a life without anxiety problems.\r\n\r\n<strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\">Client Feedback. <span style=\"color: #003300;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong>\r\n<h2><strong><span style=\"color: #008000;\"><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:29:59','2018-09-29 12:29:59','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1686,1,'2018-09-29 12:33:32','2018-09-29 12:33:32','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.\r\n</strong>\r\n<strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span> <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n\r\n<img class=\"aligncenter wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\"><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:33:32','2018-09-29 12:33:32','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1687,1,'2018-09-29 12:33:54','2018-09-29 12:33:54','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: center;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.\r\n</strong>\r\n<strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span> <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong></p>\r\n<img class=\"aligncenter wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\"><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:33:54','2018-09-29 12:33:54','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1694,1,'2018-09-29 12:38:25','2018-09-29 12:38:25','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.\r\n</strong>\r\nAs soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span> <em>\r\n\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong></p>\r\n<img class=\"aligncenter wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:38:25','2018-09-29 12:38:25','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1688,1,'2018-09-29 12:34:30','2018-09-29 12:34:30','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.\r\n</strong>\r\n<strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong></p>\r\n<p style=\"text-align: center;\"><strong>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span> <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong></p>\r\n<img class=\"aligncenter wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\"><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:34:30','2018-09-29 12:34:30','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1689,1,'2018-09-29 12:34:51','2018-09-29 12:34:51','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.\r\n</strong>\r\n<strong>As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</strong></p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span> <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong></p>\r\n<img class=\"aligncenter wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\"><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:34:51','2018-09-29 12:34:51','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1690,1,'2018-09-29 12:35:20','2018-09-29 12:35:20','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.\r\n</strong>\r\nAs soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span> <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong></p>\r\n<img class=\"aligncenter wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\"><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:35:20','2018-09-29 12:35:20','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1691,1,'2018-09-29 12:36:25','2018-09-29 12:36:25','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.\r\n</strong>\r\nAs soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span> <em>\r\n\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong></p>\r\n<img class=\"aligncenter wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\"><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:36:25','2018-09-29 12:36:25','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1693,1,'2018-09-29 12:37:31','2018-09-29 12:37:31','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.\r\n</strong>\r\nAs soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span> <em>\r\n\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong></p>\r\n<img class=\"aligncenter wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\"><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:37:31','2018-09-29 12:37:31','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1692,1,'2018-09-29 12:36:55','2018-09-29 12:36:55','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.\r\n</strong>\r\nAs soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n\r\n<blockquote>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span> <em>\r\n\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong></p>\r\n</blockquote>\r\n<img class=\"aligncenter wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\"><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:36:55','2018-09-29 12:36:55','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1695,1,'2018-09-29 12:39:32','2018-09-29 12:39:32','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong>\r\nAs soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span> <em>\r\n\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong></p>\r\n<img class=\"aligncenter wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:39:32','2018-09-29 12:39:32','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1696,1,'2018-09-29 12:39:50','2018-09-29 12:39:50','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong>\r\nAs soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong></p>\r\n<img class=\"aligncenter wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:39:50','2018-09-29 12:39:50','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1697,1,'2018-09-29 12:40:21','2018-09-29 12:40:21','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"anxiety relief hypnosis program\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong>\r\nAs soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace the anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong></p>\r\n<img class=\"aligncenter wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:40:21','2018-09-29 12:40:21','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1704,1,'2018-09-29 12:48:23','2018-09-29 12:48:23','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong></p>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:48:23','2018-09-29 12:48:23','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1702,1,'2018-09-29 12:46:13','2018-09-29 12:46:13','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n&nbsp;\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.\r\n\r\n</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong></p>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:46:13','2018-09-29 12:46:13','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1700,1,'2018-09-29 12:44:57','2018-09-29 12:44:57','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy free consultation\" width=\"150\" height=\"150\" />\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong></p>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:44:57','2018-09-29 12:44:57','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1701,1,'2018-09-29 12:45:21','2018-09-29 12:45:21','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy free consultation\" width=\"150\" height=\"150\" />\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong></p>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:45:21','2018-09-29 12:45:21','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1703,1,'2018-09-29 12:46:28','2018-09-29 12:46:28','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your anxiety relief hypnosis program.  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong></p>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:46:28','2018-09-29 12:46:28','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1705,1,'2018-09-29 12:52:46','2018-09-29 12:52:46','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong></p>\r\n\r\n<h2>\r\n<img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" />As Easy As 1,2,3</h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:52:46','2018-09-29 12:52:46','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1706,1,'2018-09-29 12:56:22','2018-09-29 12:56:22','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li>Simply complete the Anxiety Client Questionaire.</li>\r\n 	<li>Arrange your Free 15 Minute Stratery Session.</li>\r\n 	<li>Book your session to take control.</li>\r\n</ol>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:56:22','2018-09-29 12:56:22','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1707,1,'2018-09-29 12:57:25','2018-09-29 12:57:25','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - here\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Stratery Session.</strong></li>\r\n 	<li><strong>Book your session to take control.</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:57:25','2018-09-29 12:57:25','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1708,1,'2018-09-29 12:58:00','2018-09-29 12:58:00','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - here\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Stratery Session.</strong></li>\r\n 	<li><strong>Book your session to take control.</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 12:58:00','2018-09-29 12:58:00','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1709,1,'2018-09-29 13:04:08','2018-09-29 13:04:08','','Anxiety Program Application Form','','inherit','open','closed','','anxiety-program-application-form','','','2018-09-29 13:04:08','2018-09-29 13:04:08','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Anxiety-Program-Application-Form.doc',0,'attachment','application/msword',0),(1710,1,'2018-09-29 13:08:18','2018-09-29 13:08:18','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Anxiety-Program-Application-Form.doc\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Stratery Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 13:08:18','2018-09-29 13:08:18','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1712,1,'2018-09-29 13:13:24','2018-09-29 13:13:24','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Anxiety-Program-Application-Form.doc\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Stratery Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 13:13:24','2018-09-29 13:13:24','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1711,1,'2018-09-29 13:13:06','2018-09-29 13:13:06','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n&nbsp;\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Anxiety-Program-Application-Form.doc\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Stratery Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 13:13:06','2018-09-29 13:13:06','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1713,1,'2018-09-29 13:15:05','2018-09-29 13:15:05','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Anxiety-Program-Application-Form.doc\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Stratery Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" sizes=\"(max-width: 300px) 100vw, 300px\" srcset=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg 300w, https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-400x250.jpg 400w, https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2.jpg 626w\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />\r\n<h2>[contact-form-7 id=\"528\" title=\"Anxiety\"]</h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 13:15:05','2018-09-29 13:15:05','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1714,1,'2018-09-29 13:15:32','2018-09-29 13:15:32','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Anxiety-Program-Application-Form.doc\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Stratery Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" sizes=\"(max-width: 300px) 100vw, 300px\" srcset=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg 300w, https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-400x250.jpg 400w, https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2.jpg 626w\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />\r\n\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 13:15:32','2018-09-29 13:15:32','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1718,1,'2018-09-29 13:18:02','2018-09-29 13:18:02','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Anxiety-Program-Application-Form.doc\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Stratery Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-533\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" sizes=\"(max-width: 300px) 100vw, 300px\" srcset=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg 300w, https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-400x250.jpg 400w, https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2.jpg 626w\" alt=\"anxiety relief hypnosis program\" width=\"400\" height=\"250\" />\r\n\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 13:18:02','2018-09-29 13:18:02','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1715,1,'2018-09-29 13:16:15','2018-09-29 13:16:15','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Anxiety-Program-Application-Form.doc\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Stratery Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" sizes=\"(max-width: 300px) 100vw, 300px\" srcset=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg 300w, https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-400x250.jpg 400w, https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2.jpg 626w\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 13:16:15','2018-09-29 13:16:15','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1716,1,'2018-09-29 13:16:39','2018-09-29 13:16:39','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Anxiety-Program-Application-Form.doc\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Stratery Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" sizes=\"(max-width: 300px) 100vw, 300px\" srcset=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg 300w, https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-400x250.jpg 400w, https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2.jpg 626w\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 13:16:39','2018-09-29 13:16:39','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1717,1,'2018-09-29 13:17:37','2018-09-29 13:17:37','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Anxiety-Program-Application-Form.doc\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Stratery Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-533\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" sizes=\"(max-width: 300px) 100vw, 300px\" srcset=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg 300w, https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-400x250.jpg 400w, https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2.jpg 626w\" alt=\"anxiety relief hypnosis program\" width=\"400\" height=\"250\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 13:17:37','2018-09-29 13:17:37','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1727,1,'2018-09-29 13:46:09','2018-09-29 13:46:09','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Anxiety-Program-Application-Form.doc\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Stratery Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 13:46:09','2018-09-29 13:46:09','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1724,1,'2018-09-29 13:43:11','2018-09-29 13:43:11','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Anxiety-Program-Application-Form.doc\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Stratery Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\nEnter your details below to recieve the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 13:43:11','2018-09-29 13:43:11','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1719,1,'2018-09-29 13:20:28','2018-09-29 13:20:28','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Anxiety-Program-Application-Form.doc\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Stratery Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you learn the techniques in the Anxiety Relief Hypnosis Program, you have a much great control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n\r\n<img class=\"aligncenter wp-image-533\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" sizes=\"(max-width: 300px) 100vw, 300px\" srcset=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg 300w, https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-400x250.jpg 400w, https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2.jpg 626w\" alt=\"anxiety relief hypnosis program\" width=\"400\" height=\"250\" />\r\n\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 13:20:28','2018-09-29 13:20:28','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1720,1,'2018-09-29 13:22:34','2018-09-29 13:22:34','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Anxiety-Program-Application-Form.doc\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Stratery Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n\r\n<img class=\"aligncenter wp-image-533\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" sizes=\"(max-width: 300px) 100vw, 300px\" srcset=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg 300w, https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-400x250.jpg 400w, https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2.jpg 626w\" alt=\"anxiety relief hypnosis program\" width=\"400\" height=\"250\" />\r\n\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 13:22:34','2018-09-29 13:22:34','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1723,1,'2018-09-29 13:42:18','2018-09-29 13:42:18','','Anxiety Relief Hypnosis Program','','inherit','open','closed','','anxiety-button','','','2018-09-29 13:42:47','2018-09-29 13:42:47','',68,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button.jpg',0,'attachment','image/jpeg',0),(1722,1,'2018-09-29 13:26:35','2018-09-29 13:26:35','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Anxiety-Program-Application-Form.doc\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Stratery Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n\r\n<img class=\"aligncenter wp-image-533\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" sizes=\"(max-width: 300px) 100vw, 300px\" srcset=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg 300w, https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-400x250.jpg 400w, https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2.jpg 626w\" alt=\"anxiety relief hypnosis program\" width=\"400\" height=\"250\" />\r\n\r\nEnter your details below to recieve the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 13:26:35','2018-09-29 13:26:35','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1721,1,'2018-09-29 13:25:31','2018-09-29 13:25:31','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Anxiety-Program-Application-Form.doc\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Stratery Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n\r\n<img class=\"aligncenter wp-image-533\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" sizes=\"(max-width: 300px) 100vw, 300px\" srcset=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg 300w, https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-400x250.jpg 400w, https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2.jpg 626w\" alt=\"anxiety relief hypnosis program\" width=\"400\" height=\"250\" />\r\n\r\nEnter your details below to recieve the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety\r\n</span></strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 13:25:31','2018-09-29 13:25:31','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0);
INSERT INTO `wpqj_posts` VALUES (1726,1,'2018-09-29 13:45:29','2018-09-29 13:45:29','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Anxiety-Program-Application-Form.doc\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Stratery Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 13:45:29','2018-09-29 13:45:29','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1725,1,'2018-09-29 13:44:46','2018-09-29 13:44:46','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Anxiety-Program-Application-Form.doc\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Stratery Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to </strong>recieve<strong> the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n<img class=\"alignleft wp-image-533 size-medium\" title=\"anxiety relief hypnosis program\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/Anxiety-Relief-2-300x187.jpg\" alt=\"anxiety relief hypnosis program\" width=\"300\" height=\"187\" />[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation</a>. Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 13:44:46','2018-09-29 13:44:46','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1728,1,'2018-09-29 13:49:37','2018-09-29 13:49:37','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Anxiety-Program-Application-Form.doc\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Stratery Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 13:49:37','2018-09-29 13:49:37','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1729,1,'2018-09-29 13:58:41','2018-09-29 13:58:41','','Anxiety10','','publish','closed','closed','','1729','','','2018-09-29 13:59:16','2018-09-29 13:59:16','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_coupon&#038;p=1729',0,'shop_coupon','',0),(1730,1,'2018-09-29 15:11:35','2018-09-29 15:11:35','','PHONE SESSION','','inherit','open','closed','','phone-session','','','2018-09-29 15:11:35','2018-09-29 15:11:35','',68,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION.png',0,'attachment','image/png',0),(1731,1,'2018-09-29 15:12:53','2018-09-29 15:12:53','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Anxiety-Program-Application-Form.doc\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 15:12:53','2018-09-29 15:12:53','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1732,1,'2018-09-29 15:14:07','2018-09-29 15:14:07','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Anxiety-Program-Application-Form.doc\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-09-29 15:14:07','2018-09-29 15:14:07','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1733,1,'2018-09-29 15:27:38','2018-09-29 15:27:38','<img class=\"alignleft size-medium wp-image-1292\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-1886402_1280-300x170.jpg\" alt=\"pain management workshop\" width=\"300\" height=\"170\" /><span style=\"color: #008000;\"><strong>Join us for The Pain Management Workshop.\r\n</strong></span>During this enjoyable workshop, you will learn some useful techniques to take control of your pain and learn to lower your pain levels.\r\n\r\n&nbsp;\r\n\r\nThe aim of this Pain Management Workshop is to teach you some wonderful skills for pain management.\r\nUsing the power of Self-Hypnosis and Emotion Freedom Technique, you can start to take control of your pain, emotions and feelings.\r\nWith a little practice of these techniques, you will quickly be able to reduce pain, anxiety and stress down to a comfortable level, feeling relaxed and in control.\r\n<h2><span style=\"color: #008000;\"><strong>The Pain Management Workshop</strong></span></h2>\r\nis part of the regular Wednesday Workshop, organised by <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a></strong> and held at <strong><a href=\"http://www.the-vault.org/\">The Vault</a></strong>, Wallsend on the 3rd of October.\r\n\r\nStarting at 7.30 pm, attendance is by advance booking only and just £8.50 per person to cover costs.\r\nSpaces are limited and strictly booked on a first come, first served basis.\r\nYou can book your place below while spaces are still available.\r\n<h2><em><span style=\"color: #008000;\"><strong>Workshop Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book For The Pain Management Workshop?</strong></span></h2>\r\n<em>To book your place</em> simply <em>click on the button below</em> and pay by card or PayPal.\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"9CP22Y2BPSETN\" />\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/pain-management-workshop-3rd-oct/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>\r\n\r\nWant To Learn About The Other Events?</strong></span></h2>\r\nComplete your details below and join the events newsletter.\r\nWe are GDPR compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nThe Wednesday workshops run on the 1st and 3rd Wednesday of each month from 7.30 to 9.30 and cover a different topic each time.\r\nFeel free to suggest a topic or something you would like a workshop to focus on.\r\nIf you could run a workshop please <strong>Contact Us</strong> and we can look to schedule that in, if suitable, in the future.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting We do not offer refunds.  Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions and Answers - The Pain Management Workshop.</strong></span></h2>\r\n<h2><strong>Where and when is this Pain Management Workshop?</strong></h2>\r\nThis event is part of the Wednesday Workshop at The Vault Creative Wellbeing Centre, Station Road, Wallsend, Newcastle upon Tyne.\r\nIt is held on the 3rd of October 2018, starting at 7.30pm until 9.30pm. £8.50 per person with booking only in advance.\r\nThis event is organised by Newcastle Hypnotherapy.\r\nOnce you have booked your place, an email will be sent with directions and useful information for the evening.\r\n<h2><strong>Will this help with Chronic Pain?</strong></h2>\r\nThe techniques we will use should help will all sorts of physical and emotional pain.\r\nIf you have a serious pain problem you can gain greater benefit with a private session to focus on your individual needs.\r\nCall Mark on Call 07568 455 809 for more information or we can discuss private sessions and programs at this event.\r\n<h2><strong>How successful is Hypnosis for Pain Management?</strong></h2>\r\nOur clients find Hypnosis and Self-hypnosis very effective with pain management and for all sorts of pain.\r\nDuring this workshop, we will use Self-hypnosis and EFT as successful techniques to control your pain.\r\n<h2><strong>Can I just turn up in the evening to attend?</strong></h2>\r\nAs we have limited spaces we ask everyone to book their place in advance.\r\nThis saves time and effort on the evening to focus on the topic. Therefore, you must book in advance if you wish to attend. If you have any questions that are not answered here, simply <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong></span>\r\n<h2><strong>Do you run private sessions for Pain Management?</strong></h2>\r\nYes we run a dedicated Pain Management Hypnosis Program for those wanting faster results with pain issues.\r\nYou can learn more about the <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-pain-management-program/\"><strong><span style=\"color: #008000;\">Pain Management Hypnosis Program here.</span></strong></a>\r\n<h2><strong>Join the Newcastle Hypnotherapy </strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group Here</strong></a></h2>\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> is a member of </strong><a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\"><strong>UK Guild Of Hypnosis Practitioners</strong></a></h2>\r\n<img class=\"alignleft size-medium wp-image-1096\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/33059915_10155862105114398_7132780766903140352_n-300x169.jpg\" alt=\"The Wednesday Workshop\" width=\"300\" height=\"169\" />\r\n\r\nThe Vault Creative Wellness Centre.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe map for Newcastle Hypnotherapy\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>','Pain, Stress, Anxiety Management Workshop - October 3rd','','inherit','closed','closed','','1291-revision-v1','','','2018-09-29 15:27:38','2018-09-29 15:27:38','',1291,'https://www.newcastle-hypnotherapy.com/1291-revision-v1/',0,'revision','',0),(1803,1,'2018-10-26 12:37:51','2018-10-26 12:37:51','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Simply complete the New Client Questionaire – <a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-26 12:37:51','2018-10-26 12:37:51','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1736,1,'2018-09-29 16:35:47','2018-09-29 16:35:47','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feedback by Steve</strong></span>\r\n</em></h2>\r\n<h2><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"\r\n\r\n</strong></em><span style=\"color: #008000;\"><strong>Getting</strong></span><strong><span style=\"color: #008000;\"> Started is as easy as 1 2 3</span></strong><em><strong>\r\n</strong></em></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the New Client Questionaire - <a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<em><strong> </strong></em>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.\r\n</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-29 16:35:47','2018-09-29 16:35:47','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1738,1,'2018-09-29 16:37:00','2018-09-29 16:37:00','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>Getting</strong></span><strong><span style=\"color: #008000;\"> Started is as easy as 1 2 3</span></strong><em><strong>\r\n</strong></em></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the New Client Questionaire - <a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<em><strong> </strong></em>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.\r\n</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-29 16:37:00','2018-09-29 16:37:00','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1737,1,'2018-09-29 16:36:39','2018-09-29 16:36:39','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Getting</strong></span><strong><span style=\"color: #008000;\"> Started is as easy as 1 2 3</span></strong><em><strong>\r\n</strong></em></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the New Client Questionaire - <a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<em><strong> </strong></em>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\nYes, we can help you with that.\r\n</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-29 16:36:39','2018-09-29 16:36:39','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1739,1,'2018-09-29 16:39:20','2018-09-29 16:39:20','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>Getting</strong></span><strong><span style=\"color: #008000;\"> Started is as easy as 1 2 3</span></strong><em><strong>\r\n</strong></em></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the New Client Questionaire - <a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<em><strong> </strong></em>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft size-thumbnail wp-image-1730\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n\r\n\r\n\r\nYes, we can help you with that.\r\n</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-29 16:39:20','2018-09-29 16:39:20','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1740,1,'2018-09-29 16:40:03','2018-09-29 16:40:03','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>Getting</strong></span><strong><span style=\"color: #008000;\"> Started is as easy as 1 2 3</span></strong><em><strong>\r\n</strong></em></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the New Client Questionaire - <a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<em><strong> </strong></em>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft size-thumbnail wp-image-1730\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\nYes, we can help you with that.\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-29 16:40:03','2018-09-29 16:40:03','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1741,1,'2018-09-29 16:40:27','2018-09-29 16:40:27','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>Getting</strong></span><strong><span style=\"color: #008000;\"> Started is as easy as 1 2 3</span></strong><em><strong>\r\n</strong></em></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the New Client Questionaire - <a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<em><strong> </strong></em>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\nYes, we can help you with that.\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-29 16:40:27','2018-09-29 16:40:27','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1742,1,'2018-09-29 16:41:02','2018-09-29 16:41:02','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>Getting</strong></span><strong><span style=\"color: #008000;\"> Started is as easy as 1 2 3</span></strong><em><strong>\r\n</strong></em></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the New Client Questionaire - <a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<em><strong> </strong></em>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, we can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-29 16:41:02','2018-09-29 16:41:02','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1743,1,'2018-09-29 16:43:19','2018-09-29 16:43:19','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>Getting</strong></span><strong><span style=\"color: #008000;\"> Started is as easy as 1 2 3</span></strong><em><strong>\r\n</strong></em></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the New Client Questionaire - <a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<em><strong> </strong></em>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <em><strong>Free Initial Consultation</strong></em> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply call us today to arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, we can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Your First Step?</strong></span></span></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong>\r\n</span></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>\r\nClient Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-29 16:43:19','2018-09-29 16:43:19','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1799,1,'2018-10-26 12:20:14','2018-10-26 12:20:14','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<em><strong> </strong></em>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, we can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Simply complete the New Client Questionaire – <a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-26 12:20:14','2018-10-26 12:20:14','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1802,1,'2018-10-26 12:34:05','2018-10-26 12:34:05','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></h2>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, we can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Simply complete the New Client Questionaire – <a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-26 12:34:05','2018-10-26 12:34:05','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1798,1,'2018-10-26 12:18:50','2018-10-26 12:18:50','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<em><strong> </strong></em>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, we can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Simply complete the New Client Questionaire – <a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-26 12:18:50','2018-10-26 12:18:50','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1744,1,'2018-09-29 16:53:24','2018-09-29 16:53:24','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>Getting</strong></span><strong><span style=\"color: #008000;\"> Started is as easy as 1 2 3</span></strong><em><strong>\r\n</strong></em></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the New Client Questionaire - <a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<em><strong> </strong></em>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, we can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Simply complete the New Client Questionaire – <a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-09-29 16:53:24','2018-09-29 16:53:24','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1758,1,'2018-10-06 18:04:46','2018-10-06 18:04:46','','ANXIETY FINGERS','','inherit','open','closed','','anxiety-fingers','','','2018-10-06 18:04:46','2018-10-06 18:04:46','',1665,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/ANXIETY-FINGERS.jpg',0,'attachment','image/jpeg',0),(1745,1,'2018-09-30 12:18:04','2018-09-30 12:18:04','<img class=\"size-medium wp-image-1672 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-w-logo-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" />\r\n\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy free consultation\" width=\"150\" height=\"150\" /><strong>Hi, my name is Mark &amp; I successfully help people with Anxiety, Stress and other issues.</strong>\r\nOur clients have been enjoying great results and lately, I have been working on some new techniques to really speed up the control and elimination of Anxiety problems.\r\n\r\nMy goal is to help thousands of people to take control of anxiety and stress, to do this in a faster way than before.\r\nI have suffered from anxiety and stress myself and I know how miserable anxiety can make your life.\r\n\r\n<strong>I am now looking for 10 people who would like to test drive this new program at cost price.\r\n</strong>In return, we are asking for an honest review of the benefits you experience as your anxiety reduces and how your life improves as you use the new program. This feedback will be used on our webiste and part of a new anxiety report\r\n\r\nYour details will, of course, remain confidential and the data will be used anonymously as part of a new anxiety report I am putting together.\r\n\r\n<strong>Interested?</strong>\r\nThe next step is to simply complete a short questionnaire. From this, we will pick 10 people to take part in the program.\r\n\r\nThe program is conducted online via 3 1 hour video sessions over 3 weeks with email &amp; phone support available between each session.\r\nYou can be anywhere in the UK to take part in the program if chose.\r\n\r\n<strong>Please note, we are only picking 10 people at this point.</strong>\r\n\r\nAs a thank you for your application, we will send you some anxiety help tips, techniques and videos by email shortly.\r\n\r\nSimply enter your details below and we will email you the application questionnaire now.\r\n\r\n[contact-form-7 id=\"1668\" title=\"New Anxiety Relief Program\"]','New Anxiety Program Testers Page','','inherit','closed','closed','','1665-revision-v1','','','2018-09-30 12:18:04','2018-09-30 12:18:04','',1665,'https://www.newcastle-hypnotherapy.com/1665-revision-v1/',0,'revision','',0),(1759,1,'2018-10-06 18:23:56','2018-10-06 18:23:56','<h2 style=\"text-align: center;\"><img class=\"aligncenter wp-image-1758 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/ANXIETY-FINGERS-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\r\n<span style=\"color: #008000;\"><strong>The New Anxiety Relief Program</strong></span></h2>\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy free consultation\" width=\"150\" height=\"150\" /><strong>Hi, my name is Mark &amp; I successfully help people with Anxiety, Stress and other issues.</strong>\r\nOur clients have been enjoying great results and lately, I have been working on some new techniques to really speed up the control and elimination of Anxiety problems.\r\n\r\nMy goal is to help thousands of people to take control of anxiety and stress, to do this in a faster way than before.\r\nI have suffered from anxiety and stress myself and I know how miserable anxiety can make your life.\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>20 Places At A Reduced Price</strong></span></h2>\r\n<p style=\"text-align: left;\">As part of our <strong>Anxiety Awareness </strong>Month, we are offering <strong>20 people the chance to test drive The New Anxiety Relief Program at cost price.</strong>\r\nIn return, we simply ask you to supply us with honest feedback on the benefits you have experienced, to be used on our websites and for a new anxiety report. Your details will, of course, remain confidential and the data will be used anonymously as part of a new anxiety report I am putting together.</p>\r\n\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\">Are You Serious About Conquering Your Anxiety? </span></h2>\r\nThe program is conducted online via 3 1 hour video sessions over 3 weeks with email &amp; phone support available between each session.\r\nYou will be supplied with a personalised audio track &amp; exercises to work with between your sessions.\r\nYou can be anywhere in the UK to take part in the program if chosen.\r\nAll you need is a PC or smartphone with a quiet space for each session.\r\n\r\n<strong>The total cost to you</strong> <strong>is just £79 for the 3 sessions</strong> rather than our current of £237.00 for this program.\r\n\r\n<strong>Please note, we are only picking 20 people at this point.</strong>\r\n\r\nAs a thank you for your application, we will send you some anxiety help tips, techniques and videos by email shortly.\r\n\r\nSimply enter your details below and we will email you the application questionnaire now.\r\n\r\n[contact-form-7 id=\"1668\" title=\"New Anxiety Relief Program\"]','New Anxiety Program Testers Page','','inherit','closed','closed','','1665-revision-v1','','','2018-10-06 18:23:56','2018-10-06 18:23:56','',1665,'https://www.newcastle-hypnotherapy.com/1665-revision-v1/',0,'revision','',0),(1760,1,'2018-10-06 18:24:25','2018-10-06 18:24:25','<h2 style=\"text-align: center;\"><img class=\"aligncenter wp-image-1758 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/ANXIETY-FINGERS-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\r\n<span style=\"color: #008000;\"><strong>The New Anxiety Relief Program</strong></span></h2>\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy free consultation\" width=\"150\" height=\"150\" /><strong>Hi, my name is Mark &amp; I successfully help people with Anxiety, Stress and other issues.</strong>\r\nOur clients have been enjoying great results and lately, I have been working on some new techniques to really speed up the control and elimination of Anxiety problems.\r\n\r\nMy goal is to help thousands of people to take control of anxiety and stress, to do this in a faster way than before.\r\nI have suffered from anxiety and stress myself and I know how miserable anxiety can make your life.\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>20 Places At A Reduced Price</strong></span></h2>\r\n<p style=\"text-align: left;\">As part of our <strong>Anxiety Awareness </strong>Month, we are offering <strong>20 people the chance to test drive The New Anxiety Relief Program at cost price.</strong>\r\nIn return, we simply ask you to supply us with honest feedback on the benefits you have experienced, to be used on our websites and for a new anxiety report. Your details will, of course, remain confidential and the data will be used anonymously as part of a new anxiety report I am putting together.</p>\r\n\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\">Are You Serious About Conquering Your Anxiety? </span></h2>\r\nThe program is conducted online via 3 1 hour video sessions over 3 weeks with email &amp; phone support available between each session.\r\nYou will be supplied with a personalised audio track &amp; exercises to work with between your sessions.\r\nYou can be anywhere in the UK to take part in the program if chosen.\r\nAll you need is a PC or smartphone with a quiet space for each session.\r\n\r\n<strong>The total cost to you</strong> <strong>is just £79 for the 3 sessions</strong> rather than our current of £237.00 for this program.\r\n\r\n<strong>Please note, we are only picking 20 people at this point.</strong>\r\n\r\nAs a thank you for your application, we will send you some anxiety help tips, techniques and videos by email shortly.\r\n\r\nSimply enter your details below and we will email you the application questionnaire now.\r\n\r\n[contact-form-7 id=\"1668\" title=\"New Anxiety Relief Program\"]','New Anxiety Program','','inherit','closed','closed','','1665-revision-v1','','','2018-10-06 18:24:25','2018-10-06 18:24:25','',1665,'https://www.newcastle-hypnotherapy.com/1665-revision-v1/',0,'revision','',0),(1761,1,'2018-10-06 18:26:33','2018-10-06 18:26:33','<h2 style=\"text-align: center;\"><img class=\"aligncenter wp-image-1758 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/ANXIETY-FINGERS-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\r\n<span style=\"color: #008000;\"><strong>The New Anxiety Relief Program</strong></span></h2>\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy free consultation\" width=\"150\" height=\"150\" /><strong>Hi, my name is Mark &amp; I successfully help people with Anxiety, Stress and other issues.</strong>\r\nOur clients have been enjoying great results and lately, I have been working on some new techniques to really speed up the control and elimination of Anxiety problems.\r\n\r\nMy goal is to help thousands of people to take control of anxiety and stress, to do this in a faster way than before.\r\nI have suffered from anxiety and stress myself and I know how miserable anxiety can make your life.\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>20 Places At A Reduced Price</strong></span></h2>\r\n<p style=\"text-align: left;\">As part of our <strong>Anxiety Awareness </strong>Month, we are offering <strong>20 people the chance to test drive The New Anxiety Relief Program at cost price.</strong>\r\nIn return, we simply ask you to supply us with honest feedback on the benefits you have experienced, to be used on our websites and for a new anxiety report. Your details will, of course, remain confidential and the data will be used anonymously as part of a new anxiety report I am putting together.</p>\r\n\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\">Are You Serious About Conquering Your Anxiety? </span></h2>\r\nThe program is conducted online via 3 1 hour video sessions over 3 weeks with email &amp; phone support available between each session.\r\nYou will be supplied with a personalised audio track &amp; exercises to work with between your sessions.\r\nYou can be anywhere in the UK to take part in the program if chosen.\r\nAll you need is a PC or smartphone with a quiet space for each session.\r\n\r\n<strong>The total cost to you</strong> <strong>is just £79 for the 3 sessions</strong> rather than our current of £237.00 for this program.\r\n\r\n<strong>Please note, we are only picking 20 people at this point from those that complete the form below.\r\n</strong>\r\n\r\nAs a thank you for your application, we will send you some anxiety help tips, techniques and videos by email shortly.\r\n\r\nSimply enter your details below and we will email you the application questionnaire now.\r\n\r\n[contact-form-7 id=\"1668\" title=\"New Anxiety Relief Program\"]','New Anxiety Program','','inherit','closed','closed','','1665-revision-v1','','','2018-10-06 18:26:33','2018-10-06 18:26:33','',1665,'https://www.newcastle-hypnotherapy.com/1665-revision-v1/',0,'revision','',0),(1762,1,'2018-10-06 18:27:21','2018-10-06 18:27:21','<h2 style=\"text-align: center;\"><img class=\"aligncenter wp-image-1758 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/ANXIETY-FINGERS-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\r\n<span style=\"color: #008000;\"><strong>The New Anxiety Relief Program</strong></span></h2>\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy free consultation\" width=\"150\" height=\"150\" /><strong>Hi, my name is Mark &amp; I successfully help people with Anxiety, Stress and other issues.</strong>\r\nOur clients have been enjoying great results and lately, I have been working on some new techniques to really speed up the control and elimination of Anxiety problems.\r\n\r\nMy goal is to help thousands of people to take control of anxiety and stress, to do this in a faster way than before.\r\nI have suffered from anxiety and stress myself and I know how miserable anxiety can make your life.\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>20 Places At A Reduced Price</strong></span></h2>\r\n<p style=\"text-align: left;\">As part of our <strong>Anxiety Awareness </strong>Month, we are offering <strong>20 people the chance to test drive The New Anxiety Relief Program at cost price.</strong>\r\nIn return, we simply ask you to supply us with honest feedback on the benefits you have experienced, to be used on our websites and for a new anxiety report. Your details will, of course, remain confidential and the data will be used anonymously as part of a new anxiety report I am putting together.</p>\r\n\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\">Are You Serious About Conquering Your Anxiety? </span></h2>\r\nThe program is conducted online via 3 1 hour video sessions over 3 weeks with email &amp; phone support available between each session.\r\nYou will be supplied with a personalised audio track &amp; exercises to work with between your sessions.\r\nYou can be anywhere in the UK to take part in the program if chosen.\r\nAll you need is a PC or smartphone with a quiet space for each session.\r\n\r\n<strong>The total cost to you</strong> <strong>is just £79 for the 3 sessions</strong> rather than our current of £237.00 for this program.\r\n\r\n<strong>Please note, we are only picking 20 people at this point from those that complete the form below.\r\n</strong>\r\n\r\nAs a thank you for your application, we will send you some anxiety help tips, techniques and videos by email shortly.\r\n\r\nSimply enter your details below and we will email you the application questionnaire now.\r\n\r\n<strong>[contact-form-7 id=\"1668\" title=\"New Anxiety Relief Program\"]</strong>','New Anxiety Program','','inherit','closed','closed','','1665-revision-v1','','','2018-10-06 18:27:21','2018-10-06 18:27:21','',1665,'https://www.newcastle-hypnotherapy.com/1665-revision-v1/',0,'revision','',0),(1763,1,'2018-10-06 18:27:42','2018-10-06 18:27:42','<h2 style=\"text-align: center;\"><img class=\"aligncenter wp-image-1758 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/ANXIETY-FINGERS-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\r\n<span style=\"color: #008000;\"><strong>The New Anxiety Relief Program</strong></span></h2>\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy free consultation\" width=\"150\" height=\"150\" /><strong>Hi, my name is Mark &amp; I successfully help people with Anxiety, Stress and other issues.</strong>\r\nOur clients have been enjoying great results and lately, I have been working on some new techniques to really speed up the control and elimination of Anxiety problems.\r\n\r\nMy goal is to help thousands of people to take control of anxiety and stress, to do this in a faster way than before.\r\nI have suffered from anxiety and stress myself and I know how miserable anxiety can make your life.\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>20 Places At A Reduced Price</strong></span></h2>\r\n<p style=\"text-align: left;\">As part of our <strong>Anxiety Awareness </strong>Month, we are offering <strong>20 people the chance to test drive The New Anxiety Relief Program at cost price.</strong>\r\nIn return, we simply ask you to supply us with honest feedback on the benefits you have experienced, to be used on our websites and for a new anxiety report. Your details will, of course, remain confidential and the data will be used anonymously as part of a new anxiety report I am putting together.</p>\r\n\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\">Are You Serious About Conquering Your Anxiety? </span></h2>\r\nThe program is conducted online via 3 1 hour video sessions over 3 weeks with email &amp; phone support available between each session.\r\nYou will be supplied with a personalised audio track &amp; exercises to work with between your sessions.\r\nYou can be anywhere in the UK to take part in the program if chosen.\r\nAll you need is a PC or smartphone with a quiet space for each session.\r\n\r\n<strong>The total cost to you</strong> <strong>is just £79 for the 3 sessions</strong> rather than our current of £237.00 for this program.\r\n\r\n<strong>Please note, we are only picking 20 people at this point from those that complete the form below.\r\n</strong>\r\n\r\nAs a thank you for your application, we will send you some anxiety help tips, techniques and videos by email shortly.\r\n\r\n<strong>Simply enter your details below and we will email you the application questionnaire now.</strong>\r\n\r\n<strong>[contact-form-7 id=\"1668\" title=\"New Anxiety Relief Program\"]</strong>','New Anxiety Program','','inherit','closed','closed','','1665-revision-v1','','','2018-10-06 18:27:42','2018-10-06 18:27:42','',1665,'https://www.newcastle-hypnotherapy.com/1665-revision-v1/',0,'revision','',0),(1764,1,'2018-10-06 18:29:30','2018-10-06 18:29:30','<h2 style=\"text-align: center;\"><img class=\"aligncenter wp-image-1758 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/ANXIETY-FINGERS-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\r\n<span style=\"color: #008000;\"><strong>The New Anxiety Relief Program</strong></span></h2>\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy free consultation\" width=\"150\" height=\"150\" /><strong>Hi, my name is Mark &amp; I successfully help people with Anxiety, Stress and other issues.</strong>\r\nOur clients have been enjoying great results and lately, I have been working on some new techniques to really speed up the control and elimination of Anxiety problems.\r\n\r\nMy goal is to help thousands of people to take control of anxiety and stress, to do this in a faster way than before.\r\nI have suffered from anxiety and stress myself and I know how miserable anxiety can make your life.\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>20 Places At A Reduced Price</strong></span></h2>\r\n<p style=\"text-align: left;\">As part of our <strong>Anxiety Awareness </strong>Month, we are offering <strong>20 people the chance to test drive The New Anxiety Relief Program at cost price.</strong>\r\nIn return, we simply ask you to supply us with honest feedback on the benefits you have experienced, to be used on our websites and for a new anxiety report. Your details will, of course, remain confidential and the data will be used anonymously as part of a new anxiety report I am putting together.\r\n\r\n<span style=\"color: #008000;\"><strong>Anxiety Relief Program - Client Feedback by Steve </strong></span><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></p>\r\n\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\">Are You Serious About Conquering Your Anxiety? </span></h2>\r\nThe program is conducted online via 3 1 hour video sessions over 3 weeks with email &amp; phone support available between each session.\r\nYou will be supplied with a personalised audio track &amp; exercises to work with between your sessions.\r\nYou can be anywhere in the UK to take part in the program if chosen.\r\nAll you need is a PC or smartphone with a quiet space for each session.\r\n\r\n<strong>The total cost to you</strong> <strong>is just £79 for the 3 sessions</strong> rather than our current of £237.00 for this program.\r\n\r\n<strong>Please note, we are only picking 20 people at this point from those that complete the form below.\r\n</strong>\r\n\r\nAs a thank you for your application, we will send you some anxiety help tips, techniques and videos by email shortly.\r\n\r\n<strong>Simply enter your details below and we will email you the application questionnaire now.</strong>\r\n\r\n<strong>[contact-form-7 id=\"1668\" title=\"New Anxiety Relief Program\"]</strong>','New Anxiety Program','','inherit','closed','closed','','1665-revision-v1','','','2018-10-06 18:29:30','2018-10-06 18:29:30','',1665,'https://www.newcastle-hypnotherapy.com/1665-revision-v1/',0,'revision','',0),(1765,1,'2018-10-06 18:29:54','2018-10-06 18:29:54','<h2 style=\"text-align: center;\"><img class=\"aligncenter wp-image-1758 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/ANXIETY-FINGERS-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\r\n<span style=\"color: #008000;\"><strong>The New Anxiety Relief Program</strong></span></h2>\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy free consultation\" width=\"150\" height=\"150\" /><strong>Hi, my name is Mark &amp; I successfully help people with Anxiety, Stress and other issues.</strong>\r\nOur clients have been enjoying great results and lately, I have been working on some new techniques to really speed up the control and elimination of Anxiety problems.\r\n\r\nMy goal is to help thousands of people to take control of anxiety and stress, to do this in a faster way than before.\r\nI have suffered from anxiety and stress myself and I know how miserable anxiety can make your life.\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>20 Places At A Reduced Price</strong></span></h2>\r\n<p style=\"text-align: left;\">As part of our <strong>Anxiety Awareness Month</strong>, we are offering <strong>20 people the chance to test drive The New Anxiety Relief Program at cost price.</strong>\r\nIn return, we simply ask you to supply us with honest feedback on the benefits you have experienced, to be used on our websites and for a new anxiety report. Your details will, of course, remain confidential and the data will be used anonymously as part of a new anxiety report I am putting together.</p>\r\n<span style=\"color: #008000;\"><strong>Anxiety Relief Program - Client Feedback by Steve </strong></span><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\">Are You Serious About Conquering Your Anxiety? </span></h2>\r\nThe program is conducted online via 3 1 hour video sessions over 3 weeks with email &amp; phone support available between each session.\r\nYou will be supplied with a personalised audio track &amp; exercises to work with between your sessions.\r\nYou can be anywhere in the UK to take part in the program if chosen.\r\nAll you need is a PC or smartphone with a quiet space for each session.\r\n\r\n<strong>The total cost to you</strong> <strong>is just £79 for the 3 sessions</strong> rather than our current of £237.00 for this program.\r\n\r\n<strong>Please note, we are only picking 20 people at this point from those that complete the form below.\r\n</strong>\r\n\r\nAs a thank you for your application, we will send you some anxiety help tips, techniques and videos by email shortly.\r\n\r\n<strong>Simply enter your details below and we will email you the application questionnaire now.</strong>\r\n\r\n<strong>[contact-form-7 id=\"1668\" title=\"New Anxiety Relief Program\"]</strong>','New Anxiety Program','','inherit','closed','closed','','1665-revision-v1','','','2018-10-06 18:29:54','2018-10-06 18:29:54','',1665,'https://www.newcastle-hypnotherapy.com/1665-revision-v1/',0,'revision','',0),(1766,1,'2018-10-06 18:30:30','2018-10-06 18:30:30','<h2 style=\"text-align: center;\"><img class=\"aligncenter wp-image-1758 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/ANXIETY-FINGERS-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\r\n<span style=\"color: #008000;\"><strong>The New Anxiety Relief Program</strong></span></h2>\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy free consultation\" width=\"150\" height=\"150\" /><strong>Hi, my name is Mark &amp; I successfully help people with Anxiety, Stress and other issues.</strong>\r\nOur clients have been enjoying great results and lately, I have been working on some new techniques to really speed up the control and elimination of Anxiety problems.\r\n\r\nMy goal is to help thousands of people to take control of anxiety and stress, to do this in a faster way than before.\r\nI have suffered from anxiety and stress myself and I know how miserable anxiety can make your life.\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>20 Places At A Reduced Price</strong></span></h2>\r\n<p style=\"text-align: left;\">As part of our <strong>Anxiety Awareness Month</strong>, we are offering <strong>20 people the chance to test drive The New Anxiety Relief Program at cost price.</strong>\r\nIn return, we simply ask you to supply us with honest feedback on the benefits you have experienced, to be used on our websites and for a new anxiety report. Your details will, of course, remain confidential and the data will be used anonymously as part of a new anxiety report I am putting together.</p>\r\n<span style=\"color: #008000;\"><strong>Anxiety Relief Program - Client Feedback by Steve </strong></span><strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></strong>\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\">Are You Serious About Conquering Your Anxiety? </span></h2>\r\nThe program is conducted online via 3 1 hour video sessions over 3 weeks with email &amp; phone support available between each session.\r\nYou will be supplied with a personalised audio track &amp; exercises to work with between your sessions.\r\nYou can be anywhere in the UK to take part in the program if chosen.\r\nAll you need is a PC or smartphone with a quiet space for each session.\r\n\r\n<strong>The total cost to you</strong> <strong>is just £79 for the 3 sessions</strong> rather than our current of £237.00 for this program.\r\n\r\n<strong>Please note, we are only picking 20 people at this point from those that complete the form below.\r\n</strong>\r\n\r\nAs a thank you for your application, we will send you some anxiety help tips, techniques and videos by email shortly.\r\n\r\n<strong>Simply enter your details below and we will email you the application questionnaire now.</strong>\r\n\r\n<strong>[contact-form-7 id=\"1668\" title=\"New Anxiety Relief Program\"]</strong>','New Anxiety Program','','inherit','closed','closed','','1665-revision-v1','','','2018-10-06 18:30:30','2018-10-06 18:30:30','',1665,'https://www.newcastle-hypnotherapy.com/1665-revision-v1/',0,'revision','',0),(1767,1,'2018-10-06 18:31:42','2018-10-06 18:31:42','<h2 style=\"text-align: center;\"><img class=\"aligncenter wp-image-1758 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/ANXIETY-FINGERS-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\r\n<span style=\"color: #008000;\"><strong>The New Anxiety Relief Program</strong></span></h2>\r\n<img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy free consultation\" width=\"150\" height=\"150\" /><strong>Hi, my name is Mark &amp; I successfully help people with Anxiety, Stress and other issues.</strong>\r\nOur clients have been enjoying great results and lately, I have been working on some new techniques to really speed up the control and elimination of Anxiety problems.\r\n\r\nMy goal is to help thousands of people to take control of anxiety and stress, to do this in a faster way than before.\r\nI have suffered from anxiety and stress myself and I know how miserable anxiety can make your life.\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>20 Places At A Reduced Price</strong></span></h2>\r\n<p style=\"text-align: left;\">As part of our <strong>Anxiety Awareness Month</strong>, we are offering <strong>20 people the chance to test drive The New Anxiety Relief Program at cost price.</strong>\r\nIn return, we simply ask you to supply us with honest feedback on the benefits you have experienced, to be used on our websites and for a new anxiety report. Your details will, of course, remain confidential and the data will be used anonymously as part of a new anxiety report I am putting together.</p>\r\n<span style=\"color: #008000;\"><strong>Anxiety Relief Program - Client Feedback by Steve </strong></span><strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></strong>\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\">Are You Serious About Conquering Your Anxiety? </span></h2>\r\nThe program is conducted online via 3, 1 hour video sessions over 3 weeks with email &amp; phone support available between each session.\r\nYou will be supplied with a personalised audio track &amp; exercises to work with between your sessions.\r\nYou can be anywhere in the UK to take part in the program if chosen.\r\nAll you need is a PC or smartphone with a quiet space for each session.\r\n\r\n<strong>The total cost to you</strong> <strong>is just £79 for the 3 sessions</strong> rather than our current of £237.00 for this program.\r\n\r\n<strong>Please note, we are only picking 20 people at this point from those that complete the form below.\r\n</strong>\r\n\r\nAs a thank you for your application, we will send you some anxiety help tips, techniques and videos by email shortly.\r\n\r\n<strong>Simply enter your details below and we will email you the application questionnaire now.</strong>\r\n\r\n<strong>[contact-form-7 id=\"1668\" title=\"New Anxiety Relief Program\"]</strong>','New Anxiety Program','','inherit','closed','closed','','1665-revision-v1','','','2018-10-06 18:31:42','2018-10-06 18:31:42','',1665,'https://www.newcastle-hypnotherapy.com/1665-revision-v1/',0,'revision','',0),(1770,1,'2018-10-11 10:52:04','2018-10-11 10:52:04','<img class=\"alignleft wp-image-1771\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"Edgar Cayce Talk by Sandra Michelson\" width=\"300\" height=\"402\" />\r\n\r\n<strong>Update!</strong>\r\nThanks to everyone who came along to this wonderful talk about Edgar Cayce and special thanks to Sandra &amp; Gary who gave such as great talk and discussion.\r\nWe did manage to record this talk and it now available to listen to again.\r\nSimply click below.\r\n\r\n<span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/edgar-cayce-american-psychic-clairvoyant-talk/\">Edgar Cayce American Psychic Talk</a></strong></span>\r\n\r\n\r\nWe have something very special for you all on the 7th of November.\r\n\r\n<strong>Edgar Cayce Talk by Sandra Michelson\r\n</strong>\r\n\r\nSandra Michelson is coming to share her knowledge of Edgar Cayce, with a fascinating talk and discussion.\r\n\r\nTaken from Wikipedia - \"Edgar Cayce (/ˈkeɪsiː/; March 18, 1877 – January 3, 1945) was an American clairvoyant who answered questions on subjects as varied as healing, reincarnation, wars, Atlantis, and future events while claiming to be in a trance. A biographer gave him the nickname, The Sleeping Prophet. A nonprofit organization, the Association for Research and Enlightenment, was founded to facilitate the study of Cayce\'s work.\r\nSome consider him the true founder and a principal source of the most characteristic beliefs of the New Age movement. Cayce is also notable for his contributions to the notions of diet and health, particularly the issues of food combining, acid/alkaline diet, and the therapeutic use of food.\"\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce Talk by Sandra Michelson</strong></span></h2>\r\nThis Wednesday Workshop is taking place @ The Vault, Wallsend. 7th November 7.30 pm to 9.30pm.\r\nWe are expecting this to be a very busy event and you do need to book your place in advance.\r\n\r\n<strong>If you would like to learn more about future events please join the newsletter below</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;','Edgar Cayce Talk & Discussion by Sandra Michelson - 7th Nov','','publish','open','open','','edgar-cayce-talk-by-sandra-michelson','','','2018-11-08 22:30:29','2018-11-08 22:30:29','',0,'https://www.newcastle-hypnotherapy.com/?page_id=1770',0,'page','',0),(1771,1,'2018-10-11 10:26:02','2018-10-11 10:26:02','','Edgar Cayce American Psychic & Clairvoyant Talk','','inherit','open','closed','','cayce_1910','','','2018-11-08 21:28:04','2018-11-08 21:28:04','',1770,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg',0,'attachment','image/jpeg',0),(1772,1,'2018-10-11 10:37:35','2018-10-11 10:37:35','<img class=\"alignleft wp-image-1771 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"\" width=\"200\" height=\"268\" />\r\n\r\nWe have something very special for you all on the 7th of November.\r\n\r\n<strong>Edgar Cayce Talk &amp; Discussion</strong>\r\n\r\nSandra Michelson is coming to share her knowledge of Edgar Cayce, with a fascinating talk and discussion.\r\n\r\nTaken from Wikipedia - \"Edgar Cayce (/ˈkeɪsiː/; March 18, 1877 – January 3, 1945) was an American clairvoyant who answered questions on subjects as varied as healing, reincarnation, wars, Atlantis, and future events while claiming to be in a trance. A biographer gave him the nickname, The Sleeping Prophet. A nonprofit organization, the Association for Research and Enlightenment, was founded to facilitate the study of Cayce\'s work.\r\n\r\nSome consider him the true founder and a principal source of the most characteristic beliefs of the New Age movement. Cayce is also notable for his contributions to the notions of diet and health, particularly the issues of food combining, acid/alkaline diet, and the therapeutic use of food.\"\r\n\r\nThis Wednesday Workshop is taking place @ The Vault, Wallsend. 7th November 7.30 pm to 9.30pm.\r\nWe are expecting this to be a very busy event and you do need to book your place in advance.\r\n\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Edgar Cayce Talk & Discussion by Sandra Michelson - 7th Nov','','inherit','closed','closed','','1770-revision-v1','','','2018-10-11 10:37:35','2018-10-11 10:37:35','',1770,'https://www.newcastle-hypnotherapy.com/1770-revision-v1/',0,'revision','',0),(2136,1,'2018-12-09 15:31:32','2018-12-09 15:31:32','<strong>Past Life Regression Hypnosis Sessions\r\n</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\n<strong>Past Life Regression Hypnosis is fascinating and we run sessions in different ways to suit different needs.</strong>\r\n<ul>\r\n 	<li><strong>Group sessions during <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop</a></strong></li>\r\n 	<li><strong>Individual sessions</strong></li>\r\n 	<li><strong>Private group sessions.</strong></li>\r\n</ul>\r\n<strong>We use Past Life Regression for both therapy purposes or just for your curiosity.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.\r\n</strong>\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<h2><span style=\"color: #008000;\"><strong>Laura - Past Life Regression Hypnosis Session</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2>Dec 2018 The Wednesday Workshop @ The Vault</h2>\r\n<h2><span style=\"color: #008000;\">Eileen</span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/Xv67oDBxrK8?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Morgan</strong></span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/j864XFS5pLQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></h2>\r\n&nbsp;\r\n\r\nYou can learn more about our regular Wednesday Workshops and other events by Newcastle Hypnotherapy by simply joining the newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','Past Life Regression Hypnosis Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-09 15:31:32','2018-12-09 15:31:32','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(1774,1,'2018-10-11 10:52:04','2018-10-11 10:52:04','<img class=\"alignleft wp-image-1771 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"\" width=\"200\" height=\"268\" />\r\n\r\nWe have something very special for you all on the 7th of November.\r\n\r\n<strong>Edgar Cayce Talk &amp; Discussion</strong>\r\n\r\nSandra Michelson is coming to share her knowledge of Edgar Cayce, with a fascinating talk and discussion.\r\n\r\nTaken from Wikipedia - \"Edgar Cayce (/ˈkeɪsiː/; March 18, 1877 – January 3, 1945) was an American clairvoyant who answered questions on subjects as varied as healing, reincarnation, wars, Atlantis, and future events while claiming to be in a trance. A biographer gave him the nickname, The Sleeping Prophet. A nonprofit organization, the Association for Research and Enlightenment, was founded to facilitate the study of Cayce\'s work.\r\n\r\nSome consider him the true founder and a principal source of the most characteristic beliefs of the New Age movement. Cayce is also notable for his contributions to the notions of diet and health, particularly the issues of food combining, acid/alkaline diet, and the therapeutic use of food.\"\r\n\r\nThis Wednesday Workshop is taking place @ The Vault, Wallsend. 7th November 7.30 pm to 9.30pm.\r\nWe are expecting this to be a very busy event and you do need to book your place in advance.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/edgar-cayce-talk-discussion-7th-november/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;','Edgar Cayce Talk & Discussion by Sandra Michelson - 7th Nov','','inherit','closed','closed','','1770-revision-v1','','','2018-10-11 10:52:04','2018-10-11 10:52:04','',1770,'https://www.newcastle-hypnotherapy.com/1770-revision-v1/',0,'revision','',0),(1775,1,'2018-11-08 22:30:43','2018-11-08 22:30:43','<img class=\"alignleft wp-image-1771\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"Edgar Cayce Talk by Sandra Michelson\" width=\"300\" height=\"402\" />\r\n\r\n<strong>Update!</strong>\r\nThanks to everyone who came along to this wonderful talk about Edgar Cayce and special thanks to Sandra &amp; Gary who gave such as great talk and discussion.\r\nWe did manage to record this talk and it now available to listen to again.\r\nSimply click below.\r\n\r\n<span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/edgar-cayce-american-psychic-clairvoyant-talk/\">Edgar Cayce American Psychic Talk</a></strong></span>\r\n\r\nWe have something very special for you all on the 7th of November.\r\n\r\n<strong>Edgar Cayce Talk by Sandra Michelson\r\n</strong>\r\n\r\nSandra Michelson is coming to share her knowledge of Edgar Cayce, with a fascinating talk and discussion.\r\n\r\nTaken from Wikipedia - \"Edgar Cayce (/ˈkeɪsiː/; March 18, 1877 – January 3, 1945) was an American clairvoyant who answered questions on subjects as varied as healing, reincarnation, wars, Atlantis, and future events while claiming to be in a trance. A biographer gave him the nickname, The Sleeping Prophet. A nonprofit organization, the Association for Research and Enlightenment, was founded to facilitate the study of Cayce\'s work.\r\nSome consider him the true founder and a principal source of the most characteristic beliefs of the New Age movement. Cayce is also notable for his contributions to the notions of diet and health, particularly the issues of food combining, acid/alkaline diet, and the therapeutic use of food.\"\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce Talk by Sandra Michelson</strong></span></h2>\r\nThis Wednesday Workshop is taking place @ The Vault, Wallsend. 7th November 7.30 pm to 9.30pm.\r\nWe are expecting this to be a very busy event and you do need to book your place in advance.\r\n\r\n<strong>If you would like to learn more about future events please join the newsletter below</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;','Edgar Cayce Talk & Discussion by Sandra Michelson - 7th Nov','','inherit','closed','closed','','1770-autosave-v1','','','2018-11-08 22:30:43','2018-11-08 22:30:43','',1770,'https://www.newcastle-hypnotherapy.com/1770-autosave-v1/',0,'revision','',0),(1776,1,'2018-10-11 10:55:55','2018-10-11 10:55:55','<img class=\"alignleft wp-image-1771 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"\" width=\"200\" height=\"268\" />\r\n\r\nWe have something very special for you all on the 7th of November.\r\n\r\n<strong>Edgar Cayce Talk &amp; Discussion</strong>\r\n\r\nSandra Michelson is coming to share her knowledge of Edgar Cayce, with a fascinating talk and discussion.\r\n\r\nTaken from Wikipedia - \"Edgar Cayce (/ˈkeɪsiː/; March 18, 1877 – January 3, 1945) was an American clairvoyant who answered questions on subjects as varied as healing, reincarnation, wars, Atlantis, and future events while claiming to be in a trance. A biographer gave him the nickname, The Sleeping Prophet. A nonprofit organization, the Association for Research and Enlightenment, was founded to facilitate the study of Cayce\'s work.\r\nSome consider him the true founder and a principal source of the most characteristic beliefs of the New Age movement. Cayce is also notable for his contributions to the notions of diet and health, particularly the issues of food combining, acid/alkaline diet, and the therapeutic use of food.\"\r\n\r\nThis Wednesday Workshop is taking place @ The Vault, Wallsend. 7th November 7.30 pm to 9.30pm.\r\nWe are expecting this to be a very busy event and you do need to book your place in advance.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/edgar-cayce-talk-discussion-7th-november/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nIf you would like to learn more about future events please join the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;','Edgar Cayce Talk & Discussion by Sandra Michelson - 7th Nov','','inherit','closed','closed','','1770-revision-v1','','','2018-10-11 10:55:55','2018-10-11 10:55:55','',1770,'https://www.newcastle-hypnotherapy.com/1770-revision-v1/',0,'revision','',0),(1777,1,'2018-10-11 11:01:33','2018-10-11 11:01:33','<img class=\"alignleft wp-image-1771 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"\" width=\"200\" height=\"268\" />\r\n\r\nWe have something very special for you all on the 7th of November.\r\n\r\n<strong>Edgar Cayce Talk by Sandra Michelson\r\n</strong>\r\n\r\nSandra Michelson is coming to share her knowledge of Edgar Cayce, with a fascinating talk and discussion.\r\n\r\nTaken from Wikipedia - \"Edgar Cayce (/ˈkeɪsiː/; March 18, 1877 – January 3, 1945) was an American clairvoyant who answered questions on subjects as varied as healing, reincarnation, wars, Atlantis, and future events while claiming to be in a trance. A biographer gave him the nickname, The Sleeping Prophet. A nonprofit organization, the Association for Research and Enlightenment, was founded to facilitate the study of Cayce\'s work.\r\nSome consider him the true founder and a principal source of the most characteristic beliefs of the New Age movement. Cayce is also notable for his contributions to the notions of diet and health, particularly the issues of food combining, acid/alkaline diet, and the therapeutic use of food.\"\r\n\r\nThis Wednesday Workshop is taking place @ The Vault, Wallsend. 7th November 7.30 pm to 9.30pm.\r\nWe are expecting this to be a very busy event and you do need to book your place in advance.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/edgar-cayce-talk-discussion-7th-november/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nIf you would like to learn more about future events please join the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;','Edgar Cayce Talk & Discussion by Sandra Michelson - 7th Nov','','inherit','closed','closed','','1770-revision-v1','','','2018-10-11 11:01:33','2018-10-11 11:01:33','',1770,'https://www.newcastle-hypnotherapy.com/1770-revision-v1/',0,'revision','',0),(1778,1,'2018-10-11 11:02:50','2018-10-11 11:02:50','<img class=\"alignleft wp-image-1771 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"\" width=\"200\" height=\"268\" />\r\n\r\nWe have something very special for you all on the 7th of November.\r\n\r\n<strong>Edgar Cayce Talk by Sandra Michelson\r\n</strong>\r\n\r\nSandra Michelson is coming to share her knowledge of Edgar Cayce, with a fascinating talk and discussion.\r\n\r\nTaken from Wikipedia - \"Edgar Cayce (/ˈkeɪsiː/; March 18, 1877 – January 3, 1945) was an American clairvoyant who answered questions on subjects as varied as healing, reincarnation, wars, Atlantis, and future events while claiming to be in a trance. A biographer gave him the nickname, The Sleeping Prophet. A nonprofit organization, the Association for Research and Enlightenment, was founded to facilitate the study of Cayce\'s work.\r\nSome consider him the true founder and a principal source of the most characteristic beliefs of the New Age movement. Cayce is also notable for his contributions to the notions of diet and health, particularly the issues of food combining, acid/alkaline diet, and the therapeutic use of food.\"\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce Talk by Sandra Michelson</strong></span></h2>\r\nThis Wednesday Workshop is taking place @ The Vault, Wallsend. 7th November 7.30 pm to 9.30pm.\r\nWe are expecting this to be a very busy event and you do need to book your place in advance.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/edgar-cayce-talk-discussion-7th-november/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nIf you would like to learn more about future events please join the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;','Edgar Cayce Talk & Discussion by Sandra Michelson - 7th Nov','','inherit','closed','closed','','1770-revision-v1','','','2018-10-11 11:02:50','2018-10-11 11:02:50','',1770,'https://www.newcastle-hypnotherapy.com/1770-revision-v1/',0,'revision','',0),(1779,1,'2018-10-11 11:03:34','2018-10-11 11:03:34','<img class=\"alignleft wp-image-1771 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"Edgar Cayce Talk by Sandra Michelson\" width=\"200\" height=\"268\" />\r\n\r\nWe have something very special for you all on the 7th of November.\r\n\r\n<strong>Edgar Cayce Talk by Sandra Michelson\r\n</strong>\r\n\r\nSandra Michelson is coming to share her knowledge of Edgar Cayce, with a fascinating talk and discussion.\r\n\r\nTaken from Wikipedia - \"Edgar Cayce (/ˈkeɪsiː/; March 18, 1877 – January 3, 1945) was an American clairvoyant who answered questions on subjects as varied as healing, reincarnation, wars, Atlantis, and future events while claiming to be in a trance. A biographer gave him the nickname, The Sleeping Prophet. A nonprofit organization, the Association for Research and Enlightenment, was founded to facilitate the study of Cayce\'s work.\r\nSome consider him the true founder and a principal source of the most characteristic beliefs of the New Age movement. Cayce is also notable for his contributions to the notions of diet and health, particularly the issues of food combining, acid/alkaline diet, and the therapeutic use of food.\"\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce Talk by Sandra Michelson</strong></span></h2>\r\nThis Wednesday Workshop is taking place @ The Vault, Wallsend. 7th November 7.30 pm to 9.30pm.\r\nWe are expecting this to be a very busy event and you do need to book your place in advance.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/edgar-cayce-talk-discussion-7th-november/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nIf you would like to learn more about future events please join the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;','Edgar Cayce Talk & Discussion by Sandra Michelson - 7th Nov','','inherit','closed','closed','','1770-revision-v1','','','2018-10-11 11:03:34','2018-10-11 11:03:34','',1770,'https://www.newcastle-hypnotherapy.com/1770-revision-v1/',0,'revision','',0),(1780,1,'2018-10-11 11:06:44','2018-10-11 11:06:44','','Edgar Cayce Talk & Discussion by Sandra Michelson','','publish','closed','closed','','edgar-cayce-talk-discussion-by-sandra-michelson-7th-nov','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=1780',30,'nav_menu_item','',0),(1781,1,'2018-10-11 11:07:35','2018-10-11 11:07:35','<img class=\"alignleft wp-image-1771 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"Edgar Cayce Talk by Sandra Michelson\" width=\"200\" height=\"268\" />\r\n\r\nWe have something very special for you all on the 7th of November.\r\n\r\n<strong>Edgar Cayce Talk by Sandra Michelson\r\n</strong>\r\n\r\nSandra Michelson is coming to share her knowledge of Edgar Cayce, with a fascinating talk and discussion.\r\n\r\nTaken from Wikipedia - \"Edgar Cayce (/ˈkeɪsiː/; March 18, 1877 – January 3, 1945) was an American clairvoyant who answered questions on subjects as varied as healing, reincarnation, wars, Atlantis, and future events while claiming to be in a trance. A biographer gave him the nickname, The Sleeping Prophet. A nonprofit organization, the Association for Research and Enlightenment, was founded to facilitate the study of Cayce\'s work.\r\nSome consider him the true founder and a principal source of the most characteristic beliefs of the New Age movement. Cayce is also notable for his contributions to the notions of diet and health, particularly the issues of food combining, acid/alkaline diet, and the therapeutic use of food.\"\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce Talk by Sandra Michelson</strong></span></h2>\r\nThis Wednesday Workshop is taking place @ The Vault, Wallsend. 7th November 7.30 pm to 9.30pm.\r\nWe are expecting this to be a very busy event and you do need to book your place in advance.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/edgar-cayce-talk-discussion-7th-november/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>If you would like to learn more about future events please join the newsletter below</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;','Edgar Cayce Talk & Discussion by Sandra Michelson - 7th Nov','','inherit','closed','closed','','1770-revision-v1','','','2018-10-11 11:07:35','2018-10-11 11:07:35','',1770,'https://www.newcastle-hypnotherapy.com/1770-revision-v1/',0,'revision','',0),(1782,1,'2018-10-11 12:05:48','2018-10-11 12:05:48','<img class=\"alignleft wp-image-1750 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/memory-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\nSome people have a great memory and they rarely forget anything.\r\nThey remember everything, important dates, events, names with ease.\r\nOthers are great at remembering certain things and have trouble remembering the simple things.\r\nSome of us find our memory starts to get worse as we age. What can we do to stop this?\r\n\r\n<strong>Having a good memory is often a set of skills that with a little practice, can really help to improve memory function.</strong>\r\nWant to learn these skills? <em>Join us for this Memory Improving Workshop.</em>\r\n\r\n<strong>When? 21st Movember.</strong>\r\n<strong>Where? The Vault, Wallsend.</strong>\r\n<strong>What Time? 7.30pm to 9.30pm</strong>\r\n<strong>How Much? £8.50 by advance booking.</strong>\r\n\r\nThe Wednesday Workshop is a regular set of events that run on the 1st &amp; 3rd Wednesday each month.\r\nBooking in advance is required at the link below. Places are limited.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/nlp-memory-improvement/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events.</strong>\r\nSubscribe to the events newsletter below.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWea re GDPR compliant. Your details are always kept private. You can unsubscribe for this newsletter at any time.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Improving Your Memory - 21st November','','inherit','closed','closed','','1749-revision-v1','','','2018-10-11 12:05:48','2018-10-11 12:05:48','',1749,'https://www.newcastle-hypnotherapy.com/1749-revision-v1/',0,'revision','',0),(1783,1,'2018-10-11 12:11:52','2018-10-11 12:11:52','<img class=\"alignleft wp-image-1750 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/memory-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\nSome people have a great memory and they rarely forget anything.\r\nThey remember everything, important dates, events, names with ease.\r\nOthers are great at remembering certain things and have trouble remembering the simple things.\r\nSome of us find our memory starts to get worse as we age. What can we do to stop this?\r\n\r\n<strong>Having a good memory is often a set of skills that with a little practice, can really help to improve memory function.</strong>\r\nWant to learn these skills? <em>Join us for this Memory Improving Workshop.</em>\r\n\r\n<strong>When? 21st Movember.</strong>\r\n<strong>Where? The Vault, Wallsend.</strong>\r\n<strong>What Time? 7.30pm to 9.30pm</strong>\r\n<strong>How Much? £8.50 by advance booking.</strong>\r\n\r\nThe Wednesday Workshop is a regular set of events that run on the 1st &amp; 3rd Wednesday each month.\r\nBooking in advance is required at the link below. Places are limited.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/nlp-memory-improvement/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events.</strong>\r\nSubscribe to the events newsletter below.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWea re GDPR compliant. Your details are always kept private. You can unsubscribe for this newsletter at any time.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Improving Your Memory - 21st November.','','inherit','closed','closed','','1749-revision-v1','','','2018-10-11 12:11:52','2018-10-11 12:11:52','',1749,'https://www.newcastle-hypnotherapy.com/1749-revision-v1/',0,'revision','',0),(1784,1,'2018-10-11 12:15:23','2018-10-11 12:15:23','<img class=\"alignleft wp-image-1750 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/memory-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\nSome people have a great memory and they rarely forget anything.\r\nThey remember everything, important dates, events, names with ease.\r\nOthers are great at remembering certain things and have trouble remembering the simple things.\r\nSome of us find our memory starts to get worse as we age. What can we do to stop this?\r\n\r\n<strong>Having a good memory is often a set of skills that with a little practice, can really help to improve memory function.</strong>\r\nWant to learn these skills? <em>Join us for this Memory Improving Workshop.</em>\r\n\r\n<strong>When? 21st Movember.</strong>\r\n<strong>Where? The Vault, Wallsend.</strong>\r\n<strong>What Time? 7.30pm to 9.30pm</strong>\r\n<strong>How Much? £8.50 by advance booking.</strong>\r\n\r\nThe Wednesday Workshop is a regular set of events that run on the 1st &amp; 3rd Wednesday each month.\r\nBooking in advance is required at the link below. Places are limited.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/nlp-memory-improvement/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events.</strong>\r\nSubscribe to the events newsletter below.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. Your details are always kept private. You can unsubscribe for this newsletter at any time.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Improving Your Memory - 21st November.','','inherit','closed','closed','','1749-revision-v1','','','2018-10-11 12:15:23','2018-10-11 12:15:23','',1749,'https://www.newcastle-hypnotherapy.com/1749-revision-v1/',0,'revision','',0),(1785,1,'2018-10-11 12:15:51','2018-10-11 12:15:51','<img class=\"alignleft wp-image-1750 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/memory-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\nSome people have a great memory and they rarely forget anything.\r\nThey remember everything, important dates, events, names with ease.\r\nOthers are great at remembering certain things and have trouble remembering the simple things.\r\nSome of us find our memory starts to get worse as we age. What can we do to stop this?\r\n\r\n<strong>Having a good memory is often a set of skills that with a little practice, can really help to improve memory function.</strong>\r\nWant to learn these skills? <em>Join us for this Memory Improving Workshop.</em>\r\n\r\n<strong>When? 21st Movember.</strong>\r\n<strong>Where? The Vault, Wallsend.</strong>\r\n<strong>What Time? 7.30pm to 9.30pm</strong>\r\n<strong>How Much? £8.50 by advance booking.</strong>\r\n\r\nThe Wednesday Workshop is a regular set of events that run on the 1st &amp; 3rd Wednesday each month.\r\nBooking in advance is required at the link below. Places are limited.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/nlp-memory-improvement/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events.</strong>\r\nSubscribe to the events newsletter below.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. Your details are always kept private. You can unsubscribe from this newsletter at any time.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Improving Your Memory - 21st November.','','inherit','closed','closed','','1749-revision-v1','','','2018-10-11 12:15:51','2018-10-11 12:15:51','',1749,'https://www.newcastle-hypnotherapy.com/1749-revision-v1/',0,'revision','',0),(1786,1,'2018-10-11 12:22:51','2018-10-11 12:22:51','<img class=\"alignleft wp-image-1750 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/memory-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\nSome people have a great memory and they rarely forget anything.\r\nThey remember everything, important dates, events, names with ease.\r\nOthers are great at remembering certain things and have trouble remembering the simple things.\r\nSome of us find our memory starts to get worse as we age. What can we do to stop this?\r\n\r\n<strong>Having a good memory is often a set of skills that with a little practice, can really help to improve memory function.</strong>\r\nWant to learn these skills? <em>Join us for this Memory Improving Workshop.</em>\r\n\r\n<strong>When? 21st November.</strong>\r\n<strong>Where? The Vault, Wallsend.</strong>\r\n<strong>What Time? 7.30pm to 9.30pm</strong>\r\n<strong>How Much? £8.50 by advance booking.</strong>\r\n\r\nThe Wednesday Workshop is a regular set of events that run on the 1st &amp; 3rd Wednesday each month.\r\nBooking in advance is required at the link below. Places are limited.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/nlp-memory-improvement/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events.</strong>\r\nSubscribe to the events newsletter below.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. Your details are always kept private. You can unsubscribe from this newsletter at any time.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Improving Your Memory - 21st November.','','inherit','closed','closed','','1749-revision-v1','','','2018-10-11 12:22:51','2018-10-11 12:22:51','',1749,'https://www.newcastle-hypnotherapy.com/1749-revision-v1/',0,'revision','',0),(1787,1,'2018-10-11 13:47:53','2018-10-11 13:47:53','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Newcastle Hypnotherapy runs and takes part in many local events, workshops and fairs.\r\n\r\nJoin us for regular events &amp; workshops <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> &amp; <a href=\"http://You toohttps://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshops.</a>\r\n</strong>\r\n\r\nLearn Life Enhancing Skills &amp; Improve Your Life.\r\nHandle Problems &amp; Challenges Better.\r\nBuild Confidence &amp; Make New Friends\r\n<h2></h2>\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.</strong></span>\r\n<h2><span style=\"color: #ff6600;\"><strong>\r\n<span style=\"color: #008000;\">Upcoming Events You Can Book Now</span>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/meditate-deeper-faster-using-self-hypnosis/\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis - 5th September</strong></a></span>\r\n\r\n<span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/events-workshops/past-life-regression-workshop/\"><strong>Past Life Regression Workshop - 19th September</strong></a></span>\r\n\r\n<span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/events-workshops/pain-management-workshop/\"><strong>The Pain Management Workshop - 3rd October</strong></a></span>\r\n<h2><strong><span style=\"color: #ff6600;\">\r\n</span><span style=\"color: #008000;\">Events Coming Soon</span></strong></h2>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong><span style=\"color: #ff6600;\">S</span></strong></a><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></a></span>\r\n\r\n<a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-for-weight-loss/\"><span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span></a>\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy Facebook Group.</strong></span></h2>\r\nYou can learn even more about events and take part in the discussion,\r\n<strong><a href=\"http://You toohttps://www.facebook.com/groups/NHwednesdayworkshop/\">here on our Facebook Group.</a></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy</strong></span></h2>\r\nThese events are designed to share skills to improve life and help people handle problems better.\r\nWe share valuable skills such as Self-Hypnosis, Tapping, Emotional Freedom Technique, Neuro-Linguistic Programming, Meditation, Mindfulness and other modern techniques.\r\n\r\nThese events are organised by Mark at <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> and usually held at <a href=\"http://www.the-vault.org/\">The Vault Creative Wellbeing Centre</a>, Newcastle upon Tyne.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-10-11 13:47:53','2018-10-11 13:47:53','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(1789,1,'2018-10-11 14:21:48','2018-10-11 14:21:48','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Newcastle Hypnotherapy runs and takes part in many local events, workshops and fairs to promote:\r\n</strong>\r\n\r\nLearn Life Enhancing Skills.\r\nHandle Problems &amp; Challenges Better.\r\nBuild Confidence &amp; Make New Friends.\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Events</span></strong></h2>\r\nRuns on the 1st &amp; 3rd Wednesday each month and teachs new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfullness, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nThe Wednesday Workshop runs from The Vault in Wallsend on Wednesday evenings.\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><strong>Examples Of </strong><strong>Events You Can Attend</strong><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join the <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group</strong></a></span> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-10-11 14:21:48','2018-10-11 14:21:48','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(1788,1,'2018-10-11 14:12:01','2018-10-11 14:12:01','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Newcastle Hypnotherapy runs and takes part in many local events, workshops and fairs to promote:\r\n</strong>\r\n\r\nLearn Life Enhancing Skills.\r\nHandle Problems &amp; Challenges Better.\r\nBuild Confidence &amp; Make New Friends.\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Events</span></strong></h2>\r\nRuns on the 1st &amp; 3rd Wednesday each month and teachs new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfullness, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nThe Wednesday Workshop runs from The Vault in Wallsend on Wednesday evenings.\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n<h2><span style=\"color: #ff6600;\"><strong>\r\n<span style=\"color: #008000;\">Upcoming Events You Can Book Now</span>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/meditate-deeper-faster-using-self-hypnosis/\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis - 5th September</strong></a></span>\r\n\r\n<span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/events-workshops/past-life-regression-workshop/\"><strong>Past Life Regression Workshop - 19th September</strong></a></span>\r\n\r\n<span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/events-workshops/pain-management-workshop/\"><strong>The Pain Management Workshop - 3rd October</strong></a></span>\r\n<h2><strong><span style=\"color: #ff6600;\">\r\n</span><span style=\"color: #008000;\">Events Coming Soon</span></strong></h2>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong><span style=\"color: #ff6600;\">S</span></strong></a><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-stress-anxiety/\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></a></span>\r\n\r\n<a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/self-hypnosis-for-weight-loss/\"><span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span></a>\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy Facebook Group.</strong></span></h2>\r\nYou can learn even more about events and take part in the discussion,\r\n<strong><a href=\"http://You toohttps://www.facebook.com/groups/NHwednesdayworkshop/\">here on our Facebook Group.</a></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy</strong></span></h2>\r\nThese events are designed to share skills to improve life and help people handle problems better.\r\nWe share valuable skills such as Self-Hypnosis, Tapping, Emotional Freedom Technique, Neuro-Linguistic Programming, Meditation, Mindfulness and other modern techniques.\r\n\r\nThese events are organised by Mark at <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> and usually held at <a href=\"http://www.the-vault.org/\">The Vault Creative Wellbeing Centre</a>, Newcastle upon Tyne.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-10-11 14:12:01','2018-10-11 14:12:01','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(1790,1,'2018-10-11 14:22:12','2018-10-11 14:22:12','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Newcastle Hypnotherapy runs and takes part in many local events, workshops and fairs to promote:\r\n</strong>\r\n\r\nLearn Life Enhancing Skills.\r\nHandle Problems &amp; Challenges Better.\r\nBuild Confidence &amp; Make New Friends.\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Events</span></strong></h2>\r\nRuns on the 1st &amp; 3rd Wednesday each month and teachs new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfullness, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nThe Wednesday Workshop runs from The Vault in Wallsend on Wednesday evenings.\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join the <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group</strong></a></span> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-10-11 14:22:12','2018-10-11 14:22:12','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(1792,0,'2018-10-12 08:34:11','2018-10-12 08:34:11','','Order &ndash; October 12, 2018 @ 08:34 AM','','wc-on-hold','open','closed','order_5bc05c8333a5a','order-oct-12-2018-0834-am','','','2018-10-12 08:34:11','2018-10-12 08:34:11','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=1792',0,'shop_order','',1),(1793,0,'2018-10-16 19:43:30','2018-10-16 19:43:30','','Order &ndash; October 16, 2018 @ 07:43 PM','','wc-on-hold','open','closed','order_5bc63f6260db5','order-oct-16-2018-0743-pm','','','2018-10-16 19:43:30','2018-10-16 19:43:30','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=1793',0,'shop_order','',1),(1794,0,'2018-10-16 20:06:16','2018-10-16 20:06:16','','Order &ndash; October 16, 2018 @ 08:06 PM','','wc-processing','open','closed','order_5bc644b8aa88c','order-oct-16-2018-0806-pm','','','2018-10-16 20:07:24','2018-10-16 20:07:24','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=1794',0,'shop_order','',2),(1801,1,'2018-10-26 12:29:20','2018-10-26 12:29:20','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<em><strong> </strong></em>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, we can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Simply complete the New Client Questionaire – <a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-26 12:29:20','2018-10-26 12:29:20','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1800,1,'2018-10-26 12:28:58','2018-10-26 12:28:58','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<em><strong> </strong></em>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> arrange yours.</em></strong>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Hypnosis &amp; So Much More\r\n</span></strong></span></h2>\r\n<span style=\"color: #000000;\">As well as Clinical Hypnotherapy, Hypnosis and <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis</a> we also use Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Coaching, Mindfulness, Meditation, Nutritional Therapy, and other successful therapies as required.</span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Client Feedback by Gary\r\n</strong></span></span></em></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, we can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy.</span> Working in Newcastle, Northumberland &amp; Online.</strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Hypnotherapy near me? You can find us at <strong>The Vault</strong> in Wallsend, Newcastle &amp; <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay (Astley Clinic of Complementary Medicine) &amp; Cramlington, Northumberland. We can usually find somewhere suitable for you across the North East or Tyneside if these are not suitable for you. <strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Simply complete the New Client Questionaire – <a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-26 12:28:58','2018-10-26 12:28:58','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1806,1,'2018-10-26 12:55:34','2018-10-26 12:55:34','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you. We work from several locations in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is Newcastle Hypnotherapy at <strong>The Vault Creative Wellbeing Centre</strong> in Wallsend, Newcastle upon Tyne.\r\nWe also work from <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine). We can also offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoates, Tynemouth, Newcastle City Centre and other areas in the North East &amp;Tyneside</span></p>\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-26 12:55:34','2018-10-26 12:55:34','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1805,1,'2018-10-26 12:53:37','2018-10-26 12:53:37','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you. We work from several locations in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is Newcastle Hypnotherapy at <strong>The Vault Creative Wellbeing Centre</strong> in Wallsend, Newcastle upon Tyne.\r\nWe also work from <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine). We can also offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoates, Tynemouth, Newcastle City Centre and other areas in the North East &amp;Tyneside</span></p>\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Simply complete the New Client Questionaire – <a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-26 12:53:37','2018-10-26 12:53:37','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1807,1,'2018-10-26 12:56:33','2018-10-26 12:56:33','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you. We work from several locations in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is Newcastle Hypnotherapy at <strong>The Vault Creative Wellbeing Centre</strong> in Wallsend, Newcastle upon Tyne.\r\nWe also work from <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine). We can also offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoates, Tynemouth, Newcastle City Centre and other areas in the North East &amp;Tyneside</span></p>\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-26 12:56:33','2018-10-26 12:56:33','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1804,1,'2018-10-26 12:50:44','2018-10-26 12:50:44','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you. We work from several locations in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is Newcastle Hypnotherapy at <strong>The Vault Creative Wellbeing Centre</strong> in Wallsend, Newcastle upon Tyne.\r\nWe also work from <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine). We can also offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoates, Tynemouth, Newcastle City Centre and other areas in the North East &amp;Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.</span></p>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n\r\n<h2><em><span style=\"color: #006400;\"><strong>Client Feeback from Hayley</strong>.\r\n</span></em></h2>\r\n<em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Simply complete the New Client Questionaire – <a href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Client Feedback by Malcolm</em></strong><em>.</em></span><strong><em>\r\n</em></strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if our services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-26 12:50:44','2018-10-26 12:50:44','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1808,1,'2018-10-26 12:57:59','2018-10-26 12:57:59','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you. We work from several locations in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is Newcastle Hypnotherapy at <strong>The Vault Creative Wellbeing Centre</strong> in Wallsend, Newcastle upon Tyne.\r\nWe also work from <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine). We can also offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoates, Tynemouth, Newcastle City Centre and other areas in the North East &amp;Tyneside</span></p>\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"color: #008000;\">Frequently Asked Questions</span>.</strong></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-26 12:57:59','2018-10-26 12:57:59','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1809,1,'2018-10-26 12:58:50','2018-10-26 12:58:50','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you. We work from several locations in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is Newcastle Hypnotherapy at <strong>The Vault Creative Wellbeing Centre</strong> in Wallsend, Newcastle upon Tyne.\r\nWe also work from <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine). We can also offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoates, Tynemouth, Newcastle City Centre and other areas in the North East &amp;Tyneside</span></p>\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions.</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-26 12:58:50','2018-10-26 12:58:50','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1810,1,'2018-10-26 12:59:32','2018-10-26 12:59:32','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you. We work from several locations in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is Newcastle Hypnotherapy at <strong>The Vault Creative Wellbeing Centre</strong> in Wallsend, Newcastle upon Tyne.\r\nWe also work from <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine). We can also offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoates, Tynemouth, Newcastle City Centre and other areas in the North East &amp;Tyneside</span></p>\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions.</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Once we have made an assessment during your free phone consultation we can estimate the number of sessions required to obtain the results you want.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-26 12:59:32','2018-10-26 12:59:32','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1811,1,'2018-10-26 13:05:12','2018-10-26 13:05:12','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you. We work from several locations in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is Newcastle Hypnotherapy at <strong>The Vault Creative Wellbeing Centre</strong> in Wallsend, Newcastle upon Tyne.\r\nWe also work from <strong>Food For Thought</strong>, in Seaton Delaval, Whitely Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine). We can also offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoates, Tynemouth, Newcastle City Centre and other areas in the North East &amp;Tyneside</span></p>\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-26 13:05:12','2018-10-26 13:05:12','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1821,1,'2018-10-28 12:15:01','2018-10-28 12:15:01','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find us at, <span class=\"LrzXr\">28 Astley Road, Seaton Delaval, Whitley Bay NE25 0DG as part of <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store.\r\nWe offer all of the Hypnotherapy Services as detailed on our <a href=\"https://www.newcastle-hypnotherapy.com/\"><strong>Website Main Page</strong></a>.</span>\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 12:15:01','2018-10-28 12:15:01','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1822,1,'2018-10-28 12:15:44','2018-10-28 12:15:44','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find us at, <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay NE25 0DG</strong> as part of <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store.\r\nWe offer all of the Hypnotherapy Services as detailed on our <a href=\"https://www.newcastle-hypnotherapy.com/\"><strong>Website Main Page</strong></a>.</span>\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 12:15:44','2018-10-28 12:15:44','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1823,1,'2018-10-28 12:16:23','2018-10-28 12:16:23','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find us at, <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay NE25 0DG</strong> as part of <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store.\r\nWe offer all of the <a href=\"https://www.newcastle-hypnotherapy.com\">Hypnotherapy Services</a> as detailed on our <a href=\"https://www.newcastle-hypnotherapy.com/\"><strong>Website Main Page</strong></a>.</span>\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 12:16:23','2018-10-28 12:16:23','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1824,1,'2018-10-28 12:18:03','2018-10-28 12:18:03','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find us at, <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay NE25 0DG</strong> above of <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store.\r\nWe offer all of the <a href=\"https://www.newcastle-hypnotherapy.com\">Hypnotherapy Services</a> as detailed on our <a href=\"https://www.newcastle-hypnotherapy.com/\"><strong>Website Main Page</strong></a>.</span>\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 12:18:03','2018-10-28 12:18:03','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1825,1,'2018-10-28 12:18:50','2018-10-28 12:18:50','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find us at, <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay NE25 0DG</strong> above of <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store.\r\nWe offer all of the <a href=\"https://www.newcastle-hypnotherapy.com\">Hypnotherapy Services</a> as detailed on our <a href=\"https://www.newcastle-hypnotherapy.com/\"><strong>Website Main Page</strong></a>.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 12:18:50','2018-10-28 12:18:50','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1826,1,'2018-10-28 12:19:05','2018-10-28 12:19:05','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find us at, <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay NE25 0DG</strong> above of <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store.\r\nWe offer all of the <a href=\"https://www.newcastle-hypnotherapy.com\">Hypnotherapy Services</a> as detailed on our <a href=\"https://www.newcastle-hypnotherapy.com/\"><strong>Website Main Page</strong></a>.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 12:19:05','2018-10-28 12:19:05','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1827,1,'2018-10-28 12:26:44','2018-10-28 12:26:44','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find us at, <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay NE25 0DG</strong> above of <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store.\r\nWe offer all of the <a href=\"https://www.newcastle-hypnotherapy.com\">Hypnotherapy Services</a> as detailed on our <a href=\"https://www.newcastle-hypnotherapy.com/\"><strong>Website Main Page</strong></a>.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 12:26:44','2018-10-28 12:26:44','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1828,1,'2018-10-28 12:42:18','2018-10-28 12:42:18','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find us at, <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay NE25 0DG</strong> above of <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store.\r\nWe offer all of the <a href=\"https://www.newcastle-hypnotherapy.com\">Hypnotherapy Services</a> as detailed on our <a href=\"https://www.newcastle-hypnotherapy.com/\"><strong>Website Main Page</strong></a>.\r\n\r\nAt our Seaton Delaval location, we enjoy a comfortable space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day and evening.\r\n</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 12:42:18','2018-10-28 12:42:18','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1829,1,'2018-10-28 12:47:03','2018-10-28 12:47:03','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find us at, <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay NE25 0DG</strong> above of <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store.\r\nWe offer all of the <a href=\"https://www.newcastle-hypnotherapy.com\">Hypnotherapy Services</a> as detailed on our <a href=\"https://www.newcastle-hypnotherapy.com/\"><strong>Website Main Page</strong></a>.</span>\r\n\r\nAt our Seaton Delaval location, we enjoy a comfortable space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 12:47:03','2018-10-28 12:47:03','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1830,1,'2018-10-28 12:51:29','2018-10-28 12:51:29','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find us at, <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay NE25 0DG</strong> above of <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store.\r\nWe offer all of the <a href=\"https://www.newcastle-hypnotherapy.com\">Hypnotherapy Services</a> as detailed on our <a href=\"https://www.newcastle-hypnotherapy.com/\"><strong>Website Main Page</strong></a>.</span>\r\n\r\nAt our Seaton Delaval location, we enjoy a comfortable space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with Neuro-Linguistic Programming to help clients with a wide range of problems and issues.\r\nWe can help with','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 12:51:29','2018-10-28 12:51:29','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1831,1,'2018-10-28 14:35:34','2018-10-28 14:35:34','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find us at, <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay NE25 0DG</strong> above of <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store.\r\nWe offer all of the <a href=\"https://www.newcastle-hypnotherapy.com\">Hypnotherapy Services</a> as detailed on our <a href=\"https://www.newcastle-hypnotherapy.com/\"><strong>Website Main Page</strong></a>.</span>\r\n\r\nAt our Seaton Delaval location, we enjoy a comfortable space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with Neuro-Linguistic Programming to help clients with a wide range of problems and issues.\r\nWe can help with','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 14:35:34','2018-10-28 14:35:34','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1832,1,'2018-10-28 14:35:48','2018-10-28 14:35:48','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find us at, <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay NE25 0DG</strong> above of <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store.\r\nWe offer all of the <a href=\"https://www.newcastle-hypnotherapy.com\">Hypnotherapy Services</a> as detailed on our <a href=\"https://www.newcastle-hypnotherapy.com/\"><strong>Website Main Page</strong></a>.</span>\r\n\r\nAt our Seaton Delaval location, we enjoy a comfortable space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with Neuro-Linguistic Programming to help clients with a wide range of problems and issues.\r\nWe can help with','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 14:35:48','2018-10-28 14:35:48','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1833,1,'2018-10-28 14:46:12','2018-10-28 14:46:12','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find us at, <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG</strong> above of <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store.\r\nWe offer all of the <a href=\"https://www.newcastle-hypnotherapy.com\">Hypnotherapy Services</a> as detailed on our <a href=\"https://www.newcastle-hypnotherapy.com/\"><strong>Website Main Page</strong></a>.</span>\r\n\r\nAt our Seaton Delaval location, we enjoy a comfortable space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with Neuro-Linguistic Programming to help clients with a wide range of problems. We specialize in Anxiety, Stress, Depression, Self-confidence, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h2><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 14:46:12','2018-10-28 14:46:12','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1835,1,'2018-10-28 14:54:08','2018-10-28 14:54:08','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find us at,\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>\r\nWe offer all of the <a href=\"https://www.newcastle-hypnotherapy.com\">Hypnotherapy Services</a> as detailed on our <a href=\"https://www.newcastle-hypnotherapy.com/\"><strong>Website Main Page</strong></a>.</span>\r\n\r\nAt our Seaton Delaval location, we enjoy a comfortable space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with Neuro-Linguistic Programming to help clients with a wide range of problems. We specialize in Anxiety, Stress, Depression, Self-confidence, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h2><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above of <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to Seaton Valley Council.\r\n\r\n\r\n</span>','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 14:54:08','2018-10-28 14:54:08','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1834,1,'2018-10-28 14:51:19','2018-10-28 14:51:19','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find us at, <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG</strong> above of <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store.\r\nWe offer all of the <a href=\"https://www.newcastle-hypnotherapy.com\">Hypnotherapy Services</a> as detailed on our <a href=\"https://www.newcastle-hypnotherapy.com/\"><strong>Website Main Page</strong></a>.</span>\r\n\r\nAt our Seaton Delaval location, we enjoy a comfortable space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with Neuro-Linguistic Programming to help clients with a wide range of problems. We specialize in Anxiety, Stress, Depression, Self-confidence, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h2><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above of <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to Seaton Valley Council.</span>','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 14:51:19','2018-10-28 14:51:19','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1836,1,'2018-10-28 14:55:31','2018-10-28 14:55:31','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>\r\nWe offer all of the <a href=\"https://www.newcastle-hypnotherapy.com\">Hypnotherapy Services</a> as detailed on our <a href=\"https://www.newcastle-hypnotherapy.com/\"><strong>Website Main Page</strong></a>.</span>\r\n\r\nAt our Seaton Delaval location, we enjoy a comfortable space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with Neuro-Linguistic Programming to help clients with a wide range of problems. We specialize in Anxiety, Stress, Depression, Self-confidence, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h2><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above of <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to Seaton Valley Council.</span>\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 14:55:31','2018-10-28 14:55:31','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1838,1,'2018-10-28 14:57:20','2018-10-28 14:57:20','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with Neuro-Linguistic Programming to help clients with a wide range of problems. We specialize in Anxiety, Stress, Depression, Self-confidence, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h2><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above of <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to Seaton Valley Council.</span>\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 14:57:20','2018-10-28 14:57:20','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1837,1,'2018-10-28 14:56:32','2018-10-28 14:56:32','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\nWe offer all of the <a href=\"https://www.newcastle-hypnotherapy.com\">Hypnotherapy Services</a> as detailed on our <a href=\"https://www.newcastle-hypnotherapy.com/\"><strong>Website Main Page</strong></a>.</span>\r\n\r\nAt our Seaton Delaval location, we enjoy a comfortable space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with Neuro-Linguistic Programming to help clients with a wide range of problems. We specialize in Anxiety, Stress, Depression, Self-confidence, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h2><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above of <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to Seaton Valley Council.</span>\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 14:56:32','2018-10-28 14:56:32','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1842,1,'2018-10-28 15:00:18','2018-10-28 15:00:18','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with Neuro-Linguistic Programming to help clients with a wide range of problems. We specialize in Anxiety, Stress, Depression, Self-confidence, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 15:00:18','2018-10-28 15:00:18','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1839,1,'2018-10-28 14:58:20','2018-10-28 14:58:20','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with Neuro-Linguistic Programming to help clients with a wide range of problems. We specialize in Anxiety, Stress, Depression, Self-confidence, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h2><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above of <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 14:58:20','2018-10-28 14:58:20','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1840,1,'2018-10-28 14:59:04','2018-10-28 14:59:04','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with Neuro-Linguistic Programming to help clients with a wide range of problems. We specialize in Anxiety, Stress, Depression, Self-confidence, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h3><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h3>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above of <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 14:59:04','2018-10-28 14:59:04','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1841,1,'2018-10-28 14:59:29','2018-10-28 14:59:29','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with Neuro-Linguistic Programming to help clients with a wide range of problems. We specialize in Anxiety, Stress, Depression, Self-confidence, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above of <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 14:59:29','2018-10-28 14:59:29','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1843,1,'2018-10-28 15:12:36','2018-10-28 15:12:36','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in Anxiety, Stress, Depression, Self-confidence, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.\r\n\r\nGoogle Map\r\n\r\nOpening Hours.\r\nMonday 9.00 am to 8.00 pm\r\nTuesday 9.00 am to 1.00pm\r\nWednesday 9.00 am to 5.00 pm\r\nThursday 9.00 am to 8.00 pm\r\nFriday 9.00 am to 1.00 pm\r\nSaturday 9.00 am to 5.00 pm\r\nSunday 10.00 am to 5.00 pm\r\n\r\nEarlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session see below to book online.\r\n</span>\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 15:12:36','2018-10-28 15:12:36','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1844,1,'2018-10-28 15:16:03','2018-10-28 15:16:03','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\nGoogle Map\r\n\r\nOpening Hours.\r\nMonday 9.00 am to 8.00 pm\r\nTuesday 9.00 am to 1.00pm\r\nWednesday 9.00 am to 5.00 pm\r\nThursday 9.00 am to 8.00 pm\r\nFriday 9.00 am to 1.00 pm\r\nSaturday 9.00 am to 5.00 pm\r\nSunday 10.00 am to 5.00 pm\r\n\r\nEarlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session see below to book online.\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 15:16:03','2018-10-28 15:16:03','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1845,1,'2018-10-28 15:24:38','2018-10-28 15:24:38','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\nGoogle Map\r\n\r\nOpening Hours.\r\nMonday 9.00 am to 8.00 pm\r\nTuesday 9.00 am to 1.00pm\r\nWednesday 9.00 am to 5.00 pm\r\nThursday 9.00 am to 8.00 pm\r\nFriday 9.00 am to 1.00 pm\r\nSaturday 9.00 am to 5.00 pm\r\nSunday 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session see below to book online.\r\n\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternative you can call Mark at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 15:24:38','2018-10-28 15:24:38','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1846,1,'2018-10-28 15:27:22','2018-10-28 15:27:22','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\nMonday 9.00 am to 8.00 pm\r\nTuesday 9.00 am to 1.00pm\r\nWednesday 9.00 am to 5.00 pm\r\nThursday 9.00 am to 8.00 pm\r\nFriday 9.00 am to 1.00 pm\r\nSaturday 9.00 am to 5.00 pm\r\nSunday 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternative you can call Mark at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 15:27:22','2018-10-28 15:27:22','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1847,1,'2018-10-28 15:35:48','2018-10-28 15:35:48','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\nMonday 9.00 am to 8.00 pm\r\nTuesday 9.00 am to 1.00pm\r\nWednesday 9.00 am to 5.00 pm\r\nThursday 9.00 am to 8.00 pm\r\nFriday 9.00 am to 1.00 pm\r\nSaturday 9.00 am to 5.00 pm\r\nSunday 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Devemopment, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply join our email newsletter below.','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 15:35:48','2018-10-28 15:35:48','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1848,1,'2018-10-28 15:38:16','2018-10-28 15:38:16','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\nMonday 9.00 am to 8.00 pm\r\nTuesday 9.00 am to 1.00pm\r\nWednesday 9.00 am to 5.00 pm\r\nThursday 9.00 am to 8.00 pm\r\nFriday 9.00 am to 1.00 pm\r\nSaturday 9.00 am to 5.00 pm\r\nSunday 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Devemopment, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply join our email newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 15:38:16','2018-10-28 15:38:16','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1849,1,'2018-10-28 15:39:20','2018-10-28 15:39:20','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Devemopment, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply join our email newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 15:39:20','2018-10-28 15:39:20','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1850,1,'2018-10-28 15:42:10','2018-10-28 15:42:10','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply join our email newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 15:42:10','2018-10-28 15:42:10','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1851,1,'2018-10-28 15:43:57','2018-10-28 15:43:57','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 15:43:57','2018-10-28 15:43:57','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1852,1,'2018-10-28 15:54:04','2018-10-28 15:54:04','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 15:54:04','2018-10-28 15:54:04','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1853,1,'2018-10-28 16:02:41','2018-10-28 16:02:41','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 16:02:41','2018-10-28 16:02:41','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1854,1,'2018-10-28 16:05:54','2018-10-28 16:05:54','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is an expert in child issues.\r\nSimply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 16:05:54','2018-10-28 16:05:54','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1855,1,'2018-10-28 16:06:32','2018-10-28 16:06:32','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is an expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 16:06:32','2018-10-28 16:06:32','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1856,1,'2018-10-28 16:17:21','2018-10-28 16:17:21','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 16:17:21','2018-10-28 16:17:21','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1857,1,'2018-10-28 16:21:46','2018-10-28 16:21:46','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. You will be fully alert during hypnosis and will remember your session in detail.\r\n\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 16:21:46','2018-10-28 16:21:46','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1858,1,'2018-10-28 16:48:14','2018-10-28 16:48:14','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. You will be fully alert during your hypnosis session and will remember your it in detail. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 16:48:14','2018-10-28 16:48:14','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1859,1,'2018-10-28 17:03:01','2018-10-28 17:03:01','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\nAre Online Hypnotherapy Sessions as effective as face to face appointments?\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. You will be fully alert during your hypnosis session and will remember your it in detail. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 17:03:01','2018-10-28 17:03:01','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1860,1,'2018-10-28 17:08:49','2018-10-28 17:08:49','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\nAre Online Hypnotherapy Sessions as effective as face to face appointments?\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. You will be fully alert during your hypnosis session and will remember your it in detail. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or give Mark a call on 07568 455 809.\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 17:08:49','2018-10-28 17:08:49','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1861,1,'2018-10-28 17:09:52','2018-10-28 17:09:52','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. You will be fully alert during your hypnosis session and will remember your it in detail. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or give Mark a call on 07568 455 809.\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 17:09:52','2018-10-28 17:09:52','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1862,1,'2018-10-28 17:13:26','2018-10-28 17:13:26','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail.  Hypnosis or trance should be a wonderful, relaxed feeling, rather like day dreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or give Mark a call on 07568 455 809.\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 17:13:26','2018-10-28 17:13:26','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1863,1,'2018-10-28 17:15:54','2018-10-28 17:15:54','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail.  Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n\r\n&nbsp;','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 17:15:54','2018-10-28 17:15:54','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1864,1,'2018-10-28 17:20:13','2018-10-28 17:20:13','<strong>YouYou can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail.  Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You can also access discounts when booking more than one hypnosis session.','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 17:20:13','2018-10-28 17:20:13','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1865,1,'2018-10-28 17:25:43','2018-10-28 17:25:43','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail.  Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You can also access discounts when booking more than one hypnosis session.','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 17:25:43','2018-10-28 17:25:43','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1866,1,'2018-10-28 17:32:41','2018-10-28 17:32:41','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail.  Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 17:32:41','2018-10-28 17:32:41','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1867,1,'2018-10-28 17:36:48','2018-10-28 17:36:48','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail.  Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnotherapy work for everyone?\r\n</strong>Hypnosis works for most people and provides good results for most people. However, hypnotherapy is not always the best route for every client or always the best route for every issues. The good news is that we have many alternatives we can use. NLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 17:36:48','2018-10-28 17:36:48','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1868,1,'2018-10-28 17:39:46','2018-10-28 17:39:46','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail.  Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnotherapy work for everyone?\r\n</strong>Hypnosis works for most people and provides good results for most people. However, hypnotherapy is not always the best route for every client or always the best route for every issues. The good news is that we have many alternatives we can use. NLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 17:39:46','2018-10-28 17:39:46','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1869,1,'2018-10-28 17:43:32','2018-10-28 17:43:32','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness etc.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail.  Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnotherapy work for everyone?\r\n</strong>Hypnosis works for most people and provides good results for most people. However, hypnotherapy is not always the best route for every client or always the best route for every issue. The good news is that we have many alternatives we can use. NLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval can be found at\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 17:43:32','2018-10-28 17:43:32','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1870,1,'2018-10-28 17:47:52','2018-10-28 17:47:52','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail.  Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnotherapy work for everyone?\r\n</strong>Hypnosis works for most people and provides good results for most people. However, hypnotherapy is not always the best route for every client or always the best route for every issue. The good news is that we have many alternatives we can use. NLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval can be found at\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.','Newcastle Hypnotherapy in Seaton Delaval','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 17:47:52','2018-10-28 17:47:52','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1872,1,'2018-10-28 17:53:19','2018-10-28 17:53:19','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\n\nYou can find our Seaton Delaval Practice at:\n<span class=\"LrzXr\"><strong>28 Astley Road,\nSeaton Delaval,\nWhitley Bay,\nNewcastle upon Tyne.\nNE25 0DG</strong>.\nTel 07568 455 809.</span>\n\n<span class=\"LrzXr\">\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\n\n<strong>Opening Hours.</strong>\n<strong>Monday</strong> 9.00 am to 8.00 pm\n<strong>Tuesday</strong> 9.00 am to 1.00pm\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\n<strong>Thursday</strong> 9.00 am to 8.00 pm\n<strong>Friday</strong> 9.00 am to 1.00 pm\n<strong>Saturday</strong> 9.00 am to 5.00 pm\n<strong>Sunday</strong> 10.00 am to 5.00 pm\n\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\n<ol>\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\n</strong></li>\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\n</ol>\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\n</strong>\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\nYes, we run regular events and workshops from various locations in the North East.\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\nFor details of these events simply <em>join our email newsletter below.</em>\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\n\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\n\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\n\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\n\n<strong>Do you offer therapy for children?</strong>\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\n\n<strong>How long will my hypnosis session last?</strong>\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\n\n<strong>How many hypnosis or NLP sessions will I need?</strong>\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\n\n<strong>I have not experienced hypnosis before, what is it like?</strong>\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail.  Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\n\n<strong>Does hypnotherapy work for everyone?\n</strong>Hypnosis works for most people and provides good results for most people. However, hypnotherapy is not always the best route for every client or always the best route for every issue. The good news is that we have many alternatives we can use. NLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\n</strong>\n\n<strong>How can I learn Self-Hypnosis?</strong>\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\n\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\n\n<strong>How much are my hypnotherapy sessions?</strong>\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\n\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\n\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\nNewcastle Hypnotherapy in Seaton Delaval can be found at\n<span class=\"LrzXr\"><strong>28 Astley Road,\nSeaton Delaval,\nWhitley Bay,\nNewcastle upon Tyne.\nNE25 0DG</strong>.\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\n\nYou can also learn about our regular events and workshops by joining our newsletter above.','NEWCASTLE HYP','','inherit','closed','closed','','1813-autosave-v1','','','2018-10-28 17:53:19','2018-10-28 17:53:19','',1813,'https://www.newcastle-hypnotherapy.com/1813-autosave-v1/',0,'revision','',0),(1873,1,'2018-10-28 17:53:43','2018-10-28 17:53:43','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\nYou can find our Seaton Delaval Practice at:\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail.  Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnotherapy work for everyone?\r\n</strong>Hypnosis works for most people and provides good results for most people. However, hypnotherapy is not always the best route for every client or always the best route for every issue. The good news is that we have many alternatives we can use. NLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval can be found at\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.','NEWCASTLE HYPNOTHERAPY IN SEATON DELAVAL','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 17:53:43','2018-10-28 17:53:43','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(2477,1,'2019-01-06 14:43:20','2019-01-06 14:43:20','The Wednesday Workshop - Getting The Best Out Of 2019\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 powerful skills.</span></h2>\r\n<iframe src=\"https://www.youtube.com/embed/hGFMkyt8U90?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<strong><span style=\"color: #008000;\">You can learn and practice these effective skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n<strong>16th Jan, The Vault. 7.30 pm to 9.30 - </strong><strong>Book Below</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n<ul>\r\n 	<li>REDUCE STRESS</li>\r\n 	<li>CONTROL ANXIETY</li>\r\n 	<li>CONQUER DEPRESSION</li>\r\n 	<li>IMPROVE SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>FEEL BETTER</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>IMPROVE YOUR PERFORMANCE</li>\r\n 	<li>CHANGE HABITS &amp; BEHAVIOURS</li>\r\n 	<li>BETTER TEMPER &amp; MOOD</li>\r\n 	<li>FEEL HAPPIER</li>\r\n 	<li>LEARN NEW SKILLS</li>\r\n 	<li>BE A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n 	<li>MAKE MORE MONEY</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and goals. It\'s simply all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\n<strong>This Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.</strong>\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events by simply joining our newsletter.</strong>\r\n<strong>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]</strong>\r\n<strong>Your privacy is always important to us and we are GDPR compliant.</strong>\r\n<strong>You may leave the newsletter at any time.</strong>\r\n\r\nYou can also join our <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></span> for more information on events and take part in the discussions.\r\n\r\nIf you would like to work with us privately to help with any issue please visit the <a href=\"https://www.newcastle-hypnotherapy.com\"><strong><span style=\"color: #339966;\">Newcastle Hypnotherapy Main Page</span></strong></a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2019-01-06 14:43:20','2019-01-06 14:43:20','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(1875,1,'2018-10-28 17:56:32','2018-10-28 17:56:32','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\n<span style=\"color: #008000;\"><strong>You can find our Seaton Delaval Practice at:</strong></span>\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail.  Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnotherapy work for everyone?\r\n</strong>Hypnosis works for most people and provides good results for most people. However, hypnotherapy is not always the best route for every client or always the best route for every issue. The good news is that we have many alternatives we can use. NLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval can be found at\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.','NEWCASTLE HYPNOTHERAPY IN SEATON DELAVAL','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 17:56:32','2018-10-28 17:56:32','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1876,1,'2018-10-28 18:02:12','2018-10-28 18:02:12','','Free Hypnosis Resources','','inherit','open','closed','','fb-header01nh','','','2019-01-28 08:26:27','2019-01-28 08:26:27','',1813,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/fb-header01NH.jpg',0,'attachment','image/jpeg',0),(1877,1,'2018-10-28 18:34:20','2018-10-28 18:34:20','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\n<span style=\"color: #008000;\"><strong>You can find our Seaton Delaval Practice at:</strong></span>\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail.  Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnotherapy work for everyone?\r\n</strong>Hypnosis works for most people and provides good results for most people. However, hypnotherapy is not always the best route for every client or always the best route for every issue. The good news is that we have many alternatives we can use. NLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval can be found at\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.3049713848686!2d-1.528295284095749!3d55.07291028037695!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb671e16403c025d4!2sNewcastle+Hypnotherapy+in+Seaton+Delaval!5e0!3m2!1sen!2suk!4v1540751587955\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>','NEWCASTLE HYPNOTHERAPY IN SEATON DELAVAL','','inherit','closed','closed','','1813-revision-v1','','','2018-10-28 18:34:20','2018-10-28 18:34:20','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1878,0,'2018-10-28 22:09:20','2018-10-28 22:09:20','','Order &ndash; October 28, 2018 @ 10:09 PM','i am in the area and will proceed to the venue on the evening for this talk.','wc-processing','open','closed','order_5bd6339055fec','order-oct-28-2018-1009-pm','','','2018-10-28 22:12:18','2018-10-28 22:12:18','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=1878',0,'shop_order','',2),(1880,1,'2018-10-29 16:19:54','2018-10-29 16:19:54','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre</strong> in Wallsend, Newcastle upon Tyne.</span></p>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nWe can also offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-29 16:19:54','2018-10-29 16:19:54','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0);
INSERT INTO `wpqj_posts` VALUES (1881,1,'2018-10-29 16:21:26','2018-10-29 16:21:26','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy - Mark Morley\" width=\"145\" height=\"141\" /> <span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre</strong> in Wallsend, Newcastle upon Tyne.</span></p>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-29 16:21:26','2018-10-29 16:21:26','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1883,1,'2018-10-29 16:26:01','2018-10-29 16:26:01','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre</strong> in Wallsend, Newcastle upon Tyne.</span></p>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-29 16:26:01','2018-10-29 16:26:01','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1882,1,'2018-10-29 16:24:02','2018-10-29 16:24:02','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />We fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre</strong> in Wallsend, Newcastle upon Tyne.</span></p>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-29 16:24:02','2018-10-29 16:24:02','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1890,1,'2018-10-29 17:26:03','2018-10-29 17:26:03','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre</strong> in Wallsend, Newcastle upon Tyne.</span></p>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-29 17:26:03','2018-10-29 17:26:03','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1884,1,'2018-10-29 16:32:41','2018-10-29 16:32:41','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre</strong> in Wallsend, Newcastle upon Tyne.</span></p>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<div class=\"responsive-map\">\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n</div>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-29 16:32:41','2018-10-29 16:32:41','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1886,1,'2018-10-29 16:33:50','2018-10-29 16:33:50','.responsive-map{\noverflow:hidden;\npadding-bottom:56.25%;\nposition:relative;\nheight:0;\n}\n.responsive-map iframe{\nleft:0;\ntop:0;\nheight:100%;\nwidth:100%;\nposition:absolute;\n}','responsivepro','','publish','closed','closed','','responsivepro','','','2018-10-29 16:33:50','2018-10-29 16:33:50','',0,'https://www.newcastle-hypnotherapy.com/responsivepro/',0,'custom_css','',0),(1887,1,'2018-10-29 16:33:50','2018-10-29 16:33:50','.responsive-map{\noverflow:hidden;\npadding-bottom:56.25%;\nposition:relative;\nheight:0;\n}\n.responsive-map iframe{\nleft:0;\ntop:0;\nheight:100%;\nwidth:100%;\nposition:absolute;\n}','responsivepro','','inherit','closed','closed','','1886-revision-v1','','','2018-10-29 16:33:50','2018-10-29 16:33:50','',1886,'https://www.newcastle-hypnotherapy.com/1886-revision-v1/',0,'revision','',0),(1888,1,'2018-10-29 16:46:30','2018-10-29 16:46:30','<strong>You can also find Newcastle Hypnotherapy in Seaton Delaval.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\n<span style=\"color: #008000;\"><strong>You can find our Seaton Delaval Practice at:</strong></span>\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail.  Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnotherapy work for everyone?\r\n</strong>Hypnosis works for most people and provides good results for most people. However, hypnotherapy is not always the best route for every client or always the best route for every issue. The good news is that we have many alternatives we can use. NLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval can be found at\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.3049713848686!2d-1.528295284095749!3d55.07291028037695!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb671e16403c025d4!2sNewcastle+Hypnotherapy+in+Seaton+Delaval!5e0!3m2!1sen!2suk!4v1540751587955\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\r\n</div>','NEWCASTLE HYPNOTHERAPY IN SEATON DELAVAL','','inherit','closed','closed','','1813-revision-v1','','','2018-10-29 16:46:30','2018-10-29 16:46:30','',1813,'https://www.newcastle-hypnotherapy.com/1813-revision-v1/',0,'revision','',0),(1889,1,'2018-10-29 17:10:21','2018-10-29 17:10:21','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre</strong> in Wallsend, Newcastle upon Tyne.</span></p>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-29 17:10:21','2018-10-29 17:10:21','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1891,1,'2018-10-29 17:26:44','2018-10-29 17:26:44','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre</strong> in Wallsend, Newcastle upon Tyne.</span></p>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-29 17:26:44','2018-10-29 17:26:44','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1892,1,'2018-10-29 17:27:35','2018-10-29 17:27:35','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre</strong> in Wallsend, Newcastle upon Tyne.</span></p>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-29 17:27:35','2018-10-29 17:27:35','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1894,1,'2018-10-29 17:30:59','2018-10-29 17:30:59','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre</strong> in Wallsend, Newcastle upon Tyne.</span></p>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-29 17:30:59','2018-10-29 17:30:59','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1893,1,'2018-10-29 17:28:54','2018-10-29 17:28:54','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre</strong> in Wallsend, Newcastle upon Tyne.</span></p>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong>Quick Links</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-29 17:28:54','2018-10-29 17:28:54','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1895,1,'2018-10-29 17:31:57','2018-10-29 17:31:57','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre</strong> in Wallsend, Newcastle upon Tyne.</span></p>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-10-29 17:31:57','2018-10-29 17:31:57','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1899,0,'2018-11-06 07:53:39','2018-11-06 07:53:39','','Order &ndash; November 6, 2018 @ 07:53 AM','','wc-on-hold','open','closed','order_5be1488399b02','order-nov-06-2018-0753-am','','','2018-11-06 07:53:39','2018-11-06 07:53:39','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=1899',0,'shop_order','',1),(1900,1,'2018-11-08 21:46:19','2018-11-08 21:46:19','Edgar Cayce American Psychic &amp; Clairvoyant Talk by Sandra Michelson.\r\n<img class=\"alignleft wp-image-1771\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"Edgar Cayce American Psychic &amp; Clairvoyant Talk\" width=\"300\" height=\"402\" />\r\nMany thanks to Sandra Michelson and &amp; Gary for giving such a fascinating talk and discussion about Edgar Cayce the American psychic &amp; clairvoyant.\r\n\r\nAs part of The Wednesday Workshop, we cover many subjects, topics and skills and always looking for new speakers or people who can share valuable skills.\r\n\r\nBelow are the audio recordings of the evening of the Edgar Cayce Talk.\r\nWe hope you enjoy them as much as we do and please share them with friends who have similar interests.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce American Psychic &amp; Clairvoyant - part 1</strong></span></h2>\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/NgeZatM2uAc\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce American Psychic &amp; Clairvoyant - part 2</strong></span></h2>\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/fVoV7wyBB-8\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\">Edgar Cayce American Psychic &amp; Clairvoyant - part 3</span></h2>\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/ob1rsbpjm7g\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\nYou can learn more about our regular events, workshops and The Wednesday Workshop by joining our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant and you can leave the newsletter at any time by clicking the link in an email.\r\n\r\n&nbsp;','Edgar Cayce American Psychic & Clairvoyant Talk','','publish','closed','closed','','edgar-cayce-american-psychic-clairvoyant-talk','','','2018-11-08 21:57:51','2018-11-08 21:57:51','',0,'https://www.newcastle-hypnotherapy.com/?page_id=1900',0,'page','',0),(1901,1,'2018-11-08 21:32:47','2018-11-08 21:32:47','Edgar Cayce American Psychic &amp; Clairvoyant Talk by Sandra Michelson.\r\n<img class=\"alignleft size-full wp-image-1771\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"Edgar Cayce American Psychic &amp; Clairvoyant Talk\" width=\"200\" height=\"268\" />\r\nMany thanks to Sandra Michelson and &amp; Gary for giving such a fascinating talk and discussion about Edgar Cayce the American psychic &amp; clairvoyant.\r\n\r\nAs part of The Wednesday Workshop, we cover may subjects, topics and skills and always looking for new speakers or people who can share valuble skills.\r\n\r\nBelow are the audio recordings of the evening of the Edgar Cayce Talk.\r\nWe hope you enjoy them as much as we do and please share them with friends who have similar interests.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Edgar Cayce American Psychic & Clairvoyant Talk','','inherit','closed','closed','','1900-revision-v1','','','2018-11-08 21:32:47','2018-11-08 21:32:47','',1900,'https://www.newcastle-hypnotherapy.com/1900-revision-v1/',0,'revision','',0),(1904,1,'2018-11-08 21:42:51','2018-11-08 21:42:51','Edgar Cayce American Psychic &amp; Clairvoyant Talk by Sandra Michelson.\r\n<img class=\"alignleft size-full wp-image-1771\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"Edgar Cayce American Psychic &amp; Clairvoyant Talk\" width=\"200\" height=\"268\" />\r\nMany thanks to Sandra Michelson and &amp; Gary for giving such a fascinating talk and discussion about Edgar Cayce the American psychic &amp; clairvoyant.\r\n\r\nAs part of The Wednesday Workshop, we cover may subjects, topics and skills and always looking for new speakers or people who can share valuble skills.\r\n\r\nBelow are the audio recordings of the evening of the Edgar Cayce Talk.\r\nWe hope you enjoy them as much as we do and please share them with friends who have similar interests.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce American Psychic &amp; Clairvoyant - part 1</strong></span></h2>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/NgeZatM2uAc\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce American Psychic &amp; Clairvoyant - part 2</strong></span></h2>\r\n<div class=\"embed-container\">&lt;<iframe src=\"https://www.youtube.com/embed/fVoV7wyBB-8\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\">Edgar Cayce American Psychic &amp; Clairvoyant - part 3</span></h2>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/ob1rsbpjm7g\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n\r\n&nbsp;','Edgar Cayce American Psychic & Clairvoyant Talk','','inherit','closed','closed','','1900-revision-v1','','','2018-11-08 21:42:51','2018-11-08 21:42:51','',1900,'https://www.newcastle-hypnotherapy.com/1900-revision-v1/',0,'revision','',0),(1902,1,'2018-11-08 21:36:10','2018-11-08 21:36:10','Edgar Cayce American Psychic &amp; Clairvoyant Talk by Sandra Michelson.\r\n<img class=\"alignleft size-full wp-image-1771\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"Edgar Cayce American Psychic &amp; Clairvoyant Talk\" width=\"200\" height=\"268\" />\r\nMany thanks to Sandra Michelson and &amp; Gary for giving such a fascinating talk and discussion about Edgar Cayce the American psychic &amp; clairvoyant.\r\n\r\nAs part of The Wednesday Workshop, we cover may subjects, topics and skills and always looking for new speakers or people who can share valuble skills.\r\n\r\nBelow are the audio recordings of the evening of the Edgar Cayce Talk.\r\nWe hope you enjoy them as much as we do and please share them with friends who have similar interests.\r\n\r\n&nbsp;\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/NgeZatM2uAc\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></div>\r\n<strong>\r\n\r\n&nbsp;\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>','Edgar Cayce American Psychic & Clairvoyant Talk','','inherit','closed','closed','','1900-revision-v1','','','2018-11-08 21:36:10','2018-11-08 21:36:10','',1900,'https://www.newcastle-hypnotherapy.com/1900-revision-v1/',0,'revision','',0),(1903,1,'2018-11-08 21:39:27','2018-11-08 21:39:27','Edgar Cayce American Psychic &amp; Clairvoyant Talk by Sandra Michelson.\r\n<img class=\"alignleft size-full wp-image-1771\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"Edgar Cayce American Psychic &amp; Clairvoyant Talk\" width=\"200\" height=\"268\" />\r\nMany thanks to Sandra Michelson and &amp; Gary for giving such a fascinating talk and discussion about Edgar Cayce the American psychic &amp; clairvoyant.\r\n\r\nAs part of The Wednesday Workshop, we cover may subjects, topics and skills and always looking for new speakers or people who can share valuble skills.\r\n\r\nBelow are the audio recordings of the evening of the Edgar Cayce Talk.\r\nWe hope you enjoy them as much as we do and please share them with friends who have similar interests.\r\n\r\n&nbsp;\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/NgeZatM2uAc\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></div>\r\n<strong>\r\n\r\n&nbsp;\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fVoV7wyBB-8\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></div>\r\n<strong>\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/ob1rsbpjm7g\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></div>\r\n<strong>\r\n\r\n&nbsp;','Edgar Cayce American Psychic & Clairvoyant Talk','','inherit','closed','closed','','1900-revision-v1','','','2018-11-08 21:39:27','2018-11-08 21:39:27','',1900,'https://www.newcastle-hypnotherapy.com/1900-revision-v1/',0,'revision','',0),(1905,1,'2018-11-08 21:46:19','2018-11-08 21:46:19','Edgar Cayce American Psychic &amp; Clairvoyant Talk by Sandra Michelson.\r\n<img class=\"alignleft size-full wp-image-1771\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"Edgar Cayce American Psychic &amp; Clairvoyant Talk\" width=\"200\" height=\"268\" />\r\nMany thanks to Sandra Michelson and &amp; Gary for giving such a fascinating talk and discussion about Edgar Cayce the American psychic &amp; clairvoyant.\r\n\r\nAs part of The Wednesday Workshop, we cover many subjects, topics and skills and always looking for new speakers or people who can share valuable skills.\r\n\r\nBelow are the audio recordings of the evening of the Edgar Cayce Talk.\r\nWe hope you enjoy them as much as we do and please share them with friends who have similar interests.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce American Psychic &amp; Clairvoyant - part 1</strong></span></h2>\r\n<div class=\"embed-container\"></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce American Psychic &amp; Clairvoyant - part 2</strong></span></h2>\r\n<div class=\"embed-container\">&lt;</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\">Edgar Cayce American Psychic &amp; Clairvoyant - part 3</span></h2>\r\n<div class=\"embed-container\"></div>\r\nYou can learn more about our regular events, workkshops and The Wednesday Workshop by joining our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant and you can leave the newsletter at any time by clicking the link in an email.\r\n\r\n&nbsp;','Edgar Cayce American Psychic & Clairvoyant Talk','','inherit','closed','closed','','1900-revision-v1','','','2018-11-08 21:46:19','2018-11-08 21:46:19','',1900,'https://www.newcastle-hypnotherapy.com/1900-revision-v1/',0,'revision','',0),(1907,1,'2018-11-08 21:57:30','2018-11-08 21:57:30','Edgar Cayce American Psychic &amp; Clairvoyant Talk by Sandra Michelson.\n<img class=\"alignleft wp-image-1771\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"Edgar Cayce American Psychic &amp; Clairvoyant Talk\" width=\"300\" height=\"402\" />\nMany thanks to Sandra Michelson and &amp; Gary for giving such a fascinating talk and discussion about Edgar Cayce the American psychic &amp; clairvoyant.\n\nAs part of The Wednesday Workshop, we cover many subjects, topics and skills and always looking for new speakers or people who can share valuable skills.\n\nBelow are the audio recordings of the evening of the Edgar Cayce Talk.\nWe hope you enjoy them as much as we do and please share them with friends who have similar interests.\n\n&nbsp;\n\n&nbsp;\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce American Psychic &amp; Clairvoyant - part 1</strong></span></h2>\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/NgeZatM2uAc\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\n&nbsp;\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce American Psychic &amp; Clairvoyant - part 2</strong></span></h2>\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/fVoV7wyBB-8\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\n&nbsp;\n<h2><span style=\"color: #008000;\">Edgar Cayce American Psychic &amp; Clairvoyant - part 3</span></h2>\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/ob1rsbpjm7g\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\nYou can learn more about our regular events, workshops and The Wednesday Workshop by joining our newsletter.\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\nWe are GDPR compliant and you can leave the newsletter at any time by clicking the link in an email.\n\n&nbsp;','Edgar Cayce American Psychic & Clairvoyant Talk','','inherit','closed','closed','','1900-autosave-v1','','','2018-11-08 21:57:30','2018-11-08 21:57:30','',1900,'https://www.newcastle-hypnotherapy.com/1900-autosave-v1/',0,'revision','',0),(1909,1,'2018-11-08 21:51:28','2018-11-08 21:51:28','Edgar Cayce American Psychic &amp; Clairvoyant Talk by Sandra Michelson.\r\n<img class=\"alignleft size-full wp-image-1771\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"Edgar Cayce American Psychic &amp; Clairvoyant Talk\" width=\"200\" height=\"268\" />\r\nMany thanks to Sandra Michelson and &amp; Gary for giving such a fascinating talk and discussion about Edgar Cayce the American psychic &amp; clairvoyant.\r\n\r\nAs part of The Wednesday Workshop, we cover many subjects, topics and skills and always looking for new speakers or people who can share valuable skills.\r\n\r\nBelow are the audio recordings of the evening of the Edgar Cayce Talk.\r\nWe hope you enjoy them as much as we do and please share them with friends who have similar interests.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce American Psychic &amp; Clairvoyant - part 1</strong></span></h2>\r\n<div class=\"embed-container\"></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce American Psychic &amp; Clairvoyant - part 2</strong></span></h2>\r\n<div class=\"embed-container\">&lt;</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\">Edgar Cayce American Psychic &amp; Clairvoyant - part 3</span></h2>\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/ob1rsbpjm7g\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\nYou can learn more about our regular events, workkshops and The Wednesday Workshop by joining our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant and you can leave the newsletter at any time by clicking the link in an email.\r\n\r\n&nbsp;','Edgar Cayce American Psychic & Clairvoyant Talk','','inherit','closed','closed','','1900-revision-v1','','','2018-11-08 21:51:28','2018-11-08 21:51:28','',1900,'https://www.newcastle-hypnotherapy.com/1900-revision-v1/',0,'revision','',0),(1908,1,'2018-11-08 21:50:48','2018-11-08 21:50:48','Edgar Cayce American Psychic &amp; Clairvoyant Talk by Sandra Michelson.\r\n<img class=\"alignleft size-full wp-image-1771\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"Edgar Cayce American Psychic &amp; Clairvoyant Talk\" width=\"200\" height=\"268\" />\r\nMany thanks to Sandra Michelson and &amp; Gary for giving such a fascinating talk and discussion about Edgar Cayce the American psychic &amp; clairvoyant.\r\n\r\nAs part of The Wednesday Workshop, we cover many subjects, topics and skills and always looking for new speakers or people who can share valuable skills.\r\n\r\nBelow are the audio recordings of the evening of the Edgar Cayce Talk.\r\nWe hope you enjoy them as much as we do and please share them with friends who have similar interests.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce American Psychic &amp; Clairvoyant - part 1</strong></span></h2>\r\n<div class=\"embed-container\"></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce American Psychic &amp; Clairvoyant - part 2</strong></span></h2>\r\n<div class=\"embed-container\">&lt;</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\">Edgar Cayce American Psychic &amp; Clairvoyant - part 3</span></h2>\r\n<div class=\"embed-container\"></div>\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/ob1rsbpjm7g\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></div>\r\n\r\nYou can learn more about our regular events, workkshops and The Wednesday Workshop by joining our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant and you can leave the newsletter at any time by clicking the link in an email.\r\n\r\n&nbsp;','Edgar Cayce American Psychic & Clairvoyant Talk','','inherit','closed','closed','','1900-revision-v1','','','2018-11-08 21:50:48','2018-11-08 21:50:48','',1900,'https://www.newcastle-hypnotherapy.com/1900-revision-v1/',0,'revision','',0),(1913,1,'2018-11-08 21:57:51','2018-11-08 21:57:51','Edgar Cayce American Psychic &amp; Clairvoyant Talk by Sandra Michelson.\r\n<img class=\"alignleft wp-image-1771\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"Edgar Cayce American Psychic &amp; Clairvoyant Talk\" width=\"300\" height=\"402\" />\r\nMany thanks to Sandra Michelson and &amp; Gary for giving such a fascinating talk and discussion about Edgar Cayce the American psychic &amp; clairvoyant.\r\n\r\nAs part of The Wednesday Workshop, we cover many subjects, topics and skills and always looking for new speakers or people who can share valuable skills.\r\n\r\nBelow are the audio recordings of the evening of the Edgar Cayce Talk.\r\nWe hope you enjoy them as much as we do and please share them with friends who have similar interests.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce American Psychic &amp; Clairvoyant - part 1</strong></span></h2>\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/NgeZatM2uAc\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce American Psychic &amp; Clairvoyant - part 2</strong></span></h2>\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/fVoV7wyBB-8\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\">Edgar Cayce American Psychic &amp; Clairvoyant - part 3</span></h2>\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/ob1rsbpjm7g\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\nYou can learn more about our regular events, workshops and The Wednesday Workshop by joining our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant and you can leave the newsletter at any time by clicking the link in an email.\r\n\r\n&nbsp;','Edgar Cayce American Psychic & Clairvoyant Talk','','inherit','closed','closed','','1900-revision-v1','','','2018-11-08 21:57:51','2018-11-08 21:57:51','',1900,'https://www.newcastle-hypnotherapy.com/1900-revision-v1/',0,'revision','',0),(1911,1,'2018-11-08 21:54:12','2018-11-08 21:54:12','Edgar Cayce American Psychic &amp; Clairvoyant Talk by Sandra Michelson.\r\n<img class=\"alignleft size-full wp-image-1771\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"Edgar Cayce American Psychic &amp; Clairvoyant Talk\" width=\"200\" height=\"268\" />\r\nMany thanks to Sandra Michelson and &amp; Gary for giving such a fascinating talk and discussion about Edgar Cayce the American psychic &amp; clairvoyant.\r\n\r\nAs part of The Wednesday Workshop, we cover many subjects, topics and skills and always looking for new speakers or people who can share valuable skills.\r\n\r\nBelow are the audio recordings of the evening of the Edgar Cayce Talk.\r\nWe hope you enjoy them as much as we do and please share them with friends who have similar interests.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce American Psychic &amp; Clairvoyant - part 1</strong></span></h2>\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/NgeZatM2uAc\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce American Psychic &amp; Clairvoyant - part 2</strong></span></h2>\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/fVoV7wyBB-8\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\">Edgar Cayce American Psychic &amp; Clairvoyant - part 3</span></h2>\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/ob1rsbpjm7g\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\nYou can learn more about our regular events, workkshops and The Wednesday Workshop by joining our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant and you can leave the newsletter at any time by clicking the link in an email.\r\n\r\n&nbsp;','Edgar Cayce American Psychic & Clairvoyant Talk','','inherit','closed','closed','','1900-revision-v1','','','2018-11-08 21:54:12','2018-11-08 21:54:12','',1900,'https://www.newcastle-hypnotherapy.com/1900-revision-v1/',0,'revision','',0),(1910,1,'2018-11-08 21:53:36','2018-11-08 21:53:36','Edgar Cayce American Psychic &amp; Clairvoyant Talk by Sandra Michelson.\r\n<img class=\"alignleft size-full wp-image-1771\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"Edgar Cayce American Psychic &amp; Clairvoyant Talk\" width=\"200\" height=\"268\" />\r\nMany thanks to Sandra Michelson and &amp; Gary for giving such a fascinating talk and discussion about Edgar Cayce the American psychic &amp; clairvoyant.\r\n\r\nAs part of The Wednesday Workshop, we cover many subjects, topics and skills and always looking for new speakers or people who can share valuable skills.\r\n\r\nBelow are the audio recordings of the evening of the Edgar Cayce Talk.\r\nWe hope you enjoy them as much as we do and please share them with friends who have similar interests.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce American Psychic &amp; Clairvoyant - part 1</strong></span></h2>\r\n<div class=\"embed-container\"></div>\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/NgeZatM2uAc\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce American Psychic &amp; Clairvoyant - part 2</strong></span></h2>\r\n<div class=\"embed-container\">&lt;</div>\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/fVoV7wyBB-8\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\">Edgar Cayce American Psychic &amp; Clairvoyant - part 3</span></h2>\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/ob1rsbpjm7g\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\nYou can learn more about our regular events, workkshops and The Wednesday Workshop by joining our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant and you can leave the newsletter at any time by clicking the link in an email.\r\n\r\n&nbsp;','Edgar Cayce American Psychic & Clairvoyant Talk','','inherit','closed','closed','','1900-revision-v1','','','2018-11-08 21:53:36','2018-11-08 21:53:36','',1900,'https://www.newcastle-hypnotherapy.com/1900-revision-v1/',0,'revision','',0),(1912,1,'2018-11-08 21:54:52','2018-11-08 21:54:52','Edgar Cayce American Psychic &amp; Clairvoyant Talk by Sandra Michelson.\r\n<img class=\"alignleft size-full wp-image-1771\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"Edgar Cayce American Psychic &amp; Clairvoyant Talk\" width=\"200\" height=\"268\" />\r\nMany thanks to Sandra Michelson and &amp; Gary for giving such a fascinating talk and discussion about Edgar Cayce the American psychic &amp; clairvoyant.\r\n\r\nAs part of The Wednesday Workshop, we cover many subjects, topics and skills and always looking for new speakers or people who can share valuable skills.\r\n\r\nBelow are the audio recordings of the evening of the Edgar Cayce Talk.\r\nWe hope you enjoy them as much as we do and please share them with friends who have similar interests.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce American Psychic &amp; Clairvoyant - part 1</strong></span></h2>\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/NgeZatM2uAc\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce American Psychic &amp; Clairvoyant - part 2</strong></span></h2>\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/fVoV7wyBB-8\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\">Edgar Cayce American Psychic &amp; Clairvoyant - part 3</span></h2>\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/ob1rsbpjm7g\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\nYou can learn more about our regular events, workshops and The Wednesday Workshop by joining our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant and you can leave the newsletter at any time by clicking the link in an email.\r\n\r\n&nbsp;','Edgar Cayce American Psychic & Clairvoyant Talk','','inherit','closed','closed','','1900-revision-v1','','','2018-11-08 21:54:52','2018-11-08 21:54:52','',1900,'https://www.newcastle-hypnotherapy.com/1900-revision-v1/',0,'revision','',0),(1914,1,'2018-11-08 22:30:29','2018-11-08 22:30:29','<img class=\"alignleft wp-image-1771\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/Cayce_1910.jpg\" alt=\"Edgar Cayce Talk by Sandra Michelson\" width=\"300\" height=\"402\" />\r\n\r\n<strong>Update!</strong>\r\nThanks to everyone who came along to this wonderful talk about Edgar Cayce and special thanks to Sandra &amp; Gary who gave such as great talk and discussion.\r\nWe did manage to record this talk and it now available to listen to again.\r\nSimply click below.\r\n\r\n<span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/edgar-cayce-american-psychic-clairvoyant-talk/\">Edgar Cayce American Psychic Talk</a></strong></span>\r\n\r\n\r\nWe have something very special for you all on the 7th of November.\r\n\r\n<strong>Edgar Cayce Talk by Sandra Michelson\r\n</strong>\r\n\r\nSandra Michelson is coming to share her knowledge of Edgar Cayce, with a fascinating talk and discussion.\r\n\r\nTaken from Wikipedia - \"Edgar Cayce (/ˈkeɪsiː/; March 18, 1877 – January 3, 1945) was an American clairvoyant who answered questions on subjects as varied as healing, reincarnation, wars, Atlantis, and future events while claiming to be in a trance. A biographer gave him the nickname, The Sleeping Prophet. A nonprofit organization, the Association for Research and Enlightenment, was founded to facilitate the study of Cayce\'s work.\r\nSome consider him the true founder and a principal source of the most characteristic beliefs of the New Age movement. Cayce is also notable for his contributions to the notions of diet and health, particularly the issues of food combining, acid/alkaline diet, and the therapeutic use of food.\"\r\n<h2><span style=\"color: #008000;\"><strong>Edgar Cayce Talk by Sandra Michelson</strong></span></h2>\r\nThis Wednesday Workshop is taking place @ The Vault, Wallsend. 7th November 7.30 pm to 9.30pm.\r\nWe are expecting this to be a very busy event and you do need to book your place in advance.\r\n\r\n<strong>If you would like to learn more about future events please join the newsletter below</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;','Edgar Cayce Talk & Discussion by Sandra Michelson - 7th Nov','','inherit','closed','closed','','1770-revision-v1','','','2018-11-08 22:30:29','2018-11-08 22:30:29','',1770,'https://www.newcastle-hypnotherapy.com/1770-revision-v1/',0,'revision','',0),(1915,1,'2018-11-08 22:47:15','2018-11-08 22:47:15','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span>\r\n\r\n<strong>Join us for another enjoyable evening of Past Life <span style=\"color: #000000;\">Regression with a healing meditation.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\nThere will also be a healing meditation\r\n\r\n<strong>The Vault, Wallsend, Wednesday 5th December, 7.30 pm to 10 pm.</strong>\r\n£10 or £15 per person. Booking required. Limited Spaces.\r\nIncludes tea, coffee &amp; snacks.\r\n\r\n<strong>Pricing.</strong> £10 per person When you book your place online before the 25th of November.\r\nIf places are available after the 25th November the price is £15. We do expect this to sell out again so please book early to avoid disappointment.\r\nWe will record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\n\r\n<img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nThe Wednesday Workshop is held on the first and third Wednesday of each month as a nonprofit group. Each evening we explore a new subject of discovery.\r\nFeel free to suggest a topic or skill you would like to learn. If you could take part in a workshop to share or teach a skill please let us know via the <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us Form.</strong></a>\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out before the workshop.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /> </form>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop - 5th December','','inherit','closed','closed','','1185-revision-v1','','','2018-11-08 22:47:15','2018-11-08 22:47:15','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(2216,1,'2018-12-20 18:04:38','2018-12-20 18:04:38','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte Street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong>White Feather House is very close to the Metro Station and handy for drivers as there is always plenty of car parking near Charlotte Street.<strong>\r\n</strong><em>Appointments need to be booked in advance </em>please<em>. </em>Our other locations can be found below.</span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nWe run regular events, trainings and workshops from the South Shields Hypnotherapy Practice.\r\nJust some of the topics we cover are Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and many more more.\r\nYou can also take part in targeted workshops for Anxiety, Stress, Depression, Confidence, Pain Managemen etc.\r\n<strong>To learn more about these events simply <em>join the newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions &amp; Answers.\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy in the North East?\r\n</strong></span></h4>\r\nYes, you can also find us at:\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us as long as the conditions are right.\r\nSimply as about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\">Do you offer online Hypnosis and NLP services?</span></h4>\r\nOnline sessions have become very popular lately. For most issues, online sessions are just as effective as face to face appointments.\r\nSimply ask about online hypnosis sessions when you give us a call.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a talk or demonstration for a organisation?</strong></span></h4>\r\nOf course. We do quite a number of specialist events for companies, charites, groups on a number of subjects.\r\nSimply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you offer help for children and young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nUsually, an appointment will take about and hour and a half for the first session and following sessions are about an hour.\r\nWe can give advise during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How do I know how many appointments I will need?\r\n</strong></span></h4>\r\nOnce we have spoken we can advise better on the number of sessions. Quite often 2 to 3 sessions will see most issues resloved. Some people may require less or more.\r\n<h4><span style=\"color: #008000;\"><strong>What can I expect in my session?\r\n</strong></span></h4>\r\nHypnosis is a natural focused state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nDuring your session we start by exploring your issues and outcomes. During the hypnosis part of your session, clients state they are fully alert, remembering everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis. How should I start?</strong></span></h4>\r\nSelf-Hypnosis is an amazinig skill to learn as it allows you to control your states, feelings and emotions very quickly.\r\nOnce you learn Self-Hypnosis is gives you power over many issues such as anxiety, stress, depression, habits and behavious.\r\nWe teach self-hypnosis skills to most clients and we can do this through one to one sessions and small group sessions. We also run trainings through the <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops </strong></a>and larger courses<strong>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy South Shields can be found at\r\n\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte Street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Hypnotherapy Near Me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','South Shields Hypnotherapy Practice','','publish','closed','closed','','south-shields-hypnotherapy-practice','','','2018-12-20 23:52:30','2018-12-20 23:52:30','',0,'https://www.newcastle-hypnotherapy.com/?page_id=2216',0,'page','',0),(1917,1,'2018-11-08 22:54:32','2018-11-08 22:54:32','Terms &amp; Conditions.\r\n\r\nAttendance is strictly by advance booking on a first come first served basis.\r\n\r\nOnce you have booked your place, the website will send you a confirmation.\r\nUseful notes regarding each workshop are sent out a few days in advance.\r\n\r\nRefund Policy. Please note we do not offer refunds if you are unable to attend.\r\nYou may transfer your place to someone else as required.','Past Life Regression 9th October - The Vault','You can book your place for the Past Life Regression Workshop now for just £15.\r\nYou can pay by Card, PayPal or Bank Transfer.\r\nPlaces are limited and booking in advance is required.','publish','closed','closed','','past-life-regression','','','2019-09-13 12:40:05','2019-09-13 12:40:05','',0,'https://www.newcastle-hypnotherapy.com/?post_type=product&#038;p=1917',0,'product','',0),(1918,1,'2018-11-08 23:01:37','2018-11-08 23:01:37','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span>\r\n\r\n<strong>Join us for another enjoyable evening of Past Life <span style=\"color: #000000;\">Regression with a healing meditation.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\nThere will also be a healing meditation\r\n\r\n<strong>The Vault, Wallsend, Wednesday 5th December, 7.30 pm to 10 pm.</strong>\r\n£10 or £15 per person. Booking required. Limited Spaces.\r\nIncludes tea, coffee &amp; snacks.\r\n\r\n<strong>Pricing.</strong> £10 per person When you book your place online before the 25th of November.\r\nIf places are available after the 25th November the price is £15. We do expect this to sell out again so please book early to avoid disappointment.\r\nWe will record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nThe Wednesday Workshop is held on the first and third Wednesday of each month as a nonprofit group. Each evening we explore a new subject of discovery.\r\nFeel free to suggest a topic or skill you would like to learn. If you could take part in a workshop to share or teach a skill please let us know via the <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us Form.</strong></a>\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out before the workshop.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop - 5th December','','inherit','closed','closed','','1185-revision-v1','','','2018-11-08 23:01:37','2018-11-08 23:01:37','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1919,1,'2018-11-08 23:02:13','2018-11-08 23:02:13','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span>\r\n\r\n<strong>Join us for another enjoyable evening of Past Life <span style=\"color: #000000;\">Regression with a short healing meditation.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\nThere will also be a healing meditation\r\n\r\n<strong>The Vault, Wallsend, Wednesday 5th December, 7.30 pm to 10 pm.</strong>\r\n£10 or £15 per person. Booking required. Limited Spaces.\r\nIncludes tea, coffee &amp; snacks.\r\n\r\n<strong>Pricing.</strong> £10 per person When you book your place online before the 25th of November.\r\nIf places are available after the 25th November the price is £15. We do expect this to sell out again so please book early to avoid disappointment.\r\nWe will record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nThe Wednesday Workshop is held on the first and third Wednesday of each month as a nonprofit group. Each evening we explore a new subject of discovery.\r\nFeel free to suggest a topic or skill you would like to learn. If you could take part in a workshop to share or teach a skill please let us know via the <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us Form.</strong></a>\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out before the workshop.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop - 5th December','','inherit','closed','closed','','1185-revision-v1','','','2018-11-08 23:02:13','2018-11-08 23:02:13','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1920,1,'2018-11-08 23:02:59','2018-11-08 23:02:59','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span>\r\n\r\n<strong>Join us for another enjoyable evening of Past Life <span style=\"color: #000000;\">Regression with a short healing meditation.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\nThere will also be a healing meditation\r\n\r\n<strong>The Vault, Wallsend, Wednesday 5th December, 7.30 pm to 10 pm.</strong>\r\n£10 or £15 per person. <strong>Booking required. Limited Spaces</strong>.\r\nIncludes tea, coffee &amp; snacks.\r\n\r\n<strong>Pricing.</strong> £10 per person When you book your place online before the 25th of November.\r\nIf places are available after the 25th November the price is £15. <strong>We do expect this to sell out again so please book early to avoid disappointment.</strong>\r\nWe will record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nThe Wednesday Workshop is held on the first and third Wednesday of each month as a nonprofit group. Each evening we explore a new subject of discovery.\r\nFeel free to suggest a topic or skill you would like to learn. If you could take part in a workshop to share or teach a skill please let us know via the <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us Form.</strong></a>\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out before the workshop.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop - 5th December','','inherit','closed','closed','','1185-revision-v1','','','2018-11-08 23:02:59','2018-11-08 23:02:59','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1921,1,'2018-11-08 23:03:52','2018-11-08 23:03:52','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span>\r\n\r\n<strong>Join us for another enjoyable evening of Past Life <span style=\"color: #000000;\">Regression with a short healing meditation.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\nThere will also be a healing meditation\r\n\r\n<strong>The Vault, Wallsend, Wednesday 5th December, 7.30 pm to 10 pm.</strong>\r\n£10 or £15 per person. <strong>Booking required. Limited Spaces</strong>.\r\nIncludes tea, coffee &amp; snacks.\r\n\r\n<strong>Pricing.</strong> £10 per person When you book your place online before the 25th of November.\r\nIf places are available after the 25th November the price is £15. <strong>We do expect this to sell out again so please book early to avoid disappointment.</strong>\r\nWe will record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nThe Wednesday Workshop is held on the first and third Wednesday of each month as a nonprofit group. Each evening we explore a new subject of discovery.\r\nFeel free to suggest a topic or skill you would like to learn. If you could take part in a workshop to share or teach a skill please let us know via the <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us Form.</strong></a>\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out before the workshop.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>To learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop - 5th December','','inherit','closed','closed','','1185-revision-v1','','','2018-11-08 23:03:52','2018-11-08 23:03:52','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(2440,1,'2019-01-02 13:48:15','2019-01-02 13:48:15','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span>\r\n\r\n<strong>Join us for another enjoyable evening of Past Life <span style=\"color: #000000;\">Regression.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\n\r\n<strong>White Feather House, South Shields.\r\nWednesday 23rd January December, 7 pm to 9.30 pm.</strong>\r\n£10 per person. <strong>Booking required. Limited Spaces</strong>.\r\nIncludes tea, coffee &amp; snacks.\r\n\r\n<strong>We do expect this to sell out again so please book early to avoid disappointment.</strong>\r\nWe will record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nThe Wednesday Workshop is held on the first and third Wednesday of each month as a nonprofit group. Each evening we explore a new subject of discovery.\r\nFeel free to suggest a topic or skill you would like to learn. If you could take part in a workshop to share or teach a skill please let us know via the <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us Form.</strong></a>\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out before the workshop.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>&nbsp;\r\n\r\n&nbsp;\r\n\r\nTo learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop - 23rd Jan','','inherit','closed','closed','','1185-revision-v1','','','2019-01-02 13:48:15','2019-01-02 13:48:15','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(1922,1,'2018-11-08 23:04:17','2018-11-08 23:04:17','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span>\r\n\r\n<strong>Join us for another enjoyable evening of Past Life <span style=\"color: #000000;\">Regression with a short healing meditation.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\nThere will also be a healing meditation\r\n\r\n<strong>The Vault, Wallsend, Wednesday 5th December, 7.30 pm to 10 pm.</strong>\r\n£10 or £15 per person. <strong>Booking required. Limited Spaces</strong>.\r\nIncludes tea, coffee &amp; snacks.\r\n\r\n<strong>Pricing.</strong> £10 per person When you book your place online before the 25th of November.\r\nIf places are available after the 25th November the price is £15. <strong>We do expect this to sell out again so please book early to avoid disappointment.</strong>\r\nWe will record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nThe Wednesday Workshop is held on the first and third Wednesday of each month as a nonprofit group. Each evening we explore a new subject of discovery.\r\nFeel free to suggest a topic or skill you would like to learn. If you could take part in a workshop to share or teach a skill please let us know via the <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us Form.</strong></a>\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out before the workshop.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>&nbsp;\r\n\r\n&nbsp;\r\n\r\nTo learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop - 5th December','','inherit','closed','closed','','1185-revision-v1','','','2018-11-08 23:04:17','2018-11-08 23:04:17','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(2003,1,'2018-11-19 15:50:34','2018-11-19 15:50:34','<img class=\"alignleft size-thumbnail wp-image-598\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/sol-3070188_1280-150x150.jpg\" alt=\"hypnosis for sleep improvement\" width=\"150\" height=\"150\" />Hypnosis can be a great solution for sleep problems as described in this article.\r\nIf you would like to discuss the options available to you regarding hypnosis for sleep improvement then give us a call on 07568 455 809.\r\n\r\nEnjoy this article about hypnosis for sleep improvement\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.dailymail.co.uk/health/article-5596195/Hypnotherapy-helping-beat-chronic-insomnia.html\" width=\"700\" height=\"2000\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Self-Hy</span></strong><span style=\"color: #008000;\"><strong>pnosis and Hypnosis For Sleep Improvement</strong>\r\n</span></h2>\r\nSleep is very important for good health and sadly many people experience sleep problems.\r\nLife can be very busy with plenty of stimulation and even when ready for sleep our minds can still be busy with all sorts of things.\r\nThe secret to a good nights sleep is to train your mind to switch off when sleep is required.\r\nHypnotherapy is very useful for sleep improvement and learning self-hypnosis can also help you to master a good nights sleep yourself.\r\n\r\nTo discuss how hypnosis can help you improve your sleep give us a call on 07568 455 809 today','Hypnosis For Sleep Improvement.','','inherit','closed','closed','','589-revision-v1','','','2018-11-19 15:50:34','2018-11-19 15:50:34','',589,'https://www.newcastle-hypnotherapy.com/589-revision-v1/',0,'revision','',0),(1929,1,'2019-02-24 16:54:07','2019-02-24 16:54:07','Terms &amp; Conditions.\n\nAttendance is strictly by advance booking on a first come first served basis.\n\nOnce you have booked your place, the website will send you a confirmation.\nUseful notes regarding each workshop are sent out a few days in advance.\n\nRefund Policy. Please note we do not offer refunds if you are unable to attend.\nYou may transfer your place to someone else as required.','Past Life Regression 20th March - The Vault','You can book your place for the Past Life Regression Workshop now for just £10.\nYou can pay by Card, PayPal or Bank Transfer.\nPlaces are limited and booking in advance is required.','inherit','closed','closed','','1917-autosave-v1','','','2019-02-24 16:54:07','2019-02-24 16:54:07','',1917,'https://www.newcastle-hypnotherapy.com/1917-autosave-v1/',0,'revision','',0),(1931,1,'2018-11-13 11:15:36','2018-11-13 11:15:36','{{unknown}}','','','publish','closed','closed','','6457c4d224afcb8c1934c34ba287613e','','','2018-11-13 11:15:36','2018-11-13 11:15:36','',0,'https://www.newcastle-hypnotherapy.com/6457c4d224afcb8c1934c34ba287613e/',0,'oembed_cache','',0),(2171,1,'2018-12-15 15:25:05','2018-12-15 15:25:05','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Newcastle Hypnotherapy runs and takes part in many local events, workshops and fairs to promote:\r\n</strong>\r\n<ul>\r\n 	<li>Learn Life Enhancing Skills.</li>\r\n 	<li>Handle Problems &amp; Challenges Better.</li>\r\n 	<li>Build Confidence &amp; Make New Friends.\r\n\r\nWe teach skils in\r\nNeuro-Linguistic Programming - NLP, Hypnosis, Self-Hypnosis, Emotional Freedom Technique</li>\r\n</ul>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Events</span></strong></h2>\r\nRuns on the 1st &amp; 3rd Wednesday each month and teachs new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfullness, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nThe Wednesday Workshop runs from The Vault in Wallsend on Wednesday evenings.\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join the <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group</strong></a></span> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-12-15 15:25:05','2018-12-15 15:25:05','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(1947,1,'2018-11-13 21:05:49','2018-11-13 21:05:49','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre</strong> in Wallsend, Newcastle upon Tyne.</span></p>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-11-13 21:05:49','2018-11-13 21:05:49','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1948,1,'2018-11-13 21:13:29','2018-11-13 21:13:29','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\nOur main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.\r\n</span></p>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-11-13 21:13:29','2018-11-13 21:13:29','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1949,1,'2018-11-13 21:46:40','2018-11-13 21:46:40','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these 3 steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-11-13 21:46:40','2018-11-13 21:46:40','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1950,0,'2018-11-13 22:37:37','2018-11-13 22:37:37','','Order &ndash; November 13, 2018 @ 10:37 PM','','wc-on-hold','open','closed','order_5beb5231917b4','order-nov-13-2018-1037-pm','','','2018-11-13 22:37:37','2018-11-13 22:37:37','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=1950',0,'shop_order','',2),(1953,1,'2018-11-14 19:32:34','2018-11-14 19:32:34','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-11-14 19:32:34','2018-11-14 19:32:34','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1952,1,'2018-11-14 19:28:21','2018-11-14 19:28:21','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">As Easy As 1 2 3</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Simply complete the Anxiety Client Questionaire - <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Anxiety-Program-Application-Form.doc\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-11-14 19:28:21','2018-11-14 19:28:21','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1954,1,'2018-11-14 19:33:32','2018-11-14 19:33:32','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-11-14 19:33:32','2018-11-14 19:33:32','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1955,1,'2018-11-14 19:34:59','2018-11-14 19:34:59','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span>\r\n\r\n<span style=\"color: #ff6600;\">Or grab your free Anxiety Help Tips below</span>\r\n</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-11-14 19:34:59','2018-11-14 19:34:59','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1956,1,'2018-11-14 19:35:27','2018-11-14 19:35:27','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><span style=\"color: #ff6600;\">Or grab your free Anxiety Help Tips below</span></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-11-14 19:35:27','2018-11-14 19:35:27','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1957,1,'2018-11-14 19:36:48','2018-11-14 19:36:48','','anxiety relief hypnosis program','','inherit','open','closed','','anxietystress','','','2018-11-14 19:37:16','2018-11-14 19:37:16','',68,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/anxietystress.jpg',0,'attachment','image/jpeg',0),(1958,1,'2018-11-14 19:38:30','2018-11-14 19:38:30','<h2><span style=\"color: #008000;\"><strong>Take control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><span style=\"color: #ff6600;\">\r\n\r\n<strong>Or grab your free Anxiety Help Tips below</strong></span></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-11-14 19:38:30','2018-11-14 19:38:30','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(1959,1,'2018-11-15 12:11:11','0000-00-00 00:00:00','Many of our anxiety clients have found this simple Anxiety Breathing Excercise has really helped their anxiety symptoms.\nLearn these simple exercises and let us know how much this also helps you.\n\nAnxiety Breathing Excercise Video\n\n<iframe src=\"https://www.youtube.com/embed/ztZQpcAHPI0?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','Anxiety Breathing Excercise','','draft','closed','closed','','','','','2018-11-15 12:11:11','2018-11-15 12:11:11','',0,'https://www.newcastle-hypnotherapy.com/?page_id=1959',0,'page','',0),(1960,1,'2018-11-15 12:12:45','2018-11-15 12:12:45','Many of our anxiety clients have found this simple Deep Breathing Exercise really helps with anxiety &amp; stress symptoms.\r\nLearn &amp; practice this simple exercise and let us know how much this also helps you in the comments below.\r\n<h2><strong><span style=\"color: #008000;\">Deep Breathing Exercise for Anxiety &amp; Stress\r\n</span></strong></h2>\r\nhttps://youtu.be/TaZcFc2mRA0\r\n\r\n<strong>You can find even more anxiety tips and techniques when you join the newsletter today. Enter your details here.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can remove yourself any time.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #ff6600;\"><strong>Anxiety Hypnotherapy Client Feedback by Steve</strong></span></a>\r\n<em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can’t thank you enough. Steve “\r\n\r\nWhat did the NHS Dr say about our Anxiety &amp; Stress service?\r\n</strong></em>\r\n\r\nhttps://youtu.be/cudUGD_t74I\r\n<h4><strong><span style=\"color: #008000;\">How can Hypnotherapy and NLP help with anxiety symptoms?</span></strong></h4>\r\nVery simply hypnosis and NLP are great ways to improve mental health, reducing anxiety and stress problems.\r\nThe first thing we do is to reduce or remove any stress issues and change the way you react to your anxiety triggers.\r\nWe can teach you how to relax and stay calm in almost every situation and then replace those old feelings of anxiety and stress with feelings of strength, calm, confidence and energy.\r\n<h4><span style=\"color: #008000;\">What types of</span> <span style=\"color: #008000;\">Anxiety will hypnosis help with?</span></h4>\r\nThe NHS do like to give Anxiety Symptoms labels, such as Generalised Anxiety Disorder, Social Anxiety, Panic Attacks etc. We believe that almost every anxiety condition will benefit from hypnotherapy and NLP techniques. Our clients find they obtain great results quickly with improvements continuing as you practice the exercises and listen to the personalised hypnosis audio track that we supply.\r\n<h4><span style=\"color: #008000;\"><strong>Are you ready to take control of your Anxiety Issues?</strong></span></h4>\r\nYour first step to resolving your anxiety issue is to arrange a free 15-minute phone consultation to work out the best strategy for you.\r\nWe do have an <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\"><strong><em>Anxiety Relief Hypnosis Program </em></strong></a>that works very well for most clients. Of course, we do tailor the program to each client\'s needs as everyone is different with a different history. You can click here to <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong><em>arrange your free phone consultation now</em> </strong></a>or give us a call on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Hypnotherapy Client Feedback by Malcolm</strong>.\r\n</span><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy near me for Anxiety?</span><em>\r\n</em></strong></h4>\r\nWe work with anxiety clients through online sessions and face to face sessions and through group workshops.\r\nIf you are not local to us, online anxiety sessions will work just as personal sessions. Simply ask about this when you arrange your free phone consultation.\r\nYou can also take part in <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">The Secret Workshops</a></strong> where we teach Self-Hypnosis, Anxiety Freedom Techniques, Meditation, Mindfulness, EFT Tapping and other useful skills for great mental health.','Deep Breathing Excercise For Anxiety & Stress','','publish','open','open','','anxiety-breathing-exercises','','','2019-06-30 17:37:11','2019-06-30 17:37:11','',0,'https://www.newcastle-hypnotherapy.com/?p=1960',0,'post','',0),(3108,1,'2019-06-30 17:26:10','2019-06-30 17:26:10','Many of our anxiety clients have found these simple Anxiety Breathing Exercises have really helped their anxiety symptoms.\r\nLearn these simple exercises and let us know how much this also helps you.\r\nComment below with your results.\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Deep Breathing Exercise for Anxiety &amp; Stress\r\n</span></strong></h2>\r\nhttps://youtu.be/TaZcFc2mRA0\r\n\r\n<strong>You can find even more anxiety tips and techniques when you join the newsletter today. Enter your details here.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can remove yourself any time.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #ff6600;\"><strong>Anxiety Hypnotherapy Client Feedback by Steve</strong></span></a>\r\n<em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">How can Hypnotherapy and NLP help with anxiety symptoms?</span></strong></h2>\r\nVery simply hypnosis and NLP are great ways to improve mental health, reducing anxiety and stress problems.\r\nThe first thing we do is to reduce or remove any stress issues and change the way you react to your anxiety triggers.\r\nWe can teach you how to relax and stay calm in almost every situation and then replace those old feelings of anxiety and stress with feelings of strength, calm, confidence and energy.\r\n<h2><span style=\"color: #008000;\">What types of</span> <span style=\"color: #008000;\">Anxiety will hypnosis help with?</span></h2>\r\nThe NHS do like to give Anxiety Symptoms labels, such as Generalised Anxiety Disorder, Social Anxiety, Panic Attacks etc. We believe that almost every anxiety condition will benefit from hypnotherapy and NLP techniques. Our clients find they obtain great results quickly with improvements continuing as you practice the exercises and listen to the personalised hypnosis audio track that we supply.\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Anxiety Issues?</strong></span></h2>\r\nYour first step to resolving your anxiety issue is to arrange a free 15-minute phone consultation to work out the best strategy for you.\r\nWe do have an <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\"><strong><em>Anxiety Relief Hypnosis Program </em></strong></a>that works very well for most clients. Of course, we do tailor the program to each client\'s needs as everyone is different with a different history. You can click here to <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong><em>arrange your free phone consultation now</em> </strong></a>or give us a call on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Hypnotherapy Client Feedback by Malcolm</strong>.\r\n</span><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong>\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy near me for Anxiety?</span><em>\r\n</em></strong></h2>\r\nWe work with anxiety clients through online sessions and face to face sessions and through group workshops.\r\nIf you are not local to us, online anxiety sessions will work just as personal sessions. Simply ask about this when you arrange your free phone consultation.\r\nYou an also take part in the <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshops</a></strong> where we teach Self-Hypnosis, Anxiety Freedom Techniques, Meditation, Mindfulness, EFT Tapping and other useful skills for great mental health.','Anxiety Breathing Excercises','','inherit','closed','closed','','1960-revision-v1','','','2019-06-30 17:26:10','2019-06-30 17:26:10','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(1961,1,'2018-11-15 12:12:45','2018-11-15 12:12:45','Many of our anxiety clients have found this simple Anxiety Breathing Excercise has really helped their anxiety symptoms.\r\nLearn these simple exercises and let us know how much this also helps you.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Breathing Excercise Video</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ztZQpcAHPI0?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety Breathing Excercise','','inherit','closed','closed','','1960-revision-v1','','','2018-11-15 12:12:45','2018-11-15 12:12:45','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(1962,1,'2019-06-30 17:36:57','2019-06-30 17:36:57','Many of our anxiety clients have found this simple Deep Breathing Exercise really helps with anxiety &amp; stress symptoms.\nLearn &amp; practice this simple exercise and let us know how much this also helps you in the comments below.\n<h2><strong><span style=\"color: #008000;\">Deep Breathing Exercise for Anxiety &amp; Stress\n</span></strong></h2>\nhttps://youtu.be/TaZcFc2mRA0\n\n<strong>You can find even more anxiety tips and techniques when you join the newsletter today. Enter your details here.</strong>\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\nYour privacy is always safe and you can remove yourself any time.\n\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #ff6600;\"><strong>Anxiety Hypnotherapy Client Feedback by Steve</strong></span></a>\n<em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can’t thank you enough. Steve “\n\nWhat did the NHS Dr say about our Anxiety &amp; Stress\n</strong></em>\n\nhttps://youtu.be/cudUGD_t74I\n<h4><strong><span style=\"color: #008000;\"> </span></strong></h4>\n<h4><strong><span style=\"color: #008000;\">\nHow can Hypnotherapy and NLP help with anxiety symptoms?</span></strong></h4>\nVery simply hypnosis and NLP are great ways to improve mental health, reducing anxiety and stress problems.\nThe first thing we do is to reduce or remove any stress issues and change the way you react to your anxiety triggers.\nWe can teach you how to relax and stay calm in almost every situation and then replace those old feelings of anxiety and stress with feelings of strength, calm, confidence and energy.\n<h4><span style=\"color: #008000;\">What types of</span> <span style=\"color: #008000;\">Anxiety will hypnosis help with?</span></h4>\nThe NHS do like to give Anxiety Symptoms labels, such as Generalised Anxiety Disorder, Social Anxiety, Panic Attacks etc. We believe that almost every anxiety condition will benefit from hypnotherapy and NLP techniques. Our clients find they obtain great results quickly with improvements continuing as you practice the exercises and listen to the personalised hypnosis audio track that we supply.\n<h4><span style=\"color: #008000;\"><strong>Are you ready to take control of your Anxiety Issues?</strong></span></h4>\nYour first step to resolving your anxiety issue is to arrange a free 15-minute phone consultation to work out the best strategy for you.\nWe do have an <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\"><strong><em>Anxiety Relief Hypnosis Program </em></strong></a>that works very well for most clients. Of course, we do tailor the program to each client\'s needs as everyone is different with a different history. You can click here to <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong><em>arrange your free phone consultation now</em> </strong></a>or give us a call on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today.\n\n<span style=\"color: #ff6600;\"><strong>Hypnotherapy Client Feedback by Malcolm</strong>.\n</span><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong>\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy near me for Anxiety?</span><em>\n</em></strong></h4>\nWe work with anxiety clients through online sessions and face to face sessions and through group workshops.\nIf you are not local to us, online anxiety sessions will work just as personal sessions. Simply ask about this when you arrange your free phone consultation.\nYou can also take part in <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">The Secret Workshops</a></strong> where we teach Self-Hypnosis, Anxiety Freedom Techniques, Meditation, Mindfulness, EFT Tapping and other useful skills for great mental health.','Deep Breathing Excercise For Anxiety & Stress','','inherit','closed','closed','','1960-autosave-v1','','','2019-06-30 17:36:57','2019-06-30 17:36:57','',1960,'https://www.newcastle-hypnotherapy.com/1960-autosave-v1/',0,'revision','',0),(3113,1,'2019-06-30 17:34:34','2019-06-30 17:34:34','Many of our anxiety clients have found this simple Deep Breathing Exercise really helps with anxiety &amp; stress symptoms.\r\nLearn &amp; practice this simple exercise and let us know how much this also helps you in the comments below.\r\n<h2><strong><span style=\"color: #008000;\">Deep Breathing Exercise for Anxiety &amp; Stress\r\n</span></strong></h2>\r\nhttps://youtu.be/TaZcFc2mRA0\r\n\r\n<strong>You can find even more anxiety tips and techniques when you join the newsletter today. Enter your details here.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can remove yourself any time.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #ff6600;\"><strong>Anxiety Hypnotherapy Client Feedback by Steve</strong></span></a>\r\n<em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How can Hypnotherapy and NLP help with anxiety symptoms?</span></strong></h4>\r\nVery simply hypnosis and NLP are great ways to improve mental health, reducing anxiety and stress problems.\r\nThe first thing we do is to reduce or remove any stress issues and change the way you react to your anxiety triggers.\r\nWe can teach you how to relax and stay calm in almost every situation and then replace those old feelings of anxiety and stress with feelings of strength, calm, confidence and energy.\r\n<h4><span style=\"color: #008000;\">What types of</span> <span style=\"color: #008000;\">Anxiety will hypnosis help with?</span></h4>\r\nThe NHS do like to give Anxiety Symptoms labels, such as Generalised Anxiety Disorder, Social Anxiety, Panic Attacks etc. We believe that almost every anxiety condition will benefit from hypnotherapy and NLP techniques. Our clients find they obtain great results quickly with improvements continuing as you practice the exercises and listen to the personalised hypnosis audio track that we supply.\r\n<h4><span style=\"color: #008000;\"><strong>Are you ready to take control of your Anxiety Issues?</strong></span></h4>\r\nYour first step to resolving your anxiety issue is to arrange a free 15-minute phone consultation to work out the best strategy for you.\r\nWe do have an <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\"><strong><em>Anxiety Relief Hypnosis Program </em></strong></a>that works very well for most clients. Of course, we do tailor the program to each client\'s needs as everyone is different with a different history. You can click here to <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong><em>arrange your free phone consultation now</em> </strong></a>or give us a call on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Hypnotherapy Client Feedback by Malcolm</strong>.\r\n</span><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy near me for Anxiety?</span><em>\r\n</em></strong></h4>\r\nWe work with anxiety clients through online sessions and face to face sessions and through group workshops.\r\nIf you are not local to us, online anxiety sessions will work just as personal sessions. Simply ask about this when you arrange your free phone consultation.\r\nYou can also take part in <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">The Secret Workshops</a></strong> where we teach Self-Hypnosis, Anxiety Freedom Techniques, Meditation, Mindfulness, EFT Tapping and other useful skills for great mental health.','Deep Breathing Excercise For Anxiety & Stress','','inherit','closed','closed','','1960-revision-v1','','','2019-06-30 17:34:34','2019-06-30 17:34:34','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(1963,1,'2018-11-15 12:18:43','2018-11-15 12:18:43','Many of our anxiety clients have found this simple Anxiety Breathing Excercise has really helped their anxiety symptoms.\r\nLearn these simple exercises and let us know how much this also helps you.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Breathing Excercise Video</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ztZQpcAHPI0?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n&nbsp;\r\n\r\nYou can explore powerfull anxiety tips &amp; help by joining our newsletter today.\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can unsubscribed from your newsletter at any time.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety Breathing Excercise','','inherit','closed','closed','','1960-revision-v1','','','2018-11-15 12:18:43','2018-11-15 12:18:43','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(1964,1,'2018-11-15 12:20:17','2018-11-15 12:20:17','<img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />Many of our anxiety clients have found this simple Anxiety Breathing Excercise has really helped their anxiety symptoms.\r\nLearn these simple exercises and let us know how much this also helps you.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Breathing Excercise Video</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ztZQpcAHPI0?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n&nbsp;\r\n\r\nYou can explore powerfull anxiety tips &amp; help by joining our newsletter today.\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can unsubscribed from your newsletter at any time.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety Breathing Excercise','','inherit','closed','closed','','1960-revision-v1','','','2018-11-15 12:20:17','2018-11-15 12:20:17','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(1965,1,'2018-11-15 12:21:25','2018-11-15 12:21:25','<img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />Many of our anxiety clients have found this simple Anxiety Breathing Excercise has really helped their anxiety symptoms.\r\nLearn these simple exercises and let us know how much this also helps you.\r\nComment below with your results.\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Breathing Excercise Video</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ztZQpcAHPI0?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n&nbsp;\r\n\r\nYou can explore powerfull anxiety tips &amp; help by joining our newsletter today.\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can unsubscribed from your newsletter at any time.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety Breathing Excercise','','inherit','closed','closed','','1960-revision-v1','','','2018-11-15 12:21:25','2018-11-15 12:21:25','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(1966,0,'2018-11-15 15:39:23','2018-11-15 15:39:23','','Order &ndash; November 15, 2018 @ 03:39 PM','','wc-processing','open','closed','order_5bed932b16e92','order-nov-15-2018-0339-pm','','','2018-11-15 15:40:06','2018-11-15 15:40:06','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=1966',0,'shop_order','',2),(1969,1,'2018-11-15 21:13:15','2018-11-15 21:13:15','<img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />Many of our anxiety clients have found this simple Anxiety Breathing Excercise has really helped their anxiety symptoms.\r\nLearn these simple exercises and let us know how much this also helps you.\r\nComment below with your results.\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Breathing Excercise Video</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ztZQpcAHPI0?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n&nbsp;\r\n\r\nYou can find even more anxiety tips and techniques when you join the newsletter today.\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can unsubscribed from your newsletter at any time.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety Breathing Excercise','','inherit','closed','closed','','1960-revision-v1','','','2018-11-15 21:13:15','2018-11-15 21:13:15','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(1971,1,'2018-11-15 21:18:34','2018-11-15 21:18:34','<img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />Many of our anxiety clients have found these simple Anxiety Breathing Excercises have really helped their anxiety symptoms.\r\nLearn these simple exercises and let us know how much this also helps you.\r\nComment below with your results.\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Breathing Excercises\r\n</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ztZQpcAHPI0?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n&nbsp;\r\n\r\nYou can find even more anxiety tips and techniques when you join the newsletter today.\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can unsubscribed from your newsletter at any time.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety Breathing Excercises','','inherit','closed','closed','','1960-revision-v1','','','2018-11-15 21:18:34','2018-11-15 21:18:34','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(1970,1,'2018-11-15 21:16:26','2018-11-15 21:16:26','<img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />Many of our anxiety clients have found these simple Anxiety Breathing Excercises have really helped their anxiety symptoms.\r\nLearn these simple exercises and let us know how much this also helps you.\r\nComment below with your results.\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Breathing Excercises Video</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ztZQpcAHPI0?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n&nbsp;\r\n\r\nYou can find even more anxiety tips and techniques when you join the newsletter today.\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can unsubscribed from your newsletter at any time.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety Breathing Excercises','','inherit','closed','closed','','1960-revision-v1','','','2018-11-15 21:16:26','2018-11-15 21:16:26','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(1972,1,'2018-11-15 21:26:10','2018-11-15 21:26:10','<img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />Many of our anxiety clients have found these simple Anxiety Breathing Exercises have really helped their anxiety symptoms.\r\nLearn these simple exercises and let us know how much this also helps you.\r\nComment below with your results.\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Breathing Exercises\r\n</span></strong></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can find even more anxiety tips and techniques when you join the newsletter today.\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can remove yourself from your newsletter at any time.\r\n<h2><strong><span style=\"color: #008000;\">How can Hypnotherapy and NLP help with anxiety symptoms?</span></strong></h2>\r\nVery simply hypnosis and NLP are great ways to improve mental health.\r\nThe first thing we do is to reduce or remove any stress issues and change the way you react to your anxiety triggers.\r\nWe can show you how to relax in almost every situation and then replace those old feelings of anxiety and stress with feelings of strength, calm, confidence and energy.\r\n\r\n\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety Breathing Excercises','','inherit','closed','closed','','1960-revision-v1','','','2018-11-15 21:26:10','2018-11-15 21:26:10','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(1973,1,'2018-11-15 21:31:44','2018-11-15 21:31:44','<img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />Many of our anxiety clients have found these simple Anxiety Breathing Exercises have really helped their anxiety symptoms.\r\nLearn these simple exercises and let us know how much this also helps you.\r\nComment below with your results.\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Breathing Exercises\r\n</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ztZQpcAHPI0?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\nYou can find even more anxiety tips and techniques when you join the newsletter today.\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can remove yourself from your newsletter at any time.\r\n<h2><strong><span style=\"color: #008000;\">How can Hypnotherapy and NLP help with anxiety symptoms?</span></strong></h2>\r\nVery simply hypnosis and NLP are great ways to improve mental health.\r\nThe first thing we do is to reduce or remove any stress issues and change the way you react to your anxiety triggers.\r\nWe can show you how to relax in almost every situation and then replace those old feelings of anxiety and stress with feelings of strength, calm, confidence and energy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety Breathing Excercises','','inherit','closed','closed','','1960-revision-v1','','','2018-11-15 21:31:44','2018-11-15 21:31:44','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(1974,1,'2018-11-16 09:00:53','2018-11-16 09:00:53','<img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />Many of our anxiety clients have found these simple Anxiety Breathing Exercises have really helped their anxiety symptoms.\r\nLearn these simple exercises and let us know how much this also helps you.\r\nComment below with your results.\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Breathing Exercises\r\n</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ztZQpcAHPI0?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\nYou can find even more anxiety tips and techniques when you join the newsletter today.\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can remove yourself from your newsletter at any time.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #ff6600;\"><strong>Anxiety Hypnotherapy Client Feedback by Steve</strong></span> </a><em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">How can Hypnotherapy and NLP help with anxiety symptoms?</span></strong></h2>\r\nVery simply hypnosis and NLP are great ways to improve mental health.\r\nThe first thing we do is to reduce or remove any stress issues and change the way you react to your anxiety triggers.\r\nWe can show you how to relax in almost every situation and then replace those old feelings of anxiety and stress with feelings of strength, calm, confidence and energy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety Breathing Excercises','','inherit','closed','closed','','1960-revision-v1','','','2018-11-16 09:00:53','2018-11-16 09:00:53','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(1975,1,'2018-11-16 09:02:06','2018-11-16 09:02:06','<img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />Many of our anxiety clients have found these simple Anxiety Breathing Exercises have really helped their anxiety symptoms.\r\nLearn these simple exercises and let us know how much this also helps you.\r\nComment below with your results.\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Breathing Exercises\r\n</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ztZQpcAHPI0?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\nYou can find even more anxiety tips and techniques when you join the newsletter today.\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can remove yourself from your newsletter at any time.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #ff6600;\"><strong>Anxiety Hypnotherapy Client Feedback by Steve</strong></span></a>\r\n\r\n<em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">How can Hypnotherapy and NLP help with anxiety symptoms?</span></strong></h2>\r\nVery simply hypnosis and NLP are great ways to improve mental health.\r\nThe first thing we do is to reduce or remove any stress issues and change the way you react to your anxiety triggers.\r\nWe can show you how to relax in almost every situation and then replace those old feelings of anxiety and stress with feelings of strength, calm, confidence and energy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety Breathing Excercises','','inherit','closed','closed','','1960-revision-v1','','','2018-11-16 09:02:06','2018-11-16 09:02:06','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(1976,1,'2018-11-16 09:02:49','2018-11-16 09:02:49','<img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />Many of our anxiety clients have found these simple Anxiety Breathing Exercises have really helped their anxiety symptoms.\r\nLearn these simple exercises and let us know how much this also helps you.\r\nComment below with your results.\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Breathing Exercises\r\n</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ztZQpcAHPI0?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n<strong>You can find even more anxiety tips and techniques when you join the newsletter today.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can remove yourself from your newsletter at any time.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #ff6600;\"><strong>Anxiety Hypnotherapy Client Feedback by Steve</strong></span></a>\r\n\r\n<em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">How can Hypnotherapy and NLP help with anxiety symptoms?</span></strong></h2>\r\nVery simply hypnosis and NLP are great ways to improve mental health.\r\nThe first thing we do is to reduce or remove any stress issues and change the way you react to your anxiety triggers.\r\nWe can show you how to relax in almost every situation and then replace those old feelings of anxiety and stress with feelings of strength, calm, confidence and energy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety Breathing Excercises','','inherit','closed','closed','','1960-revision-v1','','','2018-11-16 09:02:49','2018-11-16 09:02:49','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(1978,1,'2018-11-16 09:04:51','2018-11-16 09:04:51','<img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />Many of our anxiety clients have found these simple Anxiety Breathing Exercises have really helped their anxiety symptoms.\r\nLearn these simple exercises and let us know how much this also helps you.\r\nComment below with your results.\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Breathing Exercises\r\n</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ztZQpcAHPI0?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n<strong>You can find even more anxiety tips and techniques when you join the newsletter today. Enter your details here.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can remove yourself any time.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #ff6600;\"><strong>Anxiety Hypnotherapy Client Feedback by Steve</strong></span></a>\r\n<em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">How can Hypnotherapy and NLP help with anxiety symptoms?</span></strong></h2>\r\nVery simply hypnosis and NLP are great ways to improve mental health.\r\nThe first thing we do is to reduce or remove any stress issues and change the way you react to your anxiety triggers.\r\nWe can show you how to relax in almost every situation and then replace those old feelings of anxiety and stress with feelings of strength, calm, confidence and energy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety Breathing Excercises','','inherit','closed','closed','','1960-revision-v1','','','2018-11-16 09:04:51','2018-11-16 09:04:51','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(1977,1,'2018-11-16 09:03:23','2018-11-16 09:03:23','<img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />Many of our anxiety clients have found these simple Anxiety Breathing Exercises have really helped their anxiety symptoms.\r\nLearn these simple exercises and let us know how much this also helps you.\r\nComment below with your results.\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Breathing Exercises\r\n</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ztZQpcAHPI0?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n<strong>You can find even more anxiety tips and techniques when you join the newsletter today. Enter your details here.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can remove yourself from your newsletter at any time.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #ff6600;\"><strong>Anxiety Hypnotherapy Client Feedback by Steve</strong></span></a>\r\n\r\n<em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">How can Hypnotherapy and NLP help with anxiety symptoms?</span></strong></h2>\r\nVery simply hypnosis and NLP are great ways to improve mental health.\r\nThe first thing we do is to reduce or remove any stress issues and change the way you react to your anxiety triggers.\r\nWe can show you how to relax in almost every situation and then replace those old feelings of anxiety and stress with feelings of strength, calm, confidence and energy.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety Breathing Excercises','','inherit','closed','closed','','1960-revision-v1','','','2018-11-16 09:03:23','2018-11-16 09:03:23','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(1979,1,'2018-11-16 09:21:41','2018-11-16 09:21:41','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/OWeDKoIMFug?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-11-16 09:21:41','2018-11-16 09:21:41','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1980,1,'2018-11-16 09:22:17','2018-11-16 09:22:17','<img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />Many of our anxiety clients have found these simple Anxiety Breathing Exercises have really helped their anxiety symptoms.\r\nLearn these simple exercises and let us know how much this also helps you.\r\nComment below with your results.\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Breathing Exercises\r\n</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ztZQpcAHPI0?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n<strong>You can find even more anxiety tips and techniques when you join the newsletter today. Enter your details here.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can remove yourself any time.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #ff6600;\"><strong>Anxiety Hypnotherapy Client Feedback by Steve</strong></span></a>\r\n<em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">How can Hypnotherapy and NLP help with anxiety symptoms?</span></strong></h2>\r\nVery simply hypnosis and NLP are great ways to improve mental health, reducing anxiety and stress problems.\r\nThe first thing we do is to reduce or remove any stress issues and change the way you react to your anxiety triggers.\r\nWe can teach you how to relax and stay calm in almost every situation and then replace those old feelings of anxiety and stress with feelings of strength, calm, confidence and energy.\r\n<h2><span style=\"color: #008000;\">What types of</span> <span style=\"color: #008000;\">Anxiety will hypnosis help with?</span></h2>\r\nThe NHS do like to give Anxiety Symptoms labels, such as Genralised Anxiety Disorder, Social Anxiety, Panic Attacks etc. We believe that almost every anxiety condition will benefit from hypnotherapy and NLP technques. Our clients find they obtain great results quickly with improvements continuing as you practice the excercises and listen to the personailsed hypnosis audio track that we supply.\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Anxiety Issues?</strong></span></h2>\r\nYour first step to resolving your anxiety issue is to arrange a free 15 minute phone consultation to work out the best strategy for you.\r\nWe do have an <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\"><strong><em>Anxiety Relief Hypnosis Program </em></strong></a>that works very well for most clients. Of course, we do tailor the program to each clients needs as everyone is different with a different history. You can click here to <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong><em>arrange your free phone consultation now</em> </strong></a>or give us a call on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Hypnotherapy Client Feedback by Malcolm</strong>.\r\n</span><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Anxiety Breathing Excercises','','inherit','closed','closed','','1960-revision-v1','','','2018-11-16 09:22:17','2018-11-16 09:22:17','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(1985,1,'2018-11-16 09:51:42','2018-11-16 09:51:42','<img class=\"alignleft size-medium wp-image-1984\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/AX4-300x214.png\" alt=\"anxiety breathing excercises\" width=\"300\" height=\"214\" />Many of our anxiety clients have found these simple Anxiety Breathing Exercises have really helped their anxiety symptoms.\r\nLearn these simple exercises and let us know how much this also helps you.\r\nComment below with your results.\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Breathing Exercises\r\n</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ztZQpcAHPI0?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>You can find even more anxiety tips and techniques when you join the newsletter today. Enter your details here.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can remove yourself any time.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #ff6600;\"><strong>Anxiety Hypnotherapy Client Feedback by Steve</strong></span></a>\r\n<em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">How can Hypnotherapy and NLP help with anxiety symptoms?</span></strong></h2>\r\nVery simply hypnosis and NLP are great ways to improve mental health, reducing anxiety and stress problems.\r\nThe first thing we do is to reduce or remove any stress issues and change the way you react to your anxiety triggers.\r\nWe can teach you how to relax and stay calm in almost every situation and then replace those old feelings of anxiety and stress with feelings of strength, calm, confidence and energy.\r\n<h2><span style=\"color: #008000;\">What types of</span> <span style=\"color: #008000;\">Anxiety will hypnosis help with?</span></h2>\r\nThe NHS do like to give Anxiety Symptoms labels, such as Generalised Anxiety Disorder, Social Anxiety, Panic Attacks etc. We believe that almost every anxiety condition will benefit from hypnotherapy and NLP techniques. Our clients find they obtain great results quickly with improvements continuing as you practice the exercises and listen to the personalised hypnosis audio track that we supply.\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Anxiety Issues?</strong></span></h2>\r\nYour first step to resolving your anxiety issue is to arrange a free 15-minute phone consultation to work out the best strategy for you.\r\nWe do have an <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\"><strong><em>Anxiety Relief Hypnosis Program </em></strong></a>that works very well for most clients. Of course, we do tailor the program to each client\'s needs as everyone is different with a different history. You can click here to <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong><em>arrange your free phone consultation now</em> </strong></a>or give us a call on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Hypnotherapy Client Feedback by Malcolm</strong>.\r\n</span><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong>\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy near me for Anxiety?</span><em>\r\n</em></strong></h2>\r\nWe work with anxiety clients through online sessions and face to face sessions and through group workshops.\r\nIf you are not local to us, online anxiety sessions will work just as personal sessions. Simply ask about this when you arrange your free phone consultation.\r\nYou an also take part in the <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshops</a></strong> where we teach Self-Hypnosis, Anxiety Freedom Techniques, Meditation, Mindfulness, EFT Tapping and other useful skills for great mental health.','Anxiety Breathing Excercises','','inherit','closed','closed','','1960-revision-v1','','','2018-11-16 09:51:42','2018-11-16 09:51:42','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(1981,1,'2018-11-16 09:29:45','2018-11-16 09:29:45','<img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />Many of our anxiety clients have found these simple Anxiety Breathing Exercises have really helped their anxiety symptoms.\r\nLearn these simple exercises and let us know how much this also helps you.\r\nComment below with your results.\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Breathing Exercises\r\n</span></strong></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can find even more anxiety tips and techniques when you join the newsletter today. Enter your details here.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can remove yourself any time.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #ff6600;\"><strong>Anxiety Hypnotherapy Client Feedback by Steve</strong></span></a>\r\n<em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">How can Hypnotherapy and NLP help with anxiety symptoms?</span></strong></h2>\r\nVery simply hypnosis and NLP are great ways to improve mental health, reducing anxiety and stress problems.\r\nThe first thing we do is to reduce or remove any stress issues and change the way you react to your anxiety triggers.\r\nWe can teach you how to relax and stay calm in almost every situation and then replace those old feelings of anxiety and stress with feelings of strength, calm, confidence and energy.\r\n<h2><span style=\"color: #008000;\">What types of</span> <span style=\"color: #008000;\">Anxiety will hypnosis help with?</span></h2>\r\nThe NHS do like to give Anxiety Symptoms labels, such as Generalised Anxiety Disorder, Social Anxiety, Panic Attacks etc. We believe that almost every anxiety condition will benefit from hypnotherapy and NLP techniques. Our clients find they obtain great results quickly with improvements continuing as you practice the exercises and listen to the personalised hypnosis audio track that we supply.\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Anxiety Issues?</strong></span></h2>\r\nYour first step to resolving your anxiety issue is to arrange a free 15-minute phone consultation to work out the best strategy for you.\r\nWe do have an <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\"><strong><em>Anxiety Relief Hypnosis Program </em></strong></a>that works very well for most clients. Of course, we do tailor the program to each client\'s needs as everyone is different with a different history. You can click here to <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong><em>arrange your free phone consultation now</em> </strong></a>or give us a call on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Hypnotherapy Client Feedback by Malcolm</strong>.\r\n</span><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong>\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy near me for Anxiety?</span><em>\r\n</em></strong></h2>\r\nWe work with anxiety clients through online sessions and face to face sessions and through group workshops.\r\nIf you are not local to us, online anxiety sessions will work just as personal sessions. Simply ask about this when you arrange your free phone consultation.\r\nYou an also take part in the <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshops</a></strong> where we teach Self-Hypnosis, Anxiety Freedom Techniques, Meditation, Mindfulness, EFT Tapping and other useful skills for great mental health.','Anxiety Breathing Excercises','','inherit','closed','closed','','1960-revision-v1','','','2018-11-16 09:29:45','2018-11-16 09:29:45','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(1983,1,'2018-11-16 09:33:13','2018-11-16 09:33:13','<img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />Many of our anxiety clients have found these simple Anxiety Breathing Exercises have really helped their anxiety symptoms.\r\nLearn these simple exercises and let us know how much this also helps you.\r\nComment below with your results.\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Breathing Exercises\r\n</span></strong></h2>\r\n&nbsp;\r\n<iframe src=\"https://www.youtube.com/embed/ztZQpcAHPI0?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n&nbsp;\r\n\r\n<strong>You can find even more anxiety tips and techniques when you join the newsletter today. Enter your details here.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can remove yourself any time.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #ff6600;\"><strong>Anxiety Hypnotherapy Client Feedback by Steve</strong></span></a>\r\n<em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">How can Hypnotherapy and NLP help with anxiety symptoms?</span></strong></h2>\r\nVery simply hypnosis and NLP are great ways to improve mental health, reducing anxiety and stress problems.\r\nThe first thing we do is to reduce or remove any stress issues and change the way you react to your anxiety triggers.\r\nWe can teach you how to relax and stay calm in almost every situation and then replace those old feelings of anxiety and stress with feelings of strength, calm, confidence and energy.\r\n<h2><span style=\"color: #008000;\">What types of</span> <span style=\"color: #008000;\">Anxiety will hypnosis help with?</span></h2>\r\nThe NHS do like to give Anxiety Symptoms labels, such as Generalised Anxiety Disorder, Social Anxiety, Panic Attacks etc. We believe that almost every anxiety condition will benefit from hypnotherapy and NLP techniques. Our clients find they obtain great results quickly with improvements continuing as you practice the exercises and listen to the personalised hypnosis audio track that we supply.\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Anxiety Issues?</strong></span></h2>\r\nYour first step to resolving your anxiety issue is to arrange a free 15-minute phone consultation to work out the best strategy for you.\r\nWe do have an <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\"><strong><em>Anxiety Relief Hypnosis Program </em></strong></a>that works very well for most clients. Of course, we do tailor the program to each client\'s needs as everyone is different with a different history. You can click here to <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong><em>arrange your free phone consultation now</em> </strong></a>or give us a call on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Hypnotherapy Client Feedback by Malcolm</strong>.\r\n</span><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong>\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy near me for Anxiety?</span><em>\r\n</em></strong></h2>\r\nWe work with anxiety clients through online sessions and face to face sessions and through group workshops.\r\nIf you are not local to us, online anxiety sessions will work just as personal sessions. Simply ask about this when you arrange your free phone consultation.\r\nYou an also take part in the <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshops</a></strong> where we teach Self-Hypnosis, Anxiety Freedom Techniques, Meditation, Mindfulness, EFT Tapping and other useful skills for great mental health.','Anxiety Breathing Excercises','','inherit','closed','closed','','1960-revision-v1','','','2018-11-16 09:33:13','2018-11-16 09:33:13','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(1984,1,'2018-11-16 09:46:44','2018-11-16 09:46:44','','anxiety freedom workshop','','inherit','open','closed','','ax4','','','2019-01-31 09:37:05','2019-01-31 09:37:05','',1960,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/AX4.png',0,'attachment','image/png',0),(2215,1,'2018-12-20 16:18:35','2018-12-20 16:18:35','','NEWCASTLE HYPNOTHERAPY BEDLINGTON','','publish','closed','closed','','2215','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=2215',43,'nav_menu_item','',0),(1987,1,'2018-11-18 10:25:42','2018-11-18 10:25:42','','Order &ndash; November 18, 2018 @ 10:25 AM','','wc-cancelled','open','closed','order_5bf13e26e9863','order-nov-18-2018-1025-am','','','2018-11-18 11:33:28','2018-11-18 11:33:28','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=1987',0,'shop_order','',1),(1988,1,'2018-11-18 15:14:19','2018-11-18 15:14:19','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://youtu.be/Xolrqd8Dwoo\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-11-18 15:14:19','2018-11-18 15:14:19','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1989,1,'2018-11-18 15:15:23','2018-11-18 15:15:23','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/Xolrqd8Dwoo?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-11-18 15:15:23','2018-11-18 15:15:23','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1991,1,'2018-11-18 15:43:17','2018-11-18 15:43:17','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective?\r\nWatch this video.\r\n\r\n</span></em></p>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-11-18 15:43:17','2018-11-18 15:43:17','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1990,1,'2018-11-18 15:33:44','2018-11-18 15:33:44','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><em><span style=\"font-family: Arial;\">\"As a professional hypnosis practitioner, I find clients usually need to modify only a few small behaviours to see life-changing results.\"</span></em></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-11-18 15:33:44','2018-11-18 15:33:44','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1992,1,'2018-11-18 15:43:42','2018-11-18 15:43:42','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective?\r\nWatch this video.</span></em></span></strong></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-11-18 15:43:42','2018-11-18 15:43:42','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1995,1,'2018-11-18 15:49:43','2018-11-18 15:49:43','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective?\r\nWatch this short video.</span></em></span></strong></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-11-18 15:49:43','2018-11-18 15:49:43','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1993,1,'2018-11-18 15:44:04','2018-11-18 15:44:04','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective?\r\nWatch this short video.</span></em></span></strong></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Hypnotherapy Client Feedback by Steve</strong></span> </em><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-11-18 15:44:04','2018-11-18 15:44:04','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1994,1,'2018-11-18 15:48:50','2018-11-18 15:48:50','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective?\r\nWatch this short video.</span></em></span></strong></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Get Started &amp; Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-11-18 15:48:50','2018-11-18 15:48:50','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1996,1,'2018-11-18 15:50:33','2018-11-18 15:50:33','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective?\r\nWatch this short video.</span></em></span></strong></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-11-18 15:50:33','2018-11-18 15:50:33','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1997,1,'2018-11-18 15:52:29','2018-11-18 15:52:29','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective?\r\nWatch this short video.</span></em></span></strong></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thankyou for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce”</span></strong>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis &amp; NLP practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong>Hypnotherapy Client Feedback by Gary </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-11-18 15:52:29','2018-11-18 15:52:29','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1998,1,'2018-11-18 15:53:57','2018-11-18 15:53:57','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective?\r\nWatch this short video.</span></em></span></strong></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-11-18 15:53:57','2018-11-18 15:53:57','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(1999,1,'2018-11-18 16:57:01','2018-11-18 16:57:01','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective?\r\nWatch this short video.</span></em></span></strong></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.\r\n\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong></em>first<em><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-11-18 16:57:01','2018-11-18 16:57:01','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2000,1,'2018-11-18 16:58:01','2018-11-18 16:58:01','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective?\r\nWatch this short video.</span></em></span></strong></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-11-18 16:58:01','2018-11-18 16:58:01','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2001,1,'2018-11-18 17:02:00','2018-11-18 17:02:00','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nWe fix, help and improve people\'s problems using hypnosis and other modern techniques</strong>. </span><span style=\"font-family: Arial;\">This puts you in control to get the successful results you want, fast. <strong>Don\'t take our word for it, read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective?\r\nWatch this short video.</span></em></span></strong></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-11-18 17:02:00','2018-11-18 17:02:00','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2002,1,'2018-11-19 14:40:30','2018-11-19 14:40:30','','Order &ndash; November 19, 2018 @ 02:40 PM','','wc-on-hold','open','closed','order_5bf2cb5ec8329','order-nov-19-2018-0240-pm','','','2018-11-19 14:40:31','2018-11-19 14:40:31','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2002',0,'shop_order','',2),(2004,1,'2018-11-19 15:54:36','2018-11-19 15:54:36','<img class=\"alignleft size-thumbnail wp-image-598\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/04/sol-3070188_1280-150x150.jpg\" alt=\"hypnosis for sleep improvement\" width=\"150\" height=\"150\" />Hypnosis for sleep improvement can be a great solution for sleep problems as described in this article.\r\nIf you would like to discuss the options available to you regarding hypnosis for sleep improvement then give us a call on 07568 455 809.\r\n\r\nEnjoy this article about hypnosis for sleep improvement\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.dailymail.co.uk/health/article-5596195/Hypnotherapy-helping-beat-chronic-insomnia.html\" width=\"700\" height=\"2000\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h2><strong><span style=\"color: #008000;\">Self-Hy</span></strong><span style=\"color: #008000;\"><strong>pnosis and Hypnosis For Sleep Improvement</strong>\r\n</span></h2>\r\nSleep is very important for good health and sadly many people experience sleep problems.\r\nLife can be very busy with plenty of stimulation and even when ready for sleep our minds can still be busy with all sorts of things.\r\nThe secret to a good nights sleep is to train your mind to switch off when sleep is required.\r\nHypnotherapy is very useful for sleep improvement and learning self-hypnosis can also help you to master a good nights sleep yourself.\r\n\r\nTo discuss how hypnosis can help you improve your sleep give us a call on 07568 455 809 today','Hypnosis For Sleep Improvement.','','inherit','closed','closed','','589-revision-v1','','','2018-11-19 15:54:36','2018-11-19 15:54:36','',589,'https://www.newcastle-hypnotherapy.com/589-revision-v1/',0,'revision','',0),(2005,1,'2018-11-19 15:57:17','2018-11-19 15:57:17','You certainly can. The mind is very powerful and when using hypnosis to really make some changes.\r\nThe mind becomes almost supercharged when we focus on what we want. You may be away of the many outside influences that cause us to gain weight, such as TV advertising, constant recipes in magazines, promotion of foods in supermarkets etc. There are many hypnotic techniques we can use to put ourselves back in control of our eating habits to help with healthy weight loss.\r\n<strong>Enjoy this article on weight loss with hypnosis.</strong>\r\nIf you would like to discuss options of how you can benefit from hypnosis, simply give us a call on <strong>07568 455 809.</strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Think yourself slim with hypnosis</span></strong></h2>\r\n<iframe src=\"https://www.dailymail.co.uk/femail/article-5584345/Can-think-slim-Expert-says-hypnotic-lap-band-surgery-help-drop-kilos-fast.html\" width=\"700\" height=\"2000\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h2>How can you use Hypnosis &amp; Hypnotherapy for Weight Loss?</h2>\r\nThere are a number of options when dealing with weight loss.\r\nOne of the biggest causes of overeating is that we have become emotionally attached to our food. Many people use food to change their emotions as we are programmed to do this by the media. As an example, a certain soft drinks company often shows their product with people looking happy, living life to the full or even enjoying Christmas.\r\nAs a result, we try to change our feelings by buying and consuming certain products.\r\n\r\nIn order to change this behavior, we need to need to use something else to feel good, satisfied and loved.\r\nThis is where self-hypnosis is very useful as once you have mastered the simple skills, we can turn on \"good feelings\" on demand. This can be instant and used anytime, anywhere.\r\n\r\n<strong>Having a choice over what we eat?</strong>\r\nHealthy food choices are everywhere and most convenience stores now stock health fruits, snacks, nuts and seeds.\r\nIt is amazing how most people will grab a bag of crisps, chocolate or a meal deal, loaded with fats, and sugars when needing food in a hurry. This is often done without thought to the compounding effect on our health and weight.\r\n\r\nHypnosis can introduce a new habit of thinking about the food we pick up and giving us a choice to pick up that bad food or to choose the healthier options. This allows us to feel better emotionally and puts us back in control.\r\n<h2><span style=\"color: #008000;\">Are you ready to train your mind for healthy weight loss?</span></h2>\r\nGive us a call to discuss what may help you and what is holding you back with your weight loss.\r\nWe have weight loss programs that we tailor to your needs and look to lose the weight at a speed comfortable for you.\r\n\r\nCall 07568 455 809 Today, For Your Free, Confidential Phone Consultation\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-thumbnail wp-image-315\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedbacl\" width=\"150\" height=\"150\" />Proud members of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>','Can you think yourself slim with Hypnosis?','','inherit','closed','closed','','576-revision-v1','','','2018-11-19 15:57:17','2018-11-19 15:57:17','',576,'https://www.newcastle-hypnotherapy.com/576-revision-v1/',0,'revision','',0),(2006,1,'2018-11-19 16:15:56','2018-11-19 16:15:56','<strong>How effective is hypnosis for stress in the workplace?\r\n<img class=\"alignleft size-medium wp-image-2010\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/stress-391654_1280-300x176.jpg\" alt=\"hypnosis for stress in the workplace\" width=\"300\" height=\"176\" /></strong>Workplace stress is becoming very common and it\'s more about your reaction to situations.\r\nThankfully hypnosis, self-hypnosis and NLP are great tools to help you stop, recognise your reaction and then use a technique to replace your feelings of stress with feelings of calm, confidence and relaxation.\r\n\r\n<strong>Hypnosis gives you choices on how you feel and how you react.</strong>\r\nWould you choose to relax or feel stressed?\r\n<strong><span style=\"color: #ff6600;\">You can find some free tips to help with stress at the bottom of this page.</span></strong>\r\nEnjoy the article below about hypnosis for stress in the workplace.\r\n<h2><strong><span style=\"color: #008000;\">Hypnosis for stress in the workplace?</span></strong></h2>\r\n&nbsp;\r\n<iframe src=\"https://goodmenproject.com/featured-content/subconscious-mind-gateway-empowerment-lbkr/\" width=\"700\" height=\"1500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h2><span style=\"color: #008000;\"><strong>Would you like some help with your stress issues?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Newcastle Hypnotherapy </span>is<span style=\"color: #000000;\"> specialists in treating stress and anxiety issues.</span>\r\n<span style=\"color: #000000;\">We can help you to learn how to react to stressful situations and how to quickly relax, anytime anywhere, controlling your feelings, emotions and behaviours.</span></span>\r\n\r\n<span style=\"color: #000000;\">We offer a free 15-minute phone consultation to discuss your stress issues and to look at the best way for you.</span>\r\n<span style=\"color: #000000;\">You can also find some simple stress tips by joining our newsletter below. </span>\r\n<h2><span style=\"color: #008000;\"><strong>Would you like some simple tips to help with stress problems?</strong></span></h2>\r\nSimply join the newsletter below.\r\n[contact-form-7 id=\"2017\" title=\"Stress Tips Newsletter\"]\r\nYour privacy is always safe and you can remove your self from the newsletter at any time.\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop - Regular Events</span></strong></h2>\r\nNewcastle Hypnotherapy runs regular events to can help with stress and anxiety.\r\nYou can learn more about these events by <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">clicking The Wednesday Workshop.</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnosis For Stress In The Workplace','','publish','open','open','','hypnosis-for-stress-in-the-workplace','','','2018-11-19 17:45:27','2018-11-19 17:45:27','',0,'https://www.newcastle-hypnotherapy.com/?p=2006',0,'post','',0),(2007,1,'2018-11-19 16:15:56','2018-11-19 16:15:56','How effective is hypnosis for stress in the workplace?\r\nWorkplace stress is becoming very common and it\'s more about your reaction to situations.\r\nThankfully hypnosis, self-hypnosis and NLP are great tools to help you stop, recognise your reaction and then use a technique to replace your feelings of stress with feelings of calm, confidence and relaxation.\r\nEnjoy the article below about hypnosis for stress in the workplace.\r\n\r\n&nbsp;\r\n<iframe src=\"https://goodmenproject.com/featured-content/subconscious-mind-gateway-empowerment-lbkr/\" width=\"700\" height=\"1500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n&nbsp;\r\n\r\n&nbsp;','Hypnosis For Stress In The Workplace','','inherit','closed','closed','','2006-revision-v1','','','2018-11-19 16:15:56','2018-11-19 16:15:56','',2006,'https://www.newcastle-hypnotherapy.com/2006-revision-v1/',0,'revision','',0),(2008,1,'2018-11-19 16:17:53','2018-11-19 16:17:53','How effective is hypnosis for stress in the workplace?\r\nWorkplace stress is becoming very common and it\'s more about your reaction to situations.\r\nThankfully hypnosis, self-hypnosis and NLP are great tools to help you stop, recognise your reaction and then use a technique to replace your feelings of stress with feelings of calm, confidence and relaxation.\r\nEnjoy the article below about hypnosis for stress in the workplace.\r\n\r\n<iframe src=\"https://goodmenproject.com/featured-content/subconscious-mind-gateway-empowerment-lbkr/\" width=\"700\" height=\"1500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n&nbsp;','Hypnosis For Stress In The Workplace','','inherit','closed','closed','','2006-revision-v1','','','2018-11-19 16:17:53','2018-11-19 16:17:53','',2006,'https://www.newcastle-hypnotherapy.com/2006-revision-v1/',0,'revision','',0),(2009,1,'2018-11-19 17:45:04','2018-11-19 17:45:04','<strong>How effective is hypnosis for stress in the workplace?\n<img class=\"alignleft size-medium wp-image-2010\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/stress-391654_1280-300x176.jpg\" alt=\"hypnosis for stress in the workplace\" width=\"300\" height=\"176\" /></strong>Workplace stress is becoming very common and it\'s more about your reaction to situations.\nThankfully hypnosis, self-hypnosis and NLP are great tools to help you stop, recognise your reaction and then use a technique to replace your feelings of stress with feelings of calm, confidence and relaxation.\n\n<strong>Hypnosis gives you choices on how you feel and how you react.</strong>\nWould you choose to relax or feel stressed?\n<strong><span style=\"color: #ff6600;\">You can find some free tips to help with stress at the bottom of this page.</span></strong>\nEnjoy the article below about hypnosis for stress in the workplace.\n<h2><strong><span style=\"color: #008000;\">Hypnosis for stress in the workplace?</span></strong></h2>\n&nbsp;\n<iframe src=\"https://www.chronogram.com/hudsonvalley/the-therapeutic-powers-of-hypnosis/Content?oid=4498550\" width=\"700\" height=\"1500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\n<h2><span style=\"color: #008000;\"><strong>Would you like some help with your stress issues?</strong></span></h2>\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Newcastle Hypnotherapy </span>is<span style=\"color: #000000;\"> specialists in treating stress and anxiety issues.</span>\n<span style=\"color: #000000;\">We can help you to learn how to react to stressful situations and how to quickly relax, anytime anywhere, controlling your feelings, emotions and behaviours.</span></span>\n\n<span style=\"color: #000000;\">We offer a free 15-minute phone consultation to discuss your stress issues and to look at the best way for you.</span>\n<span style=\"color: #000000;\">You can also find some simple stress tips by joining our newsletter below. </span>\n<h2><span style=\"color: #008000;\"><strong>Would you like some simple tips to help with stress problems?</strong></span></h2>\nSimply join the newsletter below.\n[contact-form-7 id=\"2017\" title=\"Stress Tips Newsletter\"]\nYour privacy is always safe and you can remove your self from the newsletter at any time.\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop - Regular Events</span></strong></h2>\nNewcastle Hypnotherapy runs regular events to can help with stress and anxiety.\nYou can learn more about these events by <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">clicking The Wednesday Workshop.</a></strong>\n\n&nbsp;\n\n&nbsp;','Hypnosis For Stress In The Workplace','','inherit','closed','closed','','2006-autosave-v1','','','2018-11-19 17:45:04','2018-11-19 17:45:04','',2006,'https://www.newcastle-hypnotherapy.com/2006-autosave-v1/',0,'revision','',0),(2010,1,'2018-11-19 16:21:15','2018-11-19 16:21:15','','hypnosis for stress in the workplace','','inherit','open','closed','','stress-391654_1280','','','2018-11-19 16:22:12','2018-11-19 16:22:12','',2006,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/stress-391654_1280.jpg',0,'attachment','image/jpeg',0),(2012,1,'2018-11-19 16:23:41','2018-11-19 16:23:41','How effective is hypnosis for stress in the workplace?\r\nWorkplace stress is becoming very common and it\'s more about your reaction to situations.\r\n\r\nThankfully hypnosis, self-hypnosis and NLP are great tools to help you stop, recognise your reaction and then use a technique to replace your feelings of stress with feelings of calm, confidence and relaxation.\r\nEnjoy the article below about hypnosis for stress in the workplace.\r\n\r\n<iframe src=\"https://goodmenproject.com/featured-content/subconscious-mind-gateway-empowerment-lbkr/\" width=\"700\" height=\"1500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>','Hypnosis For Stress In The Workplace','','inherit','closed','closed','','2006-revision-v1','','','2018-11-19 16:23:41','2018-11-19 16:23:41','',2006,'https://www.newcastle-hypnotherapy.com/2006-revision-v1/',0,'revision','',0),(2011,1,'2018-11-19 16:23:01','2018-11-19 16:23:01','<strong>How effective is hypnosis for stress in the workplace?\r\n<img class=\"alignleft size-medium wp-image-2010\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/stress-391654_1280-300x176.jpg\" alt=\"hypnosis for stress in the workplace\" width=\"300\" height=\"176\" /></strong>\r\nWorkplace stress is becoming very common and it\'s more about your reaction to situations.\r\nThankfully hypnosis, self-hypnosis and NLP are great tools to help you stop, recognise your reaction and then use a technique to replace your feelings of stress with feelings of calm, confidence and relaxation.\r\nHypnosis gives you choices on how you feel and how you react. Would you choose to relax or feel stressed?\r\nEnjoy the article below about hypnosis for stress in the workplace.\r\n\r\n<iframe src=\"https://goodmenproject.com/featured-content/subconscious-mind-gateway-empowerment-lbkr/\" width=\"700\" height=\"1500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>','Hypnosis For Stress In The Workplace','','inherit','closed','closed','','2006-revision-v1','','','2018-11-19 16:23:01','2018-11-19 16:23:01','',2006,'https://www.newcastle-hypnotherapy.com/2006-revision-v1/',0,'revision','',0),(2013,1,'2018-11-19 16:24:45','2018-11-19 16:24:45','<strong>How effective is hypnosis for stress in the workplace?\r\n<img class=\"alignleft size-medium wp-image-2010\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/stress-391654_1280-300x176.jpg\" alt=\"hypnosis for stress in the workplace\" width=\"300\" height=\"176\" /></strong>\r\nWorkplace stress is becoming very common and it\'s more about your reaction to situations.\r\nThankfully hypnosis, self-hypnosis and NLP are great tools to help you stop, recognise your reaction and then use a technique to replace your feelings of stress with feelings of calm, confidence and relaxation.\r\nHypnosis gives you choices on how you feel and how you react. Would you choose to relax or feel stressed?\r\nEnjoy the article below about hypnosis for stress in the workplace.\r\n\r\n<iframe src=\"https://goodmenproject.com/featured-content/subconscious-mind-gateway-empowerment-lbkr/\" width=\"700\" height=\"1500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>','Hypnosis For Stress In The Workplace','','inherit','closed','closed','','2006-revision-v1','','','2018-11-19 16:24:45','2018-11-19 16:24:45','',2006,'https://www.newcastle-hypnotherapy.com/2006-revision-v1/',0,'revision','',0),(2014,1,'2018-11-19 16:25:45','2018-11-19 16:25:45','<strong>How effective is hypnosis for stress in the workplace?\r\n<img class=\"alignleft size-medium wp-image-2010\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/stress-391654_1280-300x176.jpg\" alt=\"hypnosis for stress in the workplace\" width=\"300\" height=\"176\" /></strong>Workplace stress is becoming very common and it\'s more about your reaction to situations.\r\nThankfully hypnosis, self-hypnosis and NLP are great tools to help you stop, recognise your reaction and then use a technique to replace your feelings of stress with feelings of calm, confidence and relaxation.\r\n\r\nHypnosis gives you choices on how you feel and how you react. Would you choose to relax or feel stressed?\r\nEnjoy the article below about hypnosis for stress in the workplace.\r\n\r\n<iframe src=\"https://goodmenproject.com/featured-content/subconscious-mind-gateway-empowerment-lbkr/\" width=\"700\" height=\"1500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>','Hypnosis For Stress In The Workplace','','inherit','closed','closed','','2006-revision-v1','','','2018-11-19 16:25:45','2018-11-19 16:25:45','',2006,'https://www.newcastle-hypnotherapy.com/2006-revision-v1/',0,'revision','',0);
INSERT INTO `wpqj_posts` VALUES (2015,1,'2018-11-19 16:27:26','2018-11-19 16:27:26','<strong>How effective is hypnosis for stress in the workplace?\r\n<img class=\"alignleft size-medium wp-image-2010\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/stress-391654_1280-300x176.jpg\" alt=\"hypnosis for stress in the workplace\" width=\"300\" height=\"176\" /></strong>Workplace stress is becoming very common and it\'s more about your reaction to situations.\r\nThankfully hypnosis, self-hypnosis and NLP are great tools to help you stop, recognise your reaction and then use a technique to replace your feelings of stress with feelings of calm, confidence and relaxation.\r\n\r\nHypnosis gives you choices on how you feel and how you react.\r\nWould you choose to relax or feel stressed?\r\nEnjoy the article below about hypnosis for stress in the workplace.\r\n<h2><strong><span style=\"color: #008000;\">Hypnosis for stress in the workplace?</span></strong></h2>\r\n<iframe src=\"https://goodmenproject.com/featured-content/subconscious-mind-gateway-empowerment-lbkr/\" width=\"700\" height=\"1500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>','Hypnosis For Stress In The Workplace','','inherit','closed','closed','','2006-revision-v1','','','2018-11-19 16:27:26','2018-11-19 16:27:26','',2006,'https://www.newcastle-hypnotherapy.com/2006-revision-v1/',0,'revision','',0),(2016,1,'2018-11-19 16:27:53','2018-11-19 16:27:53','<strong>How effective is hypnosis for stress in the workplace?\r\n<img class=\"alignleft size-medium wp-image-2010\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/stress-391654_1280-300x176.jpg\" alt=\"hypnosis for stress in the workplace\" width=\"300\" height=\"176\" /></strong>Workplace stress is becoming very common and it\'s more about your reaction to situations.\r\nThankfully hypnosis, self-hypnosis and NLP are great tools to help you stop, recognise your reaction and then use a technique to replace your feelings of stress with feelings of calm, confidence and relaxation.\r\n\r\n<strong>Hypnosis gives you choices on how you feel and how you react.</strong>\r\nWould you choose to relax or feel stressed?\r\nEnjoy the article below about hypnosis for stress in the workplace.\r\n<h2><strong><span style=\"color: #008000;\">Hypnosis for stress in the workplace?</span></strong></h2>\r\n<iframe src=\"https://goodmenproject.com/featured-content/subconscious-mind-gateway-empowerment-lbkr/\" width=\"700\" height=\"1500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>','Hypnosis For Stress In The Workplace','','inherit','closed','closed','','2006-revision-v1','','','2018-11-19 16:27:53','2018-11-19 16:27:53','',2006,'https://www.newcastle-hypnotherapy.com/2006-revision-v1/',0,'revision','',0),(2017,1,'2018-11-19 16:42:12','2018-11-19 16:42:12','<fieldset>\r\n	<legend>Enter your details below to join the newsletter</legend>\r\n	<ol>\r\n<li> Name [text* cf7s-name] </li>\r\n		<li> Email [email* cf7s-email] </li>\r\n\r\n\r\n\r\n[submit \"Submit\"]\r\n\r\n</fieldset>\n1\nStress Subsciber\n<mark@newcastle-hypnotherapy.com>\nmark@newcastle-hypnotherapy.com\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Newcastle Hypnotherapy  (https://www.newcastle-hypnotherapy.com)\n\n\n\n\n\nNewcastle Hypnotherapy  \"[your-subject]\"\nNewcastle Hypnotherapy  <mark@newcastle-hypnotherapy.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Newcastle Hypnotherapy  (https://www.newcastle-hypnotherapy.com)\nReply-To: mark@newcastle-hypnotherapy.com\n\n\n\nThank you. You have now subscibed to the newsletter.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Stress Tips Newsletter','','publish','closed','closed','','stress-tips-newsletter','','','2018-11-19 17:24:02','2018-11-19 17:24:02','',0,'https://www.newcastle-hypnotherapy.com/?post_type=wpcf7_contact_form&#038;p=2017',0,'wpcf7_contact_form','',0),(2018,1,'2018-11-19 16:47:02','2018-11-19 16:47:02','<strong>How effective is hypnosis for stress in the workplace?\r\n<img class=\"alignleft size-medium wp-image-2010\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/stress-391654_1280-300x176.jpg\" alt=\"hypnosis for stress in the workplace\" width=\"300\" height=\"176\" /></strong>Workplace stress is becoming very common and it\'s more about your reaction to situations.\r\nThankfully hypnosis, self-hypnosis and NLP are great tools to help you stop, recognise your reaction and then use a technique to replace your feelings of stress with feelings of calm, confidence and relaxation.\r\n\r\n<strong>Hypnosis gives you choices on how you feel and how you react.</strong>\r\nWould you choose to relax or feel stressed?\r\nEnjoy the article below about hypnosis for stress in the workplace.\r\n<h2><strong><span style=\"color: #008000;\">Hypnosis for stress in the workplace?</span></strong></h2>\r\n<iframe src=\"https://goodmenproject.com/featured-content/subconscious-mind-gateway-empowerment-lbkr/\" width=\"700\" height=\"1500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"2017\" title=\"Stress Tips Newsletter\"]','Hypnosis For Stress In The Workplace','','inherit','closed','closed','','2006-revision-v1','','','2018-11-19 16:47:02','2018-11-19 16:47:02','',2006,'https://www.newcastle-hypnotherapy.com/2006-revision-v1/',0,'revision','',0),(2019,1,'2018-11-19 17:02:05','2018-11-19 17:02:05','<strong>How effective is hypnosis for stress in the workplace?\r\n<img class=\"alignleft size-medium wp-image-2010\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/stress-391654_1280-300x176.jpg\" alt=\"hypnosis for stress in the workplace\" width=\"300\" height=\"176\" /></strong>Workplace stress is becoming very common and it\'s more about your reaction to situations.\r\nThankfully hypnosis, self-hypnosis and NLP are great tools to help you stop, recognise your reaction and then use a technique to replace your feelings of stress with feelings of calm, confidence and relaxation.\r\n\r\n<strong>Hypnosis gives you choices on how you feel and how you react.</strong>\r\nWould you choose to relax or feel stressed?\r\nEnjoy the article below about hypnosis for stress in the workplace.\r\n<h2><strong><span style=\"color: #008000;\">Hypnosis for stress in the workplace?</span></strong></h2>\r\n<iframe src=\"https://goodmenproject.com/featured-content/subconscious-mind-gateway-empowerment-lbkr/\" width=\"700\" height=\"1500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<span style=\"color: #008000;\"><strong>Would you like some simple tips to help with stress problems?</strong></span>\r\nSimply join the newsletter below.\r\n\r\n[contact-form-7 id=\"2017\" title=\"Stress Tips Newsletter\"]','Hypnosis For Stress In The Workplace','','inherit','closed','closed','','2006-revision-v1','','','2018-11-19 17:02:05','2018-11-19 17:02:05','',2006,'https://www.newcastle-hypnotherapy.com/2006-revision-v1/',0,'revision','',0),(2020,1,'2018-11-19 17:04:32','2018-11-19 17:04:32','<strong>How effective is hypnosis for stress in the workplace?\r\n<img class=\"alignleft size-medium wp-image-2010\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/stress-391654_1280-300x176.jpg\" alt=\"hypnosis for stress in the workplace\" width=\"300\" height=\"176\" /></strong>Workplace stress is becoming very common and it\'s more about your reaction to situations.\r\nThankfully hypnosis, self-hypnosis and NLP are great tools to help you stop, recognise your reaction and then use a technique to replace your feelings of stress with feelings of calm, confidence and relaxation.\r\n\r\n<strong>Hypnosis gives you choices on how you feel and how you react.</strong>\r\nWould you choose to relax or feel stressed?\r\n<strong><span style=\"color: #ff6600;\">You can find some free tips to help with stress at the bottom of this page.</span></strong>\r\nEnjoy the article below about hypnosis for stress in the workplace.\r\n<h2><strong><span style=\"color: #008000;\">Hypnosis for stress in the workplace?</span></strong></h2>\r\n<iframe src=\"https://goodmenproject.com/featured-content/subconscious-mind-gateway-empowerment-lbkr/\" width=\"700\" height=\"1500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<span style=\"color: #008000;\"><strong>Would you like some simple tips to help with stress problems?</strong></span>\r\nSimply join the newsletter below.\r\n\r\n[contact-form-7 id=\"2017\" title=\"Stress Tips Newsletter\"]','Hypnosis For Stress In The Workplace','','inherit','closed','closed','','2006-revision-v1','','','2018-11-19 17:04:32','2018-11-19 17:04:32','',2006,'https://www.newcastle-hypnotherapy.com/2006-revision-v1/',0,'revision','',0),(2021,1,'2018-11-19 17:34:55','2018-11-19 17:34:55','<strong>How effective is hypnosis for stress in the workplace?\r\n<img class=\"alignleft size-medium wp-image-2010\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/stress-391654_1280-300x176.jpg\" alt=\"hypnosis for stress in the workplace\" width=\"300\" height=\"176\" /></strong>Workplace stress is becoming very common and it\'s more about your reaction to situations.\r\nThankfully hypnosis, self-hypnosis and NLP are great tools to help you stop, recognise your reaction and then use a technique to replace your feelings of stress with feelings of calm, confidence and relaxation.\r\n\r\n<strong>Hypnosis gives you choices on how you feel and how you react.</strong>\r\nWould you choose to relax or feel stressed?\r\n<strong><span style=\"color: #ff6600;\">You can find some free tips to help with stress at the bottom of this page.</span></strong>\r\nEnjoy the article below about hypnosis for stress in the workplace.\r\n<h2><strong><span style=\"color: #008000;\">Hypnosis for stress in the workplace?</span></strong></h2>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Would you like some help with stress issues?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Newcastle Hypnotherapy </span>is<span style=\"color: #000000;\"> specialists in treating stress and anxiety issues.</span>\r\n<span style=\"color: #000000;\">We can help you to learn how to react to stressful situations and how to quickly relax, anytime anywhere, controlling your feelings, emotions and behaviours.</span>\r\n\r\n<span style=\"color: #000000;\">We offer a free 15-minute phone consultation to discuss your stress issues and to look at the best way for you.</span>\r\n<span style=\"color: #000000;\">You can also find some simple stress tips by joining our newsletter below. </span></span>\r\n<h2><span style=\"color: #008000;\"><strong>Would you like some simple tips to help with stress problems?</strong></span></h2>\r\nSimply join the newsletter below.\r\n[contact-form-7 id=\"2017\" title=\"Stress Tips Newsletter\"]','Hypnosis For Stress In The Workplace','','inherit','closed','closed','','2006-revision-v1','','','2018-11-19 17:34:55','2018-11-19 17:34:55','',2006,'https://www.newcastle-hypnotherapy.com/2006-revision-v1/',0,'revision','',0),(2022,1,'2018-11-19 17:37:54','2018-11-19 17:37:54','<strong>How effective is hypnosis for stress in the workplace?\r\n<img class=\"alignleft size-medium wp-image-2010\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/stress-391654_1280-300x176.jpg\" alt=\"hypnosis for stress in the workplace\" width=\"300\" height=\"176\" /></strong>Workplace stress is becoming very common and it\'s more about your reaction to situations.\r\nThankfully hypnosis, self-hypnosis and NLP are great tools to help you stop, recognise your reaction and then use a technique to replace your feelings of stress with feelings of calm, confidence and relaxation.\r\n\r\n<strong>Hypnosis gives you choices on how you feel and how you react.</strong>\r\nWould you choose to relax or feel stressed?\r\n<strong><span style=\"color: #ff6600;\">You can find some free tips to help with stress at the bottom of this page.</span></strong>\r\nEnjoy the article below about hypnosis for stress in the workplace.\r\n<h2><strong><span style=\"color: #008000;\">Hypnosis for stress in the workplace?</span></strong></h2>\r\n&nbsp;\r\n<iframe src=\"https://goodmenproject.com/featured-content/subconscious-mind-gateway-empowerment-lbkr/\" width=\"700\" height=\"1500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h2><span style=\"color: #008000;\"><strong>Would you like some help with your stress issues?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Newcastle Hypnotherapy </span>is<span style=\"color: #000000;\"> specialists in treating stress and anxiety issues.</span>\r\n<span style=\"color: #000000;\">We can help you to learn how to react to stressful situations and how to quickly relax, anytime anywhere, controlling your feelings, emotions and behaviours.</span></span>\r\n\r\n<span style=\"color: #000000;\">We offer a free 15-minute phone consultation to discuss your stress issues and to look at the best way for you.</span>\r\n<span style=\"color: #000000;\">You can also find some simple stress tips by joining our newsletter below. </span>\r\n<h2><span style=\"color: #008000;\"><strong>Would you like some simple tips to help with stress problems?</strong></span></h2>\r\nSimply join the newsletter below.\r\n[contact-form-7 id=\"2017\" title=\"Stress Tips Newsletter\"]','Hypnosis For Stress In The Workplace','','inherit','closed','closed','','2006-revision-v1','','','2018-11-19 17:37:54','2018-11-19 17:37:54','',2006,'https://www.newcastle-hypnotherapy.com/2006-revision-v1/',0,'revision','',0),(2023,1,'2018-11-19 17:39:00','2018-11-19 17:39:00','<strong>How effective is hypnosis for stress in the workplace?\r\n<img class=\"alignleft size-medium wp-image-2010\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/stress-391654_1280-300x176.jpg\" alt=\"hypnosis for stress in the workplace\" width=\"300\" height=\"176\" /></strong>Workplace stress is becoming very common and it\'s more about your reaction to situations.\r\nThankfully hypnosis, self-hypnosis and NLP are great tools to help you stop, recognise your reaction and then use a technique to replace your feelings of stress with feelings of calm, confidence and relaxation.\r\n\r\n<strong>Hypnosis gives you choices on how you feel and how you react.</strong>\r\nWould you choose to relax or feel stressed?\r\n<strong><span style=\"color: #ff6600;\">You can find some free tips to help with stress at the bottom of this page.</span></strong>\r\nEnjoy the article below about hypnosis for stress in the workplace.\r\n<h2><strong><span style=\"color: #008000;\">Hypnosis for stress in the workplace?</span></strong></h2>\r\n<iframe src=\"https://goodmenproject.com/featured-content/subconscious-mind-gateway-empowerment-lbkr/\" width=\"700\" height=\"1500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h2><span style=\"color: #008000;\"><strong>Would you like some help with your stress issues?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Newcastle Hypnotherapy </span>is<span style=\"color: #000000;\"> specialists in treating stress and anxiety issues.</span>\r\n<span style=\"color: #000000;\">We can help you to learn how to react to stressful situations and how to quickly relax, anytime anywhere, controlling your feelings, emotions and behaviours.</span></span>\r\n\r\n<span style=\"color: #000000;\">We offer a free 15-minute phone consultation to discuss your stress issues and to look at the best way for you.</span>\r\n<span style=\"color: #000000;\">You can also find some simple stress tips by joining our newsletter below. </span>\r\n<h2><span style=\"color: #008000;\"><strong>Would you like some simple tips to help with stress problems?</strong></span></h2>\r\nSimply join the newsletter below.\r\n[contact-form-7 id=\"2017\" title=\"Stress Tips Newsletter\"]','Hypnosis For Stress In The Workplace','','inherit','closed','closed','','2006-revision-v1','','','2018-11-19 17:39:00','2018-11-19 17:39:00','',2006,'https://www.newcastle-hypnotherapy.com/2006-revision-v1/',0,'revision','',0),(2024,1,'2018-11-19 17:43:56','2018-11-19 17:43:56','<strong>How effective is hypnosis for stress in the workplace?\r\n<img class=\"alignleft size-medium wp-image-2010\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/stress-391654_1280-300x176.jpg\" alt=\"hypnosis for stress in the workplace\" width=\"300\" height=\"176\" /></strong>Workplace stress is becoming very common and it\'s more about your reaction to situations.\r\nThankfully hypnosis, self-hypnosis and NLP are great tools to help you stop, recognise your reaction and then use a technique to replace your feelings of stress with feelings of calm, confidence and relaxation.\r\n\r\n<strong>Hypnosis gives you choices on how you feel and how you react.</strong>\r\nWould you choose to relax or feel stressed?\r\n<strong><span style=\"color: #ff6600;\">You can find some free tips to help with stress at the bottom of this page.</span></strong>\r\nEnjoy the article below about hypnosis for stress in the workplace.\r\n<h2><strong><span style=\"color: #008000;\">Hypnosis for stress in the workplace?</span></strong></h2>\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Would you like some help with your stress issues?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Newcastle Hypnotherapy </span>is<span style=\"color: #000000;\"> specialists in treating stress and anxiety issues.</span>\r\n<span style=\"color: #000000;\">We can help you to learn how to react to stressful situations and how to quickly relax, anytime anywhere, controlling your feelings, emotions and behaviours.</span></span>\r\n\r\n<span style=\"color: #000000;\">We offer a free 15-minute phone consultation to discuss your stress issues and to look at the best way for you.</span>\r\n<span style=\"color: #000000;\">You can also find some simple stress tips by joining our newsletter below. </span>\r\n<h2><span style=\"color: #008000;\"><strong>Would you like some simple tips to help with stress problems?</strong></span></h2>\r\nSimply join the newsletter below.\r\n[contact-form-7 id=\"2017\" title=\"Stress Tips Newsletter\"]\r\nYour privacy is always safe and you can remove your self from the newsletter at any time.\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop - Regular Events</span></strong></h2>\r\nNewcastle Hypnotherapy runs regular events to can help with stress and anxiety.\r\nYou can learn more about these events by <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">clicking The Wednesday Workshop.</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnosis For Stress In The Workplace','','inherit','closed','closed','','2006-revision-v1','','','2018-11-19 17:43:56','2018-11-19 17:43:56','',2006,'https://www.newcastle-hypnotherapy.com/2006-revision-v1/',0,'revision','',0),(2025,1,'2018-11-19 17:45:27','2018-11-19 17:45:27','<strong>How effective is hypnosis for stress in the workplace?\r\n<img class=\"alignleft size-medium wp-image-2010\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/stress-391654_1280-300x176.jpg\" alt=\"hypnosis for stress in the workplace\" width=\"300\" height=\"176\" /></strong>Workplace stress is becoming very common and it\'s more about your reaction to situations.\r\nThankfully hypnosis, self-hypnosis and NLP are great tools to help you stop, recognise your reaction and then use a technique to replace your feelings of stress with feelings of calm, confidence and relaxation.\r\n\r\n<strong>Hypnosis gives you choices on how you feel and how you react.</strong>\r\nWould you choose to relax or feel stressed?\r\n<strong><span style=\"color: #ff6600;\">You can find some free tips to help with stress at the bottom of this page.</span></strong>\r\nEnjoy the article below about hypnosis for stress in the workplace.\r\n<h2><strong><span style=\"color: #008000;\">Hypnosis for stress in the workplace?</span></strong></h2>\r\n&nbsp;\r\n<iframe src=\"https://goodmenproject.com/featured-content/subconscious-mind-gateway-empowerment-lbkr/\" width=\"700\" height=\"1500\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h2><span style=\"color: #008000;\"><strong>Would you like some help with your stress issues?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Newcastle Hypnotherapy </span>is<span style=\"color: #000000;\"> specialists in treating stress and anxiety issues.</span>\r\n<span style=\"color: #000000;\">We can help you to learn how to react to stressful situations and how to quickly relax, anytime anywhere, controlling your feelings, emotions and behaviours.</span></span>\r\n\r\n<span style=\"color: #000000;\">We offer a free 15-minute phone consultation to discuss your stress issues and to look at the best way for you.</span>\r\n<span style=\"color: #000000;\">You can also find some simple stress tips by joining our newsletter below. </span>\r\n<h2><span style=\"color: #008000;\"><strong>Would you like some simple tips to help with stress problems?</strong></span></h2>\r\nSimply join the newsletter below.\r\n[contact-form-7 id=\"2017\" title=\"Stress Tips Newsletter\"]\r\nYour privacy is always safe and you can remove your self from the newsletter at any time.\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop - Regular Events</span></strong></h2>\r\nNewcastle Hypnotherapy runs regular events to can help with stress and anxiety.\r\nYou can learn more about these events by <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">clicking The Wednesday Workshop.</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnosis For Stress In The Workplace','','inherit','closed','closed','','2006-revision-v1','','','2018-11-19 17:45:27','2018-11-19 17:45:27','',2006,'https://www.newcastle-hypnotherapy.com/2006-revision-v1/',0,'revision','',0),(2026,1,'2018-11-19 18:41:47','2018-11-19 18:41:47','','Order &ndash; November 19, 2018 @ 06:41 PM','','wc-processing','open','closed','order_5bf303eb6ecf9','order-nov-19-2018-0641-pm','','','2018-11-19 18:42:52','2018-11-19 18:42:52','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2026',0,'shop_order','',2),(2027,1,'2018-11-19 19:06:58','2018-11-19 19:06:58','Hypnosis benefits can be many. Hypnotherapy can help in many areas where mainstream medicine fails.\r\n<img class=\"alignleft size-medium wp-image-2028\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/010101010101010-300x200.jpg\" alt=\"Hypnosis benefits\" width=\"300\" height=\"200\" />\r\n\r\nHypnosis is a natural state that we experience daily.\r\nUsing it for therapy is a great way to help with many issues such as anxiety, stress, depression, self confidence, habit change, pain management and other issues.\r\n\r\n&nbsp;\r\n\r\nThis article in The Spectrum highlights the benefits of hypnosis.\r\nI suspect Caitlyn Erikson is a relative of Milton Erickson, one of the best known and most successful hypnotherapists.\r\n\r\n<iframe src=\"https://eu.thespectrum.com/story/opinion/2018/11/15/letter-editor-nov-15/2004838002/\" width=\"700\" height=\"1500\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nIf you would like to explore the benefits of hypnosis for any issue simply contact us.\r\nWe do offer a free 15 minute free <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong><span style=\"color: #008000;\">phone consultation</span></strong></a> to discuss your issues and answer your questions about hypnotherapy.','Hypnosis Benefits','','publish','open','open','','hypnosis-benefits','','','2018-11-19 19:09:13','2018-11-19 19:09:13','',0,'https://www.newcastle-hypnotherapy.com/?p=2027',0,'post','',0),(2028,1,'2018-11-19 18:53:26','2018-11-19 18:53:26','','Hypnosis benefits','','inherit','open','closed','','010101010101010','','','2018-11-19 18:53:58','2018-11-19 18:53:58','',2027,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/010101010101010.jpg',0,'attachment','image/jpeg',0),(2029,1,'2018-11-19 19:06:58','2018-11-19 19:06:58','Hypnosis benefits can be many. Hypnotherapy can help in many areas where mainstream medicine fails.\r\n<img class=\"alignleft size-medium wp-image-2028\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/010101010101010-300x200.jpg\" alt=\"Hypnosis benefits\" width=\"300\" height=\"200\" />\r\n\r\nHypnosis is a natural state that we experience daily.\r\nUsing it for therapy is a great way to help with many issues such as anxiety, stress, depression, self confidence, habit change, pain management and other issues.\r\n\r\nThis article in The Spectrum highlights the benefits of hypnosis.\r\nI suspect Caitlyn Erikson is a relative of Milton Erickson, one of the best known and most successful hypnotherapists.\r\n\r\n<iframe src=\"https://eu.thespectrum.com/story/opinion/2018/11/15/letter-editor-nov-15/2004838002/\" width=\"700\" height=\"1500\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nIf you would like to explore the benefits of hypnosis for any issue simply contact us.\r\nWe do offer a free 15 minute free <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong><span style=\"color: #008000;\">phone consultation</span></strong></a> to discuss your issues and answer your questions about hypnotherapy.','Hypnosis Benefits','','inherit','closed','closed','','2027-revision-v1','','','2018-11-19 19:06:58','2018-11-19 19:06:58','',2027,'https://www.newcastle-hypnotherapy.com/2027-revision-v1/',0,'revision','',0),(2030,1,'2018-11-19 19:07:37','2018-11-19 19:07:37','Hypnosis benefits can be many. Hypnotherapy can help in many areas where mainstream medicine fails.\r\n<img class=\"alignleft size-medium wp-image-2028\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/010101010101010-300x200.jpg\" alt=\"Hypnosis benefits\" width=\"300\" height=\"200\" />\r\n\r\nHypnosis is a natural state that we experience daily.\r\nUsing it for therapy is a great way to help with many issues such as anxiety, stress, depression, self confidence, habit change, pain management and other issues.\r\n\r\n&nbsp;\r\n\r\nThis article in The Spectrum highlights the benefits of hypnosis.\r\nI suspect Caitlyn Erikson is a relative of Milton Erickson, one of the best known and most successful hypnotherapists.\r\n\r\n<iframe src=\"https://eu.thespectrum.com/story/opinion/2018/11/15/letter-editor-nov-15/2004838002/\" width=\"700\" height=\"1500\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nIf you would like to explore the benefits of hypnosis for any issue simply contact us.\r\nWe do offer a free 15 minute free <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong><span style=\"color: #008000;\">phone consultation</span></strong></a> to discuss your issues and answer your questions about hypnotherapy.','Hypnosis Benefits','','inherit','closed','closed','','2027-revision-v1','','','2018-11-19 19:07:37','2018-11-19 19:07:37','',2027,'https://www.newcastle-hypnotherapy.com/2027-revision-v1/',0,'revision','',0),(2031,1,'2018-11-20 20:01:16','2018-11-20 20:01:16','','Order &ndash; November 20, 2018 @ 08:01 PM','','wc-processing','open','closed','order_5bf4680c684cf','order-nov-20-2018-0801-pm','','','2018-11-20 20:02:12','2018-11-20 20:02:12','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2031',0,'shop_order','',2),(2032,1,'2018-11-21 13:14:43','0000-00-00 00:00:00','<p>\n<strong>Save 60% OFF on WPForms Pro &#8211; Limited Time Deal</strong></p>\n<p>Our annual sale is a great opportunity to unlock powerful WPForms features like advanced fields, entry management, conditional logic, surveys &#038; polls, payments &#038; marketing integrations, 150+ bonus form templates, and so much more. Don&#8217;t miss out!\n</p>\n<p><a href=\"https://wpforms.com/lite-upgrade/?utm_source=wpdashboard&#038;utm_medium=amnotification&#038;utm_campaign=bf2018\" target=\"_blank\" class=\"button button-primary\">Claim Your Savings &#8211; Upgrade to WPForms Pro &raquo;</a></p>\n','','','draft','closed','closed','','','','','2018-11-21 13:14:43','0000-00-00 00:00:00','',0,'https://www.newcastle-hypnotherapy.com/?post_type=amn_wpforms-lite&p=2032',0,'amn_wpforms-lite','',0),(2034,1,'2018-11-28 22:47:09','2018-11-28 22:47:09','Ethical Business Links\r\n<img class=\"alignleft wp-image-2035 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/massage-1790063_1280-300x200.jpg\" alt=\"Ethical Business Links\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Business is great when it is ethical, green, natural &amp; holistic.</strong>\r\n\r\n<strong>If you would like your ethical business listed below please <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> with a description.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Ethical Business Links.\r\n</span></strong></h2>\r\n<strong>The Vault - Creative Well-Being Centre. </strong>\r\nThe Vault is a vital community hub in the centre of Wallsend, Newcastle upon Tyne.\r\nHere you will find so many events and workshops happening weekly along with the popular monthly Mind, Body, Spirit Fair.\r\nThe Vault Creative Well-Being Centre CIC, 31 Station Road, Wallsend, NE28 6RL. <strong><a href=\"http://www.the-vault.org/\">http://www.the-vault.org/</a></strong>\r\n\r\n<strong>Food For Thought - Health Food Shop &amp; Natural Remedies.</strong>\r\nBased in Seaton Delaval, Food For Thought stocks an impressive range of natural remedies and health foods, back up with many years of expert knowledge. They also house an organic bakery, a wide range of specialist free from foods and conduct allergy and intolerance testing.\r\nThe staff are friendly and happy to advise on any issues.\r\n<span class=\"LrzXr\">Food For Thought<strong>, </strong>28 Astley Rd, Seaton Delaval, Whitley Bay NE25 0DG. Tel 0191 237 5935  <strong><a href=\"http://www.food-for-thought-uk.co.uk/\">http://www.food-for-thought-uk.co.uk/</a></strong></span>\r\n\r\n&nbsp;','Ethical Business Links','','publish','closed','closed','','ethical-business-links','','','2018-11-28 23:09:17','2018-11-28 23:09:17','',0,'https://www.newcastle-hypnotherapy.com/?page_id=2034',0,'page','',0),(2035,1,'2018-11-28 22:42:15','2018-11-28 22:42:15','','Ethical Business Links','','inherit','open','closed','','massage-1790063_1280','','','2018-11-28 22:42:39','2018-11-28 22:42:39','',2034,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/massage-1790063_1280.jpg',0,'attachment','image/jpeg',0),(2036,1,'2018-11-28 22:47:09','2018-11-28 22:47:09','Ethical Business Links\r\n<img class=\"alignleft wp-image-2035 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/massage-1790063_1280-300x200.jpg\" alt=\"Ethical Business Links\" width=\"300\" height=\"200\" />Business is great when it is ethical &amp; holistic.\r\n\r\nBelow is a list of links to ethical, natural, green businesses.\r\n\r\nIf you would like your ethical business listed below please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> with a description.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Ethical Business Links.</span></strong></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Ethical Business Links','','inherit','closed','closed','','2034-revision-v1','','','2018-11-28 22:47:09','2018-11-28 22:47:09','',2034,'https://www.newcastle-hypnotherapy.com/2034-revision-v1/',0,'revision','',0),(2037,1,'2018-11-28 22:48:01','2018-11-28 22:48:01','Ethical Business Links\r\n<img class=\"alignleft wp-image-2035 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/massage-1790063_1280-300x200.jpg\" alt=\"Ethical Business Links\" width=\"300\" height=\"200\" />Business is great when it is ethical, green, natural &amp; holistic.\r\n\r\n&nbsp;\r\n\r\nIf you would like your ethical business listed below please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> with a description.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Ethical Business Links.</span></strong></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Ethical Business Links','','inherit','closed','closed','','2034-revision-v1','','','2018-11-28 22:48:01','2018-11-28 22:48:01','',2034,'https://www.newcastle-hypnotherapy.com/2034-revision-v1/',0,'revision','',0),(2038,1,'2018-11-28 22:48:23','2018-11-28 22:48:23','Ethical Business Links\r\n<img class=\"alignleft wp-image-2035 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/massage-1790063_1280-300x200.jpg\" alt=\"Ethical Business Links\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Business is great when it is ethical, green, natural &amp; holistic.</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>If you would like your ethical business listed below please <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> with a description.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Ethical Business Links.</span></strong></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Ethical Business Links','','inherit','closed','closed','','2034-revision-v1','','','2018-11-28 22:48:23','2018-11-28 22:48:23','',2034,'https://www.newcastle-hypnotherapy.com/2034-revision-v1/',0,'revision','',0),(2039,1,'2018-11-28 22:48:41','2018-11-28 22:48:41','Ethical Business Links\r\n<img class=\"alignleft wp-image-2035 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/massage-1790063_1280-300x200.jpg\" alt=\"Ethical Business Links\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Business is great when it is ethical, green, natural &amp; holistic.</strong>\r\n\r\n<strong>If you would like your ethical business listed below please <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> with a description.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Ethical Business Links.</span></strong></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Ethical Business Links','','inherit','closed','closed','','2034-revision-v1','','','2018-11-28 22:48:41','2018-11-28 22:48:41','',2034,'https://www.newcastle-hypnotherapy.com/2034-revision-v1/',0,'revision','',0),(2121,1,'2018-12-06 19:27:10','2018-12-06 19:27:10','','PAST LIFE REGRESSION SESSIONS','','publish','closed','closed','','past-life-regression-sessions','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',1451,'https://www.newcastle-hypnotherapy.com/?p=2121',12,'nav_menu_item','',0),(2041,1,'2018-11-28 23:15:10','2018-11-28 23:15:10','Ethical Business Links\n<img class=\"alignleft wp-image-2035 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/massage-1790063_1280-300x200.jpg\" alt=\"Ethical Business Links\" width=\"300\" height=\"200\" />\n\n<strong>Business is great when it is ethical, green, natural &amp; holistic.</strong>\n\n<strong>If you would like your ethical business listed below please <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> with a description.</strong>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<h2><strong><span style=\"color: #008000;\">Ethical Business Links.\n</span></strong></h2>\n<strong>The Vault - Creative Well-Being Centre. </strong>\nThe Vault is a vital community hub in the centre of Wallsend, Newcastle upon Tyne.\nHere you will find so many events and workshops happening weekly along with the popular monthly Mind, Body, Spirit Fair.\nThe Vault Creative Well-Being Centre CIC, 31 Station Road, Wallsend, NE28 6RL. <strong><a href=\"http://www.the-vault.org/\">http://www.the-vault.org/</a></strong>\n\n<strong>Food For Thought - Health Food Shop &amp; Natural Remedies.</strong>\nBased in Seaton Delaval, Food For Thought stocks an impressive range of natural remedies and health foods, back up with many years of expert knowledge. They also house an organic bakery, a wide range of specialist free from foods and conduct allergy and intolerance testing.\nThe staff are friendly and happy to advise on any issues.\n<span class=\"LrzXr\">Food For Thought<strong>, </strong>28 Astley Rd, Seaton Delaval, Whitley Bay NE25 0DG. Tel 0191 237 5935.  <strong><a href=\"http://www.food-for-thought-uk.co.uk/\">http://www.food-for-thought-uk.co.uk/</a></strong></span>\n\n&nbsp;','Ethical Business Links','','inherit','closed','closed','','2034-autosave-v1','','','2018-11-28 23:15:10','2018-11-28 23:15:10','',2034,'https://www.newcastle-hypnotherapy.com/2034-autosave-v1/',0,'revision','',0),(2042,1,'2018-11-28 22:59:14','2018-11-28 22:59:14','Ethical Business Links\r\n<img class=\"alignleft wp-image-2035 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/massage-1790063_1280-300x200.jpg\" alt=\"Ethical Business Links\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Business is great when it is ethical, green, natural &amp; holistic.</strong>\r\n\r\n<strong>If you would like your ethical business listed below please <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> with a description.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Ethical Business Links.\r\n</span></strong></h2>\r\n<strong><a href=\"http://www.the-vault.org/\">The Vault - Creative Well-Being Centre.</a> </strong>\r\nThe Vault is a vital community hub in the centre of Wallsend, Newcastle upon Tyne.\r\nHere you will find so many events and workshops happening weekly along with the popular monthly Mind, Body, Spirit Fair.\r\nThe Vault Creative Well-Being Centre CIC, 31 Station Road, ​Wallsend, NE28 6RL. <strong><a href=\"http://www.the-vault.org/\">http://www.the-vault.org/</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Ethical Business Links','','inherit','closed','closed','','2034-revision-v1','','','2018-11-28 22:59:14','2018-11-28 22:59:14','',2034,'https://www.newcastle-hypnotherapy.com/2034-revision-v1/',0,'revision','',0),(2043,1,'2018-11-28 23:09:17','2018-11-28 23:09:17','Ethical Business Links\r\n<img class=\"alignleft wp-image-2035 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/massage-1790063_1280-300x200.jpg\" alt=\"Ethical Business Links\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Business is great when it is ethical, green, natural &amp; holistic.</strong>\r\n\r\n<strong>If you would like your ethical business listed below please <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> with a description.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Ethical Business Links.\r\n</span></strong></h2>\r\n<strong>The Vault - Creative Well-Being Centre. </strong>\r\nThe Vault is a vital community hub in the centre of Wallsend, Newcastle upon Tyne.\r\nHere you will find so many events and workshops happening weekly along with the popular monthly Mind, Body, Spirit Fair.\r\nThe Vault Creative Well-Being Centre CIC, 31 Station Road, Wallsend, NE28 6RL. <strong><a href=\"http://www.the-vault.org/\">http://www.the-vault.org/</a></strong>\r\n\r\n<strong>Food For Thought - Health Food Shop &amp; Natural Remedies.</strong>\r\nBased in Seaton Delaval, Food For Thought stocks an impressive range of natural remedies and health foods, back up with many years of expert knowledge. They also house an organic bakery, a wide range of specialist free from foods and conduct allergy and intolerance testing.\r\nThe staff are friendly and happy to advise on any issues.\r\n<span class=\"LrzXr\">Food For Thought<strong>, </strong>28 Astley Rd, Seaton Delaval, Whitley Bay NE25 0DG. Tel 0191 237 5935  <strong><a href=\"http://www.food-for-thought-uk.co.uk/\">http://www.food-for-thought-uk.co.uk/</a></strong></span>\r\n\r\n&nbsp;','Ethical Business Links','','inherit','closed','closed','','2034-revision-v1','','','2018-11-28 23:09:17','2018-11-28 23:09:17','',2034,'https://www.newcastle-hypnotherapy.com/2034-revision-v1/',0,'revision','',0),(2410,1,'2018-12-29 17:26:08','2018-12-29 17:26:08','We are very fortunate to have a selection of good hypnotherapists available to us locally and online.\r\nHypnotherapy is unregulated in the UK as it is regarded as a safe therapy. However, it really is worth taking a little time to choose your hypnotherapist, making sure they are right for you, understanding your issues and desired outcome.\r\n\r\nHere are some tips to help you choose your hypnotherapist.\r\n\r\n1. Hypnotherapy Qualifications And Training.\r\n\r\nLearning the ability to hypnotise people is not difficult and this will not make anyone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation. They will have completed a recognised qualification under professional supervision and then continue their development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training and previous background information.\r\nMany hypnotherapists will be experienced in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Mindfulness &amp; Meditation.\r\n\r\nurs of training\r\n\r\nonline training\r\n\r\n2. In','Essential Tips For Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-29 17:26:08','2018-12-29 17:26:08','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2046,1,'2018-11-29 12:46:41','2018-11-29 12:46:41','','hypnotherapy for ibs','','inherit','open','closed','','belly-3186730_1280-2','','','2018-11-29 12:47:15','2018-11-29 12:47:15','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280.jpg',0,'attachment','image/jpeg',0),(2438,1,'2018-12-30 15:04:16','2018-12-30 15:04:16','One of our new clients explained she found the process of choosing your hypnotherapist, quite a daunting task and I have to agree with her. <img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" />There is such a selection of hypnotherapists to choose from and you need to choose a good one that is right for you. Hopefully this article will help you with your choice.\r\n\r\n<strong>When choosing your hypnotherapist, take a little time to decide what you want and what is important to you. Once decided its time do a little research to find the right one for you. Look for qualifications, training, insurance, cutomer reviews, a free initial consultation, a website with good information, is the venue professional and do the fees match your budget? As you choose aim</strong><strong> to find someone that ticks all of your boxes.</strong>\r\n\r\nUseful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Master NLP Practitioner.\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Make sure you ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nEveryone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nChoosing a hypnotherapist at a low price is a false economy as paying a realistic will result in fewer sessions being required.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n<h4><span style=\"color: #008000;\"><strong>11. Be Clear On What You Want To </strong>Achieve</span></h4>\r\nIt will really help your hypnotherapist and you to know exactly what you want to achieve with hypnotherapy?\r\nAs an example, many clients with anxiety issues come to us just wanting the anxiety problems to go away. A better outcome may be to feel, relaxed, confident, calm, strong, focused, clear and energetic. This may be a different way of thinking for you and having a clear outcome of your future will help us to help you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Tips For Choosing Your Hypnotherapist.</span></strong></h2>\r\n<ul>\r\n 	<li>Check qualifications &amp; training</li>\r\n 	<li>Check insurance</li>\r\n 	<li>Is there a free consultation</li>\r\n 	<li>Check the venue</li>\r\n 	<li>Avoid those working from home if you are concerned about safety and security</li>\r\n 	<li>Ask about areas of expertise</li>\r\n 	<li>Are you clear on prices?</li>\r\n 	<li>Look for reviews and testimonials</li>\r\n 	<li>Avoid guarantees or one session promises</li>\r\n 	<li>Are they specialists or experienced in your issue?</li>\r\n 	<li>Look for events and workshops</li>\r\n 	<li>Get to know your hypnotherapist</li>\r\n 	<li>Enjoy your hypnotherapy - it is a wonderful experience</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions Clients Ask About Hypnotherapy.</span></strong></h2>\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy similar to sleep?</span></strong></h4>\r\nNo, hypnotherapy is very different to sleep. The word sleep is often used by stage hypnotists and incorrect.\r\nHypnosis is a relaxed but alert state where you are fully awake, fully aware and fully in control.\r\nDuring this hypnotic state, we can give your subconscious mind suggestions and commands to resolve the issues you wish to resolve.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy dangerous?</span></strong></h4>\r\nHypnosis is perfectly safe when conducted by a professional trained clinical hypnotherapy.\r\nHypnotherapy is regarded as a safe therapy by the NHS and insurance companies.\r\nHypnosis should never be used when operating machinery or driving a vehicle.\r\n<h4><span style=\"color: #008000;\"><strong>How many hypnotherapy sessions will it take to fix my problem?</strong></span></h4>\r\nThis will vary on the issue and will be advised by the hypnotherapist you choose.\r\nAsking for<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong> a free consultation</strong></a> will help you with this question.\r\n<h4><strong><span style=\"color: #008000;\">What is hypnosis?</span></strong></h4>\r\nHypnosis is a natural state that we all experience every day, rather similar to daydreaming.\r\nImagine being totally focused on a tv program, that is a hypnotic state.\r\nA good hypnotherapist will simply guide you into a hypnotic state while using language to change how you think and act.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nHypnosis is usually guided by a hypnotherapist to make the changes you desire.\r\nSelf-hypnosis is guided by you for relaxation or change, rather similar to meditation although faster, deeper and more effective.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Meditation and Hypnosis?</strong></span></h4>\r\nMeditation is usually used to clear the mind while hypnosis is used to change the mind.\r\n<h4><span style=\"color: #008000;\"><strong>How can I find a good hypnotherapist?</strong></span></h4>\r\nLook at the information above about finding a good hypnotherapist for you.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnotherapy a permanent, long lasting solution?</strong></span></h4>\r\nUsually, hypnotherapy solutions will be a permanent resolution to your problem. If required you can certainly visit your hypnotherapist again to strengthen or modify your improvements.\r\n<h4><strong><span style=\"color: #008000;\">Which health issues can hypnotherapy help with?</span></strong></h4>\r\nMany of our clients find hypnotherapy is very effective with health conditions that involve stress and anxiety. Both of these can make almost any health issue worse and once we remove stress and anxiety, our minds are free to resolve issues better.\r\nStress and anxiety are presently very common health issues and effect a very high number of people.\r\nHypnotherapy can also help with many other health conditions such as IBS, pain management, depression, insomnia, weight loss, stopping smoking, addictions, changing habits, behaviour problems, food allergies, food intolerances and so much more.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis available on the NHS?</strong></span></h4>\r\nAlthough the NHS state that hypnotherapy is effective with many health issues they do not currently offer hypnosis services.\r\nWe believe that hypnotherapy should be available to everyone on the NHS as it can be most effective and it avoids the side effects of many medications. Hopefully in the future hypnosis will be offered on the NHS.\r\n<h4><span style=\"color: #008000;\"><strong>Can everyone be hypnotised and helped?</strong></span></h4>\r\nPersonally, I believe everyone can experience hypnosis and with the right methods, everyone can be helped with hypnotherapy. However, this question will draw different answers and arguments from many respected hypnotherapy professionals.\r\nSome people are resistant to hypnosis as they may have a fear of losing control. This is where learning self-hypnosis is very useful, allowing people to help themselves.\r\nA good hypnotherapist will usually be experienced with other modern change techniques that can be just as powerful. The more tools we have in our mental toolbox the better we can help clients with health issues.\r\n<h4><span style=\"color: #008000;\"><strong>Can people be hypnotised </strong>against<strong> their will?</strong></span></h4>\r\nChange with hypnotherapy can only happen if the client is willing to change. We can help with giving people reasons to change or improve things but ultimately change has to come from within.\r\nA good therapist would not take on a client unless they are willing to make changes.\r\n<h4><span style=\"color: #008000;\"><strong>Is it true that hypnosis weakens the mind?</strong></span></h4>\r\nNo. Hypnosis and self-hypnosis can help to control mental states such as happiness and self-confidence. In effect we do have \"mental muscles\" and the more we practice helpful techniques the easier and stronger they become.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnosis addictive?</span></strong></h4>\r\nI have never heard of anyone becoming addicted to hypnosis. Hypnosis is a wonderful state and a great way to feel relaxed, in control, happy, self-confident, strong, focused etc. Once you learn to enter into self-hypnosis you have a powerful mental technique that allows you to control your emotions, feelings and other mental states.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnotherapy useful for children?</strong></span></h4>\r\nYes, children and adults can enjoy the benefits of hypnotherapy. Children are usually very good hypnotic subjects and naturally enjoy hypnotic states on a daily basis.\r\n<h4><span style=\"color: #008000;\">How can I learn to <strong>hypnotise other</strong> people?</span></h4>\r\nI would strongly suggest finding a self-hypnosis course near to you with a respected hypnotherapy practitioner.\r\nCourses encouraging you to practice on others are very useful and far better than online courses and books.\r\nSelf-hypnosis is perfectly safe and a great first step into the world of hypnotherapy. Always treat yourself as your first client.\r\n\r\nA good instructor will teach you many hypnosis inductions and a little history of hypnotherapy.\r\nRegular practice will see you improve and you will become aware of how people change and improve during hypnosis.\r\n<h4><span style=\"color: #008000;\"><strong>Are there different levels of Hypnosis?</strong></span></h4>\r\nYes. For most hypnotherapy change requirements clients do not need to go too deep to enjoy the many benefits.\r\nJust like meditation, the more someone experiences hypnosis, the more they can enjoy deep hypnosis.\r\nA trained hypnotherapist can guide clients to deeper hypnosis levels when and if required.\r\n<h4><span style=\"color: #008000;\">What is a hypnotic induction?</span></h4>\r\nHypnotic inductions are the methods used to guide a person into a hypnotic trance. They include hypnotic phrases, hypnotic scripts, language and need to be used with the correct rhythm, breathing and tonality. Hypnosis training helps you to recognise where the client is in the hypnotic process and how to guide them along until they are ready for hypnotic suggestions and commands.\r\nGood hypnosis training will explain this in more detail.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nVisit the Newcastle <a href=\"https://www.facebook.com/newcastlehypnosis/\">Hypnotherapy Facebook Page</a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-30 15:04:16','2018-12-30 15:04:16','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2436,1,'2018-12-30 14:54:35','2018-12-30 14:54:35','One of our new clients explained she found the process of choosing your hypnotherapist, quite a daunting task and I have to agree with her.<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" />There is such a selection of hypnotherapists to choose from and you need to choose a good one that is right for you. Hopefully this article will help you with your choice.\r\n\r\n<strong>When choosing your hypnotherapist, take a little time to decide what you want and where you would like to be the end of the process. Once decided its time do a little research to find the right one for you. Look for qualifications, training, </strong>cutomers<strong> reviews, a free initial consultation, a website with good information, is the venue professional and do the fees match your budget? As you choose you hypnotherapist aim</strong><strong> to find someone that ticks all of your boxes.</strong>\r\n\r\nUseful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Master NLP Practitioner.\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Make sure you ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nEveryone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nChoosing a hypnotherapist at a low price is a false economy as paying a realistic will result in fewer sessions being required.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n<h4><span style=\"color: #008000;\"><strong>11. Be Clear On What You Want To </strong>Achieve</span></h4>\r\nIt will really help your hypnotherapist and you to know exactly what you want to achieve with hypnotherapy?\r\nAs an example, many clients with anxiety issues come to us just wanting the anxiety problems to go away. A better outcome may be to feel, relaxed, confident, calm, strong, focused, clear and energetic. This may be a different way of thinking for you and having a clear outcome of your future will help us to help you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Tips For Choosing Your Hypnotherapist.</span></strong></h2>\r\n<ul>\r\n 	<li>Check qualifications &amp; training</li>\r\n 	<li>Check insurance</li>\r\n 	<li>Is there a free consultation</li>\r\n 	<li>Check the venue</li>\r\n 	<li>Avoid those working from home if you are concerned about safety and security</li>\r\n 	<li>Ask about areas of expertise</li>\r\n 	<li>Are you clear on prices?</li>\r\n 	<li>Look for reviews and testimonials</li>\r\n 	<li>Avoid guarantees or one session promises</li>\r\n 	<li>Are they specialists or experienced in your issue?</li>\r\n 	<li>Look for events and workshops</li>\r\n 	<li>Get to know your hypnotherapist</li>\r\n 	<li>Enjoy your hypnotherapy - it is a wonderful experience</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions Clients Ask About Hypnotherapy.</span></strong></h2>\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy similar to sleep?</span></strong></h4>\r\nNo, hypnotherapy is very different to sleep. The word sleep is often used by stage hypnotists and incorrect.\r\nHypnosis is a relaxed but alert state where you are fully awake, fully aware and fully in control.\r\nDuring this hypnotic state, we can give your subconscious mind suggestions and commands to resolve the issues you wish to resolve.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy dangerous?</span></strong></h4>\r\nHypnosis is perfectly safe when conducted by a professional trained clinical hypnotherapy.\r\nHypnotherapy is regarded as a safe therapy by the NHS and insurance companies.\r\nHypnosis should never be used when operating machinery or driving a vehicle.\r\n<h4><span style=\"color: #008000;\"><strong>How many hypnotherapy sessions will it take to fix my problem?</strong></span></h4>\r\nThis will vary on the issue and will be advised by the hypnotherapist you choose.\r\nAsking for<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong> a free consultation</strong></a> will help you with this question.\r\n<h4><strong><span style=\"color: #008000;\">What is hypnosis?</span></strong></h4>\r\nHypnosis is a natural state that we all experience every day, rather similar to daydreaming.\r\nImagine being totally focused on a tv program, that is a hypnotic state.\r\nA good hypnotherapist will simply guide you into a hypnotic state while using language to change how you think and act.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nHypnosis is usually guided by a hypnotherapist to make the changes you desire.\r\nSelf-hypnosis is guided by you for relaxation or change, rather similar to meditation although faster, deeper and more effective.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Meditation and Hypnosis?</strong></span></h4>\r\nMeditation is usually used to clear the mind while hypnosis is used to change the mind.\r\n<h4><span style=\"color: #008000;\"><strong>How can I find a good hypnotherapist?</strong></span></h4>\r\nLook at the information above about finding a good hypnotherapist for you.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnotherapy a permanent, long lasting solution?</strong></span></h4>\r\nUsually, hypnotherapy solutions will be a permanent resolution to your problem. If required you can certainly visit your hypnotherapist again to strengthen or modify your improvements.\r\n<h4><strong><span style=\"color: #008000;\">Which health issues can hypnotherapy help with?</span></strong></h4>\r\nMany of our clients find hypnotherapy is very effective with health conditions that involve stress and anxiety. Both of these can make almost any health issue worse and once we remove stress and anxiety, our minds are free to resolve issues better.\r\nStress and anxiety are presently very common health issues and effect a very high number of people.\r\nHypnotherapy can also help with many other health conditions such as IBS, pain management, depression, insomnia, weight loss, stopping smoking, addictions, changing habits, behaviour problems, food allergies, food intolerances and so much more.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis available on the NHS?</strong></span></h4>\r\nAlthough the NHS state that hypnotherapy is effective with many health issues they do not currently offer hypnosis services.\r\nWe believe that hypnotherapy should be available to everyone on the NHS as it can be most effective and it avoids the side effects of many medications. Hopefully in the future hypnosis will be offered on the NHS.\r\n<h4><span style=\"color: #008000;\"><strong>Can everyone be hypnotised and helped?</strong></span></h4>\r\nPersonally, I believe everyone can experience hypnosis and with the right methods, everyone can be helped with hypnotherapy. However, this question will draw different answers and arguments from many respected hypnotherapy professionals.\r\nSome people are resistant to hypnosis as they may have a fear of losing control. This is where learning self-hypnosis is very useful, allowing people to help themselves.\r\nA good hypnotherapist will usually be experienced with other modern change techniques that can be just as powerful. The more tools we have in our mental toolbox the better we can help clients with health issues.\r\n<h4><span style=\"color: #008000;\"><strong>Can people be hypnotised </strong>against<strong> their will?</strong></span></h4>\r\nChange with hypnotherapy can only happen if the client is willing to change. We can help with giving people reasons to change or improve things but ultimately change has to come from within.\r\nA good therapist would not take on a client unless they are willing to make changes.\r\n<h4><span style=\"color: #008000;\"><strong>Is it true that hypnosis weakens the mind?</strong></span></h4>\r\nNo. Hypnosis and self-hypnosis can help to control mental states such as happiness and self-confidence. In effect we do have \"mental muscles\" and the more we practice helpful techniques the easier and stronger they become.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnosis addictive?</span></strong></h4>\r\nI have never heard of anyone becoming addicted to hypnosis. Hypnosis is a wonderful state and a great way to feel relaxed, in control, happy, self-confident, strong, focused etc. Once you learn to enter into self-hypnosis you have a powerful mental technique that allows you to control your emotions, feelings and other mental states.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnotherapy useful for children?</strong></span></h4>\r\nYes, children and adults can enjoy the benefits of hypnotherapy. Children are usually very good hypnotic subjects and naturally enjoy hypnotic states on a daily basis.\r\n<h4><span style=\"color: #008000;\">How can I learn to <strong>hypnotise other</strong> people?</span></h4>\r\nI would strongly suggest finding a self-hypnosis course near to you with a respected hypnotherapy practitioner.\r\nCourses encouraging you to practice on others are very useful and far better than online courses and books.\r\nSelf-hypnosis is perfectly safe and a great first step into the world of hypnotherapy. Always treat yourself as your first client.\r\n\r\nA good instructor will teach you many hypnosis inductions and a little history of hypnotherapy.\r\nRegular practice will see you improve and you will become aware of how people change and improve during hypnosis.\r\n<h4><span style=\"color: #008000;\"><strong>Are there different levels of Hypnosis?</strong></span></h4>\r\nYes. For most hypnotherapy change requirements clients do not need to go too deep to enjoy the many benefits.\r\nJust like meditation, the more someone experiences hypnosis, the more they can enjoy deep hypnosis.\r\nA trained hypnotherapist can guide clients to deeper hypnosis levels when and if required.\r\n<h4><span style=\"color: #008000;\">What is a hypnotic induction?</span></h4>\r\nHypnotic inductions are the methods used to guide a person into a hypnotic trance. They include hypnotic phrases, hypnotic scripts, language and need to be used with the correct rhythm, breathing and tonality. Hypnosis training helps you to recognise where the client is in the hypnotic process and how to guide them along until they are ready for hypnotic suggestions and commands.\r\nGood hypnosis training will explain this in more detail.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nVisit the Newcastle <a href=\"https://www.facebook.com/newcastlehypnosis/\">Hypnotherapy Facebook Page</a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-30 14:54:35','2018-12-30 14:54:35','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2058,1,'2018-11-29 14:55:14','2018-11-29 14:55:14','<fieldset>\r\n	<legend>Enter your details below to join the newsletter</legend>\r\n	<ol>\r\n<li> Name [text* cf7s-name] </li>\r\n		<li> Email [email* cf7s-email] </li>\r\n\r\n\r\n\r\n[submit \"Submit\"]\r\n\r\n</fieldset>\n1\nIBS Subsciber\n<mark@newcastle-hypnotherapy.com>\nmark@newcastle-hypnotherapy.com\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Newcastle Hypnotherapy  (https://www.newcastle-hypnotherapy.com)\n\n\n\n\n\nNewcastle Hypnotherapy  \"[your-subject]\"\nNewcastle Hypnotherapy  <mark@newcastle-hypnotherapy.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Newcastle Hypnotherapy  (https://www.newcastle-hypnotherapy.com)\nReply-To: mark@newcastle-hypnotherapy.com\n\n\n\nThank you. You have now subscibed to the newsletter.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','IBS Help Newsletter','','publish','closed','closed','','stress-tips-newsletter_copy','','','2018-11-29 15:03:41','2018-11-29 15:03:41','',0,'https://www.newcastle-hypnotherapy.com/?post_type=wpcf7_contact_form&#038;p=2058',0,'wpcf7_contact_form','',0),(2435,1,'2018-12-30 14:53:46','2018-12-30 14:53:46','One of our new clients explained she found the process of choosing your hypnotherapist, quite a daunting task and I have to agree with her.<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" />\r\n\r\nThere is such a selection of hypnotherapists to choose from and you need to choose a good one that is right for you. Hopefully this article will help you with your choice.\r\n\r\n<strong>When choosing your hypnotherapist, take a little time to decide what you want and where you would like to be the end of the process. Once decided its time do a little research to find the right one for you. Look for qualifications, training, </strong>cutomers<strong> reviews, a free initial consultation, a website with good information, is the venue professional and do the fees match your budget? As you choose you hypnotherapist aim</strong><strong> to find someone that ticks all of your boxes.</strong>\r\n\r\nUseful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Master NLP Practitioner.\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Make sure you ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nEveryone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nChoosing a hypnotherapist at a low price is a false economy as paying a realistic will result in fewer sessions being required.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n<h4><span style=\"color: #008000;\"><strong>11. Be Clear On What You Want To </strong>Achieve</span></h4>\r\nIt will really help your hypnotherapist and you to know exactly what you want to achieve with hypnotherapy?\r\nAs an example, many clients with anxiety issues come to us just wanting the anxiety problems to go away. A better outcome may be to feel, relaxed, confident, calm, strong, focused, clear and energetic. This may be a different way of thinking for you and having a clear outcome of your future will help us to help you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Tips For Choosing Your Hypnotherapist.</span></strong></h2>\r\n<ul>\r\n 	<li>Check qualifications &amp; training</li>\r\n 	<li>Check insurance</li>\r\n 	<li>Is there a free consultation</li>\r\n 	<li>Check the venue</li>\r\n 	<li>Avoid those working from home if you are concerned about safety and security</li>\r\n 	<li>Ask about areas of expertise</li>\r\n 	<li>Are you clear on prices?</li>\r\n 	<li>Look for reviews and testimonials</li>\r\n 	<li>Avoid guarantees or one session promises</li>\r\n 	<li>Are they specialists or experienced in your issue?</li>\r\n 	<li>Look for events and workshops</li>\r\n 	<li>Get to know your hypnotherapist</li>\r\n 	<li>Enjoy your hypnotherapy - it is a wonderful experience</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions Clients Ask About Hypnotherapy.</span></strong></h2>\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy similar to sleep?</span></strong></h4>\r\nNo, hypnotherapy is very different to sleep. The word sleep is often used by stage hypnotists and incorrect.\r\nHypnosis is a relaxed but alert state where you are fully awake, fully aware and fully in control.\r\nDuring this hypnotic state, we can give your subconscious mind suggestions and commands to resolve the issues you wish to resolve.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy dangerous?</span></strong></h4>\r\nHypnosis is perfectly safe when conducted by a professional trained clinical hypnotherapy.\r\nHypnotherapy is regarded as a safe therapy by the NHS and insurance companies.\r\nHypnosis should never be used when operating machinery or driving a vehicle.\r\n<h4><span style=\"color: #008000;\"><strong>How many hypnotherapy sessions will it take to fix my problem?</strong></span></h4>\r\nThis will vary on the issue and will be advised by the hypnotherapist you choose.\r\nAsking for<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong> a free consultation</strong></a> will help you with this question.\r\n<h4><strong><span style=\"color: #008000;\">What is hypnosis?</span></strong></h4>\r\nHypnosis is a natural state that we all experience every day, rather similar to daydreaming.\r\nImagine being totally focused on a tv program, that is a hypnotic state.\r\nA good hypnotherapist will simply guide you into a hypnotic state while using language to change how you think and act.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nHypnosis is usually guided by a hypnotherapist to make the changes you desire.\r\nSelf-hypnosis is guided by you for relaxation or change, rather similar to meditation although faster, deeper and more effective.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Meditation and Hypnosis?</strong></span></h4>\r\nMeditation is usually used to clear the mind while hypnosis is used to change the mind.\r\n<h4><span style=\"color: #008000;\"><strong>How can I find a good hypnotherapist?</strong></span></h4>\r\nLook at the information above about finding a good hypnotherapist for you.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnotherapy a permanent, long lasting solution?</strong></span></h4>\r\nUsually, hypnotherapy solutions will be a permanent resolution to your problem. If required you can certainly visit your hypnotherapist again to strengthen or modify your improvements.\r\n<h4><strong><span style=\"color: #008000;\">Which health issues can hypnotherapy help with?</span></strong></h4>\r\nMany of our clients find hypnotherapy is very effective with health conditions that involve stress and anxiety. Both of these can make almost any health issue worse and once we remove stress and anxiety, our minds are free to resolve issues better.\r\nStress and anxiety are presently very common health issues and effect a very high number of people.\r\nHypnotherapy can also help with many other health conditions such as IBS, pain management, depression, insomnia, weight loss, stopping smoking, addictions, changing habits, behaviour problems, food allergies, food intolerances and so much more.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis available on the NHS?</strong></span></h4>\r\nAlthough the NHS state that hypnotherapy is effective with many health issues they do not currently offer hypnosis services.\r\nWe believe that hypnotherapy should be available to everyone on the NHS as it can be most effective and it avoids the side effects of many medications. Hopefully in the future hypnosis will be offered on the NHS.\r\n<h4><span style=\"color: #008000;\"><strong>Can everyone be hypnotised and helped?</strong></span></h4>\r\nPersonally, I believe everyone can experience hypnosis and with the right methods, everyone can be helped with hypnotherapy. However, this question will draw different answers and arguments from many respected hypnotherapy professionals.\r\nSome people are resistant to hypnosis as they may have a fear of losing control. This is where learning self-hypnosis is very useful, allowing people to help themselves.\r\nA good hypnotherapist will usually be experienced with other modern change techniques that can be just as powerful. The more tools we have in our mental toolbox the better we can help clients with health issues.\r\n<h4><span style=\"color: #008000;\"><strong>Can people be hypnotised </strong>against<strong> their will?</strong></span></h4>\r\nChange with hypnotherapy can only happen if the client is willing to change. We can help with giving people reasons to change or improve things but ultimately change has to come from within.\r\nA good therapist would not take on a client unless they are willing to make changes.\r\n<h4><span style=\"color: #008000;\"><strong>Is it true that hypnosis weakens the mind?</strong></span></h4>\r\nNo. Hypnosis and self-hypnosis can help to control mental states such as happiness and self-confidence. In effect we do have \"mental muscles\" and the more we practice helpful techniques the easier and stronger they become.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnosis addictive?</span></strong></h4>\r\nI have never heard of anyone becoming addicted to hypnosis. Hypnosis is a wonderful state and a great way to feel relaxed, in control, happy, self-confident, strong, focused etc. Once you learn to enter into self-hypnosis you have a powerful mental technique that allows you to control your emotions, feelings and other mental states.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnotherapy useful for children?</strong></span></h4>\r\nYes, children and adults can enjoy the benefits of hypnotherapy. Children are usually very good hypnotic subjects and naturally enjoy hypnotic states on a daily basis.\r\n<h4><span style=\"color: #008000;\">How can I learn to <strong>hypnotise other</strong> people?</span></h4>\r\nI would strongly suggest finding a self-hypnosis course near to you with a respected hypnotherapy practitioner.\r\nCourses encouraging you to practice on others are very useful and far better than online courses and books.\r\nSelf-hypnosis is perfectly safe and a great first step into the world of hypnotherapy. Always treat yourself as your first client.\r\n\r\nA good instructor will teach you many hypnosis inductions and a little history of hypnotherapy.\r\nRegular practice will see you improve and you will become aware of how people change and improve during hypnosis.\r\n<h4><span style=\"color: #008000;\"><strong>Are there different levels of Hypnosis?</strong></span></h4>\r\nYes. For most hypnotherapy change requirements clients do not need to go too deep to enjoy the many benefits.\r\nJust like meditation, the more someone experiences hypnosis, the more they can enjoy deep hypnosis.\r\nA trained hypnotherapist can guide clients to deeper hypnosis levels when and if required.\r\n<h4><span style=\"color: #008000;\">What is a hypnotic induction?</span></h4>\r\nHypnotic inductions are the methods used to guide a person into a hypnotic trance. They include hypnotic phrases, hypnotic scripts, language and need to be used with the correct rhythm, breathing and tonality. Hypnosis training helps you to recognise where the client is in the hypnotic process and how to guide them along until they are ready for hypnotic suggestions and commands.\r\nGood hypnosis training will explain this in more detail.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nVisit the Newcastle <a href=\"https://www.facebook.com/newcastlehypnosis/\">Hypnotherapy Facebook Page</a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-30 14:53:46','2018-12-30 14:53:46','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2437,1,'2018-12-30 14:58:18','2018-12-30 14:58:18','One of our new clients explained she found the process of choosing your hypnotherapist, quite a daunting task and I have to agree with her.<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" />There is such a selection of hypnotherapists to choose from and you need to choose a good one that is right for you. Hopefully this article will help you with your choice.\r\n\r\n<strong>When choosing your hypnotherapist, take a little time to decide what you want and what is important to you. Once decided its time do a little research to find the right one for you. Look for qualifications, training, insurance, cutomer reviews, a free initial consultation, a website with good information, is the venue professional and do the fees match your budget? As you choose aim</strong><strong> to find someone that ticks all of your boxes.</strong>\r\n\r\nUseful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Master NLP Practitioner.\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Make sure you ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nEveryone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nChoosing a hypnotherapist at a low price is a false economy as paying a realistic will result in fewer sessions being required.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n<h4><span style=\"color: #008000;\"><strong>11. Be Clear On What You Want To </strong>Achieve</span></h4>\r\nIt will really help your hypnotherapist and you to know exactly what you want to achieve with hypnotherapy?\r\nAs an example, many clients with anxiety issues come to us just wanting the anxiety problems to go away. A better outcome may be to feel, relaxed, confident, calm, strong, focused, clear and energetic. This may be a different way of thinking for you and having a clear outcome of your future will help us to help you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Tips For Choosing Your Hypnotherapist.</span></strong></h2>\r\n<ul>\r\n 	<li>Check qualifications &amp; training</li>\r\n 	<li>Check insurance</li>\r\n 	<li>Is there a free consultation</li>\r\n 	<li>Check the venue</li>\r\n 	<li>Avoid those working from home if you are concerned about safety and security</li>\r\n 	<li>Ask about areas of expertise</li>\r\n 	<li>Are you clear on prices?</li>\r\n 	<li>Look for reviews and testimonials</li>\r\n 	<li>Avoid guarantees or one session promises</li>\r\n 	<li>Are they specialists or experienced in your issue?</li>\r\n 	<li>Look for events and workshops</li>\r\n 	<li>Get to know your hypnotherapist</li>\r\n 	<li>Enjoy your hypnotherapy - it is a wonderful experience</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions Clients Ask About Hypnotherapy.</span></strong></h2>\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy similar to sleep?</span></strong></h4>\r\nNo, hypnotherapy is very different to sleep. The word sleep is often used by stage hypnotists and incorrect.\r\nHypnosis is a relaxed but alert state where you are fully awake, fully aware and fully in control.\r\nDuring this hypnotic state, we can give your subconscious mind suggestions and commands to resolve the issues you wish to resolve.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy dangerous?</span></strong></h4>\r\nHypnosis is perfectly safe when conducted by a professional trained clinical hypnotherapy.\r\nHypnotherapy is regarded as a safe therapy by the NHS and insurance companies.\r\nHypnosis should never be used when operating machinery or driving a vehicle.\r\n<h4><span style=\"color: #008000;\"><strong>How many hypnotherapy sessions will it take to fix my problem?</strong></span></h4>\r\nThis will vary on the issue and will be advised by the hypnotherapist you choose.\r\nAsking for<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong> a free consultation</strong></a> will help you with this question.\r\n<h4><strong><span style=\"color: #008000;\">What is hypnosis?</span></strong></h4>\r\nHypnosis is a natural state that we all experience every day, rather similar to daydreaming.\r\nImagine being totally focused on a tv program, that is a hypnotic state.\r\nA good hypnotherapist will simply guide you into a hypnotic state while using language to change how you think and act.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nHypnosis is usually guided by a hypnotherapist to make the changes you desire.\r\nSelf-hypnosis is guided by you for relaxation or change, rather similar to meditation although faster, deeper and more effective.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Meditation and Hypnosis?</strong></span></h4>\r\nMeditation is usually used to clear the mind while hypnosis is used to change the mind.\r\n<h4><span style=\"color: #008000;\"><strong>How can I find a good hypnotherapist?</strong></span></h4>\r\nLook at the information above about finding a good hypnotherapist for you.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnotherapy a permanent, long lasting solution?</strong></span></h4>\r\nUsually, hypnotherapy solutions will be a permanent resolution to your problem. If required you can certainly visit your hypnotherapist again to strengthen or modify your improvements.\r\n<h4><strong><span style=\"color: #008000;\">Which health issues can hypnotherapy help with?</span></strong></h4>\r\nMany of our clients find hypnotherapy is very effective with health conditions that involve stress and anxiety. Both of these can make almost any health issue worse and once we remove stress and anxiety, our minds are free to resolve issues better.\r\nStress and anxiety are presently very common health issues and effect a very high number of people.\r\nHypnotherapy can also help with many other health conditions such as IBS, pain management, depression, insomnia, weight loss, stopping smoking, addictions, changing habits, behaviour problems, food allergies, food intolerances and so much more.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis available on the NHS?</strong></span></h4>\r\nAlthough the NHS state that hypnotherapy is effective with many health issues they do not currently offer hypnosis services.\r\nWe believe that hypnotherapy should be available to everyone on the NHS as it can be most effective and it avoids the side effects of many medications. Hopefully in the future hypnosis will be offered on the NHS.\r\n<h4><span style=\"color: #008000;\"><strong>Can everyone be hypnotised and helped?</strong></span></h4>\r\nPersonally, I believe everyone can experience hypnosis and with the right methods, everyone can be helped with hypnotherapy. However, this question will draw different answers and arguments from many respected hypnotherapy professionals.\r\nSome people are resistant to hypnosis as they may have a fear of losing control. This is where learning self-hypnosis is very useful, allowing people to help themselves.\r\nA good hypnotherapist will usually be experienced with other modern change techniques that can be just as powerful. The more tools we have in our mental toolbox the better we can help clients with health issues.\r\n<h4><span style=\"color: #008000;\"><strong>Can people be hypnotised </strong>against<strong> their will?</strong></span></h4>\r\nChange with hypnotherapy can only happen if the client is willing to change. We can help with giving people reasons to change or improve things but ultimately change has to come from within.\r\nA good therapist would not take on a client unless they are willing to make changes.\r\n<h4><span style=\"color: #008000;\"><strong>Is it true that hypnosis weakens the mind?</strong></span></h4>\r\nNo. Hypnosis and self-hypnosis can help to control mental states such as happiness and self-confidence. In effect we do have \"mental muscles\" and the more we practice helpful techniques the easier and stronger they become.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnosis addictive?</span></strong></h4>\r\nI have never heard of anyone becoming addicted to hypnosis. Hypnosis is a wonderful state and a great way to feel relaxed, in control, happy, self-confident, strong, focused etc. Once you learn to enter into self-hypnosis you have a powerful mental technique that allows you to control your emotions, feelings and other mental states.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnotherapy useful for children?</strong></span></h4>\r\nYes, children and adults can enjoy the benefits of hypnotherapy. Children are usually very good hypnotic subjects and naturally enjoy hypnotic states on a daily basis.\r\n<h4><span style=\"color: #008000;\">How can I learn to <strong>hypnotise other</strong> people?</span></h4>\r\nI would strongly suggest finding a self-hypnosis course near to you with a respected hypnotherapy practitioner.\r\nCourses encouraging you to practice on others are very useful and far better than online courses and books.\r\nSelf-hypnosis is perfectly safe and a great first step into the world of hypnotherapy. Always treat yourself as your first client.\r\n\r\nA good instructor will teach you many hypnosis inductions and a little history of hypnotherapy.\r\nRegular practice will see you improve and you will become aware of how people change and improve during hypnosis.\r\n<h4><span style=\"color: #008000;\"><strong>Are there different levels of Hypnosis?</strong></span></h4>\r\nYes. For most hypnotherapy change requirements clients do not need to go too deep to enjoy the many benefits.\r\nJust like meditation, the more someone experiences hypnosis, the more they can enjoy deep hypnosis.\r\nA trained hypnotherapist can guide clients to deeper hypnosis levels when and if required.\r\n<h4><span style=\"color: #008000;\">What is a hypnotic induction?</span></h4>\r\nHypnotic inductions are the methods used to guide a person into a hypnotic trance. They include hypnotic phrases, hypnotic scripts, language and need to be used with the correct rhythm, breathing and tonality. Hypnosis training helps you to recognise where the client is in the hypnotic process and how to guide them along until they are ready for hypnotic suggestions and commands.\r\nGood hypnosis training will explain this in more detail.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nVisit the Newcastle <a href=\"https://www.facebook.com/newcastlehypnosis/\">Hypnotherapy Facebook Page</a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-30 14:58:18','2018-12-30 14:58:18','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2434,1,'2018-12-30 14:53:22','2018-12-30 14:53:22','One of our new clients explained she found the process of choosing your hypnotherapist, quite a daunting task and I have to agree with her.\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" />\r\n\r\nThere is such a selection of hypnotherapists to choose from and you need to choose a good one that is right for you. Hopefully this article will help you with your choice.\r\n\r\n<strong>When choosing your hypnotherapist, take a little time to decide what you want and where you would like to be the end of the process. Once decided its time do a little research to find the right one for you. Look for qualifications, training, </strong>cutomers<strong> reviews, a free initial consultation, a website with good information, is the venue professional and do the fees match your budget? As you choose you hypnotherapist aim</strong><strong> to find someone that ticks all of your boxes.</strong>\r\n\r\nUseful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Master NLP Practitioner.\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Make sure you ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nEveryone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nChoosing a hypnotherapist at a low price is a false economy as paying a realistic will result in fewer sessions being required.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n<h4><span style=\"color: #008000;\"><strong>11. Be Clear On What You Want To </strong>Achieve</span></h4>\r\nIt will really help your hypnotherapist and you to know exactly what you want to achieve with hypnotherapy?\r\nAs an example, many clients with anxiety issues come to us just wanting the anxiety problems to go away. A better outcome may be to feel, relaxed, confident, calm, strong, focused, clear and energetic. This may be a different way of thinking for you and having a clear outcome of your future will help us to help you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Tips For Choosing Your Hypnotherapist.</span></strong></h2>\r\n<ul>\r\n 	<li>Check qualifications &amp; training</li>\r\n 	<li>Check insurance</li>\r\n 	<li>Is there a free consultation</li>\r\n 	<li>Check the venue</li>\r\n 	<li>Avoid those working from home if you are concerned about safety and security</li>\r\n 	<li>Ask about areas of expertise</li>\r\n 	<li>Are you clear on prices?</li>\r\n 	<li>Look for reviews and testimonials</li>\r\n 	<li>Avoid guarantees or one session promises</li>\r\n 	<li>Are they specialists or experienced in your issue?</li>\r\n 	<li>Look for events and workshops</li>\r\n 	<li>Get to know your hypnotherapist</li>\r\n 	<li>Enjoy your hypnotherapy - it is a wonderful experience</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions Clients Ask About Hypnotherapy.</span></strong></h2>\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy similar to sleep?</span></strong></h4>\r\nNo, hypnotherapy is very different to sleep. The word sleep is often used by stage hypnotists and incorrect.\r\nHypnosis is a relaxed but alert state where you are fully awake, fully aware and fully in control.\r\nDuring this hypnotic state, we can give your subconscious mind suggestions and commands to resolve the issues you wish to resolve.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy dangerous?</span></strong></h4>\r\nHypnosis is perfectly safe when conducted by a professional trained clinical hypnotherapy.\r\nHypnotherapy is regarded as a safe therapy by the NHS and insurance companies.\r\nHypnosis should never be used when operating machinery or driving a vehicle.\r\n<h4><span style=\"color: #008000;\"><strong>How many hypnotherapy sessions will it take to fix my problem?</strong></span></h4>\r\nThis will vary on the issue and will be advised by the hypnotherapist you choose.\r\nAsking for<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong> a free consultation</strong></a> will help you with this question.\r\n<h4><strong><span style=\"color: #008000;\">What is hypnosis?</span></strong></h4>\r\nHypnosis is a natural state that we all experience every day, rather similar to daydreaming.\r\nImagine being totally focused on a tv program, that is a hypnotic state.\r\nA good hypnotherapist will simply guide you into a hypnotic state while using language to change how you think and act.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nHypnosis is usually guided by a hypnotherapist to make the changes you desire.\r\nSelf-hypnosis is guided by you for relaxation or change, rather similar to meditation although faster, deeper and more effective.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Meditation and Hypnosis?</strong></span></h4>\r\nMeditation is usually used to clear the mind while hypnosis is used to change the mind.\r\n<h4><span style=\"color: #008000;\"><strong>How can I find a good hypnotherapist?</strong></span></h4>\r\nLook at the information above about finding a good hypnotherapist for you.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnotherapy a permanent, long lasting solution?</strong></span></h4>\r\nUsually, hypnotherapy solutions will be a permanent resolution to your problem. If required you can certainly visit your hypnotherapist again to strengthen or modify your improvements.\r\n<h4><strong><span style=\"color: #008000;\">Which health issues can hypnotherapy help with?</span></strong></h4>\r\nMany of our clients find hypnotherapy is very effective with health conditions that involve stress and anxiety. Both of these can make almost any health issue worse and once we remove stress and anxiety, our minds are free to resolve issues better.\r\nStress and anxiety are presently very common health issues and effect a very high number of people.\r\nHypnotherapy can also help with many other health conditions such as IBS, pain management, depression, insomnia, weight loss, stopping smoking, addictions, changing habits, behaviour problems, food allergies, food intolerances and so much more.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis available on the NHS?</strong></span></h4>\r\nAlthough the NHS state that hypnotherapy is effective with many health issues they do not currently offer hypnosis services.\r\nWe believe that hypnotherapy should be available to everyone on the NHS as it can be most effective and it avoids the side effects of many medications. Hopefully in the future hypnosis will be offered on the NHS.\r\n<h4><span style=\"color: #008000;\"><strong>Can everyone be hypnotised and helped?</strong></span></h4>\r\nPersonally, I believe everyone can experience hypnosis and with the right methods, everyone can be helped with hypnotherapy. However, this question will draw different answers and arguments from many respected hypnotherapy professionals.\r\nSome people are resistant to hypnosis as they may have a fear of losing control. This is where learning self-hypnosis is very useful, allowing people to help themselves.\r\nA good hypnotherapist will usually be experienced with other modern change techniques that can be just as powerful. The more tools we have in our mental toolbox the better we can help clients with health issues.\r\n<h4><span style=\"color: #008000;\"><strong>Can people be hypnotised </strong>against<strong> their will?</strong></span></h4>\r\nChange with hypnotherapy can only happen if the client is willing to change. We can help with giving people reasons to change or improve things but ultimately change has to come from within.\r\nA good therapist would not take on a client unless they are willing to make changes.\r\n<h4><span style=\"color: #008000;\"><strong>Is it true that hypnosis weakens the mind?</strong></span></h4>\r\nNo. Hypnosis and self-hypnosis can help to control mental states such as happiness and self-confidence. In effect we do have \"mental muscles\" and the more we practice helpful techniques the easier and stronger they become.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnosis addictive?</span></strong></h4>\r\nI have never heard of anyone becoming addicted to hypnosis. Hypnosis is a wonderful state and a great way to feel relaxed, in control, happy, self-confident, strong, focused etc. Once you learn to enter into self-hypnosis you have a powerful mental technique that allows you to control your emotions, feelings and other mental states.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnotherapy useful for children?</strong></span></h4>\r\nYes, children and adults can enjoy the benefits of hypnotherapy. Children are usually very good hypnotic subjects and naturally enjoy hypnotic states on a daily basis.\r\n<h4><span style=\"color: #008000;\">How can I learn to <strong>hypnotise other</strong> people?</span></h4>\r\nI would strongly suggest finding a self-hypnosis course near to you with a respected hypnotherapy practitioner.\r\nCourses encouraging you to practice on others are very useful and far better than online courses and books.\r\nSelf-hypnosis is perfectly safe and a great first step into the world of hypnotherapy. Always treat yourself as your first client.\r\n\r\nA good instructor will teach you many hypnosis inductions and a little history of hypnotherapy.\r\nRegular practice will see you improve and you will become aware of how people change and improve during hypnosis.\r\n<h4><span style=\"color: #008000;\"><strong>Are there different levels of Hypnosis?</strong></span></h4>\r\nYes. For most hypnotherapy change requirements clients do not need to go too deep to enjoy the many benefits.\r\nJust like meditation, the more someone experiences hypnosis, the more they can enjoy deep hypnosis.\r\nA trained hypnotherapist can guide clients to deeper hypnosis levels when and if required.\r\n<h4><span style=\"color: #008000;\">What is a hypnotic induction?</span></h4>\r\nHypnotic inductions are the methods used to guide a person into a hypnotic trance. They include hypnotic phrases, hypnotic scripts, language and need to be used with the correct rhythm, breathing and tonality. Hypnosis training helps you to recognise where the client is in the hypnotic process and how to guide them along until they are ready for hypnotic suggestions and commands.\r\nGood hypnosis training will explain this in more detail.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nVisit the Newcastle <a href=\"https://www.facebook.com/newcastlehypnosis/\">Hypnotherapy Facebook Page</a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-30 14:53:22','2018-12-30 14:53:22','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2062,1,'2018-11-29 15:21:40','2018-11-29 15:21:40','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span>\r\n\r\n<span class=\"st\"><strong>You can learn some simple tips to help with IBS symptoms below.\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n<h2>More Questions And Answers - IBS</h2>\r\n<h2><strong><span style=\"color: #008000;\">Is There An IBS Diet?</span></strong></h2>\r\nYes, there are plenty of IBS diets and you may find that they vary widely. As mentioned before it is important to look at the reason for your IBS. It could be an anxiety, stress or emotional issue. If so we need to address that first before making dietary changes.\r\nIt may be certain foods cause a reaction, allergy or intolerance that causes your IBS symptoms. If so we need to look at these and see if we can work around the food or cut it out.\r\nGut flora may also be an issue. This is very common with the overuse of antibiotics and usually simple to put right. We do work with a number of dietary specialists, nutritionists and other therapists when required.\r\n<h2><span style=\"color: #008000;\"><strong>Can Medicines &amp; Drugs Cause IBS Symptoms?</strong></span></h2>\r\nYes, sometimes they can. Certain ingredients can cause reactions that may set off or make IBS symptoms worse. Again we can look at this, arrange tests if required and work with your Dr as needed.\r\n<h2><strong><span style=\"color: #008000;\">How Do I Check If I Have </span><span class=\"st\"><span style=\"color: #008000;\">Irritable Bowel Syndrome?</span>\r\n</span></strong></h2>\r\nYour doctor will usually do this for you by asking questions about your symptoms, look at any changes that have happened lately and possibly conduct a physical exam. It is important to have your IBS symptoms checked as early as possible in case there is a physical health problem.\r\nUsually, clients come to us when they decide they do not want to control their IBS problems using drugs or when the drugs are not helping symptoms.\r\n<h2><strong><span class=\"st\"><span style=\"color: #008000;\">Can Irritable Bowel Syndrome By Inherited?</span>\r\n</span></strong></h2>\r\nThere is some debate about this question. It is more likely you will suffer from IBS if your parents did. This does not mean it is generic and could just be related to family lifestyle habits. In many cases, <span class=\"st\">Irritable Bowel Syndrome can be improved by changing lifestyle factors and removing stress and anxiety.</span>\r\n<h2><span class=\"st\"><span style=\"color: #008000;\">Simple Changes Can Make A Difference.</span>\r\n</span></h2>\r\n<span class=\"st\">Simple changes really help many clients including cleaning up the diet, adding missing nutrients and increase exercise levels.\r\nTips for improving your IBS symptoms can be found by joining the newsletter above.\r\n</span>\r\n<h2 class=\"header-custom-container\"><span style=\"color: #ff6600;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" style=\"color: #ff6600;\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started today\r\n</strong></span></h2>\r\n<h2 class=\"header-custom-container\"><span style=\"color: #ff6600;\"><strong> or </strong><b><em><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\">CLICK HERE</span></a></em> to arrange\r\nYour FREE 15 Minute Phone Strategy Session</b>.</span></h2>\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<h2 class=\"header-custom-container\"></h2>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"main-nav\"></div>\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','publish','closed','closed','','hypnotherapy-for-ibs-symptoms','','','2019-01-06 18:53:12','2019-01-06 18:53:12','',0,'https://www.newcastle-hypnotherapy.com/?page_id=2062',0,'page','',0),(2063,1,'2018-11-29 15:19:15','2018-11-29 15:19:15','Hypnotherapy For IBS Symptoms\r\n<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy is beneficial for IBS symptoms although it is not always the best option for everyone.\r\n</span><span class=\"st\">Read on to learn more.</span><strong><span class=\"st\">\r\n</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 15:19:15','2018-11-29 15:19:15','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2078,1,'2018-11-29 15:34:53','2018-11-29 15:34:53','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span><span class=\"st\">Read on to learn more.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 15:34:53','2018-11-29 15:34:53','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2064,1,'2018-11-29 15:22:51','2018-11-29 15:22:51','','HYPNOTHERAPY FOR IBS SYMPTOMS','','publish','closed','closed','','2064','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=2064',11,'nav_menu_item','',0),(2066,1,'2018-11-29 15:25:33','2018-11-29 15:25:33','Hypnotherapy For IBS Symptoms\r\n<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy is beneficial for IBS symptoms although it is not always the best option for everyone.\r\n</span><span class=\"st\">Read on to learn more.</span><strong><span class=\"st\">\r\n</span></strong>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 15:25:33','2018-11-29 15:25:33','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2067,1,'2018-11-29 15:25:47','2018-11-29 15:25:47','Hypnotherapy For IBS Symptoms\r\n<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy is beneficial for IBS symptoms although it is not always the best option for everyone.\r\n</span><span class=\"st\">Read on to learn more.</span><strong><span class=\"st\">\r\n</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 15:25:47','2018-11-29 15:25:47','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2068,1,'2018-11-29 16:12:32','2018-11-29 16:12:32','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\n\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span>\n\n<span class=\"st\"><strong>You can learn some simple tips to help with IBS symptoms below.\n</strong></span>\n\n&nbsp;\n\n&nbsp;\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\n</span>\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\n\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\nLooking for patterns in changes is really important. Ask yourself\n<ul>\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\n 	<li>How does my mood effect IBS Symptoms?</li>\n 	<li>What makes my symptoms better?</li>\n 	<li>What makes my symptoms worse?</li>\n 	<li>How does sleep affect IBS symptoms?</li>\n 	<li>Do I often feel stressed or anxious?</li>\n 	<li>When am I IBS symptom-free?</li>\n 	<li>How do my IBS pain levels vary over time?</li>\n</ul>\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\n\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\n<ul>\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\n 	<li><strong>flatulence</strong> - regular wind</li>\n 	<li><strong>passing mucus</strong> - from your bottom</li>\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\n 	<li><strong>nausea</strong> - feeling sick</li>\n 	<li><strong>a backache</strong></li>\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\n</ul>\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\n\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\n\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\n<h2>More Questions And Answers - IBS</h2>\n<h2><strong><span style=\"color: #008000;\">Is There An IBS Diet?</span></strong></h2>\nYes, there are plenty of IBS diets and you may find that they vary widely. As mentioned before it is important to look at the reason for your IBS. It could be an anxiety, stress or emotional issue. If so we need to address that first before making dietary changes.\nIt may be certain foods cause a reaction, allergy or intolerance that causes your IBS symptoms. If so we need to look at these and see if we can work around the food or cut it out.\nGut flora may also be an issue. This is very common with the overuse of antibiotics and usually simple to put right. We do work with a number of dietary specialists, nutritionists and other therapists when required.\n<h2><span style=\"color: #008000;\"><strong>Can Medicines &amp; Drugs Cause IBS Symptoms?</strong></span></h2>\nYes, sometimes they can. Certain ingredients can cause reactions that may set off or make IBS symptoms worse. Again we can look at this, arrange tests if required and work with your Dr as needed.\n<h2><strong><span style=\"color: #008000;\">How Do I Check If I Have </span><span class=\"st\"><span style=\"color: #008000;\">Irritable Bowel Syndrome?</span>\n</span></strong></h2>\nYour doctor will usually do this for you by asking questions about your symptoms, look at any changes that have happened lately and possibly conduct a physical exam. It is important to have your IBS symptoms checked as early as possible in case there is a physical health problem.\nUsually, clients come to us when they decide they do not want to control their IBS problems using drugs or when the drugs are not helping symptoms.\n<h2><strong><span class=\"st\"><span style=\"color: #008000;\">Can Irritable Bowel Syndrome By Inherited?</span>\n</span></strong></h2>\nThere is some debate about this question. It is more likely you will suffer from IBS if your parents did. This does not mean it is generic and could just be related to family lifestyle habits. In many cases, <span class=\"st\">Irritable Bowel Syndrome can be improved by changing lifestyle factors and removing stress and anxiety.</span>\n<h2><span class=\"st\"><span style=\"color: #008000;\">Simple Changes Can Make A Difference.</span>\n</span></h2>\n<span class=\"st\">Simple changes really help many clients including cleaning up the diet, adding missing nutrients and increase exercise levels.\nTips for improving your IBS symptoms can be found by joining the newsletter above.\n</span>\n\n&nbsp;\n<div id=\"top-widget\" class=\"top-widget\">\n<div id=\"text-13\" class=\"widget_text\">\n<div class=\"textwidget\">\n<h2 class=\"header-custom-container\" style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" style=\"color: #008000;\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></span></h2>\n<h2 class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\n<span style=\"color: #ff6600;\">FREE 15 Minute Phone Strategy Session</span></b><span style=\"color: #ff6600;\">.</span></h2>\n</div>\n</div>\n</div>\n<div class=\"main-nav\"></div>\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-autosave-v1','','','2018-11-29 16:12:32','2018-11-29 16:12:32','',2062,'https://www.newcastle-hypnotherapy.com/2062-autosave-v1/',0,'revision','',0),(2070,1,'2018-11-29 15:27:39','2018-11-29 15:27:39','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span><span class=\"st\">Read on to learn more.</span><strong><span class=\"st\">\r\n</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 15:27:39','2018-11-29 15:27:39','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2069,1,'2018-11-29 15:27:07','2018-11-29 15:27:07','Hypnotherapy For IBS Symptoms\r\n<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span><span class=\"st\">Read on to learn more.</span><strong><span class=\"st\">\r\n</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 15:27:07','2018-11-29 15:27:07','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2071,1,'2018-11-29 15:32:25','2018-11-29 15:32:25','','ibs hypnotherapy','','inherit','open','closed','','ibs2','','','2018-11-29 15:32:49','2018-11-29 15:32:49','',2062,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/IBS2.jpg',0,'attachment','image/jpeg',0),(2077,1,'2018-11-29 15:34:41','2018-11-29 15:34:41','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span><span class=\"st\">Read on to learn more.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 15:34:41','2018-11-29 15:34:41','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2072,1,'2018-11-29 15:32:53','2018-11-29 15:32:53','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span><span class=\"st\">Read on to learn more.</span><strong><span class=\"st\">\r\n<img class=\"alignleft size-medium wp-image-2071\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/IBS2-300x300.jpg\" alt=\"ibs hypnotherapy\" width=\"300\" height=\"300\" />\r\n</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 15:32:53','2018-11-29 15:32:53','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2073,1,'2018-11-29 15:33:21','2018-11-29 15:33:21','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span><span class=\"st\">Read on to learn more.</span><strong><span class=\"st\">\r\n<img class=\"alignleft wp-image-2071 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/IBS2-150x150.jpg\" alt=\"ibs hypnotherapy\" width=\"150\" height=\"150\" />\r\n</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 15:33:21','2018-11-29 15:33:21','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2076,1,'2018-11-29 15:34:24','2018-11-29 15:34:24','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span><span class=\"st\">Read on to learn more.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span class=\"st\">\r\n\r\n</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 15:34:24','2018-11-29 15:34:24','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2074,1,'2018-11-29 15:33:46','2018-11-29 15:33:46','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span><span class=\"st\">Read on to learn more.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span class=\"st\">\r\n<img class=\"alignleft wp-image-2071 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/IBS2-150x150.jpg\" alt=\"ibs hypnotherapy\" width=\"150\" height=\"150\" />\r\n</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 15:33:46','2018-11-29 15:33:46','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2075,1,'2018-11-29 15:33:58','2018-11-29 15:33:58','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span><span class=\"st\">Read on to learn more.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span class=\"st\">\r\n<img class=\"alignleft wp-image-2071 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/IBS2-150x150.jpg\" alt=\"ibs hypnotherapy\" width=\"150\" height=\"150\" />\r\n</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 15:33:58','2018-11-29 15:33:58','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2079,1,'2018-11-29 15:35:07','2018-11-29 15:35:07','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span>\r\n\r\n<span class=\"st\">Read on to learn more.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 15:35:07','2018-11-29 15:35:07','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2080,1,'2018-11-29 15:35:19','2018-11-29 15:35:19','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span>\r\n\r\n<span class=\"st\">Read on to learn more.</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 15:35:19','2018-11-29 15:35:19','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2081,1,'2018-11-29 15:35:38','2018-11-29 15:35:38','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span>\r\n\r\n<span class=\"st\"><strong>Read on to learn more.</strong>\r\n\r\n</span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 15:35:38','2018-11-29 15:35:38','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2082,1,'2018-11-29 15:35:51','2018-11-29 15:35:51','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span>\r\n\r\n<span class=\"st\"><strong>Read on to learn more.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 15:35:51','2018-11-29 15:35:51','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2083,1,'2018-11-29 15:36:09','2018-11-29 15:36:09','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span>\r\n\r\n<span class=\"st\"><strong>Read on to learn more.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 15:36:09','2018-11-29 15:36:09','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2084,1,'2018-11-29 16:07:24','2018-11-29 16:07:24','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span>\r\n\r\n<span class=\"st\"><strong>Read on to learn more.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n<h2>More Questions And Answers - IBS</h2>\r\n<h2><strong><span style=\"color: #008000;\">Is There An IBS Diet?</span></strong></h2>\r\nYes, there are plenty of IBS diets and you may find that they vary widely. As mentioned before it is important to look at the reason for your IBS. It could be an anxiety, stress or emotional issue. If so we need to address that first before making dietary changes.\r\nIt may be certain foods cause a reaction, allergy or intolerance that causes your IBS symptoms. If so we need to look at these and see if we can work around the food or cut it out.\r\nGut flora may also be an issue. This is very common with the overuse of antibiotics and usually simple to put right. We do work with a number of dietary specialists, nutritionists and other therapists when required.\r\n<h2><span style=\"color: #008000;\"><strong>Can Medicines &amp; Drugs Cause IBS Symptoms?</strong></span></h2>\r\nYes, sometimes they can. Certain ingredients can cause reactions that may set off or make IBS symptoms worse. Again we can look at this, arrange tests if required and work with your Dr as needed.\r\n<h2><strong><span style=\"color: #008000;\">How Do I Check If I Have </span><span class=\"st\"><span style=\"color: #008000;\">Irritable Bowel Syndrome?</span>\r\n</span></strong></h2>\r\nYour doctor will usually do this for you by asking questions about your symptoms, look at any changes that have happened lately and possibly conduct a physical exam. It is important to have your IBS symptoms checked as early as possible in case there is a physical health problem.\r\nUsually, clients come to us when they decide they do not want to control their IBS problems using drugs or when the drugs are not helping symptoms.\r\n<h2><strong><span class=\"st\"><span style=\"color: #008000;\">Can Irritable Bowel Syndrome By Inherited?</span>\r\n</span></strong></h2>\r\nThere is some debate about this question. It is more likely you will suffer from IBS if your parents did. This does not mean it is generic and could just be related to family lifestyle habits. In many cases, <span class=\"st\">Irritable Bowel Syndrome can be improved by changing lifestyle factors and removing stress and anxiety.</span>\r\n<h2><span class=\"st\"><span style=\"color: #008000;\">Simple Changes Can Make A Difference.</span>\r\n</span></h2>\r\n<span class=\"st\">Simple changes really help many clients including cleaning up the diet, adding missing nutrients and increase exercise levels.\r\nTips for improving your IBS symptoms can be found by joining the newsletter above.\r\n</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 16:07:24','2018-11-29 16:07:24','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2085,1,'2018-11-29 16:08:41','2018-11-29 16:08:41','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span>\r\n\r\n<span class=\"st\"><strong>You can learn some simple tips to help with IBS symptoms below.\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n<h2>More Questions And Answers - IBS</h2>\r\n<h2><strong><span style=\"color: #008000;\">Is There An IBS Diet?</span></strong></h2>\r\nYes, there are plenty of IBS diets and you may find that they vary widely. As mentioned before it is important to look at the reason for your IBS. It could be an anxiety, stress or emotional issue. If so we need to address that first before making dietary changes.\r\nIt may be certain foods cause a reaction, allergy or intolerance that causes your IBS symptoms. If so we need to look at these and see if we can work around the food or cut it out.\r\nGut flora may also be an issue. This is very common with the overuse of antibiotics and usually simple to put right. We do work with a number of dietary specialists, nutritionists and other therapists when required.\r\n<h2><span style=\"color: #008000;\"><strong>Can Medicines &amp; Drugs Cause IBS Symptoms?</strong></span></h2>\r\nYes, sometimes they can. Certain ingredients can cause reactions that may set off or make IBS symptoms worse. Again we can look at this, arrange tests if required and work with your Dr as needed.\r\n<h2><strong><span style=\"color: #008000;\">How Do I Check If I Have </span><span class=\"st\"><span style=\"color: #008000;\">Irritable Bowel Syndrome?</span>\r\n</span></strong></h2>\r\nYour doctor will usually do this for you by asking questions about your symptoms, look at any changes that have happened lately and possibly conduct a physical exam. It is important to have your IBS symptoms checked as early as possible in case there is a physical health problem.\r\nUsually, clients come to us when they decide they do not want to control their IBS problems using drugs or when the drugs are not helping symptoms.\r\n<h2><strong><span class=\"st\"><span style=\"color: #008000;\">Can Irritable Bowel Syndrome By Inherited?</span>\r\n</span></strong></h2>\r\nThere is some debate about this question. It is more likely you will suffer from IBS if your parents did. This does not mean it is generic and could just be related to family lifestyle habits. In many cases, <span class=\"st\">Irritable Bowel Syndrome can be improved by changing lifestyle factors and removing stress and anxiety.</span>\r\n<h2><span class=\"st\"><span style=\"color: #008000;\">Simple Changes Can Make A Difference.</span>\r\n</span></h2>\r\n<span class=\"st\">Simple changes really help many clients including cleaning up the diet, adding missing nutrients and increase exercise levels.\r\nTips for improving your IBS symptoms can be found by joining the newsletter above.\r\n</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 16:08:41','2018-11-29 16:08:41','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2088,1,'2018-11-29 16:13:46','2018-11-29 16:13:46','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span>\r\n\r\n<span class=\"st\"><strong>You can learn some simple tips to help with IBS symptoms below.\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n<h2>More Questions And Answers - IBS</h2>\r\n<h2><strong><span style=\"color: #008000;\">Is There An IBS Diet?</span></strong></h2>\r\nYes, there are plenty of IBS diets and you may find that they vary widely. As mentioned before it is important to look at the reason for your IBS. It could be an anxiety, stress or emotional issue. If so we need to address that first before making dietary changes.\r\nIt may be certain foods cause a reaction, allergy or intolerance that causes your IBS symptoms. If so we need to look at these and see if we can work around the food or cut it out.\r\nGut flora may also be an issue. This is very common with the overuse of antibiotics and usually simple to put right. We do work with a number of dietary specialists, nutritionists and other therapists when required.\r\n<h2><span style=\"color: #008000;\"><strong>Can Medicines &amp; Drugs Cause IBS Symptoms?</strong></span></h2>\r\nYes, sometimes they can. Certain ingredients can cause reactions that may set off or make IBS symptoms worse. Again we can look at this, arrange tests if required and work with your Dr as needed.\r\n<h2><strong><span style=\"color: #008000;\">How Do I Check If I Have </span><span class=\"st\"><span style=\"color: #008000;\">Irritable Bowel Syndrome?</span>\r\n</span></strong></h2>\r\nYour doctor will usually do this for you by asking questions about your symptoms, look at any changes that have happened lately and possibly conduct a physical exam. It is important to have your IBS symptoms checked as early as possible in case there is a physical health problem.\r\nUsually, clients come to us when they decide they do not want to control their IBS problems using drugs or when the drugs are not helping symptoms.\r\n<h2><strong><span class=\"st\"><span style=\"color: #008000;\">Can Irritable Bowel Syndrome By Inherited?</span>\r\n</span></strong></h2>\r\nThere is some debate about this question. It is more likely you will suffer from IBS if your parents did. This does not mean it is generic and could just be related to family lifestyle habits. In many cases, <span class=\"st\">Irritable Bowel Syndrome can be improved by changing lifestyle factors and removing stress and anxiety.</span>\r\n<h2><span class=\"st\"><span style=\"color: #008000;\">Simple Changes Can Make A Difference.</span>\r\n</span></h2>\r\n<span class=\"st\">Simple changes really help many clients including cleaning up the diet, adding missing nutrients and increase exercise levels.\r\nTips for improving your IBS symptoms can be found by joining the newsletter above.\r\n</span>\r\n\r\n&nbsp;\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<h2 class=\"header-custom-container\"><span style=\"color: #008000;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" style=\"color: #008000;\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></span></h2>\r\n<h2 class=\"header-custom-container\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\n<span style=\"color: #ff6600;\">FREE 15 Minute Phone Strategy Session</span></b><span style=\"color: #ff6600;\">.</span></h2>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"main-nav\"></div>\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 16:13:46','2018-11-29 16:13:46','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2086,1,'2018-11-29 16:12:35','2018-11-29 16:12:35','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span>\r\n\r\n<span class=\"st\"><strong>You can learn some simple tips to help with IBS symptoms below.\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n<h2>More Questions And Answers - IBS</h2>\r\n<h2><strong><span style=\"color: #008000;\">Is There An IBS Diet?</span></strong></h2>\r\nYes, there are plenty of IBS diets and you may find that they vary widely. As mentioned before it is important to look at the reason for your IBS. It could be an anxiety, stress or emotional issue. If so we need to address that first before making dietary changes.\r\nIt may be certain foods cause a reaction, allergy or intolerance that causes your IBS symptoms. If so we need to look at these and see if we can work around the food or cut it out.\r\nGut flora may also be an issue. This is very common with the overuse of antibiotics and usually simple to put right. We do work with a number of dietary specialists, nutritionists and other therapists when required.\r\n<h2><span style=\"color: #008000;\"><strong>Can Medicines &amp; Drugs Cause IBS Symptoms?</strong></span></h2>\r\nYes, sometimes they can. Certain ingredients can cause reactions that may set off or make IBS symptoms worse. Again we can look at this, arrange tests if required and work with your Dr as needed.\r\n<h2><strong><span style=\"color: #008000;\">How Do I Check If I Have </span><span class=\"st\"><span style=\"color: #008000;\">Irritable Bowel Syndrome?</span>\r\n</span></strong></h2>\r\nYour doctor will usually do this for you by asking questions about your symptoms, look at any changes that have happened lately and possibly conduct a physical exam. It is important to have your IBS symptoms checked as early as possible in case there is a physical health problem.\r\nUsually, clients come to us when they decide they do not want to control their IBS problems using drugs or when the drugs are not helping symptoms.\r\n<h2><strong><span class=\"st\"><span style=\"color: #008000;\">Can Irritable Bowel Syndrome By Inherited?</span>\r\n</span></strong></h2>\r\nThere is some debate about this question. It is more likely you will suffer from IBS if your parents did. This does not mean it is generic and could just be related to family lifestyle habits. In many cases, <span class=\"st\">Irritable Bowel Syndrome can be improved by changing lifestyle factors and removing stress and anxiety.</span>\r\n<h2><span class=\"st\"><span style=\"color: #008000;\">Simple Changes Can Make A Difference.</span>\r\n</span></h2>\r\n<span class=\"st\">Simple changes really help many clients including cleaning up the diet, adding missing nutrients and increase exercise levels.\r\nTips for improving your IBS symptoms can be found by joining the newsletter above.\r\n</span>\r\n\r\n&nbsp;\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<h2 class=\"header-custom-container\" style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" style=\"color: #008000;\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></span></h2>\r\n<h2 class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\n<span style=\"color: #ff6600;\">FREE 15 Minute Phone Strategy Session</span></b><span style=\"color: #ff6600;\">.</span></h2>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"main-nav\"></div>\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 16:12:35','2018-11-29 16:12:35','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2087,1,'2018-11-29 16:13:15','2018-11-29 16:13:15','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span>\r\n\r\n<span class=\"st\"><strong>You can learn some simple tips to help with IBS symptoms below.\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n<h2>More Questions And Answers - IBS</h2>\r\n<h2><strong><span style=\"color: #008000;\">Is There An IBS Diet?</span></strong></h2>\r\nYes, there are plenty of IBS diets and you may find that they vary widely. As mentioned before it is important to look at the reason for your IBS. It could be an anxiety, stress or emotional issue. If so we need to address that first before making dietary changes.\r\nIt may be certain foods cause a reaction, allergy or intolerance that causes your IBS symptoms. If so we need to look at these and see if we can work around the food or cut it out.\r\nGut flora may also be an issue. This is very common with the overuse of antibiotics and usually simple to put right. We do work with a number of dietary specialists, nutritionists and other therapists when required.\r\n<h2><span style=\"color: #008000;\"><strong>Can Medicines &amp; Drugs Cause IBS Symptoms?</strong></span></h2>\r\nYes, sometimes they can. Certain ingredients can cause reactions that may set off or make IBS symptoms worse. Again we can look at this, arrange tests if required and work with your Dr as needed.\r\n<h2><strong><span style=\"color: #008000;\">How Do I Check If I Have </span><span class=\"st\"><span style=\"color: #008000;\">Irritable Bowel Syndrome?</span>\r\n</span></strong></h2>\r\nYour doctor will usually do this for you by asking questions about your symptoms, look at any changes that have happened lately and possibly conduct a physical exam. It is important to have your IBS symptoms checked as early as possible in case there is a physical health problem.\r\nUsually, clients come to us when they decide they do not want to control their IBS problems using drugs or when the drugs are not helping symptoms.\r\n<h2><strong><span class=\"st\"><span style=\"color: #008000;\">Can Irritable Bowel Syndrome By Inherited?</span>\r\n</span></strong></h2>\r\nThere is some debate about this question. It is more likely you will suffer from IBS if your parents did. This does not mean it is generic and could just be related to family lifestyle habits. In many cases, <span class=\"st\">Irritable Bowel Syndrome can be improved by changing lifestyle factors and removing stress and anxiety.</span>\r\n<h2><span class=\"st\"><span style=\"color: #008000;\">Simple Changes Can Make A Difference.</span>\r\n</span></h2>\r\n<span class=\"st\">Simple changes really help many clients including cleaning up the diet, adding missing nutrients and increase exercise levels.\r\nTips for improving your IBS symptoms can be found by joining the newsletter above.\r\n</span>\r\n\r\n&nbsp;\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<h2 class=\"header-custom-container\" style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" style=\"color: #008000;\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></span></h2>\r\n<h2 class=\"header-custom-container\" style=\"text-align: left;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\n<span style=\"color: #ff6600;\">FREE 15 Minute Phone Strategy Session</span></b><span style=\"color: #ff6600;\">.</span></h2>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"main-nav\"></div>\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 16:13:15','2018-11-29 16:13:15','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2089,1,'2018-11-29 16:14:25','2018-11-29 16:14:25','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span>\r\n\r\n<span class=\"st\"><strong>You can learn some simple tips to help with IBS symptoms below.\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n<h2>More Questions And Answers - IBS</h2>\r\n<h2><strong><span style=\"color: #008000;\">Is There An IBS Diet?</span></strong></h2>\r\nYes, there are plenty of IBS diets and you may find that they vary widely. As mentioned before it is important to look at the reason for your IBS. It could be an anxiety, stress or emotional issue. If so we need to address that first before making dietary changes.\r\nIt may be certain foods cause a reaction, allergy or intolerance that causes your IBS symptoms. If so we need to look at these and see if we can work around the food or cut it out.\r\nGut flora may also be an issue. This is very common with the overuse of antibiotics and usually simple to put right. We do work with a number of dietary specialists, nutritionists and other therapists when required.\r\n<h2><span style=\"color: #008000;\"><strong>Can Medicines &amp; Drugs Cause IBS Symptoms?</strong></span></h2>\r\nYes, sometimes they can. Certain ingredients can cause reactions that may set off or make IBS symptoms worse. Again we can look at this, arrange tests if required and work with your Dr as needed.\r\n<h2><strong><span style=\"color: #008000;\">How Do I Check If I Have </span><span class=\"st\"><span style=\"color: #008000;\">Irritable Bowel Syndrome?</span>\r\n</span></strong></h2>\r\nYour doctor will usually do this for you by asking questions about your symptoms, look at any changes that have happened lately and possibly conduct a physical exam. It is important to have your IBS symptoms checked as early as possible in case there is a physical health problem.\r\nUsually, clients come to us when they decide they do not want to control their IBS problems using drugs or when the drugs are not helping symptoms.\r\n<h2><strong><span class=\"st\"><span style=\"color: #008000;\">Can Irritable Bowel Syndrome By Inherited?</span>\r\n</span></strong></h2>\r\nThere is some debate about this question. It is more likely you will suffer from IBS if your parents did. This does not mean it is generic and could just be related to family lifestyle habits. In many cases, <span class=\"st\">Irritable Bowel Syndrome can be improved by changing lifestyle factors and removing stress and anxiety.</span>\r\n<h2><span class=\"st\"><span style=\"color: #008000;\">Simple Changes Can Make A Difference.</span>\r\n</span></h2>\r\n<span class=\"st\">Simple changes really help many clients including cleaning up the diet, adding missing nutrients and increase exercise levels.\r\nTips for improving your IBS symptoms can be found by joining the newsletter above.\r\n</span>\r\n<h2 class=\"header-custom-container\"><span style=\"color: #ff6600;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" style=\"color: #ff6600;\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started today\r\n</strong></span></h2>\r\n<h2 class=\"header-custom-container\"><span style=\"color: #ff6600;\"><strong> or </strong><b><em><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</span></h2>\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<h2 class=\"header-custom-container\"></h2>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"main-nav\"></div>\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 16:14:25','2018-11-29 16:14:25','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2090,1,'2018-11-29 16:15:08','2018-11-29 16:15:08','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span>\r\n\r\n<span class=\"st\"><strong>You can learn some simple tips to help with IBS symptoms below.\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n<h2>More Questions And Answers - IBS</h2>\r\n<h2><strong><span style=\"color: #008000;\">Is There An IBS Diet?</span></strong></h2>\r\nYes, there are plenty of IBS diets and you may find that they vary widely. As mentioned before it is important to look at the reason for your IBS. It could be an anxiety, stress or emotional issue. If so we need to address that first before making dietary changes.\r\nIt may be certain foods cause a reaction, allergy or intolerance that causes your IBS symptoms. If so we need to look at these and see if we can work around the food or cut it out.\r\nGut flora may also be an issue. This is very common with the overuse of antibiotics and usually simple to put right. We do work with a number of dietary specialists, nutritionists and other therapists when required.\r\n<h2><span style=\"color: #008000;\"><strong>Can Medicines &amp; Drugs Cause IBS Symptoms?</strong></span></h2>\r\nYes, sometimes they can. Certain ingredients can cause reactions that may set off or make IBS symptoms worse. Again we can look at this, arrange tests if required and work with your Dr as needed.\r\n<h2><strong><span style=\"color: #008000;\">How Do I Check If I Have </span><span class=\"st\"><span style=\"color: #008000;\">Irritable Bowel Syndrome?</span>\r\n</span></strong></h2>\r\nYour doctor will usually do this for you by asking questions about your symptoms, look at any changes that have happened lately and possibly conduct a physical exam. It is important to have your IBS symptoms checked as early as possible in case there is a physical health problem.\r\nUsually, clients come to us when they decide they do not want to control their IBS problems using drugs or when the drugs are not helping symptoms.\r\n<h2><strong><span class=\"st\"><span style=\"color: #008000;\">Can Irritable Bowel Syndrome By Inherited?</span>\r\n</span></strong></h2>\r\nThere is some debate about this question. It is more likely you will suffer from IBS if your parents did. This does not mean it is generic and could just be related to family lifestyle habits. In many cases, <span class=\"st\">Irritable Bowel Syndrome can be improved by changing lifestyle factors and removing stress and anxiety.</span>\r\n<h2><span class=\"st\"><span style=\"color: #008000;\">Simple Changes Can Make A Difference.</span>\r\n</span></h2>\r\n<span class=\"st\">Simple changes really help many clients including cleaning up the diet, adding missing nutrients and increase exercise levels.\r\nTips for improving your IBS symptoms can be found by joining the newsletter above.\r\n</span>\r\n<h2 class=\"header-custom-container\"><span style=\"color: #ff6600;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" style=\"color: #ff6600;\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started today\r\n</strong></span></h2>\r\n<h2 class=\"header-custom-container\"><span style=\"color: #ff6600;\"><strong> or </strong><b><em><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\">CLICK HERE</span></a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</span></h2>\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<h2 class=\"header-custom-container\"></h2>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"main-nav\"></div>\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 16:15:08','2018-11-29 16:15:08','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2091,1,'2018-11-29 16:15:34','2018-11-29 16:15:34','<img class=\"alignleft wp-image-2046 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/11/belly-3186730_1280-300x200.jpg\" alt=\"hypnotherapy for ibs\" width=\"300\" height=\"200\" />\r\n\r\n<strong>Can hypnosis help <span class=\"st\">Irritable Bowel Syndrome and does it really work for everyone?\r\n</span></strong><span class=\"st\">Many of our </span><span class=\"st\">clients</span><span class=\"st\"> find</span><span class=\"st\"> hypnotherapy for IBS symptoms can be most effective, although it is not always the best option for everyone. </span>\r\n\r\n<span class=\"st\"><strong>You can learn some simple tips to help with IBS symptoms below.\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms?</span></strong></h2>\r\nClinical Hypnotherapy, in a number of clinical trials, has been shown to be an effective treatment to help with symptoms of IBS, also known as <span class=\"st\">Irritable Bowel Syndrome</span>.\r\nBefore proceeding with any therapy to help with IBS symptoms it is worth looking at the possible causes of your <span class=\"st\">Irritable Bowel Syndrome and then looking at the best possible ways forward to reduce your symptoms.\r\n</span>\r\n<h2><strong><span style=\"color: #008000;\">IBS Symptoms, the first thing to consider?</span></strong></h2>\r\nResearch shows that the symptoms of IBS can be reduced or removed by using clinical hypnotherapy. These symptoms may include pain, nausea, fatigue, backache, and urinary problems.\r\n\r\nThe first thing to ask yourself is, what makes my IBS symptoms worse?\r\nWe strongly suggest keeping a journal and making a note of when your IBS symptoms get worse and when they get better?\r\nLooking for patterns in changes is really important. Ask yourself\r\n<ul>\r\n 	<li>Which foods &amp; drinks change my IBS symptoms?</li>\r\n 	<li>How does my mood effect IBS Symptoms?</li>\r\n 	<li>What makes my symptoms better?</li>\r\n 	<li>What makes my symptoms worse?</li>\r\n 	<li>How does sleep affect IBS symptoms?</li>\r\n 	<li>Do I often feel stressed or anxious?</li>\r\n 	<li>When am I IBS symptom-free?</li>\r\n 	<li>How do my IBS pain levels vary over time?</li>\r\n</ul>\r\nBecoming aware of the answers to these questions may surprise you. It is quite normal to just put up with your IBS symptoms and just battle through your day. Once you start to question your symptoms, moods and diet, things really can start to change for the better.\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy For IBS Symptoms - Hypnosis Can Help.</span></strong></h2>\r\nHypnotherapy and NLP can really help with many issues and often IBS symptoms can be linked to Anxiety, Stress and emotional issues. We will also look at your diet, nutrition and lifestyle.\r\nAnxiety and stress are common trigger factors for many health problems or simply they make existing IBS symptoms worse.\r\nReducing or removing stress levels can quickly help your IBS symptoms and helps natural healing.\r\n<h2><span style=\"color: #008000;\"><strong>Self-Hypnosis &amp; Relaxation Techniques For IBS Symptoms.</strong></span></h2>\r\nLearning to control your mental state is very important. We know how we think and feel can really affect the whole body, making such a difference to your digestive and immune system. As part of our service, we teach you effective Self-Hypnosis techniques, allowing you to relax on demand and then create feelings of calm, strength and relaxation.\r\n\r\nSelf-Hypnosis is also a very effective tool for controlling pain caused by IBS symptoms and to control anxiety and stress that can really make it worse.\r\n<h2><span style=\"color: #008000;\"><strong>Will Hypnosis Work For Everyone With IBS Symptoms?</strong></span></h2>\r\nHypnosis for <strong><span class=\"st\">Irritable Bowel Syndrome</span></strong> symptoms will work for most people although there are some people it will not help.\r\nFirstly we will conduct a free telephone consultation and asses your IBS symptoms and how willing you are to change your lifestyle, diet and habits. In order to take control of your IBS, you may need to practice some personalised hypnotic exercises on a daily basis and make a few changes. If you are unwilling to make improvements then hypnosis is not for you.\r\nDuring this phone consultation, we will asses your IBS symptoms and lifestyle. We can then look at the best way forward and you can then decide if you are ready to take control of your i<span class=\"st\">rritable bowel syndrome and it\'s symptoms.</span>\r\n<h2><strong><span style=\"color: #008000;\">What Are The Symptoms of <span class=\"st\">Irritable Bowel Syndrome?</span></span></strong></h2>\r\nThe symptoms of IBS can vary from person to person although the NHS state that typical IBS symptoms include\r\n<ul>\r\n 	<li><strong>stomach pain or cramps</strong> – usually worse after eating and better after doing a poo</li>\r\n 	<li><strong>bloating</strong> – your tummy may feel uncomfortably full and swollen</li>\r\n 	<li><strong>diarrhoea</strong> – you may have a watery poo and sometimes need to poo suddenly</li>\r\n 	<li><strong>constipation</strong> – you may strain when pooing and feel like you can\'t empty your bowels fully</li>\r\n 	<li><strong>flatulence</strong> - regular wind</li>\r\n 	<li><strong>passing mucus</strong> - from your bottom</li>\r\n 	<li><strong>poor energy</strong> - tiredness and a lack of energy</li>\r\n 	<li><strong>nausea</strong> - feeling sick</li>\r\n 	<li><strong>a backache</strong></li>\r\n 	<li><strong>problems urinating</strong> – needing to pee often, sudden urges to pee, and feeling like you can\'t fully empty your bladder</li>\r\n 	<li><strong>incontinence</strong> - not always being able to control when you need to go to the toilet</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Can Diet &amp; Lifestyle Help IBS Symptoms?</strong></span></h2>\r\nPoor diet &amp; lifestyle choices can really make IBS symptoms worse. Quite often your body is sending you a message that things need to change. Eating processed foods, foods high in fat and sugar can cause IBS problems as can stress and anxiety.\r\nSometimes we find food intolerances and allergies can cause IBS symptoms and we can easily arrange these tests for you. Missing vital nutrients and lack of exercise can also cause issues. Thankfully hypnosis and NLP can help with changes, cravings and give you the reasons needed to improve your lifestyle.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnotherapy For IBS Free On The NHS?</strong></span></h2>\r\nAlthough the NHS recognise that hypnosis can help people with IBS symptoms, they do not offer hypnotherapy as a treatment. We believe they should offer hypnotherapy as it is very effective and often a final solution to IBS problems.\r\nMany of our clients have tried NHS treatments for their IBS and decided to look at something more effective or discover what is causing their IBS symptoms. Clinical hypnotherapy can often be a fast treatment for IBS symptom relief in a short period of time.\r\n<h2><strong><span style=\"color: #008000;\">Taking The First Step To IBS Freedom.</span></strong></h2>\r\nYour first step is to arrange your <strong>free phone consultation.</strong> You can call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> or book <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your time slot here.</a></strong>\r\nDuring your session, we can discuss the issue and look at the best way forward for you. This also helps us to answer your questions.\r\n\r\nIf you are not ready to take your first step yet and looking for more information, join the newsletter below.\r\n<h2><strong><span style=\"color: #008000;\">Regular Tips &amp; Help For IBS Symptoms.</span></strong></h2>\r\n[contact-form-7 id=\"2058\" title=\"IBS Help Newsletter\"]\r\nYour privacy is always safe. We hate spam. We are GDPR Compliant and you can leave the newsletter at any time.\r\n\r\nFind Newcastle Hypnotherapy on <strong><a href=\"https://www.facebook.com/newcastlehypnosis/\">Facebook</a></strong>\r\n<h2>More Questions And Answers - IBS</h2>\r\n<h2><strong><span style=\"color: #008000;\">Is There An IBS Diet?</span></strong></h2>\r\nYes, there are plenty of IBS diets and you may find that they vary widely. As mentioned before it is important to look at the reason for your IBS. It could be an anxiety, stress or emotional issue. If so we need to address that first before making dietary changes.\r\nIt may be certain foods cause a reaction, allergy or intolerance that causes your IBS symptoms. If so we need to look at these and see if we can work around the food or cut it out.\r\nGut flora may also be an issue. This is very common with the overuse of antibiotics and usually simple to put right. We do work with a number of dietary specialists, nutritionists and other therapists when required.\r\n<h2><span style=\"color: #008000;\"><strong>Can Medicines &amp; Drugs Cause IBS Symptoms?</strong></span></h2>\r\nYes, sometimes they can. Certain ingredients can cause reactions that may set off or make IBS symptoms worse. Again we can look at this, arrange tests if required and work with your Dr as needed.\r\n<h2><strong><span style=\"color: #008000;\">How Do I Check If I Have </span><span class=\"st\"><span style=\"color: #008000;\">Irritable Bowel Syndrome?</span>\r\n</span></strong></h2>\r\nYour doctor will usually do this for you by asking questions about your symptoms, look at any changes that have happened lately and possibly conduct a physical exam. It is important to have your IBS symptoms checked as early as possible in case there is a physical health problem.\r\nUsually, clients come to us when they decide they do not want to control their IBS problems using drugs or when the drugs are not helping symptoms.\r\n<h2><strong><span class=\"st\"><span style=\"color: #008000;\">Can Irritable Bowel Syndrome By Inherited?</span>\r\n</span></strong></h2>\r\nThere is some debate about this question. It is more likely you will suffer from IBS if your parents did. This does not mean it is generic and could just be related to family lifestyle habits. In many cases, <span class=\"st\">Irritable Bowel Syndrome can be improved by changing lifestyle factors and removing stress and anxiety.</span>\r\n<h2><span class=\"st\"><span style=\"color: #008000;\">Simple Changes Can Make A Difference.</span>\r\n</span></h2>\r\n<span class=\"st\">Simple changes really help many clients including cleaning up the diet, adding missing nutrients and increase exercise levels.\r\nTips for improving your IBS symptoms can be found by joining the newsletter above.\r\n</span>\r\n<h2 class=\"header-custom-container\"><span style=\"color: #ff6600;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" style=\"color: #ff6600;\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started today\r\n</strong></span></h2>\r\n<h2 class=\"header-custom-container\"><span style=\"color: #ff6600;\"><strong> or </strong><b><em><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\">CLICK HERE</span></a></em> to arrange\r\nYour FREE 15 Minute Phone Strategy Session</b>.</span></h2>\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<h2 class=\"header-custom-container\"></h2>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"main-nav\"></div>\r\n&nbsp;','Hypnotherapy For IBS Symptoms','','inherit','closed','closed','','2062-revision-v1','','','2018-11-29 16:15:34','2018-11-29 16:15:34','',2062,'https://www.newcastle-hypnotherapy.com/2062-revision-v1/',0,'revision','',0),(2094,1,'2018-11-29 23:27:23','2018-11-29 23:27:23','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Lnguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications amd prevously spent many years learning Self-Hypnosis and NLP for himself, starting in his teens.\r\nHe has always be very passionate about personal development, nutrition and health and has enjoyed training others in many areas.\r\n\r\nMark enjoys speaking at events such as The Mind, Body, Spirit Fair at The Vault each month. Topics includ Hypnotherapy, Self-Hypnosis, Neuro-Lnguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnsois and NLP skills.\r\n<h3><span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span></h3>\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clincial Hypnotherapy, NLP and other modern techniques.\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including:</span>\r\nNLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><span style=\"color: #008000;\"><strong>Where do we work?</strong></span></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><span style=\"color: #008000;\"><strong>How do I pay?</strong></span></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 or complete the form below to see what we can do for you.</span>\r\n[wpforms id=\"35\"]\r\n</strong></h3>','ABOUT US','','inherit','closed','closed','','43-revision-v1','','','2018-11-29 23:27:23','2018-11-29 23:27:23','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(2093,1,'2018-11-29 23:26:36','2018-11-29 23:26:36','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>\r\n</strong></span><span style=\"color: #008000;\"><strong></strong></span></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Lnguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications amd prevously spent many years learning Self-Hypnosis and NLP for himself, starting in his teens.\r\nHe has always be very passionate about personal development, nutrition and health and has enjoyed training others in many areas.\r\n\r\nMark enjoys speaking at events such as The Mind, Body, Spirit Fair at The Vault each month. Topics includ Hypnotherapy, Self-Hypnosis, Neuro-Lnguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnsois and NLP skills.\r\n<h3><span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span></h3>\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clincial Hypnotherapy, NLP and other modern techniques.\r\n\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including:</span>\r\nNLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><span style=\"color: #008000;\"><strong>Where do we work?</strong></span></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><span style=\"color: #008000;\"><strong>How do I pay?</strong></span></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 or complete the form below to see what we can do for you.</span>\r\n[wpforms id=\"35\"]\r\n</strong></h3>','ABOUT US','','inherit','closed','closed','','43-revision-v1','','','2018-11-29 23:26:36','2018-11-29 23:26:36','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(2095,1,'2018-11-29 23:28:12','2018-11-29 23:28:12','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Lnguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications amd prevously spent many years learning Self-Hypnosis and NLP for himself, starting in his teens.\r\nHe has always be very passionate about personal development, nutrition and health and has enjoyed training others in many areas.\r\n\r\nMark enjoys speaking at events such as The Mind, Body, Spirit Fair at The Vault each month. Topics includ Hypnotherapy, Self-Hypnosis, Neuro-Lnguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnsois and NLP skills.\r\n<h3><span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span></h3>\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clincial Hypnotherapy, NLP and other modern techniques.\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Yvette Spoor</strong></span></h2>\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including:</span>\r\nNLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><span style=\"color: #008000;\"><strong>Where do we work?</strong></span></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><span style=\"color: #008000;\"><strong>How do I pay?</strong></span></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 or complete the form below to see what we can do for you.</span>\r\n[wpforms id=\"35\"]\r\n</strong></h3>','ABOUT US','','inherit','closed','closed','','43-revision-v1','','','2018-11-29 23:28:12','2018-11-29 23:28:12','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(2096,1,'2018-11-29 23:29:24','2018-11-29 23:29:24','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Lnguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications amd prevously spent many years learning Self-Hypnosis and NLP for himself, starting in his teens.\r\nHe has always be very passionate about personal development, nutrition and health and has enjoyed training others in many areas.\r\n\r\nMark enjoys speaking at events such as The Mind, Body, Spirit Fair at The Vault each month. Topics includ Hypnotherapy, Self-Hypnosis, Neuro-Lnguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnsois and NLP skills.\r\n\r\n<span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span>\r\n\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clincial Hypnotherapy, NLP and other modern techniques. He also works in many other areas\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n<h2><span style=\"color: #008000;\"><strong>Yvette Spoor</strong></span></h2>\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including:</span>\r\nNLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><span style=\"color: #008000;\"><strong>Where do we work?</strong></span></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><span style=\"color: #008000;\"><strong>How do I pay?</strong></span></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 or complete the form below to see what we can do for you.</span>\r\n[wpforms id=\"35\"]\r\n</strong></h3>','ABOUT US','','inherit','closed','closed','','43-revision-v1','','','2018-11-29 23:29:24','2018-11-29 23:29:24','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(2097,1,'2018-11-29 23:35:47','2018-11-29 23:35:47','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Lnguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications amd prevously spent many years learning Self-Hypnosis and NLP for himself, starting in his teens.\r\nHe has always be very passionate about personal development, nutrition and health and has enjoyed training others in many areas.\r\n\r\nMark enjoys speaking at events such as The Mind, Body, Spirit Fair at The Vault each month. Topics includ Hypnotherapy, Self-Hypnosis, Neuro-Lnguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnsois and NLP skills.\r\n\r\n<span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span>\r\n\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clincial Hypnotherapy, NLP and other modern techniques. He also works in many other areas.\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n<h2><span style=\"color: #008000;\"><strong>Yvette Spoor</strong></span></h2>\r\nYvette is an Occupational Therapist, a Practitioner of Neuro-Lnguistic Programming and is also skilled in many other areas including family and child work.\r\n\r\nShe has many years of experince within the NHS and also enjoys specialist work in many other areas, helping people with anxiety and stress problems.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including:</span>\r\nNLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><span style=\"color: #008000;\"><strong>Where do we work?</strong></span></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><span style=\"color: #008000;\"><strong>How do I pay?</strong></span></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 or complete the form below to see what we can do for you.</span>\r\n[wpforms id=\"35\"]\r\n</strong></h3>','ABOUT US','','inherit','closed','closed','','43-revision-v1','','','2018-11-29 23:35:47','2018-11-29 23:35:47','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(2098,1,'2018-11-29 23:40:08','2018-11-29 23:40:08','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Lnguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications amd prevously spent many years learning Self-Hypnosis and NLP for himself, starting in his teens.\r\nHe has always be very passionate about personal development, nutrition and health and has enjoyed training others in many areas.\r\n\r\nMark enjoys speaking at events such as The Mind, Body, Spirit Fair at The Vault each month. Topics includ Hypnotherapy, Self-Hypnosis, Neuro-Lnguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnsois and NLP skills.\r\n\r\n<span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span>\r\n\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clincial Hypnotherapy, NLP and other modern techniques. He also works in many other areas.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n<h2><span style=\"color: #008000;\"><strong>Yvette Spoor</strong></span></h2>\r\nYvette is a passionate Occupational Therapist, a Practitioner of Neuro-Lnguistic Programming and is also skilled in many other areas including family and child work.\r\n\r\nShe has many years of experince within the NHS and also enjoys specialist work in many other areas, helping people with anxiety and stress problems.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including:</span>\r\nNLP</strong> - Neuro Linguistic Programming\r\n<strong>Hypnotherapy</strong>\r\n<strong>EFT</strong> - Emotional Freedom Technique\r\n<strong>Coaching</strong>\r\n<strong>Meditation</strong>\r\n<strong>Mindfulness</strong>\r\n<strong>Nutritional Therapy\r\n</strong> and other useful techniques.\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<strong>Anxiety</strong>\r\n<strong>Depression</strong>\r\n<strong>Stress &amp; Stress Management</strong>\r\n<strong>Anger Management</strong>\r\n<strong>Phobias</strong>\r\n<strong>Pain &amp; Chronic Pain Management</strong>\r\n<strong>Weight Loss &amp; Weight Management</strong>\r\n<strong>Addiction - Alcohol &amp; Habits</strong>\r\n<strong>Smoking Cessation</strong>\r\n<strong>Grief Counselling</strong>\r\n<strong>Confidence Building</strong>\r\n<strong>IBS - Irritable Bowel Syndrome</strong>\r\n<strong>Tinnitus</strong>\r\n<strong>Sleep Disorders</strong>\r\n<strong>Allergies</strong>\r\n<strong>Food Intolerances</strong>\r\n<h3><span style=\"color: #008000;\"><strong>Where do we work?</strong></span></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<h3><span style=\"color: #008000;\"><strong>How do I pay?</strong></span></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 or complete the form below to see what we can do for you.</span>\r\n[wpforms id=\"35\"]\r\n</strong></h3>','ABOUT US','','inherit','closed','closed','','43-revision-v1','','','2018-11-29 23:40:08','2018-11-29 23:40:08','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(2099,1,'2018-11-29 23:50:22','2018-11-29 23:50:22','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Lnguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications amd prevously spent many years learning Self-Hypnosis and NLP for himself, starting in his teens.\r\nHe has always be very passionate about personal development, nutrition and health and has enjoyed training others in many areas.\r\n\r\nMark enjoys speaking at events such as The Mind, Body, Spirit Fair at The Vault each month. Topics includ Hypnotherapy, Self-Hypnosis, Neuro-Lnguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnsois and NLP skills.\r\n\r\n<span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span>\r\n\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clincial Hypnotherapy, NLP and other modern techniques. He also works in many other areas.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n<h2><span style=\"color: #008000;\"><strong>Yvette Spoor</strong></span></h2>\r\nYvette is a passionate Occupational Therapist, a Practitioner of Neuro-Lnguistic Programming and is also skilled in many other areas including family and child work.\r\n\r\nShe has many years of experince within the NHS and also enjoys specialist work in many other areas, helping people with anxiety and stress problems.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including</span></strong>\r\n<ul>\r\n 	<li><strong>NLP</strong> - Neuro Linguistic Programming</li>\r\n 	<li><strong>Hypnotherapy</strong></li>\r\n 	<li><strong>EFT</strong> - Emotional Freedom Technique</li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Coaching</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Nutritional Therapy\r\n</strong> and other useful techniques.</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<ul>\r\n 	<li><strong>Anxiety</strong></li>\r\n 	<li><strong>Depression</strong></li>\r\n 	<li><strong>Stress &amp; Stress Management</strong></li>\r\n 	<li><strong>Anger Management</strong></li>\r\n 	<li><strong>Phobias </strong></li>\r\n 	<li><strong>Pain &amp; Chronic Pain Management</strong></li>\r\n 	<li><strong>Weight Loss &amp; Weight Management</strong></li>\r\n 	<li><strong>Addiction - Alcohol &amp; Habits</strong></li>\r\n 	<li><strong>Smoking Cessation</strong></li>\r\n 	<li><strong>Grief Counselling</strong></li>\r\n 	<li><strong>Confidence Building</strong></li>\r\n 	<li><strong>IBS - Irritable Bowel Syndrome</strong></li>\r\n 	<li><strong>Tinnitus</strong></li>\r\n 	<li><strong>Sleep Disorders</strong></li>\r\n 	<li><strong>Allergies</strong></li>\r\n 	<li><strong>Food Intolerances</strong></li>\r\n</ul>\r\n<h3><span style=\"color: #008000;\"><strong>Where do we work?</strong></span></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n\r\nOur Main Office Address is <span class=\"LrzXr\"><strong>31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ</strong>.\r\n<strong>Tel 07568 455 809</strong></span>\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n<h3><span style=\"color: #008000;\"><strong>How do I pay?</strong></span></h3>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or contact us through the contact form below\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £70 for a 1 hour appointment.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 or complete the form below to see what we can do for you.</span>\r\n[wpforms id=\"35\"]\r\n</strong></h3>','ABOUT US','','inherit','closed','closed','','43-revision-v1','','','2018-11-29 23:50:22','2018-11-29 23:50:22','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(2103,1,'2018-11-30 00:02:28','2018-11-30 00:02:28',' ','','','publish','closed','closed','','2103','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=2103',36,'nav_menu_item','',0),(2100,1,'2018-11-29 23:56:00','2018-11-29 23:56:00','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Linguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications and previously spent many years learning Self-Hypnosis and NLP for himself, starting in his teens.\r\nHe has always been very passionate about personal development, nutrition and health and has enjoyed training others in many areas.\r\n\r\nMark enjoys speaking at events such as The Mind, Body, Spirit Fair at The Vault each month. Topics include Hypnotherapy, Self-Hypnosis, Neuro-Linguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnosis and NLP skills.\r\n\r\n<span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span>\r\n\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clinical Hypnotherapy, NLP and other modern techniques. He also works in many other areas.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n<h2><span style=\"color: #008000;\"><strong>Yvette Spoor</strong></span></h2>\r\nYvette is a passionate Occupational Therapist, a Practitioner of Neuro-Linguistic Programming and is also skilled in many other areas including family and child work.\r\n\r\nShe has many years of experience within the NHS and also enjoys specialist work in many other areas, helping people with anxiety and stress problems.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including</span></strong>\r\n<ul>\r\n 	<li><strong>NLP</strong> - Neuro Linguistic Programming</li>\r\n 	<li><strong>Hypnotherapy</strong></li>\r\n 	<li><strong>EFT</strong> - Emotional Freedom Technique</li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Coaching</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Nutritional Therapy\r\n</strong> and other useful techniques.</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<ul>\r\n 	<li><strong>Anxiety</strong></li>\r\n 	<li><strong>Depression</strong></li>\r\n 	<li><strong>Stress &amp; Stress Management</strong></li>\r\n 	<li><strong>Anger Management</strong></li>\r\n 	<li><strong>Phobias </strong></li>\r\n 	<li><strong>Pain &amp; Chronic Pain Management</strong></li>\r\n 	<li><strong>Weight Loss &amp; Weight Management</strong></li>\r\n 	<li><strong>Addiction - Alcohol &amp; Habits</strong></li>\r\n 	<li><strong>Smoking Cessation</strong></li>\r\n 	<li><strong>Grief Counselling</strong></li>\r\n 	<li><strong>Confidence Building</strong></li>\r\n 	<li><strong>IBS - Irritable Bowel Syndrome</strong></li>\r\n 	<li><strong>Tinnitus</strong></li>\r\n 	<li><strong>Sleep Disorders</strong></li>\r\n 	<li><strong>Allergies</strong></li>\r\n 	<li><strong>Food Intolerances</strong></li>\r\n</ul>\r\n<h3><span style=\"color: #008000;\"><strong>Where do we work?</strong></span></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n\r\nOur Main Office Address is <span class=\"LrzXr\"><strong>31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ</strong>.\r\n<strong>Tel 07568 455 809</strong></span>\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"></div>\r\n<span style=\"color: #008000;\"><strong>How do I pay?</strong></span>\r\n\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">contact us.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\">Click here to arrange your free consultation.</span></a>\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £79 for a 1 to 1.5-hour session.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour to an hour and a half although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 to arrange your free 15-minute consultation.</span>\r\n\r\n</strong></h3>','ABOUT US','','inherit','closed','closed','','43-revision-v1','','','2018-11-29 23:56:00','2018-11-29 23:56:00','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(2101,1,'2018-11-29 23:58:09','2018-11-29 23:58:09','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Linguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications and previously spent many years learning Self-Hypnosis and NLP for himself, starting in his teens.\r\nHe has always been very passionate about personal development, nutrition and health and has enjoyed training others in many areas.\r\n\r\nMark enjoys speaking at events such as The Mind, Body, Spirit Fair at The Vault each month. Topics include Hypnotherapy, Self-Hypnosis, Neuro-Linguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnosis and NLP skills.\r\n\r\n<span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span>\r\n\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clinical Hypnotherapy, NLP and other modern techniques. He also works in many other areas.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n<h2><span style=\"color: #008000;\"><strong>Yvette Spoor</strong></span></h2>\r\nYvette is a passionate Occupational Therapist, a Practitioner of Neuro-Linguistic Programming and is also skilled in many other areas including family and child work.\r\n\r\nShe has many years of experience within the NHS and also enjoys specialist work in many other areas, helping people with anxiety and stress problems.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including</span></strong>\r\n<ul>\r\n 	<li><strong>NLP</strong> - Neuro Linguistic Programming</li>\r\n 	<li><strong>Hypnotherapy</strong></li>\r\n 	<li><strong>EFT</strong> - Emotional Freedom Technique</li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Coaching</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Nutritional Therapy\r\n</strong> and other useful techniques.</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<ul>\r\n 	<li><strong>Anxiety</strong></li>\r\n 	<li><strong>Depression</strong></li>\r\n 	<li><strong>Stress &amp; Stress Management</strong></li>\r\n 	<li><strong>Anger Management</strong></li>\r\n 	<li><strong>Phobias </strong></li>\r\n 	<li><strong>Pain &amp; Chronic Pain Management</strong></li>\r\n 	<li><strong>Weight Loss &amp; Weight Management</strong></li>\r\n 	<li><strong>Addiction - Alcohol &amp; Habits</strong></li>\r\n 	<li><strong>Smoking Cessation</strong></li>\r\n 	<li><strong>Grief Counselling</strong></li>\r\n 	<li><strong>Confidence Building</strong></li>\r\n 	<li><strong>IBS - Irritable Bowel Syndrome</strong></li>\r\n 	<li><strong>Tinnitus</strong></li>\r\n 	<li><strong>Sleep Disorders</strong></li>\r\n 	<li><strong>Allergies</strong></li>\r\n 	<li><strong>Food Intolerances</strong></li>\r\n</ul>\r\n<h3><span style=\"color: #008000;\"><strong>Where do we work?</strong></span></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n\r\nOur Main Office Address is <span class=\"LrzXr\"><strong>31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ</strong>.\r\n<strong>Tel 07568 455 809</strong></span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">contact us.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\">Click here to arrange your free consultation.</span></a>\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £79 for a 1 to 1.5-hour session.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour to an hour and a half although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 to arrange your free 15-minute consultation.</span></strong></h3>\r\n&nbsp;','ABOUT US','','inherit','closed','closed','','43-revision-v1','','','2018-11-29 23:58:09','2018-11-29 23:58:09','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(2102,1,'2018-11-30 00:00:19','2018-11-30 00:00:19','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Linguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications and previously spent many years learning Self-Hypnosis and NLP for himself.\r\nStarting in his teems, Mark has always been very passionate about personal development, nutrition and health and has enjoyed training others in many areas.\r\n\r\nMark enjoys speaking at events such as The Mind, Body, Spirit Fair at The Vault each month. Topics include Hypnotherapy, Self-Hypnosis, Neuro-Linguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnosis and NLP skills.\r\n\r\n<span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span>\r\n\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clinical Hypnotherapy, NLP and other modern techniques. He also works in many other areas.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n<h2><span style=\"color: #008000;\"><strong>Yvette Spoor</strong></span></h2>\r\nYvette is a passionate Occupational Therapist, a Practitioner of Neuro-Linguistic Programming and is also skilled in many other areas including family and child work.\r\n\r\nShe has many years of experience within the NHS and also enjoys specialist work in many other areas, helping people with anxiety and stress problems.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including</span></strong>\r\n<ul>\r\n 	<li><strong>NLP</strong> - Neuro Linguistic Programming</li>\r\n 	<li><strong>Hypnotherapy</strong></li>\r\n 	<li><strong>EFT</strong> - Emotional Freedom Technique</li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Coaching</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Nutritional Therapy\r\n</strong> and other useful techniques.</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<ul>\r\n 	<li><strong>Anxiety</strong></li>\r\n 	<li><strong>Depression</strong></li>\r\n 	<li><strong>Stress &amp; Stress Management</strong></li>\r\n 	<li><strong>Anger Management</strong></li>\r\n 	<li><strong>Phobias </strong></li>\r\n 	<li><strong>Pain &amp; Chronic Pain Management</strong></li>\r\n 	<li><strong>Weight Loss &amp; Weight Management</strong></li>\r\n 	<li><strong>Addiction - Alcohol &amp; Habits</strong></li>\r\n 	<li><strong>Smoking Cessation</strong></li>\r\n 	<li><strong>Grief Counselling</strong></li>\r\n 	<li><strong>Confidence Building</strong></li>\r\n 	<li><strong>IBS - Irritable Bowel Syndrome</strong></li>\r\n 	<li><strong>Tinnitus</strong></li>\r\n 	<li><strong>Sleep Disorders</strong></li>\r\n 	<li><strong>Allergies</strong></li>\r\n 	<li><strong>Food Intolerances</strong></li>\r\n</ul>\r\n<h3><span style=\"color: #008000;\"><strong>Where do we work?</strong></span></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n\r\nOur Main Office Address is <span class=\"LrzXr\"><strong>31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ</strong>.\r\n<strong>Tel 07568 455 809</strong></span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">contact us.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\">Click here to arrange your free consultation.</span></a>\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £79 for a 1 to 1.5-hour session.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour to an hour and a half although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 to arrange your free 15-minute consultation.</span></strong></h3>\r\n&nbsp;','ABOUT US','','inherit','closed','closed','','43-revision-v1','','','2018-11-30 00:00:19','2018-11-30 00:00:19','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(2104,1,'2018-12-02 13:28:11','2018-12-02 13:28:11','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and nlp.\r\n</strong>People generally ask us to help with issues like <strong><a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.\r\n\r\nHypnotherapy and Neuro-linguistic programming are powerful, fast techniques that really help people to make changes for good.\r\n</strong></span><span style=\"font-family: Arial;\"><strong>You can read our hypnotherapy client feedback below.</strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective?\r\nWatch this short video.</span></em></span></strong></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-02 13:28:11','2018-12-02 13:28:11','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2105,1,'2018-12-02 13:28:53','2018-12-02 13:28:53','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and nlp.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful, fast techniques that really help people to make changes for good.\r\n<span style=\"font-family: Arial;\"><strong>You can read our hypnotherapy client feedback below.</strong></span>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective?\r\nWatch this short video.</span></em></span></strong></p>\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-02 13:28:53','2018-12-02 13:28:53','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2106,1,'2018-12-02 13:29:44','2018-12-02 13:29:44','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and nlp.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful, fast techniques that really help people to make changes for good.\r\n<span style=\"font-family: Arial;\"><strong>You can read our hypnotherapy client feedback below.</strong></span>\r\n<p class=\"MsoNormal\" style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></p>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-02 13:29:44','2018-12-02 13:29:44','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2107,1,'2018-12-02 13:30:10','2018-12-02 13:30:10','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and nlp.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful, fast techniques that really help people to make changes for good.\r\n<span style=\"font-family: Arial;\"><strong>You can read our hypnotherapy client feedback below.</strong></span>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></p>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-02 13:30:10','2018-12-02 13:30:10','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2108,1,'2018-12-02 14:12:20','2018-12-02 14:12:20','','Order &ndash; December 2, 2018 @ 02:12 PM','','wc-on-hold','open','closed','order_5c03e844e9871','order-dec-02-2018-0212-pm','','','2018-12-02 14:14:19','2018-12-02 14:14:19','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2108',0,'shop_order','',2),(2109,1,'2018-12-03 13:42:47','2018-12-03 13:42:47','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span>\r\n\r\n<strong>Join us for another enjoyable evening of Past Life <span style=\"color: #000000;\">Regression with a short healing meditation.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\nThere will also be a healing meditation\r\n\r\n<strong>The Vault, Wallsend, Wednesday 5th December, 7.30 pm to 10 pm.</strong>\r\n£10 per person. <strong>Booking required. Limited Spaces</strong>.\r\nIncludes tea, coffee &amp; snacks.\r\n\r\n<strong>Pricing.</strong> £10 per person When you book your place online before the 25th of November.\r\nIf places are available after the 25th November the price is £15. <strong>We do expect this to sell out again so please book early to avoid disappointment.</strong>\r\nWe will record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nThe Wednesday Workshop is held on the first and third Wednesday of each month as a nonprofit group. Each evening we explore a new subject of discovery.\r\nFeel free to suggest a topic or skill you would like to learn. If you could take part in a workshop to share or teach a skill please let us know via the <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us Form.</strong></a>\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out before the workshop.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>&nbsp;\r\n\r\n&nbsp;\r\n\r\nTo learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop - 5th December','','inherit','closed','closed','','1185-revision-v1','','','2018-12-03 13:42:47','2018-12-03 13:42:47','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(2110,1,'2018-12-06 19:06:41','2018-12-06 19:06:41','Past Life Regression Sessions from The Wednesday Workshop.\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\n\r\nAs part of the Wednesday Workshop, we often run past life regression sessions. Here you can simply come along and view others as they explore past lives and you can also take part yourself.\r\nBelow are just some of the previous sessions for you to explore.\r\nIf you would like\r\n<h2><strong>Laura - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nDec 2018 The Wednesday Workshop @ The Vault\r\n\r\nEileen\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Past Life Regression Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-06 19:06:41','2018-12-06 19:06:41','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2111,1,'2018-12-06 19:08:08','2018-12-06 19:08:08','Past Life Regression Sessions from The Wednesday Workshop.\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\nAs part of the Wednesday Workshop, we often run past life regression sessions. Here you can simply come along and view others as they explore past lives and you can also take part yourself.\r\nBelow are just some of the previous sessions for you to explore.\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n\r\n&nbsp;\r\n<h2><strong>Laura - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nDec 2018 The Wednesday Workshop @ The Vault\r\n\r\nEileen\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Past Life Regression Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-06 19:08:08','2018-12-06 19:08:08','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2112,1,'2018-12-06 19:08:28','2018-12-06 19:08:28','Past Life Regression Sessions from The Wednesday Workshop.\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\nAs part of the Wednesday Workshop, we often run past life regression sessions. Here you can simply come along and view others as they explore past lives and you can also take part yourself.\r\nBelow are just some of the previous sessions for you to explore.\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong>Laura - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nDec 2018 The Wednesday Workshop @ The Vault\r\n\r\nEileen\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Past Life Regression Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-06 19:08:28','2018-12-06 19:08:28','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2113,1,'2018-12-06 19:11:43','2018-12-06 19:11:43','<strong>Past Life Regression Sessions from The Wednesday Workshop.</strong>\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\nAs part of the Wednesday Workshop, we often run past life regression sessions. Here you can simply come along and view others as they explore past lives and you can also take part yourself.\r\nBelow are just some of the previous sessions for you to explore.\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n\r\nYou can also conduct personal past life regression sessions for youself or provate group sessions.\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a></strong> for more information.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong>Laura - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nDec 2018 The Wednesday Workshop @ The Vault\r\n\r\nEileen\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Past Life Regression Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-06 19:11:43','2018-12-06 19:11:43','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2114,1,'2018-12-06 19:12:23','2018-12-06 19:12:23','<strong>Past Life Regression Sessions from The Wednesday Workshop.</strong>\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\nAs part of the Wednesday Workshop, we often run past life regression sessions. Here you can simply come along and view others as they explore past lives and you can also take part yourself.\r\nBelow are just some of the previous sessions for you to explore.\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<strong>You can also conduct personal past life regression sessions for </strong>youself<strong> or </strong>provate<strong> group sessions.</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong>Laura - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nDec 2018 The Wednesday Workshop @ The Vault\r\n\r\nEileen\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Past Life Regression Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-06 19:12:23','2018-12-06 19:12:23','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2115,1,'2018-12-06 19:12:49','2018-12-06 19:12:49','<strong>Past Life Regression Sessions from The Wednesday Workshop.\r\n</strong><img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\nAs part of the Wednesday Workshop, we often run past life regression sessions. Here you can simply come along and view others as they explore past lives and you can also take part yourself.\r\nBelow are just some of the previous sessions for you to explore.\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<strong>You can also conduct personal past life regression sessions for </strong>youself<strong> or </strong>provate<strong> group sessions.</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong>Laura - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nDec 2018 The Wednesday Workshop @ The Vault\r\n\r\nEileen\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Past Life Regression Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-06 19:12:49','2018-12-06 19:12:49','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2117,1,'2018-12-06 19:13:26','2018-12-06 19:13:26','<strong>Past Life Regression Sessions from The Wednesday Workshop.</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\nAs part of the Wednesday Workshop, we often run past life regression sessions. Here you can simply come along and view others as they explore past lives and you can also take part yourself.\r\nBelow are just some of the previous sessions for you to explore.\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<strong>You can also conduct personal past life regression sessions for </strong>youself<strong> or </strong>provate<strong> group sessions.</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.</strong>\r\n\r\n&nbsp;\r\n<h2><strong>Laura - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nDec 2018 The Wednesday Workshop @ The Vault\r\n\r\nEileen\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Past Life Regression Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-06 19:13:26','2018-12-06 19:13:26','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2116,1,'2018-12-06 19:13:02','2018-12-06 19:13:02','<strong>Past Life Regression Sessions from The Wednesday Workshop.</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\nAs part of the Wednesday Workshop, we often run past life regression sessions. Here you can simply come along and view others as they explore past lives and you can also take part yourself.\r\nBelow are just some of the previous sessions for you to explore.\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<strong>You can also conduct personal past life regression sessions for </strong>youself<strong> or </strong>provate<strong> group sessions.</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong>Laura - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nDec 2018 The Wednesday Workshop @ The Vault\r\n\r\nEileen\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Past Life Regression Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-06 19:13:02','2018-12-06 19:13:02','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2476,1,'2019-01-06 14:37:33','2019-01-06 14:37:33','','NHHS','','inherit','open','closed','','nhhs','','','2019-01-06 14:37:33','2019-01-06 14:37:33','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/NHHS.png',0,'attachment','image/png',0),(2124,1,'2018-12-06 19:36:27','2018-12-06 19:36:27','<strong>Past Life Regression Sessions\r\n</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\nPast Life Regression is fascinating and we run sessions in different ways to suit different needs.\r\n<ul>\r\n 	<li>Group sessions during The Wednesday Workshop</li>\r\n 	<li>Individual sessions</li>\r\n 	<li>Private group sessions.</li>\r\n</ul>\r\nWe use Past Life Regression for both therapy purposes or just for your curiosity.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<strong>You can also conduct personal past life regression sessions for </strong>youself<strong> or </strong>provate<strong> group sessions.</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.</strong>\r\n\r\n&nbsp;\r\n<h2><strong>Laura - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nDec 2018 The Wednesday Workshop @ The Vault\r\n\r\nEileen\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Past Life Regression Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-06 19:36:27','2018-12-06 19:36:27','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2123,1,'2018-12-06 19:33:39','2018-12-06 19:33:39','<strong>Past Life Regression Sessions\r\n</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\nPast Life Regression is fascinating and we run sessions in different ways to suit different needs.\r\n\r\nAs part of the Wednesday Workshop, we often run group past life regression sessions. Here you can simply come along and view others as they explore past lives and you can also take part yourself, if you wish.\r\n\r\nSome clients prefer to book individual sessions or private group sessions to explore their past lives.\r\n\r\nBelow are just some of the previous Wednesday Workshop Group Sessions for you to enjoy.\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<strong>You can also conduct personal past life regression sessions for </strong>youself<strong> or </strong>provate<strong> group sessions.</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.</strong>\r\n\r\n&nbsp;\r\n<h2><strong>Laura - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nDec 2018 The Wednesday Workshop @ The Vault\r\n\r\nEileen\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Past Life Regression Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-06 19:33:39','2018-12-06 19:33:39','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2129,1,'2018-12-06 19:38:43','2018-12-06 19:38:43','<strong>Past Life Regression Sessions\r\n</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\n<strong>Past Life Regression is fascinating and we run sessions in different ways to suit different needs.</strong>\r\n<ul>\r\n 	<li><strong>Group sessions during The Wednesday Workshop</strong></li>\r\n 	<li><strong>Individual sessions</strong></li>\r\n 	<li><strong>Private group sessions.</strong></li>\r\n</ul>\r\n<strong>We use Past Life Regression for both therapy purposes or just for your curiosity.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.\r\n</strong>\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<h2><strong>Laura - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nDec 2018 The Wednesday Workshop @ The Vault\r\n\r\nEileen\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Past Life Regression Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-06 19:38:43','2018-12-06 19:38:43','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2125,1,'2018-12-06 19:36:46','2018-12-06 19:36:46','<strong>Past Life Regression Sessions\r\n</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\n<strong>Past Life Regression is fascinating and we run sessions in different ways to suit different needs.</strong>\r\n<ul>\r\n 	<li><strong>Group sessions during The Wednesday Workshop</strong></li>\r\n 	<li><strong>Individual sessions</strong></li>\r\n 	<li><strong>Private group sessions.</strong></li>\r\n</ul>\r\n<strong>We use Past Life Regression for both therapy purposes or just for your curiosity.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<strong>You can also conduct personal past life regression sessions for </strong>youself<strong> or </strong>provate<strong> group sessions.</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.</strong>\r\n\r\n&nbsp;\r\n<h2><strong>Laura - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nDec 2018 The Wednesday Workshop @ The Vault\r\n\r\nEileen\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Past Life Regression Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-06 19:36:46','2018-12-06 19:36:46','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2126,1,'2018-12-06 19:37:01','2018-12-06 19:37:01','<strong>Past Life Regression Sessions\r\n</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\n<strong>Past Life Regression is fascinating and we run sessions in different ways to suit different needs.</strong>\r\n<ul>\r\n 	<li><strong>Group sessions during The Wednesday Workshop</strong></li>\r\n 	<li><strong>Individual sessions</strong></li>\r\n 	<li><strong>Private group sessions.</strong></li>\r\n</ul>\r\n<strong>We use Past Life Regression for both therapy purposes or just for your curiosity.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<strong>You can also conduct personal past life regression sessions for </strong>youself<strong> or </strong>provate<strong> group sessions.</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.</strong>\r\n\r\n&nbsp;\r\n<h2><strong>Laura - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nDec 2018 The Wednesday Workshop @ The Vault\r\n\r\nEileen\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Past Life Regression Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-06 19:37:01','2018-12-06 19:37:01','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2127,1,'2018-12-06 19:37:15','2018-12-06 19:37:15','<strong>Past Life Regression Sessions\r\n</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\n<strong>Past Life Regression is fascinating and we run sessions in different ways to suit different needs.</strong>\r\n<ul>\r\n 	<li><strong>Group sessions during The Wednesday Workshop</strong></li>\r\n 	<li><strong>Individual sessions</strong></li>\r\n 	<li><strong>Private group sessions.</strong></li>\r\n</ul>\r\n<strong>We use Past Life Regression for both therapy purposes or just for your curiosity.</strong>\r\n\r\n&nbsp;\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<strong>You can also conduct personal past life regression sessions for </strong>youself<strong> or </strong>provate<strong> group sessions.</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.</strong>\r\n\r\n&nbsp;\r\n<h2><strong>Laura - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nDec 2018 The Wednesday Workshop @ The Vault\r\n\r\nEileen\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Past Life Regression Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-06 19:37:15','2018-12-06 19:37:15','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2128,1,'2018-12-06 19:37:31','2018-12-06 19:37:31','<strong>Past Life Regression Sessions\r\n</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\n<strong>Past Life Regression is fascinating and we run sessions in different ways to suit different needs.</strong>\r\n<ul>\r\n 	<li><strong>Group sessions during The Wednesday Workshop</strong></li>\r\n 	<li><strong>Individual sessions</strong></li>\r\n 	<li><strong>Private group sessions.</strong></li>\r\n</ul>\r\n<strong>We use Past Life Regression for both therapy purposes or just for your curiosity.</strong>\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<strong>You can also conduct personal past life regression sessions for </strong>youself<strong> or </strong>provate<strong> group sessions.</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.</strong>\r\n\r\n&nbsp;\r\n<h2><strong>Laura - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nDec 2018 The Wednesday Workshop @ The Vault\r\n\r\nEileen\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Past Life Regression Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-06 19:37:31','2018-12-06 19:37:31','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2130,1,'2018-12-06 19:39:07','2018-12-06 19:39:07','<strong>Past Life Regression Sessions\r\n</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\n<strong>Past Life Regression is fascinating and we run sessions in different ways to suit different needs.</strong>\r\n<ul>\r\n 	<li><strong>Group sessions during The Wednesday Workshop</strong></li>\r\n 	<li><strong>Individual sessions</strong></li>\r\n 	<li><strong>Private group sessions.</strong></li>\r\n</ul>\r\n<strong>We use Past Life Regression for both therapy purposes or just for your curiosity.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.\r\n</strong>\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<h2><span style=\"color: #008000;\"><strong>Laura - Past Life Regression Hypnosis Session</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nDec 2018 The Wednesday Workshop @ The Vault\r\n\r\nEileen\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Past Life Regression Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-06 19:39:07','2018-12-06 19:39:07','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2131,1,'2018-12-06 19:41:03','2018-12-06 19:41:03','<strong>Past Life Regression Sessions\r\n</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\n<strong>Past Life Regression is fascinating and we run sessions in different ways to suit different needs.</strong>\r\n<ul>\r\n 	<li><strong>Group sessions during The Wednesday Workshop</strong></li>\r\n 	<li><strong>Individual sessions</strong></li>\r\n 	<li><strong>Private group sessions.</strong></li>\r\n</ul>\r\n<strong>We use Past Life Regression for both therapy purposes or just for your curiosity.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.\r\n</strong>\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<h2><span style=\"color: #008000;\"><strong>Laura - Past Life Regression Hypnosis Session</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nDec 2018 The Wednesday Workshop @ The Vault\r\n\r\nEileen\r\n<h2><iframe src=\"https://www.youtube.com/embed/Xv67oDBxrK8?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n&nbsp;\r\n\r\n&nbsp;','Past Life Regression Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-06 19:41:03','2018-12-06 19:41:03','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2132,1,'2018-12-06 19:41:44','2018-12-06 19:41:44','<strong>Past Life Regression Sessions\r\n</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\n<strong>Past Life Regression is fascinating and we run sessions in different ways to suit different needs.</strong>\r\n<ul>\r\n 	<li><strong>Group sessions during The Wednesday Workshop</strong></li>\r\n 	<li><strong>Individual sessions</strong></li>\r\n 	<li><strong>Private group sessions.</strong></li>\r\n</ul>\r\n<strong>We use Past Life Regression for both therapy purposes or just for your curiosity.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.\r\n</strong>\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<h2><span style=\"color: #008000;\"><strong>Laura - Past Life Regression Hypnosis Session</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2>Dec 2018 The Wednesday Workshop @ The Vault</h2>\r\n<h2><span style=\"color: #008000;\">Eileen</span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/Xv67oDBxrK8?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n&nbsp;','Past Life Regression Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-06 19:41:44','2018-12-06 19:41:44','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2133,1,'2018-12-07 13:39:47','2018-12-07 13:39:47','<strong>Past Life Regression Sessions\r\n</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\n<strong>Past Life Regression is fascinating and we run sessions in different ways to suit different needs.</strong>\r\n<ul>\r\n 	<li><strong>Group sessions during The Wednesday Workshop</strong></li>\r\n 	<li><strong>Individual sessions</strong></li>\r\n 	<li><strong>Private group sessions.</strong></li>\r\n</ul>\r\n<strong>We use Past Life Regression for both therapy purposes or just for your curiosity.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.\r\n</strong>\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<h2><span style=\"color: #008000;\"><strong>Laura - Past Life Regression Hypnosis Session</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2>Dec 2018 The Wednesday Workshop @ The Vault</h2>\r\n<h2><span style=\"color: #008000;\">Eileen</span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/Xv67oDBxrK8?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Morgan</strong></span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/j864XFS5pLQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></h2>','Past Life Regression Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-07 13:39:47','2018-12-07 13:39:47','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2134,1,'2018-12-07 13:46:35','2018-12-07 13:46:35','<strong>Past Life Regression Hypnosis Sessions\r\n</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\n<strong>Past Life Regression Hypnosis is fascinating and we run sessions in different ways to suit different needs.</strong>\r\n<ul>\r\n 	<li><strong>Group sessions during The Wednesday Workshop</strong></li>\r\n 	<li><strong>Individual sessions</strong></li>\r\n 	<li><strong>Private group sessions.</strong></li>\r\n</ul>\r\n<strong>We use Past Life Regression for both therapy purposes or just for your curiosity.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.\r\n</strong>\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<h2><span style=\"color: #008000;\"><strong>Laura - Past Life Regression Hypnosis Session</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2>Dec 2018 The Wednesday Workshop @ The Vault</h2>\r\n<h2><span style=\"color: #008000;\">Eileen</span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/Xv67oDBxrK8?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Morgan</strong></span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/j864XFS5pLQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></h2>','Past Life Regression Hypnosis Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-07 13:46:35','2018-12-07 13:46:35','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2135,1,'2018-12-07 13:47:40','2018-12-07 13:47:40','<strong>Past Life Regression Hypnosis Sessions\r\n</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\n<strong>Past Life Regression Hypnosis is fascinating and we run sessions in different ways to suit different needs.</strong>\r\n<ul>\r\n 	<li><strong>Group sessions during <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop</a></strong></li>\r\n 	<li><strong>Individual sessions</strong></li>\r\n 	<li><strong>Private group sessions.</strong></li>\r\n</ul>\r\n<strong>We use Past Life Regression for both therapy purposes or just for your curiosity.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.\r\n</strong>\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<h2><span style=\"color: #008000;\"><strong>Laura - Past Life Regression Hypnosis Session</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2>Dec 2018 The Wednesday Workshop @ The Vault</h2>\r\n<h2><span style=\"color: #008000;\">Eileen</span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/Xv67oDBxrK8?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Morgan</strong></span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/j864XFS5pLQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></h2>','Past Life Regression Hypnosis Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-07 13:47:40','2018-12-07 13:47:40','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2137,1,'2018-12-09 15:38:30','2018-12-09 15:38:30','<strong>Past Life Regression Hypnosis Sessions\r\n</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\n<strong>Past Life Regression Hypnosis is fascinating and we run sessions in different ways to suit different needs.</strong>\r\n<ul>\r\n 	<li><strong>Group sessions during <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop</a></strong></li>\r\n 	<li><strong>Individual sessions</strong></li>\r\n 	<li><strong>Private group sessions.</strong></li>\r\n</ul>\r\n<strong>We use Past Life Regression for both therapy purposes or just for your curiosity.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.\r\n</strong>\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<h2><span style=\"color: #008000;\"><strong>Laura - Past Life Regression Hypnosis Session</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2>Dec 2018 The Wednesday Workshop @ The Vault</h2>\r\n<h2><span style=\"color: #008000;\">Eileen</span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/Xv67oDBxrK8?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Morgan</strong></span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/j864XFS5pLQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></h2>\r\n&nbsp;\r\n\r\nYou can learn more about our regular Wednesday Workshops and other events by Newcastle Hypnotherapy by simply joining the newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe with us. You can remove yourself at any time from the newsletter.','Past Life Regression Hypnosis Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-09 15:38:30','2018-12-09 15:38:30','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2138,1,'2018-12-09 18:01:21','2018-12-09 18:01:21','<strong>Past Life Regression Hypnosis Sessions\r\n</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\n<strong>Past Life Regression Hypnosis is fascinating and we run sessions in different ways to suit different needs.</strong>\r\n<ul>\r\n 	<li><strong>Group sessions during <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop</a></strong></li>\r\n 	<li><strong>Individual sessions</strong></li>\r\n 	<li><strong>Private group sessions.</strong></li>\r\n</ul>\r\n<strong>We use Past Life Regression for both therapy purposes or just for your curiosity.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.\r\n</strong>\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<h2><span style=\"color: #008000;\"><strong>Laura - Past Life Regression Hypnosis Session</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2>Dec 2018 The Wednesday Workshop @ The Vault</h2>\r\n<h2><span style=\"color: #008000;\">Eileen</span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/Xv67oDBxrK8?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Morgan</strong></span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/j864XFS5pLQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></h2>\r\n&nbsp;\r\n<h2><iframe src=\"https://www.youtube.com/embed/xjoHiK41pJY?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></h2>\r\n\r\nYou can learn more about our regular Wednesday Workshops and other events by Newcastle Hypnotherapy by simply joining the newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe with us. You can remove yourself at any time from the newsletter.','Past Life Regression Hypnosis Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-09 18:01:21','2018-12-09 18:01:21','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2510,1,'2019-01-06 18:55:18','2019-01-06 18:55:18','<strong>Past Life Regression Hypnosis Sessions\r\n</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\n<strong>Past Life Regression Hypnosis is fascinating and we run sessions in different ways to suit different needs.</strong>\r\n<ul>\r\n 	<li><strong>Group sessions </strong></li>\r\n 	<li><strong>Individual sessions</strong></li>\r\n 	<li><strong>Private group sessions.</strong></li>\r\n</ul>\r\n<strong>We use Past Life Regression for both therapy purposes or just for your curiosity.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.\r\n</strong>\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<h2><span style=\"color: #008000;\"><strong>Laura - Past Life Regression Hypnosis Session</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2>Dec 2018 The Wednesday Workshop @ The Vault</h2>\r\n<h2><span style=\"color: #008000;\">Eileen</span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/Xv67oDBxrK8?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Morgan</strong></span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/j864XFS5pLQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></h2>\r\n<h2><span style=\"color: #008000;\">Mark</span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/xjoHiK41pJY?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></h2>\r\nYou can learn more about our regular Wednesday Workshops and other events by Newcastle Hypnotherapy by simply joining the newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe with us. You can remove yourself at any time from the newsletter.','Past Life Regression Hypnosis Sessions','','inherit','closed','closed','','1568-revision-v1','','','2019-01-06 18:55:18','2019-01-06 18:55:18','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2139,1,'2018-12-09 18:02:07','2018-12-09 18:02:07','<strong>Past Life Regression Hypnosis Sessions\r\n</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\n<strong>Past Life Regression Hypnosis is fascinating and we run sessions in different ways to suit different needs.</strong>\r\n<ul>\r\n 	<li><strong>Group sessions during <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop</a></strong></li>\r\n 	<li><strong>Individual sessions</strong></li>\r\n 	<li><strong>Private group sessions.</strong></li>\r\n</ul>\r\n<strong>We use Past Life Regression for both therapy purposes or just for your curiosity.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.\r\n</strong>\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<h2><span style=\"color: #008000;\"><strong>Laura - Past Life Regression Hypnosis Session</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2>Dec 2018 The Wednesday Workshop @ The Vault</h2>\r\n<h2><span style=\"color: #008000;\">Eileen</span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/Xv67oDBxrK8?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Morgan</strong></span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/j864XFS5pLQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></h2>\r\n<h2><span style=\"color: #008000;\">Mark</span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/xjoHiK41pJY?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></h2>\r\nYou can learn more about our regular Wednesday Workshops and other events by Newcastle Hypnotherapy by simply joining the newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe with us. You can remove yourself at any time from the newsletter.','Past Life Regression Hypnosis Sessions','','inherit','closed','closed','','1568-revision-v1','','','2018-12-09 18:02:07','2018-12-09 18:02:07','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2140,1,'2018-12-10 14:50:15','2018-12-10 14:50:15','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy \" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and nlp.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n<span style=\"font-family: Arial;\"><strong>You can read our hypnotherapy client feedback below.</strong></span>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></p>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy Session?</strong></span></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different to other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Vist the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15 minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and cleints tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimnate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-10 14:50:15','2018-12-10 14:50:15','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2141,1,'2018-12-10 15:03:02','2018-12-10 15:03:02','<h2><span style=\"color: #008000;\"><strong><img class=\"alignleft size-thumbnail wp-image-813\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/Cleint-feedback-150x150.jpg\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming.\r\n</strong></span></h2>\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong><span style=\"color: #000000;\">\"<span class=\"Linkify\">Thankyou for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce\"</span></span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback  by Gary </span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by S F</span>.</strong>  \"<span style=\"color: #000000;\">I</span> Met Mark initially at an event at \'The Vault\' and found him to be a trustworthy genuine person, so I booked two Hypnotherapy sessions with him. I felt stuck with certain issues in my life and also had some trauma work to do. I had done a lot of work myself but the last little bit was still missing. With Mark\'s help I found that missing bit and can now work with the tools that Mark offered to me. He introduced me to tapping (EFT) and NLP (Neurolinguistic Programming) which are fantastic tools. Also I can always use the hypnotherapy session that Mark recorded for me. Thank you so much, Mark! \"\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />','CLIENT FEEDBACK','','inherit','closed','closed','','200-revision-v1','','','2018-12-10 15:03:02','2018-12-10 15:03:02','',200,'https://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(2143,1,'2018-12-10 15:16:07','2018-12-10 15:16:07','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n<span style=\"font-family: Arial;\"><strong>You can read our hypnotherapy client feedback below.</strong></span>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></p>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n&nbsp;\r\n\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy or NLP Session?</strong></span></h2>\r\nMost of our new clients like to chat with us first to answer any questions and discuss their issues. We offer everyone a free 15-minute phone consultation to do exactly this and to explore your issues and look at the best way forward to you.\r\nAlternatively, some clients prefer to book a session straight away. You can pick the best option for you below or call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15-minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-10 15:16:07','2018-12-10 15:16:07','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2142,1,'2018-12-10 15:10:53','2018-12-10 15:10:53','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n<span style=\"font-family: Arial;\"><strong>You can read our hypnotherapy client feedback below.</strong></span>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></p>\r\n&nbsp;\r\n\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy or NLP Session?</strong></span></h2>\r\nMost of our new clients like to chat with us first to answer any questions and discuss their issues. We offer everyone a free 15-minute phone consultation to do exactly this and to explore your issues and look at the best way forward to you.\r\nAlternatively, some clients prefer to book a session straight away. You can pick the best option for you below or call us on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15-minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-10 15:10:53','2018-12-10 15:10:53','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2146,1,'2018-12-10 15:29:42','2018-12-10 15:29:42','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n<span style=\"font-family: Arial;\"><strong>You can read our hypnotherapy client feedback below.</strong></span>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></p>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy or NLP Session?</strong></span></h2>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span>\r\n</strong></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15-minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-10 15:29:42','2018-12-10 15:29:42','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2144,1,'2018-12-10 15:18:47','2018-12-10 15:18:47','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n<span style=\"font-family: Arial;\"><strong>You can read our hypnotherapy client feedback below.</strong></span>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></p>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy or NLP Session?</strong></span></h2>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a free 15-minute phone consultation to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15-minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-10 15:18:47','2018-12-10 15:18:47','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2145,1,'2018-12-10 15:24:14','2018-12-10 15:24:14','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n<span style=\"font-family: Arial;\"><strong>You can read our hypnotherapy client feedback below.</strong></span>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></p>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy or NLP Session?</strong></span></h2>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></strong></a></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15-minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-10 15:24:14','2018-12-10 15:24:14','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2147,1,'2018-12-10 15:30:57','2018-12-10 15:30:57',' ','','','publish','closed','closed','','2147','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=2147',41,'nav_menu_item','',0),(2148,1,'2018-12-10 15:32:56','2018-12-10 15:32:56','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n<span style=\"font-family: Arial;\"><strong>You can read our hypnotherapy client feedback below.</strong></span>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></p>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy or NLP Session?</strong></span></h2>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15-minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-10 15:32:56','2018-12-10 15:32:56','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2149,1,'2018-12-10 15:38:01','2018-12-10 15:38:01','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n<span style=\"font-family: Arial;\"><strong>You can read our hypnotherapy client feedback below.</strong></span>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></p>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy or NLP Session?</strong></span></h2>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15-minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-10 15:38:01','2018-12-10 15:38:01','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2150,1,'2018-12-10 15:41:44','2018-12-10 15:41:44','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n<span style=\"font-family: Arial;\"><strong>You can read our hypnotherapy client feedback below.</strong></span>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></p>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy or NLP Session?</strong></span></h2>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li>Wallsend</li>\r\n 	<li>Cramlington</li>\r\n 	<li>Bedlington</li>\r\n 	<li>Newcastle City Centre</li>\r\n 	<li>Seaton Delaval</li>\r\n 	<li>South Shields</li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15-minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-10 15:41:44','2018-12-10 15:41:44','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2151,1,'2018-12-10 16:50:51','2018-12-10 16:50:51','<strong>You can also find Newcastle Hypnotherapy in Wallsend, Newcastle upon Tyne.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Wallsend\" width=\"300\" height=\"198\" />\r\n\r\n<span style=\"color: #008000;\"><strong>You can find our Wallsend Practice at:\r\n</strong></span><span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\nAt our Wallsend location, we have a choice of comfortable therapy rooms for individual sessions.\r\nWe also run workshops and training events from the spacious main hall including the regular <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshops</strong>.</a>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Wallsend.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers a range of Clinical Hypnosis and NLP Services to help clients with a wide range of issues and problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Home Page</a> </strong>for more information on the issues clinical hypnosis and NLP can help with.\r\n<h2><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Wallsend?</strong></span></h2>\r\nNewcastle Hypnotherapy is very easy to find at<span class=\"LrzXr\"><strong> 31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\n</strong>We are just around the corner from Wallsend Metro Station and there is plenty of parking available.\r\n</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged by request.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Your Free Phone </span></strong><span style=\"color: #008000;\">Consultation</span></h2>\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free 15 minute phone consultation</strong></a> to disscuss your issue, answer your questions and put a stratergy plan together for moving forward. You can arrange your session by calling us on 07568 455 809 or you can book online below.\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Wallsend is very easy.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops by Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can attend regular events and workshops at various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\n<strong>For details of these events simply <em>join our email newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Facebook Group</span></strong></h2>\r\nHere you can discuss hypnosis, NLP, EFT and the regular events we arrange or take part of.\r\n<span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit our </strong><strong>Facebook</strong><strong> Group Here</strong></a></span>\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong></span></h2>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington, Bedlington, Northumberland &amp; South Shields. We can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><span style=\"color: #008000;\"><strong>Do you offer home visits for Hypnotherapy &amp; NLP Services?</strong></span></h2>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><span style=\"color: #008000;\">Are Online Hypnotherapy Sessions effective?</span></h2>\r\nYes. Online hypnosis sessions are becoming very popular using video software and our clients experience great results.\r\n<h2><strong><span style=\"color: #008000;\">Can I organise a talk or hypnosis demonstration for my organisation?</span>\r\n</strong></h2>\r\nYes of course. We can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do you offer therapy for children and young adults?</strong></span></h2>\r\nWe have a dedicated team member who is a trained expert in child issues. Most of our hypnosis and NLP services are just as effective.\r\nSimply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><strong><span style=\"color: #008000;\">How long is a hypnosis session?</span></strong></h2>\r\nUsually your hypnotherapy or NLP appointment will take about an hour to an hour and a half. We can advise you better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session. </strong></a>\r\n<h2><span style=\"color: #008000;\"><strong>How many hypnosis or NLP sessions do I need?</strong></span></h2>\r\nWe can discuss this better when we talk about your particular issue. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n<h2><strong><span style=\"color: #008000;\">What is hypnosis like to experience?</span>\r\n</strong></h2>\r\nHypnosis is a very relaxed state, quite different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h2>\r\nHypnosis works for most people and provides treat results for the majority of people.\r\nHowever, hypnotherapy may not always the best route for everyone and the good news is that we have many alternatives to use.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do you teach Self-Hypnosis?</strong></span></h2>\r\nWe teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis isvery to learn and a great way to control your states, reducing anxiety and stress. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h2><span style=\"color: #008000;\"><strong>How fast can we arrange a hypnosis or NLP appointment?</strong></span></h2>\r\nThe fastest way to arrange your hypnotherapy appointment is to  <strong><em>give Mark a call on 07568 455 809.\r\n</em></strong>If your situation is urgent we can usually arrange your session quickly. Normally sessions can be arrange within a day or so.\r\n<h2><span style=\"color: #008000;\"><strong>How much are hypnotherapy NLP sessions?</strong></span></h2>\r\nCurrent rates can be found <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking two hypnosis session together.\r\nPlease remember we offer you a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you.\r\n<h2><strong><span style=\"color: #008000;\">How soon will I see results with hypnosis?</span>\r\n</strong></h2>\r\nResults can really vary as everyone is different. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Wallsend can be found at\r\n\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our Wallsend Practice, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"></div>','NEWCASTLE HYPNOTHERAPY IN WALLSEND','','publish','closed','closed','','newcastle-hypnotherapy-in-wallsend','','','2018-12-11 22:49:25','2018-12-11 22:49:25','',0,'https://www.newcastle-hypnotherapy.com/?page_id=2151',0,'page','',0),(2153,1,'2018-12-10 16:50:51','2018-12-10 16:50:51','<strong>You can also find Newcastle Hypnotherapy in Wallsend, Newcastle upon Tyne.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\n<span style=\"color: #008000;\"><strong>You can find our Wallsend Practice at:\r\n</strong></span><span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Wallsend location, we have a choice of therapy rooms for individual sessions.\r\nWe also run workshops and training events from the spacious main hall including the regular <strong>Wednesday Workshops</strong>.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnotherapy work for everyone?\r\n</strong>Hypnosis works for most people and provides good results for most people. However, hypnotherapy is not always the best route for every client or always the best route for every issue. The good news is that we have many alternatives we can use. NLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval can be found at\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.3049713848686!2d-1.528295284095749!3d55.07291028037695!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb671e16403c025d4!2sNewcastle+Hypnotherapy+in+Seaton+Delaval!5e0!3m2!1sen!2suk!4v1540751587955\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','NEWCASTLE HYPNOTHERAPY IN WALLSEND','','inherit','closed','closed','','2151-revision-v1','','','2018-12-10 16:50:51','2018-12-10 16:50:51','',2151,'https://www.newcastle-hypnotherapy.com/2151-revision-v1/',0,'revision','',0),(2152,1,'2018-12-10 16:00:02','2018-12-10 16:00:02','<strong>You can also find Newcastle Hypnotherapy in Wallsend, Newcastle upon Tyne.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\n<span style=\"color: #008000;\"><strong>You can find our Wallsend Practice at:\r\n<span style=\"color: #000000;\">The Vault, Creative Wellbeing Centre</span></strong></span>\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\nTel 07568 455 809.</span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Seaton Delaval location, we enjoy a comfortable, quiet space that is perfect for hypnosis and NLP sessions.\r\nThere is always plenty of parking available and we can offer sessions during the day, evening and weekends.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\nNewcastle Hypnotherapy offers Clinical Hypnosis Services along with NLP to help clients with a wide range of problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for more information on the issues hypnosis and NLP can help with.\r\n<h4><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Seaton Delaval?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnotherapy work for everyone?\r\n</strong>Hypnosis works for most people and provides good results for most people. However, hypnotherapy is not always the best route for every client or always the best route for every issue. The good news is that we have many alternatives we can use. NLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval can be found at\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.3049713848686!2d-1.528295284095749!3d55.07291028037695!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb671e16403c025d4!2sNewcastle+Hypnotherapy+in+Seaton+Delaval!5e0!3m2!1sen!2suk!4v1540751587955\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','NEWCASTLE HYPNOTHERAPY IN WALLSEND','','inherit','closed','closed','','2151-revision-v1','','','2018-12-10 16:00:02','2018-12-10 16:00:02','',2151,'https://www.newcastle-hypnotherapy.com/2151-revision-v1/',0,'revision','',0),(2154,1,'2018-12-11 22:49:09','2018-12-11 22:49:09','<strong>You can also find Newcastle Hypnotherapy in Wallsend, Newcastle upon Tyne.</strong>\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Wallsend\" width=\"300\" height=\"198\" />\n\n<span style=\"color: #008000;\"><strong>You can find our Wallsend Practice at:\n</strong></span><span class=\"LrzXr\"><strong>31 Station Road,\nWallsend,\nNewcastle upon Tyne,\nNE28 6SZ</strong></span>\n\n<strong>Tel 07568 455 809</strong>\n\n&nbsp;\n\nAt our Wallsend location, we have a choice of comfortable therapy rooms for individual sessions.\nWe also run workshops and training events from the spacious main hall including the regular <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshops</strong>.</a>\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Wallsend.\n</strong></span></h2>\nNewcastle Hypnotherapy offers a range of Clinical Hypnosis and NLP Services to help clients with a wide range of issues and problems.\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\nVisit our <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Home Page</a> </strong>for more information on the issues clinical hypnosis and NLP can help with.\n<h2><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Wallsend?</strong></span></h2>\nNewcastle Hypnotherapy is very easy to find at<span class=\"LrzXr\"><strong> 31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.\n</strong>We are just around the corner from Wallsend Metro Station and there is plenty of parking available.\n</span>\n\n<strong>Opening Hours.</strong>\n<strong>Monday</strong> 9.00 am to 8.00 pm\n<strong>Tuesday</strong> 9.00 am to 1.00pm\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\n<strong>Thursday</strong> 9.00 am to 8.00 pm\n<strong>Friday</strong> 9.00 am to 1.00 pm\n<strong>Saturday</strong> 9.00 am to 5.00 pm\n<strong>Sunday</strong> 10.00 am to 5.00 pm\n\n<strong>Earlier and later hypnosis appointments can be arranged by request.</strong>\n<h2><strong><span style=\"color: #008000;\">Your Free Phone </span></strong><span style=\"color: #008000;\">Consultation</span></h2>\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free 15 minute phone consultation</strong></a> to disscuss your issue, answer your questions and put a stratergy plan together for moving forward. You can arrange your session by calling us on 07568 455 809 or you can book online below.\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\nBooking a session at Newcastle Hypnotherapy in Wallsend is very easy.\n<ol>\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\n</strong></li>\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\n</ol>\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\n</strong>\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops by Newcastle Hypnotherapy\n</strong></span></h2>\nYou can attend regular events and workshops at various locations in the North East.\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\n<strong>For details of these events simply <em>join our email newsletter below.</em></strong>\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Facebook Group</span></strong></h2>\nHere you can discuss hypnosis, NLP, EFT and the regular events we arrange or take part of.\n<span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit our </strong><strong>Facebook</strong><strong> Group Here</strong></a></span>\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\n</strong></span></h2>\n<h2><span style=\"color: #008000;\"><strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong></span></h2>\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington, Bedlington, Northumberland &amp; South Shields. We can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\n<h2><span style=\"color: #008000;\"><strong>Do you offer home visits for Hypnotherapy &amp; NLP Services?</strong></span></h2>\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\n<h2><span style=\"color: #008000;\">Are Online Hypnotherapy Sessions effective?</span></h2>\nYes. Online hypnosis sessions are becoming very popular using video software and our clients experience great results.\n<h2><strong><span style=\"color: #008000;\">Can I organise a talk or hypnosis demonstration for my organisation?</span>\n</strong></h2>\nYes of course. We can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\n<h2><span style=\"color: #008000;\"><strong>Do you offer therapy for children and young adults?</strong></span></h2>\nWe have a dedicated team member who is a trained expert in child issues. Most of our hypnosis and NLP services are just as effective.\nSimply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\n<h2><strong><span style=\"color: #008000;\">How long is a hypnosis session?</span></strong></h2>\nUsually your hypnotherapy or NLP appointment will take about an hour to an hour and a half. We can advise you better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session. </strong></a>\n<h2><span style=\"color: #008000;\"><strong>How many hypnosis or NLP sessions do I need?</strong></span></h2>\nWe can discuss this better when we talk about your particular issue. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\n<h2><strong><span style=\"color: #008000;\">What is hypnosis like to experience?</span>\n</strong></h2>\nHypnosis is a very relaxed state, quite different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\n<h2><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h2>\nHypnosis works for most people and provides treat results for the majority of people.\nHowever, hypnotherapy may not always the best route for everyone and the good news is that we have many alternatives to use.\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\n</strong>\n<h2><span style=\"color: #008000;\"><strong>Do you teach Self-Hypnosis?</strong></span></h2>\nWe teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis isvery to learn and a great way to control your states, reducing anxiety and stress. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\n<h2><span style=\"color: #008000;\"><strong>How fast can we arrange a hypnosis or NLP appointment?</strong></span></h2>\nThe fastest way to arrange your hypnotherapy appointment is to  <strong><em>give Mark a call on 07568 455 809.\n</em></strong>If your situation is urgent we can usually arrange your session quickly. Normally sessions can be arrange within a day or so.\n<h2><span style=\"color: #008000;\"><strong>How much are hypnotherapy NLP sessions?</strong></span></h2>\nCurrent rates can be found <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking two hypnosis session together.\nPlease remember we offer you a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you.\n<h2><strong><span style=\"color: #008000;\">How soon will I see results with hypnosis?</span>\n</strong></h2>\nResults can really vary as everyone is different. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\n\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\nNewcastle Hypnotherapy in Wallsend can be found at\n\n<span class=\"LrzXr\"><strong>31 Station Road,\nWallsend,\nNewcastle upon Tyne,\nNE28 6SZ</strong></span>\n\n<strong>Tel 07568 455 809</strong>\n\n<strong>Newcastle Hypnotherapy Google Map </strong>- our Wallsend Practice, Newcastle Upon Tyne.\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\n&nbsp;\n\nYou can also learn about our regular events and workshops by joining our newsletter above.\n<div class=\"responsive-map\"></div>','NEWCASTLE HYPNOTHERAPY IN WALLSEND','','inherit','closed','closed','','2151-autosave-v1','','','2018-12-11 22:49:09','2018-12-11 22:49:09','',2151,'https://www.newcastle-hypnotherapy.com/2151-autosave-v1/',0,'revision','',0),(2155,1,'2018-12-10 17:07:07','2018-12-10 17:07:07','<strong>You can also find Newcastle Hypnotherapy in Wallsend, Newcastle upon Tyne.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\n<span style=\"color: #008000;\"><strong>You can find our Wallsend Practice at:\r\n</strong></span><span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Wallsend location, we have a choice of therapy rooms for individual sessions.\r\nWe also run workshops and training events from the spacious main hall including the regular <strong>Wednesday Workshops</strong>.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Wallsend.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers a range of Clinical Hypnosis and NLP Services to help clients with a wide range of issues and problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Home Page</a> </strong>for more information on the issues clinical hypnosis and NLP can help with.\r\n<h2><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Wallsend?</strong></span></h2>\r\nNewcastle Hypnotherapy is very easy to find at<span class=\"LrzXr\"><strong> 31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\n</strong>We are just around the corner from Wallsend Metro Station and there is plenty of parking available.\r\n</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged by request.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Your Free Phone </span></strong><span style=\"color: #008000;\">Consultation</span></h2>\r\nWe offer everyone a free 15 minute phone consultation to disscuss your issue, answer your questions and put a stratergy plan together for moving forward. You can arrange your session by calling us on 07568 455 809 or you can book online below.\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Wallsend is very easy.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops by Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can attend regular events and workshops at various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\n<strong>For details of these events simply <em>join our email newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnotherapy work for everyone?\r\n</strong>Hypnosis works for most people and provides good results for most people. However, hypnotherapy is not always the best route for every client or always the best route for every issue. The good news is that we have many alternatives we can use. NLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval can be found at\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.3049713848686!2d-1.528295284095749!3d55.07291028037695!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb671e16403c025d4!2sNewcastle+Hypnotherapy+in+Seaton+Delaval!5e0!3m2!1sen!2suk!4v1540751587955\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','NEWCASTLE HYPNOTHERAPY IN WALLSEND','','inherit','closed','closed','','2151-revision-v1','','','2018-12-10 17:07:07','2018-12-10 17:07:07','',2151,'https://www.newcastle-hypnotherapy.com/2151-revision-v1/',0,'revision','',0),(2156,1,'2018-12-10 17:10:41','2018-12-10 17:10:41','<strong>You can also find Newcastle Hypnotherapy in Wallsend, Newcastle upon Tyne.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\n<span style=\"color: #008000;\"><strong>You can find our Wallsend Practice at:\r\n</strong></span><span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Wallsend location, we have a choice of therapy rooms for individual sessions.\r\nWe also run workshops and training events from the spacious main hall including the regular <strong>Wednesday Workshops</strong>.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Wallsend.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers a range of Clinical Hypnosis and NLP Services to help clients with a wide range of issues and problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Home Page</a> </strong>for more information on the issues clinical hypnosis and NLP can help with.\r\n<h2><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Wallsend?</strong></span></h2>\r\nNewcastle Hypnotherapy is very easy to find at<span class=\"LrzXr\"><strong> 31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\n</strong>We are just around the corner from Wallsend Metro Station and there is plenty of parking available.\r\n</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged by request.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Your Free Phone </span></strong><span style=\"color: #008000;\">Consultation</span></h2>\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free 15 minute phone consultation</strong></a> to disscuss your issue, answer your questions and put a stratergy plan together for moving forward. You can arrange your session by calling us on 07568 455 809 or you can book online below.\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Wallsend is very easy.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops by Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can attend regular events and workshops at various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\n<strong>For details of these events simply <em>join our email newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong></span></h2>\r\n&nbsp;\r\n\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington, Bedlington, Northumberland &amp; South Shields. We can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy &amp; NLP Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nYes. Online hypnosis sessions are becoming very popular using video software.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnotherapy work for everyone?\r\n</strong>Hypnosis works for most people and provides good results for most people. However, hypnotherapy is not always the best route for every client or always the best route for every issue. The good news is that we have many alternatives we can use. NLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval can be found at\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.3049713848686!2d-1.528295284095749!3d55.07291028037695!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb671e16403c025d4!2sNewcastle+Hypnotherapy+in+Seaton+Delaval!5e0!3m2!1sen!2suk!4v1540751587955\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','NEWCASTLE HYPNOTHERAPY IN WALLSEND','','inherit','closed','closed','','2151-revision-v1','','','2018-12-10 17:10:41','2018-12-10 17:10:41','',2151,'https://www.newcastle-hypnotherapy.com/2151-revision-v1/',0,'revision','',0),(2157,1,'2018-12-10 17:25:29','2018-12-10 17:25:29','<strong>You can also find Newcastle Hypnotherapy in Wallsend, Newcastle upon Tyne.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\n<span style=\"color: #008000;\"><strong>You can find our Wallsend Practice at:\r\n</strong></span><span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Wallsend location, we have a choice of therapy rooms for individual sessions.\r\nWe also run workshops and training events from the spacious main hall including the regular <strong>Wednesday Workshops</strong>.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Wallsend.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers a range of Clinical Hypnosis and NLP Services to help clients with a wide range of issues and problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Home Page</a> </strong>for more information on the issues clinical hypnosis and NLP can help with.\r\n<h2><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Wallsend?</strong></span></h2>\r\nNewcastle Hypnotherapy is very easy to find at<span class=\"LrzXr\"><strong> 31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\n</strong>We are just around the corner from Wallsend Metro Station and there is plenty of parking available.\r\n</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged by request.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Your Free Phone </span></strong><span style=\"color: #008000;\">Consultation</span></h2>\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free 15 minute phone consultation</strong></a> to disscuss your issue, answer your questions and put a stratergy plan together for moving forward. You can arrange your session by calling us on 07568 455 809 or you can book online below.\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Wallsend is very easy.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops by Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can attend regular events and workshops at various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\n<strong>For details of these events simply <em>join our email newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong></span></h2>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington, Bedlington, Northumberland &amp; South Shields. We can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><span style=\"color: #008000;\"><strong>Do you offer home visits for Hypnotherapy &amp; NLP Services?</strong></span></h2>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><span style=\"color: #008000;\">Are Online Hypnotherapy Sessions effective?</span></h2>\r\nYes. Online hypnosis sessions are becoming very popular using video software and our clients experience great results.\r\n<h2><strong><span style=\"color: #008000;\">Can I organise a talk or hypnosis demonstration for my organisation?</span>\r\n</strong></h2>\r\nYes of course. We can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do you offer therapy for children and young adults?</strong></span></h2>\r\nWe have a dedicated team member who is a trained expert in child issues. Most of our hypnosis and NLP services are just as effective.\r\nSimply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><strong><span style=\"color: #008000;\">How long is a hypnosis session?</span></strong></h2>\r\nUsually your hypnotherapy or NLP appointment will take about an hour to an hour and a half. We can advise you better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session. </strong></a>\r\n<h2><span style=\"color: #008000;\"><strong>How many hypnosis or NLP sessions do I need?</strong></span></h2>\r\nWe can discuss this better when we talk about your particular issue. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n<h2><strong><span style=\"color: #008000;\">What is hypnosis like to experience?</span>\r\n</strong></h2>\r\nHypnosis is a very relaxed state, quite different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h2>\r\nHypnosis works for most people and provides treat results for the majority of people.\r\nHowever, hypnotherapy may not always the best route for everyone and the good news is that we have many alternatives to use.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval can be found at\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.3049713848686!2d-1.528295284095749!3d55.07291028037695!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb671e16403c025d4!2sNewcastle+Hypnotherapy+in+Seaton+Delaval!5e0!3m2!1sen!2suk!4v1540751587955\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','NEWCASTLE HYPNOTHERAPY IN WALLSEND','','inherit','closed','closed','','2151-revision-v1','','','2018-12-10 17:25:29','2018-12-10 17:25:29','',2151,'https://www.newcastle-hypnotherapy.com/2151-revision-v1/',0,'revision','',0),(2159,1,'2018-12-10 17:57:25','2018-12-10 17:57:25','<strong>You can also find Newcastle Hypnotherapy in Wallsend, Newcastle upon Tyne.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\n<span style=\"color: #008000;\"><strong>You can find our Wallsend Practice at:\r\n</strong></span><span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Wallsend location, we have a choice of therapy rooms for individual sessions.\r\nWe also run workshops and training events from the spacious main hall including the regular <strong>Wednesday Workshops</strong>.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Wallsend.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers a range of Clinical Hypnosis and NLP Services to help clients with a wide range of issues and problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Home Page</a> </strong>for more information on the issues clinical hypnosis and NLP can help with.\r\n<h2><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Wallsend?</strong></span></h2>\r\nNewcastle Hypnotherapy is very easy to find at<span class=\"LrzXr\"><strong> 31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\n</strong>We are just around the corner from Wallsend Metro Station and there is plenty of parking available.\r\n</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged by request.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Your Free Phone </span></strong><span style=\"color: #008000;\">Consultation</span></h2>\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free 15 minute phone consultation</strong></a> to disscuss your issue, answer your questions and put a stratergy plan together for moving forward. You can arrange your session by calling us on 07568 455 809 or you can book online below.\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Wallsend is very easy.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops by Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can attend regular events and workshops at various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\n<strong>For details of these events simply <em>join our email newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong></span></h2>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington, Bedlington, Northumberland &amp; South Shields. We can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><span style=\"color: #008000;\"><strong>Do you offer home visits for Hypnotherapy &amp; NLP Services?</strong></span></h2>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><span style=\"color: #008000;\">Are Online Hypnotherapy Sessions effective?</span></h2>\r\nYes. Online hypnosis sessions are becoming very popular using video software and our clients experience great results.\r\n<h2><strong><span style=\"color: #008000;\">Can I organise a talk or hypnosis demonstration for my organisation?</span>\r\n</strong></h2>\r\nYes of course. We can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do you offer therapy for children and young adults?</strong></span></h2>\r\nWe have a dedicated team member who is a trained expert in child issues. Most of our hypnosis and NLP services are just as effective.\r\nSimply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><strong><span style=\"color: #008000;\">How long is a hypnosis session?</span></strong></h2>\r\nUsually your hypnotherapy or NLP appointment will take about an hour to an hour and a half. We can advise you better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session. </strong></a>\r\n<h2><span style=\"color: #008000;\"><strong>How many hypnosis or NLP sessions do I need?</strong></span></h2>\r\nWe can discuss this better when we talk about your particular issue. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n<h2><strong><span style=\"color: #008000;\">What is hypnosis like to experience?</span>\r\n</strong></h2>\r\nHypnosis is a very relaxed state, quite different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h2>\r\nHypnosis works for most people and provides treat results for the majority of people.\r\nHowever, hypnotherapy may not always the best route for everyone and the good news is that we have many alternatives to use.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do you teach Self-Hypnosis?</strong></span></h2>\r\nWe teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis isvery to learn and a great way to control your states, reducing anxiety and stress. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h2><span style=\"color: #008000;\"><strong>How fast can we arrange a hypnosis or NLP appointment?</strong></span></h2>\r\nThe fastest way to arrange your hypnotherapy appointment is to  <strong><em>give Mark a call on 07568 455 809.\r\n</em></strong>If your situation is urgent we can usually arrange your session quickly. Normally sessions can be arrange within a day or so.\r\n<h2><span style=\"color: #008000;\"><strong>How much are hypnotherapy NLP sessions?</strong></span></h2>\r\nCurrent rates can be found <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking two hypnosis session together.\r\nPlease remember we offer you a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you.\r\n<h2><strong><span style=\"color: #008000;\">How soon will I see results with hypnosis?</span>\r\n</strong></h2>\r\nResults can really vary as everyone is different. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Wallsend can be found at\r\n\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our Wallsend Practice, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"></div>','NEWCASTLE HYPNOTHERAPY IN WALLSEND','','inherit','closed','closed','','2151-revision-v1','','','2018-12-10 17:57:25','2018-12-10 17:57:25','',2151,'https://www.newcastle-hypnotherapy.com/2151-revision-v1/',0,'revision','',0),(2158,1,'2018-12-10 17:29:33','2018-12-10 17:29:33','<strong>You can also find Newcastle Hypnotherapy in Wallsend, Newcastle upon Tyne.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\n<span style=\"color: #008000;\"><strong>You can find our Wallsend Practice at:\r\n</strong></span><span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Wallsend location, we have a choice of therapy rooms for individual sessions.\r\nWe also run workshops and training events from the spacious main hall including the regular <strong>Wednesday Workshops</strong>.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Wallsend.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers a range of Clinical Hypnosis and NLP Services to help clients with a wide range of issues and problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Home Page</a> </strong>for more information on the issues clinical hypnosis and NLP can help with.\r\n<h2><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Wallsend?</strong></span></h2>\r\nNewcastle Hypnotherapy is very easy to find at<span class=\"LrzXr\"><strong> 31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\n</strong>We are just around the corner from Wallsend Metro Station and there is plenty of parking available.\r\n</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged by request.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Your Free Phone </span></strong><span style=\"color: #008000;\">Consultation</span></h2>\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free 15 minute phone consultation</strong></a> to disscuss your issue, answer your questions and put a stratergy plan together for moving forward. You can arrange your session by calling us on 07568 455 809 or you can book online below.\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Wallsend is very easy.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops by Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can attend regular events and workshops at various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\n<strong>For details of these events simply <em>join our email newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong></span></h2>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington, Bedlington, Northumberland &amp; South Shields. We can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><span style=\"color: #008000;\"><strong>Do you offer home visits for Hypnotherapy &amp; NLP Services?</strong></span></h2>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><span style=\"color: #008000;\">Are Online Hypnotherapy Sessions effective?</span></h2>\r\nYes. Online hypnosis sessions are becoming very popular using video software and our clients experience great results.\r\n<h2><strong><span style=\"color: #008000;\">Can I organise a talk or hypnosis demonstration for my organisation?</span>\r\n</strong></h2>\r\nYes of course. We can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do you offer therapy for children and young adults?</strong></span></h2>\r\nWe have a dedicated team member who is a trained expert in child issues. Most of our hypnosis and NLP services are just as effective.\r\nSimply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><strong><span style=\"color: #008000;\">How long is a hypnosis session?</span></strong></h2>\r\nUsually your hypnotherapy or NLP appointment will take about an hour to an hour and a half. We can advise you better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session. </strong></a>\r\n<h2><span style=\"color: #008000;\"><strong>How many hypnosis or NLP sessions do I need?</strong></span></h2>\r\nWe can discuss this better when we talk about your particular issue. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n<h2><strong><span style=\"color: #008000;\">What is hypnosis like to experience?</span>\r\n</strong></h2>\r\nHypnosis is a very relaxed state, quite different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h2>\r\nHypnosis works for most people and provides treat results for the majority of people.\r\nHowever, hypnotherapy may not always the best route for everyone and the good news is that we have many alternatives to use.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do you teach Self-Hypnosis?</strong></span></h2>\r\nWe teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis isvery to learn and a great way to control your states, reducing anxiety and stress. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval can be found at\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.3049713848686!2d-1.528295284095749!3d55.07291028037695!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb671e16403c025d4!2sNewcastle+Hypnotherapy+in+Seaton+Delaval!5e0!3m2!1sen!2suk!4v1540751587955\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','NEWCASTLE HYPNOTHERAPY IN WALLSEND','','inherit','closed','closed','','2151-revision-v1','','','2018-12-10 17:29:33','2018-12-10 17:29:33','',2151,'https://www.newcastle-hypnotherapy.com/2151-revision-v1/',0,'revision','',0),(2160,1,'2018-12-10 18:01:57','2018-12-10 18:01:57','<strong>You can also find Newcastle Hypnotherapy in Wallsend, Newcastle upon Tyne.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\n<span style=\"color: #008000;\"><strong>You can find our Wallsend Practice at:\r\n</strong></span><span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Wallsend location, we have a choice of therapy rooms for individual sessions.\r\nWe also run workshops and training events from the spacious main hall including the regular <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshops</strong>.</a>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Wallsend.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers a range of Clinical Hypnosis and NLP Services to help clients with a wide range of issues and problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Home Page</a> </strong>for more information on the issues clinical hypnosis and NLP can help with.\r\n<h2><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Wallsend?</strong></span></h2>\r\nNewcastle Hypnotherapy is very easy to find at<span class=\"LrzXr\"><strong> 31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\n</strong>We are just around the corner from Wallsend Metro Station and there is plenty of parking available.\r\n</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged by request.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Your Free Phone </span></strong><span style=\"color: #008000;\">Consultation</span></h2>\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free 15 minute phone consultation</strong></a> to disscuss your issue, answer your questions and put a stratergy plan together for moving forward. You can arrange your session by calling us on 07568 455 809 or you can book online below.\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Wallsend is very easy.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops by Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can attend regular events and workshops at various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\n<strong>For details of these events simply <em>join our email newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong></span></h2>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington, Bedlington, Northumberland &amp; South Shields. We can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><span style=\"color: #008000;\"><strong>Do you offer home visits for Hypnotherapy &amp; NLP Services?</strong></span></h2>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><span style=\"color: #008000;\">Are Online Hypnotherapy Sessions effective?</span></h2>\r\nYes. Online hypnosis sessions are becoming very popular using video software and our clients experience great results.\r\n<h2><strong><span style=\"color: #008000;\">Can I organise a talk or hypnosis demonstration for my organisation?</span>\r\n</strong></h2>\r\nYes of course. We can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do you offer therapy for children and young adults?</strong></span></h2>\r\nWe have a dedicated team member who is a trained expert in child issues. Most of our hypnosis and NLP services are just as effective.\r\nSimply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><strong><span style=\"color: #008000;\">How long is a hypnosis session?</span></strong></h2>\r\nUsually your hypnotherapy or NLP appointment will take about an hour to an hour and a half. We can advise you better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session. </strong></a>\r\n<h2><span style=\"color: #008000;\"><strong>How many hypnosis or NLP sessions do I need?</strong></span></h2>\r\nWe can discuss this better when we talk about your particular issue. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n<h2><strong><span style=\"color: #008000;\">What is hypnosis like to experience?</span>\r\n</strong></h2>\r\nHypnosis is a very relaxed state, quite different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h2>\r\nHypnosis works for most people and provides treat results for the majority of people.\r\nHowever, hypnotherapy may not always the best route for everyone and the good news is that we have many alternatives to use.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do you teach Self-Hypnosis?</strong></span></h2>\r\nWe teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis isvery to learn and a great way to control your states, reducing anxiety and stress. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h2><span style=\"color: #008000;\"><strong>How fast can we arrange a hypnosis or NLP appointment?</strong></span></h2>\r\nThe fastest way to arrange your hypnotherapy appointment is to  <strong><em>give Mark a call on 07568 455 809.\r\n</em></strong>If your situation is urgent we can usually arrange your session quickly. Normally sessions can be arrange within a day or so.\r\n<h2><span style=\"color: #008000;\"><strong>How much are hypnotherapy NLP sessions?</strong></span></h2>\r\nCurrent rates can be found <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking two hypnosis session together.\r\nPlease remember we offer you a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you.\r\n<h2><strong><span style=\"color: #008000;\">How soon will I see results with hypnosis?</span>\r\n</strong></h2>\r\nResults can really vary as everyone is different. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Wallsend can be found at\r\n\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our Wallsend Practice, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"></div>','NEWCASTLE HYPNOTHERAPY IN WALLSEND','','inherit','closed','closed','','2151-revision-v1','','','2018-12-10 18:01:57','2018-12-10 18:01:57','',2151,'https://www.newcastle-hypnotherapy.com/2151-revision-v1/',0,'revision','',0);
INSERT INTO `wpqj_posts` VALUES (2161,1,'2018-12-10 18:03:28','2018-12-10 18:03:28','<strong>You can also find Newcastle Hypnotherapy in Wallsend, Newcastle upon Tyne.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Wallsend\" width=\"300\" height=\"198\" />\r\n\r\n<span style=\"color: #008000;\"><strong>You can find our Wallsend Practice at:\r\n</strong></span><span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Wallsend location, we have a choice of therapy rooms for individual sessions.\r\nWe also run workshops and training events from the spacious main hall including the regular <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshops</strong>.</a>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Wallsend.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers a range of Clinical Hypnosis and NLP Services to help clients with a wide range of issues and problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Home Page</a> </strong>for more information on the issues clinical hypnosis and NLP can help with.\r\n<h2><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Wallsend?</strong></span></h2>\r\nNewcastle Hypnotherapy is very easy to find at<span class=\"LrzXr\"><strong> 31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\n</strong>We are just around the corner from Wallsend Metro Station and there is plenty of parking available.\r\n</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged by request.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Your Free Phone </span></strong><span style=\"color: #008000;\">Consultation</span></h2>\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free 15 minute phone consultation</strong></a> to disscuss your issue, answer your questions and put a stratergy plan together for moving forward. You can arrange your session by calling us on 07568 455 809 or you can book online below.\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Wallsend is very easy.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops by Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can attend regular events and workshops at various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\n<strong>For details of these events simply <em>join our email newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong></span></h2>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington, Bedlington, Northumberland &amp; South Shields. We can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><span style=\"color: #008000;\"><strong>Do you offer home visits for Hypnotherapy &amp; NLP Services?</strong></span></h2>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><span style=\"color: #008000;\">Are Online Hypnotherapy Sessions effective?</span></h2>\r\nYes. Online hypnosis sessions are becoming very popular using video software and our clients experience great results.\r\n<h2><strong><span style=\"color: #008000;\">Can I organise a talk or hypnosis demonstration for my organisation?</span>\r\n</strong></h2>\r\nYes of course. We can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do you offer therapy for children and young adults?</strong></span></h2>\r\nWe have a dedicated team member who is a trained expert in child issues. Most of our hypnosis and NLP services are just as effective.\r\nSimply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><strong><span style=\"color: #008000;\">How long is a hypnosis session?</span></strong></h2>\r\nUsually your hypnotherapy or NLP appointment will take about an hour to an hour and a half. We can advise you better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session. </strong></a>\r\n<h2><span style=\"color: #008000;\"><strong>How many hypnosis or NLP sessions do I need?</strong></span></h2>\r\nWe can discuss this better when we talk about your particular issue. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n<h2><strong><span style=\"color: #008000;\">What is hypnosis like to experience?</span>\r\n</strong></h2>\r\nHypnosis is a very relaxed state, quite different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h2>\r\nHypnosis works for most people and provides treat results for the majority of people.\r\nHowever, hypnotherapy may not always the best route for everyone and the good news is that we have many alternatives to use.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do you teach Self-Hypnosis?</strong></span></h2>\r\nWe teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis isvery to learn and a great way to control your states, reducing anxiety and stress. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h2><span style=\"color: #008000;\"><strong>How fast can we arrange a hypnosis or NLP appointment?</strong></span></h2>\r\nThe fastest way to arrange your hypnotherapy appointment is to  <strong><em>give Mark a call on 07568 455 809.\r\n</em></strong>If your situation is urgent we can usually arrange your session quickly. Normally sessions can be arrange within a day or so.\r\n<h2><span style=\"color: #008000;\"><strong>How much are hypnotherapy NLP sessions?</strong></span></h2>\r\nCurrent rates can be found <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking two hypnosis session together.\r\nPlease remember we offer you a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you.\r\n<h2><strong><span style=\"color: #008000;\">How soon will I see results with hypnosis?</span>\r\n</strong></h2>\r\nResults can really vary as everyone is different. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Wallsend can be found at\r\n\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our Wallsend Practice, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"></div>','NEWCASTLE HYPNOTHERAPY IN WALLSEND','','inherit','closed','closed','','2151-revision-v1','','','2018-12-10 18:03:28','2018-12-10 18:03:28','',2151,'https://www.newcastle-hypnotherapy.com/2151-revision-v1/',0,'revision','',0),(2162,1,'2018-12-10 18:08:48','2018-12-10 18:08:48','<strong>You can also find Newcastle Hypnotherapy in Wallsend, Newcastle upon Tyne.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Wallsend\" width=\"300\" height=\"198\" />\r\n\r\n<span style=\"color: #008000;\"><strong>You can find our Wallsend Practice at:\r\n</strong></span><span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\n<span class=\"LrzXr\">\r\n</span>At our Wallsend location, we have a choice of therapy rooms for individual sessions.\r\nWe also run workshops and training events from the spacious main hall including the regular <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshops</strong>.</a>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Wallsend.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers a range of Clinical Hypnosis and NLP Services to help clients with a wide range of issues and problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Home Page</a> </strong>for more information on the issues clinical hypnosis and NLP can help with.\r\n<h2><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Wallsend?</strong></span></h2>\r\nNewcastle Hypnotherapy is very easy to find at<span class=\"LrzXr\"><strong> 31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\n</strong>We are just around the corner from Wallsend Metro Station and there is plenty of parking available.\r\n</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged by request.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Your Free Phone </span></strong><span style=\"color: #008000;\">Consultation</span></h2>\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free 15 minute phone consultation</strong></a> to disscuss your issue, answer your questions and put a stratergy plan together for moving forward. You can arrange your session by calling us on 07568 455 809 or you can book online below.\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Wallsend is very easy.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops by Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can attend regular events and workshops at various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\n<strong>For details of these events simply <em>join our email newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Facebook Group</span></strong></h2>\r\nHere you can discuss hypnosis, NLP, EFT and the regular events we arrange or take part of.\r\n<span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit our </strong><strong>Facebook</strong><strong> Group Here</strong></a></span>\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong></span></h2>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington, Bedlington, Northumberland &amp; South Shields. We can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><span style=\"color: #008000;\"><strong>Do you offer home visits for Hypnotherapy &amp; NLP Services?</strong></span></h2>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><span style=\"color: #008000;\">Are Online Hypnotherapy Sessions effective?</span></h2>\r\nYes. Online hypnosis sessions are becoming very popular using video software and our clients experience great results.\r\n<h2><strong><span style=\"color: #008000;\">Can I organise a talk or hypnosis demonstration for my organisation?</span>\r\n</strong></h2>\r\nYes of course. We can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do you offer therapy for children and young adults?</strong></span></h2>\r\nWe have a dedicated team member who is a trained expert in child issues. Most of our hypnosis and NLP services are just as effective.\r\nSimply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><strong><span style=\"color: #008000;\">How long is a hypnosis session?</span></strong></h2>\r\nUsually your hypnotherapy or NLP appointment will take about an hour to an hour and a half. We can advise you better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session. </strong></a>\r\n<h2><span style=\"color: #008000;\"><strong>How many hypnosis or NLP sessions do I need?</strong></span></h2>\r\nWe can discuss this better when we talk about your particular issue. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n<h2><strong><span style=\"color: #008000;\">What is hypnosis like to experience?</span>\r\n</strong></h2>\r\nHypnosis is a very relaxed state, quite different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h2>\r\nHypnosis works for most people and provides treat results for the majority of people.\r\nHowever, hypnotherapy may not always the best route for everyone and the good news is that we have many alternatives to use.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do you teach Self-Hypnosis?</strong></span></h2>\r\nWe teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis isvery to learn and a great way to control your states, reducing anxiety and stress. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h2><span style=\"color: #008000;\"><strong>How fast can we arrange a hypnosis or NLP appointment?</strong></span></h2>\r\nThe fastest way to arrange your hypnotherapy appointment is to  <strong><em>give Mark a call on 07568 455 809.\r\n</em></strong>If your situation is urgent we can usually arrange your session quickly. Normally sessions can be arrange within a day or so.\r\n<h2><span style=\"color: #008000;\"><strong>How much are hypnotherapy NLP sessions?</strong></span></h2>\r\nCurrent rates can be found <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking two hypnosis session together.\r\nPlease remember we offer you a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you.\r\n<h2><strong><span style=\"color: #008000;\">How soon will I see results with hypnosis?</span>\r\n</strong></h2>\r\nResults can really vary as everyone is different. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Wallsend can be found at\r\n\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our Wallsend Practice, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"></div>','NEWCASTLE HYPNOTHERAPY IN WALLSEND','','inherit','closed','closed','','2151-revision-v1','','','2018-12-10 18:08:48','2018-12-10 18:08:48','',2151,'https://www.newcastle-hypnotherapy.com/2151-revision-v1/',0,'revision','',0),(2163,1,'2018-12-10 18:09:44','2018-12-10 18:09:44',' ','','','publish','closed','closed','','2163','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=2163',42,'nav_menu_item','',0),(2164,1,'2018-12-10 18:11:45','2018-12-10 18:11:45','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n<span style=\"font-family: Arial;\"><strong>You can read our hypnotherapy client feedback below.</strong></span>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></p>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy or NLP Session?</strong></span></h2>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong>Bedlington</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15-minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-10 18:11:45','2018-12-10 18:11:45','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2165,1,'2018-12-11 13:10:50','2018-12-11 13:10:50','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Linguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications and previously spent many years learning Self-Hypnosis and NLP for himself.\r\nStarting in his teems, Mark has always been very passionate about personal development, nutrition and health and has enjoyed training others in many areas.\r\n\r\nMark enjoys speaking at events such as The Mind, Body, Spirit Fair at The Vault each month. Topics include Hypnotherapy, Self-Hypnosis, Neuro-Linguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnosis and NLP skills.\r\n\r\n<span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span>\r\n\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clinical Hypnotherapy, NLP and other modern techniques. He also works in many other areas.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n<h2><span style=\"color: #008000;\"><strong>Yvette Spoor</strong></span></h2>\r\nYvette is a passionate Occupational Therapist, a Practitioner of Neuro-Linguistic Programming and is also skilled in many other areas including family and child work.\r\n\r\nShe has many years of experience within the NHS and also enjoys specialist work in many other areas, helping people with anxiety and stress problems.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including</span></strong>\r\n<ul>\r\n 	<li><strong>NLP</strong> - Neuro Linguistic Programming</li>\r\n 	<li><strong>Hypnotherapy</strong></li>\r\n 	<li><strong>EFT</strong> - Emotional Freedom Technique</li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Coaching</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Nutritional Therapy\r\n</strong> and other useful techniques.</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<ul>\r\n 	<li><strong>Anxiety</strong></li>\r\n 	<li><strong>Depression</strong></li>\r\n 	<li><strong>Stress &amp; Stress Management</strong></li>\r\n 	<li><strong>Anger Management</strong></li>\r\n 	<li><strong>Phobias </strong></li>\r\n 	<li><strong>Pain &amp; Chronic Pain Management</strong></li>\r\n 	<li><strong>Weight Loss &amp; Weight Management</strong></li>\r\n 	<li><strong>Addiction - Alcohol &amp; Habits</strong></li>\r\n 	<li><strong>Smoking Cessation</strong></li>\r\n 	<li><strong>Grief Counselling</strong></li>\r\n 	<li><strong>Confidence Building</strong></li>\r\n 	<li><strong>IBS - Irritable Bowel Syndrome</strong></li>\r\n 	<li><strong>Tinnitus</strong></li>\r\n 	<li><strong>Sleep Disorders</strong></li>\r\n 	<li><strong>Allergies</strong></li>\r\n 	<li><strong>Food Intolerances</strong></li>\r\n</ul>\r\n<h3><span style=\"color: #008000;\"><strong>Where do we work?</strong></span></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong>Bedlington</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n</ul>\r\nOur Main Office Address is <span class=\"LrzXr\"><strong>31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ</strong>.\r\n<strong>Tel 07568 455 809</strong></span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">contact us.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\">Click here to arrange your free consultation.</span></a>\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £79 for a 1 to 1.5-hour session.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour to an hour and a half although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 to arrange your free 15-minute consultation.</span></strong></h3>\r\n&nbsp;','ABOUT US','','inherit','closed','closed','','43-revision-v1','','','2018-12-11 13:10:50','2018-12-11 13:10:50','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(2167,1,'2018-12-11 22:49:25','2018-12-11 22:49:25','<strong>You can also find Newcastle Hypnotherapy in Wallsend, Newcastle upon Tyne.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Wallsend\" width=\"300\" height=\"198\" />\r\n\r\n<span style=\"color: #008000;\"><strong>You can find our Wallsend Practice at:\r\n</strong></span><span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\nAt our Wallsend location, we have a choice of comfortable therapy rooms for individual sessions.\r\nWe also run workshops and training events from the spacious main hall including the regular <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshops</strong>.</a>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy in Wallsend.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers a range of Clinical Hypnosis and NLP Services to help clients with a wide range of issues and problems.\r\nWe specialize in hypnosis for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, habits, behaviours and many other issues.\r\nVisit our <strong><a href=\"https://www.newcastle-hypnotherapy.com\">Home Page</a> </strong>for more information on the issues clinical hypnosis and NLP can help with.\r\n<h2><span style=\"color: #008000;\">How to find <strong>Newcastle Hypnotherapy in Wallsend?</strong></span></h2>\r\nNewcastle Hypnotherapy is very easy to find at<span class=\"LrzXr\"><strong> 31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\n</strong>We are just around the corner from Wallsend Metro Station and there is plenty of parking available.\r\n</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged by request.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Your Free Phone </span></strong><span style=\"color: #008000;\">Consultation</span></h2>\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free 15 minute phone consultation</strong></a> to disscuss your issue, answer your questions and put a stratergy plan together for moving forward. You can arrange your session by calling us on 07568 455 809 or you can book online below.\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Wallsend is very easy.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops by Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can attend regular events and workshops at various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\n<strong>For details of these events simply <em>join our email newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Facebook Group</span></strong></h2>\r\nHere you can discuss hypnosis, NLP, EFT and the regular events we arrange or take part of.\r\n<span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit our </strong><strong>Facebook</strong><strong> Group Here</strong></a></span>\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong></span></h2>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington, Bedlington, Northumberland &amp; South Shields. We can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><span style=\"color: #008000;\"><strong>Do you offer home visits for Hypnotherapy &amp; NLP Services?</strong></span></h2>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><span style=\"color: #008000;\">Are Online Hypnotherapy Sessions effective?</span></h2>\r\nYes. Online hypnosis sessions are becoming very popular using video software and our clients experience great results.\r\n<h2><strong><span style=\"color: #008000;\">Can I organise a talk or hypnosis demonstration for my organisation?</span>\r\n</strong></h2>\r\nYes of course. We can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do you offer therapy for children and young adults?</strong></span></h2>\r\nWe have a dedicated team member who is a trained expert in child issues. Most of our hypnosis and NLP services are just as effective.\r\nSimply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h2><strong><span style=\"color: #008000;\">How long is a hypnosis session?</span></strong></h2>\r\nUsually your hypnotherapy or NLP appointment will take about an hour to an hour and a half. We can advise you better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session. </strong></a>\r\n<h2><span style=\"color: #008000;\"><strong>How many hypnosis or NLP sessions do I need?</strong></span></h2>\r\nWe can discuss this better when we talk about your particular issue. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n<h2><strong><span style=\"color: #008000;\">What is hypnosis like to experience?</span>\r\n</strong></h2>\r\nHypnosis is a very relaxed state, quite different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h2>\r\nHypnosis works for most people and provides treat results for the majority of people.\r\nHowever, hypnotherapy may not always the best route for everyone and the good news is that we have many alternatives to use.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do you teach Self-Hypnosis?</strong></span></h2>\r\nWe teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis isvery to learn and a great way to control your states, reducing anxiety and stress. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h2><span style=\"color: #008000;\"><strong>How fast can we arrange a hypnosis or NLP appointment?</strong></span></h2>\r\nThe fastest way to arrange your hypnotherapy appointment is to  <strong><em>give Mark a call on 07568 455 809.\r\n</em></strong>If your situation is urgent we can usually arrange your session quickly. Normally sessions can be arrange within a day or so.\r\n<h2><span style=\"color: #008000;\"><strong>How much are hypnotherapy NLP sessions?</strong></span></h2>\r\nCurrent rates can be found <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking two hypnosis session together.\r\nPlease remember we offer you a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you.\r\n<h2><strong><span style=\"color: #008000;\">How soon will I see results with hypnosis?</span>\r\n</strong></h2>\r\nResults can really vary as everyone is different. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Wallsend can be found at\r\n\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our Wallsend Practice, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"></div>','NEWCASTLE HYPNOTHERAPY IN WALLSEND','','inherit','closed','closed','','2151-revision-v1','','','2018-12-11 22:49:25','2018-12-11 22:49:25','',2151,'https://www.newcastle-hypnotherapy.com/2151-revision-v1/',0,'revision','',0),(2168,1,'2018-12-12 00:13:16','0000-00-00 00:00:00','<strong>Why are people scared of hypnosis or hypnotists?</strong>\r\n<img class=\"alignleft size-medium wp-image-2169\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/01fear-300x199.jpg\" alt=\"Why are people scared of hypnosis or hypnotists\" width=\"300\" height=\"199\" />\r\nPeople can be afraid of anything and usually, it is due to a lack of knowledge or false information.\r\nSo when people are scared of hypnosis or hypnotists it is often down to misleading representation, such as movies or stage shows. Let us look at these false ideas, one by one.\r\n\r\nMovies have often demonised hypnosis or portrayed the idea of an evil hypnotist.\r\nRecently I enjoyed watching a cartoon movie with my young daughter, where a controlling person invented hypno glasses to control superheros. In reality this has never been done.','Why are people scared of hypnosis or hypnotists?','','draft','open','open','','','','','2018-12-12 00:13:16','2018-12-12 00:13:16','',0,'https://www.newcastle-hypnotherapy.com/?p=2168',0,'post','',0),(2169,1,'2018-12-12 00:02:15','2018-12-12 00:02:15','','Anxiety Freedom Workshop','','inherit','open','closed','','01fear','','','2019-01-31 09:40:33','2019-01-31 09:40:33','',2168,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/01fear.jpg',0,'attachment','image/jpeg',0),(2170,1,'2018-12-12 00:13:16','2018-12-12 00:13:16','<strong>Why are people scared of hypnosis or hypnotists?</strong>\r\n<img class=\"alignleft size-medium wp-image-2169\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/01fear-300x199.jpg\" alt=\"Why are people scared of hypnosis or hypnotists\" width=\"300\" height=\"199\" />\r\nPeople can be afraid of anything and usually, it is due to a lack of knowledge or false information.\r\nSo when people are scared of hypnosis or hypnotists it is often down to misleading representation, such as movies or stage shows. Let us look at these false ideas, one by one.\r\n\r\nMovies have often demonised hypnosis or portrayed the idea of an evil hypnotist.\r\nRecently I enjoyed watching a cartoon movie with my young daughter, where a controlling person invented hypno glasses to control superheros. In reality this has never been done.','Why are people scared of hypnosis or hypnotists?','','inherit','closed','closed','','2168-revision-v1','','','2018-12-12 00:13:16','2018-12-12 00:13:16','',2168,'https://www.newcastle-hypnotherapy.com/2168-revision-v1/',0,'revision','',0),(2172,1,'2018-12-15 15:26:16','2018-12-15 15:26:16','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Newcastle Hypnotherapy runs and takes part in many local events, workshops and fairs to promote:\r\n</strong>\r\n<ul>\r\n 	<li>Learn Life Enhancing Skills.</li>\r\n 	<li>Handle Problems &amp; Challenges Better.</li>\r\n 	<li>Build Confidence &amp; Make New Friends.We teach skils in</li>\r\n 	<li>Neuro-Linguistic Programming - NLP,</li>\r\n 	<li>Hypnosis, Self-Hypnosis,</li>\r\n 	<li>Emotional Freedom Technique</li>\r\n</ul>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Events</span></strong></h2>\r\nRuns on the 1st &amp; 3rd Wednesday each month and teachs new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfullness, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nThe Wednesday Workshop runs from The Vault in Wallsend on Wednesday evenings.\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join the <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group</strong></a></span> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-12-15 15:26:16','2018-12-15 15:26:16','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(2173,1,'2018-12-15 15:26:44','2018-12-15 15:26:44','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Newcastle Hypnotherapy runs and takes part in many local events, workshops and fairs to promote:\r\n</strong>\r\n<ul>\r\n 	<li>Learn Life Enhancing Skills.</li>\r\n 	<li>Handle Problems &amp; Challenges Better.</li>\r\n 	<li>Build Confidence &amp; Make New Friends.</li>\r\n</ul>\r\nWe teach skils in\r\n<ul>\r\n 	<li>Neuro-Linguistic Programming - NLP,</li>\r\n 	<li>Hypnosis, Self-Hypnosis,</li>\r\n 	<li>Emotional Freedom Technique</li>\r\n</ul>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Events</span></strong></h2>\r\nRuns on the 1st &amp; 3rd Wednesday each month and teachs new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfullness, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nThe Wednesday Workshop runs from The Vault in Wallsend on Wednesday evenings.\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join the <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group</strong></a></span> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-12-15 15:26:44','2018-12-15 15:26:44','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(2174,1,'2018-12-15 15:26:58','2018-12-15 15:26:58','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Newcastle Hypnotherapy runs and takes part in many local events, workshops and fairs to promote:\r\n</strong>\r\n<ul>\r\n 	<li>Learn Life Enhancing Skills.</li>\r\n 	<li>Handle Problems &amp; Challenges Better.</li>\r\n 	<li>Build Confidence &amp; Make New Friends.</li>\r\n</ul>\r\n&nbsp;\r\n\r\nWe teach skils in\r\n<ul>\r\n 	<li>Neuro-Linguistic Programming - NLP,</li>\r\n 	<li>Hypnosis, Self-Hypnosis,</li>\r\n 	<li>Emotional Freedom Technique</li>\r\n</ul>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Events</span></strong></h2>\r\nRuns on the 1st &amp; 3rd Wednesday each month and teachs new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfullness, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nThe Wednesday Workshop runs from The Vault in Wallsend on Wednesday evenings.\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join the <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group</strong></a></span> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-12-15 15:26:58','2018-12-15 15:26:58','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(2175,1,'2018-12-15 15:27:40','2018-12-15 15:27:40','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Newcastle Hypnotherapy runs and takes part in many local events, workshops and fairs to promote:\r\n</strong>\r\n<ul>\r\n 	<li>Learn Life Enhancing Skills.</li>\r\n 	<li>Handle Problems &amp; Challenges Better.</li>\r\n 	<li>Build Confidence &amp; Make New Friends.</li>\r\n</ul>\r\n&nbsp;\r\n\r\nWe teach skils in\r\n<ul>\r\n 	<li>Neuro-Linguistic Programming - NLP,</li>\r\n 	<li>Hypnosis,</li>\r\n 	<li>Self-Hypnosis,</li>\r\n 	<li>Emotional Freedom Technique - EFT Tapping</li>\r\n</ul>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Events</span></strong></h2>\r\nRuns on the 1st &amp; 3rd Wednesday each month and teachs new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfullness, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nThe Wednesday Workshop runs from The Vault in Wallsend on Wednesday evenings.\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join the <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group</strong></a></span> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-12-15 15:27:40','2018-12-15 15:27:40','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(2176,1,'2018-12-15 15:28:17','2018-12-15 15:28:17','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Newcastle Hypnotherapy regulary run and takes part in many local events, workshops and fairs to promote:\r\n</strong>\r\n<ul>\r\n 	<li>Learn Life Enhancing Skills.</li>\r\n 	<li>Handle Problems &amp; Challenges Better.</li>\r\n 	<li>Build Confidence &amp; Make New Friends.</li>\r\n</ul>\r\n&nbsp;\r\n\r\nWe teach skils in\r\n<ul>\r\n 	<li>Neuro-Linguistic Programming - NLP,</li>\r\n 	<li>Hypnosis,</li>\r\n 	<li>Self-Hypnosis,</li>\r\n 	<li>Emotional Freedom Technique - EFT Tapping</li>\r\n</ul>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Events</span></strong></h2>\r\nRuns on the 1st &amp; 3rd Wednesday each month and teachs new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfullness, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nThe Wednesday Workshop runs from The Vault in Wallsend on Wednesday evenings.\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join the <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group</strong></a></span> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-12-15 15:28:17','2018-12-15 15:28:17','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(2177,1,'2018-12-15 15:29:18','2018-12-15 15:29:18','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Newcastle Hypnotherapy regulary run and takespart in many local events, workshops and fairs to promote:\r\n</strong>\r\n<ul>\r\n 	<li>Learn Life Enhancing Skills.</li>\r\n 	<li>Handle Problems &amp; Challenges Better.</li>\r\n 	<li>Build Confidence &amp; Make New Friends.</li>\r\n</ul>\r\n&nbsp;\r\n\r\nWe teach skils in\r\n<ul>\r\n 	<li>Neuro-Linguistic Programming - NLP,</li>\r\n 	<li>Hypnosis,</li>\r\n 	<li>Self-Hypnosis,</li>\r\n 	<li>Emotional Freedom Technique - EFT Tapping</li>\r\n</ul>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Events</span></strong></h2>\r\nRuns on the 1st &amp; 3rd Wednesday each month and teachs new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfullness, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nThe Wednesday Workshop runs from The Vault in Wallsend on Wednesday evenings.\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join the <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group</strong></a></span> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-12-15 15:29:18','2018-12-15 15:29:18','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(2178,1,'2018-12-15 15:30:10','2018-12-15 15:30:10','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Newcastle Hypnotherapy regulary run and take partt in many local events, workshops and fairs to promote:\r\n</strong>\r\n<ul>\r\n 	<li>Learn Life Enhancing Skills</li>\r\n 	<li>Handle Problems &amp; Challenges Better</li>\r\n 	<li>Build Confidence &amp; Make New Friends</li>\r\n 	<li>Personal Development</li>\r\n</ul>\r\n&nbsp;\r\n\r\nWe teach skils in\r\n<ul>\r\n 	<li>Neuro-Linguistic Programming - NLP,</li>\r\n 	<li>Hypnosis,</li>\r\n 	<li>Self-Hypnosis,</li>\r\n 	<li>Emotional Freedom Technique - EFT Tapping</li>\r\n</ul>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Events</span></strong></h2>\r\nRuns on the 1st &amp; 3rd Wednesday each month and teachs new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfullness, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nThe Wednesday Workshop runs from The Vault in Wallsend on Wednesday evenings.\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join the <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group</strong></a></span> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-12-15 15:30:10','2018-12-15 15:30:10','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(2179,1,'2018-12-15 15:31:15','2018-12-15 15:31:15','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Newcastle Hypnotherapy regulary run and take partt in many local events, workshops and fairs to promote:\r\n</strong>\r\n<ul>\r\n 	<li>Learn Life Enhancing Skills</li>\r\n 	<li>Handle Problems &amp; Challenges Better</li>\r\n 	<li>Build Confidence &amp; Make New Friends</li>\r\n 	<li>Personal Development</li>\r\n</ul>\r\nWe teach skils in\r\n<ul>\r\n 	<li>Neuro-Linguistic Programming - NLP,</li>\r\n 	<li>Hypnosis,</li>\r\n 	<li>Self-Hypnosis,</li>\r\n 	<li>Emotional Freedom Technique - EFT Tapping</li>\r\n</ul>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Events</span></strong></h2>\r\nRuns on the 1st &amp; 3rd Wednesday each month and teachs new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfullness, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nThe Wednesday Workshop runs from The Vault in Wallsend on Wednesday evenings.\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join the <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group</strong></a></span> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-12-15 15:31:15','2018-12-15 15:31:15','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(2180,1,'2018-12-15 15:31:54','2018-12-15 15:31:54','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Newcastle Hypnotherapy regulary run and take partt in many local events, workshops and fairs to promote:\r\n</strong>\r\n<ul>\r\n 	<li>Learn Life Enhancing Skills</li>\r\n 	<li>Handle Problems &amp; Challenges Better</li>\r\n 	<li>Build Confidence &amp; Make New Friends</li>\r\n 	<li>Personal Development</li>\r\n</ul>\r\n<strong>We teach skills in</strong>\r\n<ul>\r\n 	<li>Neuro-Linguistic Programming - NLP,</li>\r\n 	<li>Hypnosis,</li>\r\n 	<li>Self-Hypnosis,</li>\r\n 	<li>Emotional Freedom Technique - EFT Tapping</li>\r\n</ul>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Events</span></strong></h2>\r\nRuns on the 1st &amp; 3rd Wednesday each month and teachs new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfullness, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nThe Wednesday Workshop runs from The Vault in Wallsend on Wednesday evenings.\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join the <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group</strong></a></span> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-12-15 15:31:54','2018-12-15 15:31:54','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(2181,1,'2018-12-15 15:32:47','2018-12-15 15:32:47','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Newcastle Hypnotherapy regulary run and take partt in many local events, workshops and fairs to promote:\r\n</strong>\r\n<ul>\r\n 	<li>Life Enhancing Skills</li>\r\n 	<li>Handle Problems &amp; Challenges Better</li>\r\n 	<li>Build Confidence &amp; Make New Friends</li>\r\n 	<li>Personal Development</li>\r\n</ul>\r\n<strong>We teach skills in</strong>\r\n<ul>\r\n 	<li>Neuro-Linguistic Programming - NLP,</li>\r\n 	<li>Hypnosis,</li>\r\n 	<li>Self-Hypnosis,</li>\r\n 	<li>Emotional Freedom Technique - EFT Tapping</li>\r\n 	<li>Meditation</li>\r\n 	<li>Mindfulness</li>\r\n 	<li>Relaxation</li>\r\n</ul>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Events</span></strong></h2>\r\nRuns on the 1st &amp; 3rd Wednesday each month and teachs new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfullness, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nThe Wednesday Workshop runs from The Vault in Wallsend on Wednesday evenings.\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join the <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group</strong></a></span> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-12-15 15:32:47','2018-12-15 15:32:47','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(2182,1,'2018-12-15 15:33:36','2018-12-15 15:33:36','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Newcastle Hypnotherapy regulary run and take partt in many local events, workshops and fairs to promote:\r\n</strong>\r\n<ul>\r\n 	<li>Life Enhancing Skills</li>\r\n 	<li>Handle Problems &amp; Challenges Better</li>\r\n 	<li>Build Confidence &amp; Make New Friends</li>\r\n 	<li>Personal Development</li>\r\n</ul>\r\n<strong>We teach skills in</strong>\r\n<ul>\r\n 	<li>Neuro-Linguistic Programming - NLP,</li>\r\n 	<li>Hypnosis,</li>\r\n 	<li>Self-Hypnosis,</li>\r\n 	<li>Emotional Freedom Technique - EFT Tapping</li>\r\n 	<li>Meditation</li>\r\n 	<li>Mindfulness</li>\r\n 	<li>Relaxation</li>\r\n 	<li>Many other techniques and skills that really make a difference</li>\r\n</ul>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Events</span></strong></h2>\r\nRuns on the 1st &amp; 3rd Wednesday each month and teachs new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfullness, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nThe Wednesday Workshop runs from The Vault in Wallsend on Wednesday evenings.\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join the <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group</strong></a></span> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-12-15 15:33:36','2018-12-15 15:33:36','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(2183,1,'2018-12-15 15:34:45','2018-12-15 15:34:45','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Newcastle Hypnotherapy regulary run and take partt in many local events, workshops and fairs to promote:\r\n</strong>\r\n<ul>\r\n 	<li>Life Enhancing Skills</li>\r\n 	<li>Handle Problems &amp; Challenges Better</li>\r\n 	<li>Build Confidence &amp; Make New Friends</li>\r\n 	<li>Personal Development</li>\r\n</ul>\r\n<strong>We teach skills in</strong>\r\n<ul>\r\n 	<li>Neuro-Linguistic Programming - NLP,</li>\r\n 	<li>Hypnosis,</li>\r\n 	<li>Self-Hypnosis,</li>\r\n 	<li>Emotional Freedom Technique - EFT Tapping</li>\r\n 	<li>Meditation</li>\r\n 	<li>Mindfulness</li>\r\n 	<li>Relaxation</li>\r\n 	<li>Many other techniques and skills that really make a difference</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Events</span></strong></h2>\r\nTypicall runs on the 1st &amp; 3rd Wednesday of each month and teachs new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfullness, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nThe Wednesday Workshop runs from The Vault in Wallsend on Wednesday evenings.\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join the <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group</strong></a></span> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-12-15 15:34:45','2018-12-15 15:34:45','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(2184,1,'2018-12-15 15:35:41','2018-12-15 15:35:41','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Newcastle Hypnotherapy regularly runs and take part in many local events, workshops and fairs to promote:\r\n</strong>\r\n<ul>\r\n 	<li>Life Enhancing Skills</li>\r\n 	<li>Handle Problems &amp; Challenges Better</li>\r\n 	<li>Build Confidence &amp; Make New Friends</li>\r\n 	<li>Personal Development</li>\r\n</ul>\r\n<strong>We teach skills in</strong>\r\n<ul>\r\n 	<li>Neuro-Linguistic Programming - NLP,</li>\r\n 	<li>Hypnosis,</li>\r\n 	<li>Self-Hypnosis,</li>\r\n 	<li>Emotional Freedom Technique - EFT Tapping</li>\r\n 	<li>Meditation</li>\r\n 	<li>Mindfulness</li>\r\n 	<li>Relaxation</li>\r\n 	<li>Many other techniques and skills that really make a difference</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Events</span></strong></h2>\r\nTypically runs on the 1st &amp; 3rd Wednesday of each month and teaches new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nThe Wednesday Workshop runs from The Vault in Wallsend on Wednesday evenings.\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join the <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group</strong></a></span> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-12-15 15:35:41','2018-12-15 15:35:41','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(2185,1,'2018-12-15 16:19:03','2018-12-15 16:19:03','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Newcastle Hypnotherapy regularly runs and take part in many local events, workshops, trainings and fairs to promote:\r\n</strong>\r\n<ul>\r\n 	<li>Life Enhancing Skills</li>\r\n 	<li>Handle Problems &amp; Challenges Better</li>\r\n 	<li>Build Confidence &amp; Make New Friends</li>\r\n 	<li>Personal Development</li>\r\n 	<li>Good Mental Health</li>\r\n</ul>\r\n<strong>We teach skills in</strong>\r\n<ul>\r\n 	<li>Neuro-Linguistic Programming - NLP,</li>\r\n 	<li>Hypnosis,</li>\r\n 	<li>Self-Hypnosis,</li>\r\n 	<li>Emotional Freedom Technique - EFT Tapping</li>\r\n 	<li>Meditation</li>\r\n 	<li>Mindfulness</li>\r\n 	<li>Relaxation</li>\r\n 	<li>Many other techniques and skills that really make a difference</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Events</span></strong></h2>\r\nTypically runs on the 1st &amp; 3rd Wednesday of each month and teaches new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nThe Wednesday Workshop runs from The Vault in Wallsend on Wednesday evenings.\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join the <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group</strong></a></span> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-12-15 16:19:03','2018-12-15 16:19:03','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(2186,1,'2018-12-15 16:19:55','2018-12-15 16:19:55','<img class=\"alignleft wp-image-1312 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/33020620_10155862105224398_5832396550940131328_n-300x169.jpg\" alt=\"events &amp; workshops newcastle hypnotherapy\" width=\"300\" height=\"169\" /><strong>Newcastle Hypnotherapy regularly runs and take part in many local events, workshops, trainings and fairs to promote:\r\n</strong>\r\n<ul>\r\n 	<li>Life Enhancing Skills</li>\r\n 	<li>Handle Problems &amp; Challenges Better</li>\r\n 	<li>Build Confidence &amp; Make New Friends</li>\r\n 	<li>Personal Development</li>\r\n 	<li>Good Mental Health</li>\r\n</ul>\r\n<strong>We teach skills in</strong>\r\n<ul>\r\n 	<li>Neuro-Linguistic Programming - NLP,</li>\r\n 	<li>Hypnosis,</li>\r\n 	<li>Self-Hypnosis,</li>\r\n 	<li>Emotional Freedom Technique - EFT Tapping</li>\r\n 	<li>Meditation</li>\r\n 	<li>Mindfulness</li>\r\n 	<li>Relaxation</li>\r\n 	<li>Many other techniques and skills that really can make a difference.</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Wednesday Workshop Events</span></strong></h2>\r\nTypically runs on the 1st &amp; 3rd Wednesday of each month and teaches new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nThe Wednesday Workshop runs from The Vault in Wallsend on Wednesday evenings.\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join the <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Wednesday Workshop Facebook Group</strong></a></span> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2018-12-15 16:19:55','2018-12-15 16:19:55','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(2189,1,'2018-12-15 16:30:32','2018-12-15 16:30:32','&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"embed-container\"></div>\r\n<h2><strong>Self Hypnosis Introduction Workshop\r\nHosted by Newcastle Hypnotherapy\r\n</strong></h2>\r\n<strong>New events to be announced shorlty</strong><strong> - see the newsletter below\r\n</strong>\r\n<iframe src=\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/QDixy8yh1Q0\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-12-15 16:30:32','2018-12-15 16:30:32','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(2191,1,'2018-12-15 16:32:29','2018-12-15 16:32:29','&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"embed-container\"></div>\r\n<h2><strong>Self Hypnosis Introduction Workshop\r\nHosted by Newcastle Hypnotherapy\r\n</strong></h2>\r\n<strong>New events to be announced shorlty</strong><strong> - see the newsletter below\r\n</strong>\r\n<iframe src=\"https://www.youtube.com/embed/QDixy8yh1Q0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2018-12-15 16:32:29','2018-12-15 16:32:29','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(2192,1,'2018-12-16 13:34:54','2018-12-16 13:34:54','<strong> Newcastle Hypnotherapy Bedlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Bedlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>Our hypnotherapy practice based in Bedlington, Northumberland is perfect for individual sessions and for our regular group workshops. You can find more information below.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\r\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>1 Vulcan Pl, Bedlington, Northumberland, NE22 5DN.\r\n</strong>We are located inside the wonderful Heaven and Earth Holistic Centre, at the heart of the Bedlington community.\r\nThere is always plenty of free car parking over the road from the holistic centre.</span>\r\n\r\n<img class=\"alignleft size-medium wp-image-2200\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/hcmp73767_285476-300x225.jpeg\" alt=\"newcastle hypnotherapy bedlington\" width=\"300\" height=\"225\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n&nbsp;\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h4>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will I need?</strong></span></h4>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person.  The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','Bedlington Hypnotherapy Practice','','publish','closed','closed','','bedlington-hypnotherapy-practice-northumberland','','','2018-12-20 17:09:10','2018-12-20 17:09:10','',0,'https://www.newcastle-hypnotherapy.com/?page_id=2192',0,'page','',0),(2200,1,'2018-12-16 12:43:40','2018-12-16 12:43:40','','newcastle hypnotherapy bedlington','','inherit','open','closed','','hcmp73767_285476','','','2018-12-16 12:44:07','2018-12-16 12:44:07','',2192,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/hcmp73767_285476.jpeg',0,'attachment','image/jpeg',0),(2199,1,'2018-12-16 11:42:11','2018-12-16 11:42:11','<strong>You can also find Newcastle Hypnotherapy in Bedlington, Northumberland.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\n<strong><span style=\"color: #008000;\">You can find our Bedlington Hypnotherapy Practice at:\r\n</span></strong>\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\n<span class=\"LrzXr\">\r\n</span>Our hypnotherapy practice based in Bedlington, Northumberland is perfect for individual sessions and for our regular group workshops. You can find more information below.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\r\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>1 Vulcan Pl, Bedlington, Northumberland, NE22 5DN.\r\n</strong>We are located inside the wonderful Heaven and Earth Holistic Centre, at the heart of the Bedlington community.\r\nThere is always plenty of free carparking over the road from the holistic centre.\r\n</span>\r\n\r\n<strong>Opening Hours. Call to arrange your appointment on 07568 455 809.</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h2>\r\nYes, we host regular workshops, events and trainings from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<strong>Are there other locations for Newcastle Hypnotherapy?</strong>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Can you provide Hypnotherapy Services at my home or workplace?</strong>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Is Online Hypnotherapy as effective as personal appointments?</strong>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n\r\n<strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer help and services for children or young adults?</strong>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is a experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long is a hypnosis session?</strong>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indictaion during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many appointments will I need?</strong>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues 2 to 3 sessions are enough to reolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n\r\n<strong>I have not experienced hypnotherapy before, what can I expect?\r\n</strong>Hypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnosis work for everyone?\r\n</strong>Hypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person.  The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>I would like to learn learn Self-Hypnosis. How should I start?</strong>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How much do you charge for sessions?</strong>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval can be found at\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.3049713848686!2d-1.528295284095749!3d55.07291028037695!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb671e16403c025d4!2sNewcastle+Hypnotherapy+in+Seaton+Delaval!5e0!3m2!1sen!2suk!4v1540751587955\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','Newcastle Hypnotherapy Bedlington','','inherit','closed','closed','','2192-revision-v1','','','2018-12-16 11:42:11','2018-12-16 11:42:11','',2192,'https://www.newcastle-hypnotherapy.com/2192-revision-v1/',0,'revision','',0),(2193,1,'2018-12-15 18:02:31','2018-12-15 18:02:31','<strong>You can also find Newcastle Hypnotherapy in Bedlington, Northumberland.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\n<strong><span style=\"color: #008000;\">You can find our Bedlington Hypnotherapy Practice at:\r\n</span></strong>\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong>\r\n\r\n<strong>Tel 07568 455 809.+</strong></span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>Our hypnotherapy practice based in Bedlington, Northumberland is perfect for individual sessions and for our regular group workshops.\r\nYou can find more information below.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\r\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnotherapy work for everyone?\r\n</strong>Hypnosis works for most people and provides good results for most people. However, hypnotherapy is not always the best route for every client or always the best route for every issue. The good news is that we have many alternatives we can use. NLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval can be found at\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.3049713848686!2d-1.528295284095749!3d55.07291028037695!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb671e16403c025d4!2sNewcastle+Hypnotherapy+in+Seaton+Delaval!5e0!3m2!1sen!2suk!4v1540751587955\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','Newcastle Hypnotherapy Bedlington','','inherit','closed','closed','','2192-revision-v1','','','2018-12-15 18:02:31','2018-12-15 18:02:31','',2192,'https://www.newcastle-hypnotherapy.com/2192-revision-v1/',0,'revision','',0),(2194,1,'2018-12-15 18:02:39','2018-12-15 18:02:39','<strong>You can also find Newcastle Hypnotherapy in Bedlington, Northumberland.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\n<strong><span style=\"color: #008000;\">You can find our Bedlington Hypnotherapy Practice at:\r\n</span></strong>\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.+</strong>\r\n\r\n<span class=\"LrzXr\">\r\n</span>Our hypnotherapy practice based in Bedlington, Northumberland is perfect for individual sessions and for our regular group workshops.\r\nYou can find more information below.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\r\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnotherapy work for everyone?\r\n</strong>Hypnosis works for most people and provides good results for most people. However, hypnotherapy is not always the best route for every client or always the best route for every issue. The good news is that we have many alternatives we can use. NLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval can be found at\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.3049713848686!2d-1.528295284095749!3d55.07291028037695!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb671e16403c025d4!2sNewcastle+Hypnotherapy+in+Seaton+Delaval!5e0!3m2!1sen!2suk!4v1540751587955\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','Newcastle Hypnotherapy Bedlington','','inherit','closed','closed','','2192-revision-v1','','','2018-12-15 18:02:39','2018-12-15 18:02:39','',2192,'https://www.newcastle-hypnotherapy.com/2192-revision-v1/',0,'revision','',0),(2195,1,'2018-12-15 18:03:04','2018-12-15 18:03:04','<strong>You can also find Newcastle Hypnotherapy in Bedlington, Northumberland.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\n<strong><span style=\"color: #008000;\">You can find our Bedlington Hypnotherapy Practice at:\r\n</span></strong>\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.+</strong>\r\n\r\n<span class=\"LrzXr\">\r\n</span>Our hypnotherapy practice based in Bedlington, Northumberland is perfect for individual sessions and for our regular group workshops. You can find more information below.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\r\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n</strong>We are located above <strong><a href=\"https://www.food-for-thought-uk.co.uk/\">Food For Thought</a></strong>, the popular health food store and next door to <strong>Seaton Valley Council</strong>.</span>\r\n\r\n<strong>Opening Hours.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Earlier and later hypnosis appointments can be arranged on request. Call 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Seaton Delaval is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nAlternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h2>\r\nYes, we run regular events and workshops from various locations in the North East.\r\nThese include Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You may unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy in Seaton Delaval</strong></span></h2>\r\n<strong>Hypnotherapy near me. Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also practice Hypnosis and other services in Wallsend, Newcastle upon Tyne, Cramlington &amp; Bedlington, Northumberland.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnotherapy work for everyone?\r\n</strong>Hypnosis works for most people and provides good results for most people. However, hypnotherapy is not always the best route for every client or always the best route for every issue. The good news is that we have many alternatives we can use. NLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval can be found at\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.3049713848686!2d-1.528295284095749!3d55.07291028037695!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb671e16403c025d4!2sNewcastle+Hypnotherapy+in+Seaton+Delaval!5e0!3m2!1sen!2suk!4v1540751587955\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','Newcastle Hypnotherapy Bedlington','','inherit','closed','closed','','2192-revision-v1','','','2018-12-15 18:03:04','2018-12-15 18:03:04','',2192,'https://www.newcastle-hypnotherapy.com/2192-revision-v1/',0,'revision','',0),(2196,1,'2018-12-15 18:18:00','2018-12-15 18:18:00','<strong>You can also find Newcastle Hypnotherapy in Bedlington, Northumberland.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\n<strong><span style=\"color: #008000;\">You can find our Bedlington Hypnotherapy Practice at:\r\n</span></strong>\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\n<span class=\"LrzXr\">\r\n</span>Our hypnotherapy practice based in Bedlington, Northumberland is perfect for individual sessions and for our regular group workshops. You can find more information below.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\r\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>1 Vulcan Pl, Bedlington, Northumberland, NE22 5DN.\r\n</strong>We are located inside the wonderful Heaven and Earth Holistic Centre, at the heart of the Bedlington community.\r\nThere is always plenty of free carparking over the road from the holistic centre.\r\n</span>\r\n\r\n<strong>Opening Hours. Call to arrange your appointment on 07568 455 809.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h2>\r\nYes, we host regular workshops, events and trainings from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<strong>Is this the only location for Newcastle Hypnotherapy?</strong>\r\nWe also have practice locations  in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>.\r\nWe can usually find a location suitable for you. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Do you offer home visits for Hypnotherapy Services?</strong>\r\nYes, we can offer home visits if you are unable to come to us. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Are Online Hypnotherapy Sessions as effective as face to face appointments?</strong>\r\nIn many situations yes. Online hypnosis sessions are becoming very popular using video software. For certain problems and issues, clients can certainly experience the same positive benefits as face to face hypnotherapy.\r\n\r\n<strong>Can you arrange a talk or demonstration for clubs, schools, organisations, charities and companies?</strong>\r\nCertainly. We regularly attend events to give talks regarding hypnosis and NLP to explain how it can help.\r\nWe can provide talks and workshops for a very large range of subjects and health issues. These can be tailored to your needs and for small or large numbers of people. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer therapy for children?</strong>\r\nOf course. Many of our hypnosis therapies are suitable for everyone and we also have a team member who is a trained expert in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long will my hypnosis session last?</strong>\r\nUsually, a hypnotherapy or NLP appointment will take an hour to an hour and a half. We can advise better during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many hypnosis or NLP sessions will I need?</strong>\r\nThis will vary on your issue and what you would like as an outcome. We can discuss this better when we talk. For most issues, 2 sessions are enough and if required we can add in extra hypnosis sessions as required.\r\n\r\n<strong>I have not experienced hypnosis before, what is it like?</strong>\r\nHypnosis is a very relaxed state, very different to sleep. Our clients say they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnotherapy work for everyone?\r\n</strong>Hypnosis works for most people and provides good results for most people. However, hypnotherapy is not always the best route for every client or always the best route for every issue. The good news is that we have many alternatives we can use. NLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval can be found at\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.3049713848686!2d-1.528295284095749!3d55.07291028037695!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb671e16403c025d4!2sNewcastle+Hypnotherapy+in+Seaton+Delaval!5e0!3m2!1sen!2suk!4v1540751587955\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','Newcastle Hypnotherapy Bedlington','','inherit','closed','closed','','2192-revision-v1','','','2018-12-15 18:18:00','2018-12-15 18:18:00','',2192,'https://www.newcastle-hypnotherapy.com/2192-revision-v1/',0,'revision','',0),(2198,1,'2018-12-16 11:39:13','2018-12-16 11:39:13','<strong>You can also find Newcastle Hypnotherapy in Bedlington, Northumberland.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\n<strong><span style=\"color: #008000;\">You can find our Bedlington Hypnotherapy Practice at:\r\n</span></strong>\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\n<span class=\"LrzXr\">\r\n</span>Our hypnotherapy practice based in Bedlington, Northumberland is perfect for individual sessions and for our regular group workshops. You can find more information below.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\r\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>1 Vulcan Pl, Bedlington, Northumberland, NE22 5DN.\r\n</strong>We are located inside the wonderful Heaven and Earth Holistic Centre, at the heart of the Bedlington community.\r\nThere is always plenty of free carparking over the road from the holistic centre.\r\n</span>\r\n\r\n<strong>Opening Hours. Call to arrange your appointment on 07568 455 809.</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h2>\r\nYes, we host regular workshops, events and trainings from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<strong>Are there other locations for Newcastle Hypnotherapy?</strong>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Can you provide Hypnotherapy Services at my home or workplace?</strong>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Is Online Hypnotherapy as effective as personal appointments?</strong>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n\r\n<strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer help and services for children or young adults?</strong>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is a experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long is a hypnosis session?</strong>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indictaion during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many appointments will I need?</strong>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues 2 to 3 sessions are enough to reolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n\r\n<strong>I have not experienced hypnotherapy before, what can I expect?\r\n</strong>Hypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnosis work for everyone?\r\n</strong>Hypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person.  The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>I would like to learn learn Self-Hypnosis. How should I start?</strong>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How much do you charge for sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval can be found at\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.3049713848686!2d-1.528295284095749!3d55.07291028037695!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb671e16403c025d4!2sNewcastle+Hypnotherapy+in+Seaton+Delaval!5e0!3m2!1sen!2suk!4v1540751587955\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','Newcastle Hypnotherapy Bedlington','','inherit','closed','closed','','2192-revision-v1','','','2018-12-16 11:39:13','2018-12-16 11:39:13','',2192,'https://www.newcastle-hypnotherapy.com/2192-revision-v1/',0,'revision','',0),(2197,1,'2018-12-15 19:01:57','2018-12-15 19:01:57','<strong>You can also find Newcastle Hypnotherapy in Bedlington, Northumberland.</strong>\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy in Seaton Delaval\" width=\"300\" height=\"198\" />\r\n\r\n<strong><span style=\"color: #008000;\">You can find our Bedlington Hypnotherapy Practice at:\r\n</span></strong>\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\n<span class=\"LrzXr\">\r\n</span>Our hypnotherapy practice based in Bedlington, Northumberland is perfect for individual sessions and for our regular group workshops. You can find more information below.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\r\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>1 Vulcan Pl, Bedlington, Northumberland, NE22 5DN.\r\n</strong>We are located inside the wonderful Heaven and Earth Holistic Centre, at the heart of the Bedlington community.\r\nThere is always plenty of free carparking over the road from the holistic centre.\r\n</span>\r\n\r\n<strong>Opening Hours. Call to arrange your appointment on 07568 455 809.</strong>\r\n<strong>Monday</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday</strong> 9.00 am to 1.00pm\r\n<strong>Wednesday</strong> 9.00 am to 5.00 pm\r\n<strong>Thursday</strong> 9.00 am to 8.00 pm\r\n<strong>Friday</strong> 9.00 am to 1.00 pm\r\n<strong>Saturday</strong> 9.00 am to 5.00 pm\r\n<strong>Sunday</strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h2>\r\nYes, we host regular workshops, events and trainings from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<strong>Are there other locations for Newcastle Hypnotherapy?</strong>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Can you provide Hypnotherapy Services at my home or workplace?</strong>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Is Online Hypnotherapy as effective as personal appointments?</strong>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n\r\n<strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer help and services for children or young adults?</strong>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is a experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long is a hypnosis session?</strong>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indictaion during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many appointments will I need?</strong>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues 2 to 3 sessions are enough to reolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n\r\n<strong>I have not experienced hypnotherapy before, what can I expect?\r\n</strong>Hypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnosis work for everyone?\r\n</strong>Hypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person.  The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>How can I learn Self-Hypnosis?</strong>\r\nYes. We do teach <strong><a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong> in our regular workshops and events. Self-Hypnosis is easy to learn and a great way to control your states, reducing stress and anxiety. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How quickly can I arrange my hypnotherapy appointment?</strong>\r\nAt most times we can arrange an appointment within a few days and if urgent we may be able to see you sooner. The fastest way to arrange your hypnotherapy appointment is to <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">contact us</a></strong> or to <strong><em>give Mark a call on 07568 455 809.</em></strong>\r\n\r\n<strong>How much are my hypnotherapy sessions?</strong>\r\nYou can find our current rates for hypnosis and NLP <strong><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><em>when booking your session here</em></a></strong>. You may also access discounts when booking more than one hypnosis session. Do remember we offer everyone a <em>free 15 min phone </em>strategy<em> session</em> to look at your issue and the best way forward for you, without obligation.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval can be found at\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.3049713848686!2d-1.528295284095749!3d55.07291028037695!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb671e16403c025d4!2sNewcastle+Hypnotherapy+in+Seaton+Delaval!5e0!3m2!1sen!2suk!4v1540751587955\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','Newcastle Hypnotherapy Bedlington','','inherit','closed','closed','','2192-revision-v1','','','2018-12-15 19:01:57','2018-12-15 19:01:57','',2192,'https://www.newcastle-hypnotherapy.com/2192-revision-v1/',0,'revision','',0),(2202,1,'2018-12-16 12:51:44','2018-12-16 12:51:44','<strong>You can also find Newcastle Hypnotherapy in Bedlington, Northumberland.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n\r\n<strong><span style=\"color: #008000;\">You can find our Bedlington Hypnotherapy Practice at:\r\n</span></strong>\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\n<span class=\"LrzXr\">\r\n</span>Our hypnotherapy practice based in Bedlington, Northumberland is perfect for individual sessions and for our regular group workshops. You can find more information below.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\r\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>1 Vulcan Pl, Bedlington, Northumberland, NE22 5DN.\r\n</strong>We are located inside the wonderful Heaven and Earth Holistic Centre, at the heart of the Bedlington community.\r\nThere is always plenty of free car parking over the road from the holistic centre.</span>\r\n\r\n<img class=\"alignleft size-medium wp-image-2200\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/hcmp73767_285476-300x225.jpeg\" alt=\"newcastle hypnotherapy bedlington\" width=\"300\" height=\"225\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n&nbsp;\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h2>\r\nYes, we host regular workshops, events and trainings from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<strong>Are there other locations for Newcastle Hypnotherapy?</strong>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Can you provide Hypnotherapy Services at my home or workplace?</strong>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Is Online Hypnotherapy as effective as personal appointments?</strong>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n\r\n<strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer help and services for children or young adults?</strong>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is a experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long is a hypnosis session?</strong>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indictaion during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many appointments will I need?</strong>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues 2 to 3 sessions are enough to reolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n\r\n<strong>I have not experienced hypnotherapy before, what can I expect?\r\n</strong>Hypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnosis work for everyone?\r\n</strong>Hypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person.  The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>I would like to learn learn Self-Hypnosis. How should I start?</strong>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How much do you charge for sessions?</strong>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n\r\n<strong>How fast can hypnotherapy and NLP help me?</strong>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to chnage. Usually change and improvements happen over a period of time. We usually give you excercises to practice inbetween sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval can be found at\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.3049713848686!2d-1.528295284095749!3d55.07291028037695!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb671e16403c025d4!2sNewcastle+Hypnotherapy+in+Seaton+Delaval!5e0!3m2!1sen!2suk!4v1540751587955\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','Newcastle Hypnotherapy Bedlington','','inherit','closed','closed','','2192-revision-v1','','','2018-12-16 12:51:44','2018-12-16 12:51:44','',2192,'https://www.newcastle-hypnotherapy.com/2192-revision-v1/',0,'revision','',0),(2201,1,'2018-12-16 12:44:48','2018-12-16 12:44:48','<strong>You can also find Newcastle Hypnotherapy in Bedlington, Northumberland.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n\r\n<strong><span style=\"color: #008000;\">You can find our Bedlington Hypnotherapy Practice at:\r\n</span></strong>\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\n<span class=\"LrzXr\">\r\n</span>Our hypnotherapy practice based in Bedlington, Northumberland is perfect for individual sessions and for our regular group workshops. You can find more information below.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\r\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>1 Vulcan Pl, Bedlington, Northumberland, NE22 5DN.\r\n</strong>We are located inside the wonderful Heaven and Earth Holistic Centre, at the heart of the Bedlington community.\r\nThere is always plenty of free car parking over the road from the holistic centre.\r\n\r\n<img class=\"alignleft size-medium wp-image-2200\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/hcmp73767_285476-300x225.jpeg\" alt=\"newcastle hypnotherapy bedlington\" width=\"300\" height=\"225\" /></span><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n&nbsp;\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h2>\r\nYes, we host regular workshops, events and trainings from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<strong>Are there other locations for Newcastle Hypnotherapy?</strong>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Can you provide Hypnotherapy Services at my home or workplace?</strong>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Is Online Hypnotherapy as effective as personal appointments?</strong>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n\r\n<strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer help and services for children or young adults?</strong>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is a experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long is a hypnosis session?</strong>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indictaion during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many appointments will I need?</strong>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues 2 to 3 sessions are enough to reolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n\r\n<strong>I have not experienced hypnotherapy before, what can I expect?\r\n</strong>Hypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnosis work for everyone?\r\n</strong>Hypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person.  The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>I would like to learn learn Self-Hypnosis. How should I start?</strong>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How much do you charge for sessions?</strong>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n\r\n<strong>How quickly will I see results with hypnotherapy and NLP?</strong>\r\nEveryone is different and results can vary. As a general rule most clients experience benefits within a few days of their first hypnosis session with a great improvement over the following weeks. Some clients find great results straight after their first hypnosis or NLP session with others taking a little longer. Usually, we will give you some homework to increase your results as quickly as possible.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy in Seaton Delaval can be found at\r\n<span class=\"LrzXr\"><strong>28 Astley Road,\r\nSeaton Delaval,\r\nWhitley Bay,\r\nNewcastle upon Tyne.\r\nNE25 0DG</strong>.\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></span>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.3049713848686!2d-1.528295284095749!3d55.07291028037695!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xb671e16403c025d4!2sNewcastle+Hypnotherapy+in+Seaton+Delaval!5e0!3m2!1sen!2suk!4v1540751587955\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','Newcastle Hypnotherapy Bedlington','','inherit','closed','closed','','2192-revision-v1','','','2018-12-16 12:44:48','2018-12-16 12:44:48','',2192,'https://www.newcastle-hypnotherapy.com/2192-revision-v1/',0,'revision','',0),(2203,1,'2018-12-16 13:09:08','2018-12-16 13:09:08','<strong>You can also find Newcastle Hypnotherapy in Bedlington, Northumberland.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n\r\n<strong><span style=\"color: #008000;\">You can find our Bedlington Hypnotherapy Practice at:\r\n</span></strong>\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\n<span class=\"LrzXr\">\r\n</span>Our hypnotherapy practice based in Bedlington, Northumberland is perfect for individual sessions and for our regular group workshops. You can find more information below.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\r\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>1 Vulcan Pl, Bedlington, Northumberland, NE22 5DN.\r\n</strong>We are located inside the wonderful Heaven and Earth Holistic Centre, at the heart of the Bedlington community.\r\nThere is always plenty of free car parking over the road from the holistic centre.</span>\r\n\r\n<img class=\"alignleft size-medium wp-image-2200\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/hcmp73767_285476-300x225.jpeg\" alt=\"newcastle hypnotherapy bedlington\" width=\"300\" height=\"225\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n&nbsp;\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h2>\r\nYes, we host regular workshops, events and trainings from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<strong>Are there other locations for Newcastle Hypnotherapy?</strong>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Can you provide Hypnotherapy Services at my home or workplace?</strong>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Is Online Hypnotherapy as effective as personal appointments?</strong>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n\r\n<strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer help and services for children or young adults?</strong>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is a experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long is a hypnosis session?</strong>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indictaion during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many appointments will I need?</strong>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues 2 to 3 sessions are enough to reolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n\r\n<strong>I have not experienced hypnotherapy before, what can I expect?\r\n</strong>Hypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnosis work for everyone?\r\n</strong>Hypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person.  The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>I would like to learn learn Self-Hypnosis. How should I start?</strong>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How much do you charge for sessions?</strong>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n\r\n<strong>How fast can hypnotherapy and NLP help me?</strong>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to chnage. Usually change and improvements happen over a period of time. We usually give you excercises to practice inbetween sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2281.0087640675843!2d-1.5946707841325156!3d55.13062418039156!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487e0ccc50239fd3%3A0x50121ca24649a355!2s1+Vulcan+Pl%2C+Bedlington+NE22+5DN!5e0!3m2!1sen!2suk!4v1544965648980\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe></div>','Newcastle Hypnotherapy Bedlington','','inherit','closed','closed','','2192-revision-v1','','','2018-12-16 13:09:08','2018-12-16 13:09:08','',2192,'https://www.newcastle-hypnotherapy.com/2192-revision-v1/',0,'revision','',0),(2205,1,'2018-12-16 13:16:57','2018-12-16 13:16:57','<strong> Newcastle Hypnotherapy Bedlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n\r\n<strong><span style=\"color: #008000;\">You can find our Bedlington Hypnotherapy Practice at:\r\n</span></strong>\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\n<span class=\"LrzXr\">\r\n</span>Our hypnotherapy practice based in Bedlington, Northumberland is perfect for individual sessions and for our regular group workshops. You can find more information below.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\r\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>1 Vulcan Pl, Bedlington, Northumberland, NE22 5DN.\r\n</strong>We are located inside the wonderful Heaven and Earth Holistic Centre, at the heart of the Bedlington community.\r\nThere is always plenty of free car parking over the road from the holistic centre.</span>\r\n\r\n<img class=\"alignleft size-medium wp-image-2200\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/hcmp73767_285476-300x225.jpeg\" alt=\"newcastle hypnotherapy bedlington\" width=\"300\" height=\"225\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n&nbsp;\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h2>\r\nYes, we host regular workshops, events and trainings from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<strong>Are there other locations for Newcastle Hypnotherapy?</strong>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Can you provide Hypnotherapy Services at my home or workplace?</strong>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Is Online Hypnotherapy as effective as personal appointments?</strong>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n\r\n<strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer help and services for children or young adults?</strong>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is a experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long is a hypnosis session?</strong>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indictaion during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many appointments will I need?</strong>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues 2 to 3 sessions are enough to reolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n\r\n<strong>I have not experienced hypnotherapy before, what can I expect?\r\n</strong>Hypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnosis work for everyone?\r\n</strong>Hypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person.  The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>I would like to learn learn Self-Hypnosis. How should I start?</strong>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How much do you charge for sessions?</strong>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n\r\n<strong>How fast can hypnotherapy and NLP help me?</strong>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to chnage. Usually change and improvements happen over a period of time. We usually give you excercises to practice inbetween sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2281.0087640675843!2d-1.5946707841325156!3d55.13062418039156!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487e0ccc50239fd3%3A0x50121ca24649a355!2s1+Vulcan+Pl%2C+Bedlington+NE22+5DN!5e0!3m2!1sen!2suk!4v1544965648980\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','Newcastle Hypnotherapy Bedlington','','inherit','closed','closed','','2192-revision-v1','','','2018-12-16 13:16:57','2018-12-16 13:16:57','',2192,'https://www.newcastle-hypnotherapy.com/2192-revision-v1/',0,'revision','',0),(2204,1,'2018-12-16 13:14:15','2018-12-16 13:14:15','<strong> Newcastle Hypnotherapy Bedlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n\r\n<strong><span style=\"color: #008000;\">You can find our Bedlington Hypnotherapy Practice at:\r\n</span></strong>\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\n<span class=\"LrzXr\">\r\n</span>Our hypnotherapy practice based in Bedlington, Northumberland is perfect for individual sessions and for our regular group workshops. You can find more information below.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\r\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>1 Vulcan Pl, Bedlington, Northumberland, NE22 5DN.\r\n</strong>We are located inside the wonderful Heaven and Earth Holistic Centre, at the heart of the Bedlington community.\r\nThere is always plenty of free car parking over the road from the holistic centre.</span>\r\n\r\n<img class=\"alignleft size-medium wp-image-2200\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/hcmp73767_285476-300x225.jpeg\" alt=\"newcastle hypnotherapy bedlington\" width=\"300\" height=\"225\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n&nbsp;\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h2>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h2>\r\nYes, we host regular workshops, events and trainings from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<strong>Are there other locations for Newcastle Hypnotherapy?</strong>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Can you provide Hypnotherapy Services at my home or workplace?</strong>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>Is Online Hypnotherapy as effective as personal appointments?</strong>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n\r\n<strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n\r\n<strong>Do you offer help and services for children or young adults?</strong>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is a experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n\r\n<strong>How long is a hypnosis session?</strong>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indictaion during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n\r\n<strong>How many appointments will I need?</strong>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues 2 to 3 sessions are enough to reolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n\r\n<strong>I have not experienced hypnotherapy before, what can I expect?\r\n</strong>Hypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n\r\n<strong>Does hypnosis work for everyone?\r\n</strong>Hypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person.  The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n\r\n<strong>I would like to learn learn Self-Hypnosis. How should I start?</strong>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\"><strong>The Wednesday Workshops.</strong></a>\r\n\r\n<strong>How much do you charge for sessions?</strong>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n\r\n<strong>How fast can hypnotherapy and NLP help me?</strong>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to chnage. Usually change and improvements happen over a period of time. We usually give you excercises to practice inbetween sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2281.0087640675843!2d-1.5946707841325156!3d55.13062418039156!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487e0ccc50239fd3%3A0x50121ca24649a355!2s1+Vulcan+Pl%2C+Bedlington+NE22+5DN!5e0!3m2!1sen!2suk!4v1544965648980\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','Newcastle Hypnotherapy Bedlington','','inherit','closed','closed','','2192-revision-v1','','','2018-12-16 13:14:15','2018-12-16 13:14:15','',2192,'https://www.newcastle-hypnotherapy.com/2192-revision-v1/',0,'revision','',0),(2206,1,'2018-12-16 13:27:58','2018-12-16 13:27:58','<strong> Newcastle Hypnotherapy Bedlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n\r\n<strong><span style=\"color: #008000;\">You can find our Bedlington Hypnotherapy Practice at:\r\n</span></strong>\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\n<span class=\"LrzXr\">\r\n</span>Our hypnotherapy practice based in Bedlington, Northumberland is perfect for individual sessions and for our regular group workshops. You can find more information below.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\r\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>1 Vulcan Pl, Bedlington, Northumberland, NE22 5DN.\r\n</strong>We are located inside the wonderful Heaven and Earth Holistic Centre, at the heart of the Bedlington community.\r\nThere is always plenty of free car parking over the road from the holistic centre.</span>\r\n\r\n<img class=\"alignleft size-medium wp-image-2200\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/hcmp73767_285476-300x225.jpeg\" alt=\"newcastle hypnotherapy bedlington\" width=\"300\" height=\"225\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n&nbsp;\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h4>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and trainings from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is a experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indictaion during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will I need?</strong></span></h4>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues 2 to 3 sessions are enough to reolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><strong>Does hypnosis work for everyone?</strong></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person.  The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to chnage. Usually change and improvements happen over a period of time. We usually give you excercises to practice inbetween sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2281.0087640675843!2d-1.5946707841325156!3d55.13062418039156!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487e0ccc50239fd3%3A0x50121ca24649a355!2s1+Vulcan+Pl%2C+Bedlington+NE22+5DN!5e0!3m2!1sen!2suk!4v1544965648980\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','Newcastle Hypnotherapy Bedlington','','inherit','closed','closed','','2192-revision-v1','','','2018-12-16 13:27:58','2018-12-16 13:27:58','',2192,'https://www.newcastle-hypnotherapy.com/2192-revision-v1/',0,'revision','',0),(2207,1,'2018-12-16 13:31:27','2018-12-16 13:31:27','<strong> Newcastle Hypnotherapy Bedlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n\r\n<strong><span style=\"color: #008000;\">You can find our Bedlington Hypnotherapy Practice at:\r\n</span></strong>\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\n<span class=\"LrzXr\">\r\n</span>Our hypnotherapy practice based in Bedlington, Northumberland is perfect for individual sessions and for our regular group workshops. You can find more information below.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\r\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>1 Vulcan Pl, Bedlington, Northumberland, NE22 5DN.\r\n</strong>We are located inside the wonderful Heaven and Earth Holistic Centre, at the heart of the Bedlington community.\r\nThere is always plenty of free car parking over the road from the holistic centre.</span>\r\n\r\n<img class=\"alignleft size-medium wp-image-2200\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/hcmp73767_285476-300x225.jpeg\" alt=\"newcastle hypnotherapy bedlington\" width=\"300\" height=\"225\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n&nbsp;\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h4>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and trainings from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is a experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indictaion during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will I need?</strong></span></h4>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues 2 to 3 sessions are enough to reolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><strong>Does hypnosis work for everyone?</strong></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person.  The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to chnage. Usually change and improvements happen over a period of time. We usually give you excercises to practice inbetween sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2281.0087640675843!2d-1.5946707841325156!3d55.13062418039156!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487e0ccc50239fd3%3A0x50121ca24649a355!2s1+Vulcan+Pl%2C+Bedlington+NE22+5DN!5e0!3m2!1sen!2suk!4v1544965648980\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>','Newcastle Hypnotherapy Bedlington','','inherit','closed','closed','','2192-revision-v1','','','2018-12-16 13:31:27','2018-12-16 13:31:27','',2192,'https://www.newcastle-hypnotherapy.com/2192-revision-v1/',0,'revision','',0),(2208,1,'2018-12-16 13:34:54','2018-12-16 13:34:54','<strong> Newcastle Hypnotherapy Bedlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n\r\n<strong><span style=\"color: #008000;\">You can find our Bedlington Hypnotherapy Practice at:\r\n</span></strong>\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\n<span class=\"LrzXr\">\r\n</span>Our hypnotherapy practice based in Bedlington, Northumberland is perfect for individual sessions and for our regular group workshops. You can find more information below.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\r\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>1 Vulcan Pl, Bedlington, Northumberland, NE22 5DN.\r\n</strong>We are located inside the wonderful Heaven and Earth Holistic Centre, at the heart of the Bedlington community.\r\nThere is always plenty of free car parking over the road from the holistic centre.</span>\r\n\r\n<img class=\"alignleft size-medium wp-image-2200\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/hcmp73767_285476-300x225.jpeg\" alt=\"newcastle hypnotherapy bedlington\" width=\"300\" height=\"225\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n&nbsp;\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h4>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will I need?</strong></span></h4>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person.  The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong>Bedlington</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','Newcastle Hypnotherapy Bedlington','','inherit','closed','closed','','2192-revision-v1','','','2018-12-16 13:34:54','2018-12-16 13:34:54','',2192,'https://www.newcastle-hypnotherapy.com/2192-revision-v1/',0,'revision','',0),(2209,1,'2018-12-16 13:38:42','2018-12-16 13:38:42','<strong> Newcastle Hypnotherapy Bedlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">You can find our Bedlington Hypnotherapy Practice at:\r\n</span></strong>\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span></h4>\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\n<span class=\"LrzXr\">\r\n</span>Our hypnotherapy practice based in Bedlington, Northumberland is perfect for individual sessions and for our regular group workshops. You can find more information below.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\r\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>1 Vulcan Pl, Bedlington, Northumberland, NE22 5DN.\r\n</strong>We are located inside the wonderful Heaven and Earth Holistic Centre, at the heart of the Bedlington community.\r\nThere is always plenty of free car parking over the road from the holistic centre.</span>\r\n\r\n<img class=\"alignleft size-medium wp-image-2200\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/hcmp73767_285476-300x225.jpeg\" alt=\"newcastle hypnotherapy bedlington\" width=\"300\" height=\"225\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n&nbsp;\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h4>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will I need?</strong></span></h4>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person.  The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong>Bedlington</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','Newcastle Hypnotherapy Bedlington','','inherit','closed','closed','','2192-revision-v1','','','2018-12-16 13:38:42','2018-12-16 13:38:42','',2192,'https://www.newcastle-hypnotherapy.com/2192-revision-v1/',0,'revision','',0),(2210,1,'2018-12-20 17:08:52','2018-12-20 17:08:52','<strong> Newcastle Hypnotherapy Bedlington Practice.</strong>\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\n<h4><strong><span style=\"color: #008000;\">Your Bedlington Hypnotherapy Practice:</span></strong></h4>\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\n<strong>Bedlington,</strong>\n<strong>Northumberland</strong>\n<strong>NE22 5DN\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\n\n<span class=\"LrzXr\">\n</span>Our hypnotherapy practice based in Bedlington, Northumberland is perfect for individual sessions and for our regular group workshops. You can find more information below.\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington.\n</strong></span></h2>\nNewcastle Hypnotherapy offers professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviours and many other issues.\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>1 Vulcan Pl, Bedlington, Northumberland, NE22 5DN.\n</strong>We are located inside the wonderful Heaven and Earth Holistic Centre, at the heart of the Bedlington community.\nThere is always plenty of free car parking over the road from the holistic centre.</span>\n\n<img class=\"alignleft size-medium wp-image-2200\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/hcmp73767_285476-300x225.jpeg\" alt=\"newcastle hypnotherapy bedlington\" width=\"300\" height=\"225\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\n</strong>\n<strong>Monday -</strong> 9.00 am to 8.00 pm\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\n<strong>Friday - </strong> 9.00 am to 1.00 pm\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\n\n&nbsp;\n\n<strong>Other hypnosis appointment times can be arranged on request.\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\n<h4><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h4>\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone on 07568 455 809 or book online.\n<ol>\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\n</strong></li>\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\n</ol>\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\n</strong>\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h4>\nYes, we host regular workshops, events and training from various locations in the North East including Bedlington.\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\nFor details of these events simply <em>join our email newsletter below.</em>\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\n</strong></span></h2>\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\nYes, we can certainly offer home or work visits if you are unable to come to us.\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\nClients certainly experience the same successful benefits as face to face hypnotherapy.\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\nWe can give a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\n<h4><span style=\"color: #008000;\"><strong>How many appointments will I need?</strong></span></h4>\nThis may vary on your problem and we can advise better during your free session or first appointment.\nFor most issues, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\nSome issues are better when handled as a program and we can advise on this when we speak.\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person.  The great news is that we have several alternatives we can use that are just as effective.\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\n</strong>\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\nWe can advise better when you contact us.\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\n\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\nNewcastle Hypnotherapy Bedlington can be found at\n\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\n<strong>Bedlington,</strong>\n<strong>Northumberland</strong>\n<strong>NE22 5DN</strong></span>\n\n<strong>Tel 07568 455 809.</strong>\n\nYou can also learn about our regular events and workshops by joining our newsletter above.\n<div class=\"responsive-map\">\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\n<ul>\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\n 	<li><strong>Cramlington</strong></li>\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\n 	<li><strong>Newcastle City Centre</strong></li>\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\n 	<li><strong>South Shields</strong></li>\n 	<li><strong>Online - by video</strong></li>\n</ul>\n</div>','Bedlington Hypnotherapy Practice','','inherit','closed','closed','','2192-autosave-v1','','','2018-12-20 17:08:52','2018-12-20 17:08:52','',2192,'https://www.newcastle-hypnotherapy.com/2192-autosave-v1/',0,'revision','',0),(2211,1,'2018-12-16 13:40:23','2018-12-16 13:40:23','<strong> Newcastle Hypnotherapy Bedlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Bedlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\n<span class=\"LrzXr\">\r\n</span>Our hypnotherapy practice based in Bedlington, Northumberland is perfect for individual sessions and for our regular group workshops. You can find more information below.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\r\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>1 Vulcan Pl, Bedlington, Northumberland, NE22 5DN.\r\n</strong>We are located inside the wonderful Heaven and Earth Holistic Centre, at the heart of the Bedlington community.\r\nThere is always plenty of free car parking over the road from the holistic centre.</span>\r\n\r\n<img class=\"alignleft size-medium wp-image-2200\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/hcmp73767_285476-300x225.jpeg\" alt=\"newcastle hypnotherapy bedlington\" width=\"300\" height=\"225\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n&nbsp;\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h4>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will I need?</strong></span></h4>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person.  The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong>Bedlington</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','Newcastle Hypnotherapy Bedlington','','inherit','closed','closed','','2192-revision-v1','','','2018-12-16 13:40:23','2018-12-16 13:40:23','',2192,'https://www.newcastle-hypnotherapy.com/2192-revision-v1/',0,'revision','',0),(2212,1,'2018-12-16 13:41:20','2018-12-16 13:41:20','<strong> Newcastle Hypnotherapy Bedlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Bedlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>Our hypnotherapy practice based in Bedlington, Northumberland is perfect for individual sessions and for our regular group workshops. You can find more information below.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\r\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>1 Vulcan Pl, Bedlington, Northumberland, NE22 5DN.\r\n</strong>We are located inside the wonderful Heaven and Earth Holistic Centre, at the heart of the Bedlington community.\r\nThere is always plenty of free car parking over the road from the holistic centre.</span>\r\n\r\n<img class=\"alignleft size-medium wp-image-2200\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/hcmp73767_285476-300x225.jpeg\" alt=\"newcastle hypnotherapy bedlington\" width=\"300\" height=\"225\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n&nbsp;\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h4>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will I need?</strong></span></h4>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person.  The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong>Bedlington</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','Newcastle Hypnotherapy Bedlington','','inherit','closed','closed','','2192-revision-v1','','','2018-12-16 13:41:20','2018-12-16 13:41:20','',2192,'https://www.newcastle-hypnotherapy.com/2192-revision-v1/',0,'revision','',0),(2213,1,'2018-12-16 13:42:59','2018-12-16 13:42:59','<strong> Newcastle Hypnotherapy Bedlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Bedlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>Our hypnotherapy practice based in Bedlington, Northumberland is perfect for individual sessions and for our regular group workshops. You can find more information below.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\r\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>1 Vulcan Pl, Bedlington, Northumberland, NE22 5DN.\r\n</strong>We are located inside the wonderful Heaven and Earth Holistic Centre, at the heart of the Bedlington community.\r\nThere is always plenty of free car parking over the road from the holistic centre.</span>\r\n\r\n<img class=\"alignleft size-medium wp-image-2200\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/hcmp73767_285476-300x225.jpeg\" alt=\"newcastle hypnotherapy bedlington\" width=\"300\" height=\"225\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n&nbsp;\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h4>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will I need?</strong></span></h4>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person.  The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','Newcastle Hypnotherapy Bedlington','','inherit','closed','closed','','2192-revision-v1','','','2018-12-16 13:42:59','2018-12-16 13:42:59','',2192,'https://www.newcastle-hypnotherapy.com/2192-revision-v1/',0,'revision','',0),(2218,1,'2018-12-20 16:47:53','2018-12-20 16:47:53','','south shields hypnotherapy','','inherit','open','closed','','south-shields-hypnotherapy','','','2018-12-20 16:47:53','2018-12-20 16:47:53','',2216,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy.jpeg',0,'attachment','image/jpeg',0),(2217,1,'2018-12-20 16:35:49','2018-12-20 16:35:49','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h2><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h2>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX\r\n\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>Our South Shields hypnotherapy practice is based in White Feather House and perfect for individual sessions, small group sessions and for our regular group workshops and training sessions.\r\n<h2><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers a wide range professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\r\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>1 Vulcan Pl, Bedlington, Northumberland, NE22 5DN.\r\n</strong>We are located inside the wonderful Heaven and Earth Holistic Centre, at the heart of the Bedlington community.\r\nThere is always plenty of free car parking over the road from the holistic centre.</span>\r\n\r\n<img class=\"alignleft size-medium wp-image-2200\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/hcmp73767_285476-300x225.jpeg\" alt=\"newcastle hypnotherapy bedlington\" width=\"300\" height=\"225\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n&nbsp;\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h4>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will I need?</strong></span></h4>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person. The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','South Shields Hypnotherapy','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 16:35:49','2018-12-20 16:35:49','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2219,1,'2018-12-20 16:48:34','2018-12-20 16:48:34','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h2><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h2>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy by Newcastle Hypnotherapy.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful White Feather House, 46 Charlotte Street, South Shields, NE33 1PX<strong>.\r\n</strong><em>Appointments need to be booked on Tel 07568 455 809 in advance </em>please<em>.</em><strong>\r\n\r\n</strong></span><img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n&nbsp;\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h4>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will I need?</strong></span></h4>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person. The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','South Shields Hypnotherapy','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 16:48:34','2018-12-20 16:48:34','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2220,1,'2018-12-20 16:48:43','2018-12-20 16:48:43','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h2><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h2>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy by Newcastle Hypnotherapy.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful White Feather House, 46 Charlotte Street, South Shields, NE33 1PX<strong>.\r\n</strong><em>Appointments need to be booked on Tel 07568 455 809 in advance </em>please<em>.</em></span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n&nbsp;\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h4>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will I need?</strong></span></h4>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person. The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','South Shields Hypnotherapy','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 16:48:43','2018-12-20 16:48:43','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2221,1,'2018-12-20 16:49:05','2018-12-20 16:49:05','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy by Newcastle Hypnotherapy.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful White Feather House, 46 Charlotte Street, South Shields, NE33 1PX<strong>.\r\n</strong><em>Appointments need to be booked on Tel 07568 455 809 in advance </em>please<em>.</em></span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n&nbsp;\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h4>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will I need?</strong></span></h4>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person. The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','South Shields Hypnotherapy','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 16:49:05','2018-12-20 16:49:05','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2222,1,'2018-12-20 16:49:59','2018-12-20 16:49:59','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful White Feather House, 46 Charlotte Street, South Shields, NE33 1PX<strong>.\r\n</strong><em>Appointments need to be booked on Tel 07568 455 809 in advance </em>please<em>.</em></span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n&nbsp;\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h4>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will I need?</strong></span></h4>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person. The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','South Shields Hypnotherapy','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 16:49:59','2018-12-20 16:49:59','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2223,1,'2018-12-20 16:50:38','2018-12-20 16:50:38','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful White Feather House, 46 Charlotte Street, South Shields, NE33 1PX<strong>.\r\n</strong><em>Appointments need to be booked on Tel 07568 455 809 in advance </em>please<em>.</em></span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n&nbsp;\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h4>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will I need?</strong></span></h4>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person. The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','South Shields Hypnotherapy','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 16:50:38','2018-12-20 16:50:38','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2224,1,'2018-12-20 16:51:41','2018-12-20 16:51:41','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong><em>Appointments need to be booked on Tel 07568 455 809 in advance </em>please<em>. </em>Our other locations can be found below.<em>\r\n</em></span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n&nbsp;\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h4>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will I need?</strong></span></h4>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person. The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','South Shields Hypnotherapy','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 16:51:41','2018-12-20 16:51:41','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2225,1,'2018-12-20 16:52:08','2018-12-20 16:52:08','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong><em>Appointments need to be booked on Tel 07568 455 809 in advance </em>please<em>. </em>Our other locations can be found below.<em>\r\n</em></span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h4>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will I need?</strong></span></h4>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person. The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','South Shields Hypnotherapy','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 16:52:08','2018-12-20 16:52:08','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2228,1,'2018-12-20 17:05:25','2018-12-20 17:05:25','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong><em>Appointments need to be booked on Tel 07568 455 809 in advance </em>please<em>. </em>Our other locations can be found below.<em>\r\n</em></span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nWe run regular events, trainings and workshops from the South Shields Hypnotherapy Practice.\r\nJust some of the topics we cover are Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and many more more.\r\nYou can also take part in targeted workshops for Anxiety, Stress, Depression, Confidence, Pain Managemen etc.\r\n<strong>To learn more about these events simply <em>join the newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions &amp; Answers.\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong>Bedlington</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will I need?</strong></span></h4>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person. The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','South Shields Hypnotherapy Practice','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 17:05:25','2018-12-20 17:05:25','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2227,1,'2018-12-20 17:00:48','2018-12-20 17:00:48','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong><em>Appointments need to be booked on Tel 07568 455 809 in advance </em>please<em>. </em>Our other locations can be found below.<em>\r\n</em></span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nWe run regular events, trainings and workshops from the South Shields Hypnotherapy Practice.\r\nJust some of the topics we cover are Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and many more more.\r\nYou can also take part in targeted workshops for Anxiety, Stress, Depression, Confidence, Pain Managemen etc.\r\n<strong>To learn more about these events simply <em>join the newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will I need?</strong></span></h4>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person. The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','South Shields Hypnotherapy','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 17:00:48','2018-12-20 17:00:48','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2226,1,'2018-12-20 16:56:35','2018-12-20 16:56:35','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong><em>Appointments need to be booked on Tel 07568 455 809 in advance </em>please<em>. </em>Our other locations can be found below.<em>\r\n</em></span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will I need?</strong></span></h4>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person. The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','South Shields Hypnotherapy','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 16:56:35','2018-12-20 16:56:35','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2229,1,'2018-12-20 17:09:10','2018-12-20 17:09:10','<strong> Newcastle Hypnotherapy Bedlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Bedlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n\r\n<span class=\"LrzXr\">\r\n</span>Our hypnotherapy practice based in Bedlington, Northumberland is perfect for individual sessions and for our regular group workshops. You can find more information below.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington.\r\n</strong></span></h2>\r\nNewcastle Hypnotherapy offers professional Hypnosis Services along with other modern techniques, helping clients with a wide range of problems. We are specialists in hypnosis, NLP &amp; EFT for <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviours and many other issues.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with.\r\n<h4><span style=\"color: #008000;\">Finding <strong>Newcastle Hypnotherapy in Bedlington, Northumberland?</strong></span></h4>\r\nNewcastle Hypnotherapy is easy to find at <span class=\"LrzXr\"><strong>1 Vulcan Pl, Bedlington, Northumberland, NE22 5DN.\r\n</strong>We are located inside the wonderful Heaven and Earth Holistic Centre, at the heart of the Bedlington community.\r\nThere is always plenty of free car parking over the road from the holistic centre.</span>\r\n\r\n<img class=\"alignleft size-medium wp-image-2200\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/hcmp73767_285476-300x225.jpeg\" alt=\"newcastle hypnotherapy bedlington\" width=\"300\" height=\"225\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n&nbsp;\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Bedlington Hypnotherapy Session?</strong></span></h4>\r\nBooking a session at Newcastle Hypnotherapy in Bedlington is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Alternatively, you can <em>call Mark</em> at Newcastle Hypnotherapy on 07568 455 809.\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Bedlington, Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Bedlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions - Newcastle Hypnotherapy Bedlington\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nWe do have other practice locations. These can be found in <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a>, Newcastle upon Tyne, Cramlington, Northumberland and <a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Seaton Delaval</a>. We can usually find a suitable location for you. Ask about our practice locations when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will I need?</strong></span></h4>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person.  The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','Bedlington Hypnotherapy Practice','','inherit','closed','closed','','2192-revision-v1','','','2018-12-20 17:09:10','2018-12-20 17:09:10','',2192,'https://www.newcastle-hypnotherapy.com/2192-revision-v1/',0,'revision','',0),(2231,1,'2018-12-20 17:29:35','2018-12-20 17:29:35','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong><em>Appointments need to be booked on Tel 07568 455 809 in advance </em>please<em>. </em>Our other locations can be found below.<em>\r\n</em></span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nWe run regular events, trainings and workshops from the South Shields Hypnotherapy Practice.\r\nJust some of the topics we cover are Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and many more more.\r\nYou can also take part in targeted workshops for Anxiety, Stress, Depression, Confidence, Pain Managemen etc.\r\n<strong>To learn more about these events simply <em>join the newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions &amp; Answers.\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy in the North East?\r\n</strong></span></h4>\r\nYes, you can also find us at:\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us as long as the conditions are right.\r\nSimply as about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\">Do you offer online Hypnosis and NLP services?</span></h4>\r\nOnline sessions have become very popular lately. For most issues, online sessions are just as effective as face to face appointments.\r\nSimply ask about online hypnosis sessions when you give us a call.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a talk or demonstration for a organisation?</strong></span></h4>\r\nOf course. We do quite a number of specialist events for companies, charites, groups on a number of subjects.\r\nSimply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you offer help for children and young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nUsually, an appointment will take about and hour and a half for the first session and following sessions are about an hour.\r\nWe can give advise during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How do I know how many appointments I will need?\r\n</strong></span></h4>\r\nOnce we have spoken we can advise better on the number of sessions. Quite often 2 to 3 sessions will see most issues resloved. Some people may require less or more.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person. The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','South Shields Hypnotherapy Practice','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 17:29:35','2018-12-20 17:29:35','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2230,1,'2018-12-20 17:10:49','2018-12-20 17:10:49','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong><em>Appointments need to be booked on Tel 07568 455 809 in advance </em>please<em>. </em>Our other locations can be found below.<em>\r\n</em></span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nWe run regular events, trainings and workshops from the South Shields Hypnotherapy Practice.\r\nJust some of the topics we cover are Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and many more more.\r\nYou can also take part in targeted workshops for Anxiety, Stress, Depression, Confidence, Pain Managemen etc.\r\n<strong>To learn more about these events simply <em>join the newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions &amp; Answers.\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy in the North East?\r\n</strong></span></h4>\r\nYes, you can also find us at:\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nNormally, a hypnosis / NLP appointment will take about and hour and a half.\r\nWe can give a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will I need?</strong></span></h4>\r\nThis may vary on your problem and we can advise better during your free session or first appointment.\r\nFor most issues, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a need to do so.\r\nSome issues are better when handled as a program and we can advise on this when we speak.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person. The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','South Shields Hypnotherapy Practice','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 17:10:49','2018-12-20 17:10:49','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2234,1,'2018-12-20 17:50:45','2018-12-20 17:50:45','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong>White Feather House is very close to the Metro Station and handy for drivers as there is always plenty of car parking near Charlotte Street.<strong>\r\n</strong><em>Appointments need to be booked in advance </em>please<em>. </em>Our other locations can be found below.</span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nWe run regular events, trainings and workshops from the South Shields Hypnotherapy Practice.\r\nJust some of the topics we cover are Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and many more more.\r\nYou can also take part in targeted workshops for Anxiety, Stress, Depression, Confidence, Pain Managemen etc.\r\n<strong>To learn more about these events simply <em>join the newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions &amp; Answers.\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy in the North East?\r\n</strong></span></h4>\r\nYes, you can also find us at:\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us as long as the conditions are right.\r\nSimply as about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\">Do you offer online Hypnosis and NLP services?</span></h4>\r\nOnline sessions have become very popular lately. For most issues, online sessions are just as effective as face to face appointments.\r\nSimply ask about online hypnosis sessions when you give us a call.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a talk or demonstration for a organisation?</strong></span></h4>\r\nOf course. We do quite a number of specialist events for companies, charites, groups on a number of subjects.\r\nSimply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you offer help for children and young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nUsually, an appointment will take about and hour and a half for the first session and following sessions are about an hour.\r\nWe can give advise during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How do I know how many appointments I will need?\r\n</strong></span></h4>\r\nOnce we have spoken we can advise better on the number of sessions. Quite often 2 to 3 sessions will see most issues resloved. Some people may require less or more.\r\n<h4><span style=\"color: #008000;\"><strong>What can I expect in my session?\r\n</strong></span></h4>\r\nHypnosis is a natural focused state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nDuring your session we start by exploring your issues and outcomes. During the hypnosis part of your session, clients state they are fully alert, remembering everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis. How should I start?</strong></span></h4>\r\nSelf-Hypnosis is an amazinig skill to learn as it allows you to control your states, feelings and emotions very quickly.\r\nOnce you learn Self-Hypnosis is gives you power over many issues such as anxiety, stress, depression, habits and behavious.\r\nWe teach self-hypnosis skills to most clients and we can do this through one to one sessions and small group sessions. We also run trainings through the <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops </strong></a>and larger courses<strong>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','South Shields Hypnotherapy Practice','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 17:50:45','2018-12-20 17:50:45','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2232,1,'2018-12-20 17:31:53','2018-12-20 17:31:53','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong>White Feather House is very close to the Metro Station and handy for drivers as there is always plenty of car parking near Charlotte Street.<strong>\r\n</strong><em>Appointments need to be booked on Tel 07568 455 809 in advance </em>please<em>. </em>Our other locations can be found below.<em>\r\n\r\n</em></span><img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nWe run regular events, trainings and workshops from the South Shields Hypnotherapy Practice.\r\nJust some of the topics we cover are Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and many more more.\r\nYou can also take part in targeted workshops for Anxiety, Stress, Depression, Confidence, Pain Managemen etc.\r\n<strong>To learn more about these events simply <em>join the newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions &amp; Answers.\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy in the North East?\r\n</strong></span></h4>\r\nYes, you can also find us at:\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us as long as the conditions are right.\r\nSimply as about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\">Do you offer online Hypnosis and NLP services?</span></h4>\r\nOnline sessions have become very popular lately. For most issues, online sessions are just as effective as face to face appointments.\r\nSimply ask about online hypnosis sessions when you give us a call.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a talk or demonstration for a organisation?</strong></span></h4>\r\nOf course. We do quite a number of specialist events for companies, charites, groups on a number of subjects.\r\nSimply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you offer help for children and young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nUsually, an appointment will take about and hour and a half for the first session and following sessions are about an hour.\r\nWe can give advise during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How do I know how many appointments I will need?\r\n</strong></span></h4>\r\nOnce we have spoken we can advise better on the number of sessions. Quite often 2 to 3 sessions will see most issues resloved. Some people may require less or more.\r\n<h4><span style=\"color: #008000;\"><strong>I have not experienced hypnotherapy before, what can I expect?</strong></span></h4>\r\nHypnosis is a state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nMany clients state they are fully alert during their hypnosis session and they remember everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person. The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','South Shields Hypnotherapy Practice','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 17:31:53','2018-12-20 17:31:53','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2233,1,'2018-12-20 17:35:36','2018-12-20 17:35:36','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong>White Feather House is very close to the Metro Station and handy for drivers as there is always plenty of car parking near Charlotte Street.<strong>\r\n</strong><em>Appointments need to be booked in advance </em>please<em>. </em>Our other locations can be found below.</span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nWe run regular events, trainings and workshops from the South Shields Hypnotherapy Practice.\r\nJust some of the topics we cover are Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and many more more.\r\nYou can also take part in targeted workshops for Anxiety, Stress, Depression, Confidence, Pain Managemen etc.\r\n<strong>To learn more about these events simply <em>join the newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions &amp; Answers.\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy in the North East?\r\n</strong></span></h4>\r\nYes, you can also find us at:\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us as long as the conditions are right.\r\nSimply as about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\">Do you offer online Hypnosis and NLP services?</span></h4>\r\nOnline sessions have become very popular lately. For most issues, online sessions are just as effective as face to face appointments.\r\nSimply ask about online hypnosis sessions when you give us a call.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a talk or demonstration for a organisation?</strong></span></h4>\r\nOf course. We do quite a number of specialist events for companies, charites, groups on a number of subjects.\r\nSimply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you offer help for children and young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nUsually, an appointment will take about and hour and a half for the first session and following sessions are about an hour.\r\nWe can give advise during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How do I know how many appointments I will need?\r\n</strong></span></h4>\r\nOnce we have spoken we can advise better on the number of sessions. Quite often 2 to 3 sessions will see most issues resloved. Some people may require less or more.\r\n<h4><span style=\"color: #008000;\"><strong>What can I expect in my session?\r\n</strong></span></h4>\r\nHypnosis is a natural focused state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nDuring your session we start by exploring your issues and outcomes. During the hypnosis part of your session, clients state they are fully alert, remembering everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Does hypnosis work for everyone?</strong></span></h4>\r\nHypnosis certainly works for most people although some people may be resistant. Hypnotherapy is not always the best method for every person. The great news is that we have several alternatives we can use that are just as effective.\r\nNLP, EFT and other modern techniques can also provide positive benefits when required.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>I would like to learn Self-Hypnosis. How should I start?</strong></span></h4>\r\nWe run regular Self-Hypnosis workshops and it is a useful skill set to learn. Self-Hypnosis is a great way to manage your states, emotions and feelings. We also teach self-hypnosis as part of your one to one sessions and through <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy Bedlington can be found at\r\n\r\n<span class=\"LrzXr\"><strong>1 Vulcan Pl, </strong>\r\n<strong>Bedlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE22 5DN</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','South Shields Hypnotherapy Practice','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 17:35:36','2018-12-20 17:35:36','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2235,1,'2018-12-20 17:56:08','2018-12-20 17:56:08','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong>White Feather House is very close to the Metro Station and handy for drivers as there is always plenty of car parking near Charlotte Street.<strong>\r\n</strong><em>Appointments need to be booked in advance </em>please<em>. </em>Our other locations can be found below.</span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nWe run regular events, trainings and workshops from the South Shields Hypnotherapy Practice.\r\nJust some of the topics we cover are Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and many more more.\r\nYou can also take part in targeted workshops for Anxiety, Stress, Depression, Confidence, Pain Managemen etc.\r\n<strong>To learn more about these events simply <em>join the newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions &amp; Answers.\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy in the North East?\r\n</strong></span></h4>\r\nYes, you can also find us at:\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us as long as the conditions are right.\r\nSimply as about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\">Do you offer online Hypnosis and NLP services?</span></h4>\r\nOnline sessions have become very popular lately. For most issues, online sessions are just as effective as face to face appointments.\r\nSimply ask about online hypnosis sessions when you give us a call.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a talk or demonstration for a organisation?</strong></span></h4>\r\nOf course. We do quite a number of specialist events for companies, charites, groups on a number of subjects.\r\nSimply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you offer help for children and young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nUsually, an appointment will take about and hour and a half for the first session and following sessions are about an hour.\r\nWe can give advise during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How do I know how many appointments I will need?\r\n</strong></span></h4>\r\nOnce we have spoken we can advise better on the number of sessions. Quite often 2 to 3 sessions will see most issues resloved. Some people may require less or more.\r\n<h4><span style=\"color: #008000;\"><strong>What can I expect in my session?\r\n</strong></span></h4>\r\nHypnosis is a natural focused state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nDuring your session we start by exploring your issues and outcomes. During the hypnosis part of your session, clients state they are fully alert, remembering everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis. How should I start?</strong></span></h4>\r\nSelf-Hypnosis is an amazinig skill to learn as it allows you to control your states, feelings and emotions very quickly.\r\nOnce you learn Self-Hypnosis is gives you power over many issues such as anxiety, stress, depression, habits and behavious.\r\nWe teach self-hypnosis skills to most clients and we can do this through one to one sessions and small group sessions. We also run trainings through the <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops </strong></a>and larger courses<strong>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy South Shields can be found at\r\n\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Hypnotherapy Near Me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','South Shields Hypnotherapy Practice','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 17:56:08','2018-12-20 17:56:08','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2236,1,'2018-12-20 17:59:13','2018-12-20 17:59:13','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong>White Feather House is very close to the Metro Station and handy for drivers as there is always plenty of car parking near Charlotte Street.<strong>\r\n</strong><em>Appointments need to be booked in advance </em>please<em>. </em>Our other locations can be found below.</span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2288.7363460386846!2d-1.4327294841378662!3d54.995256480357526!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487e6fcf7ba097ff%3A0xf725259ec370ddc6!2sWhite+Feather+House!5e0!3m2!1sen!2suk!4v1545328632905\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nWe run regular events, trainings and workshops from the South Shields Hypnotherapy Practice.\r\nJust some of the topics we cover are Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and many more more.\r\nYou can also take part in targeted workshops for Anxiety, Stress, Depression, Confidence, Pain Managemen etc.\r\n<strong>To learn more about these events simply <em>join the newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions &amp; Answers.\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy in the North East?\r\n</strong></span></h4>\r\nYes, you can also find us at:\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us as long as the conditions are right.\r\nSimply as about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\">Do you offer online Hypnosis and NLP services?</span></h4>\r\nOnline sessions have become very popular lately. For most issues, online sessions are just as effective as face to face appointments.\r\nSimply ask about online hypnosis sessions when you give us a call.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a talk or demonstration for a organisation?</strong></span></h4>\r\nOf course. We do quite a number of specialist events for companies, charites, groups on a number of subjects.\r\nSimply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you offer help for children and young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nUsually, an appointment will take about and hour and a half for the first session and following sessions are about an hour.\r\nWe can give advise during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How do I know how many appointments I will need?\r\n</strong></span></h4>\r\nOnce we have spoken we can advise better on the number of sessions. Quite often 2 to 3 sessions will see most issues resloved. Some people may require less or more.\r\n<h4><span style=\"color: #008000;\"><strong>What can I expect in my session?\r\n</strong></span></h4>\r\nHypnosis is a natural focused state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nDuring your session we start by exploring your issues and outcomes. During the hypnosis part of your session, clients state they are fully alert, remembering everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis. How should I start?</strong></span></h4>\r\nSelf-Hypnosis is an amazinig skill to learn as it allows you to control your states, feelings and emotions very quickly.\r\nOnce you learn Self-Hypnosis is gives you power over many issues such as anxiety, stress, depression, habits and behavious.\r\nWe teach self-hypnosis skills to most clients and we can do this through one to one sessions and small group sessions. We also run trainings through the <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops </strong></a>and larger courses<strong>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy South Shields can be found at\r\n\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Hypnotherapy Near Me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','South Shields Hypnotherapy Practice','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 17:59:13','2018-12-20 17:59:13','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2247,1,'2018-12-20 18:08:08','2018-12-20 18:08:08','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong>White Feather House is very close to the Metro Station and handy for drivers as there is always plenty of car parking near Charlotte Street.<strong>\r\n</strong><em>Appointments need to be booked in advance </em>please<em>. </em>Our other locations can be found below.</span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n\r\n&nbsp;\r\n\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nWe run regular events, trainings and workshops from the South Shields Hypnotherapy Practice.\r\nJust some of the topics we cover are Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and many more more.\r\nYou can also take part in targeted workshops for Anxiety, Stress, Depression, Confidence, Pain Managemen etc.\r\n<strong>To learn more about these events simply <em>join the newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions &amp; Answers.\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy in the North East?\r\n</strong></span></h4>\r\nYes, you can also find us at:\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us as long as the conditions are right.\r\nSimply as about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\">Do you offer online Hypnosis and NLP services?</span></h4>\r\nOnline sessions have become very popular lately. For most issues, online sessions are just as effective as face to face appointments.\r\nSimply ask about online hypnosis sessions when you give us a call.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a talk or demonstration for a organisation?</strong></span></h4>\r\nOf course. We do quite a number of specialist events for companies, charites, groups on a number of subjects.\r\nSimply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you offer help for children and young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nUsually, an appointment will take about and hour and a half for the first session and following sessions are about an hour.\r\nWe can give advise during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How do I know how many appointments I will need?\r\n</strong></span></h4>\r\nOnce we have spoken we can advise better on the number of sessions. Quite often 2 to 3 sessions will see most issues resloved. Some people may require less or more.\r\n<h4><span style=\"color: #008000;\"><strong>What can I expect in my session?\r\n</strong></span></h4>\r\nHypnosis is a natural focused state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nDuring your session we start by exploring your issues and outcomes. During the hypnosis part of your session, clients state they are fully alert, remembering everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis. How should I start?</strong></span></h4>\r\nSelf-Hypnosis is an amazinig skill to learn as it allows you to control your states, feelings and emotions very quickly.\r\nOnce you learn Self-Hypnosis is gives you power over many issues such as anxiety, stress, depression, habits and behavious.\r\nWe teach self-hypnosis skills to most clients and we can do this through one to one sessions and small group sessions. We also run trainings through the <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops </strong></a>and larger courses<strong>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy South Shields can be found at\r\n\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Hypnotherapy Near Me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>\r\n</div>','South Shields Hypnotherapy Practice','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 18:08:08','2018-12-20 18:08:08','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2237,1,'2018-12-20 17:59:36','2018-12-20 17:59:36','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong>White Feather House is very close to the Metro Station and handy for drivers as there is always plenty of car parking near Charlotte Street.<strong>\r\n</strong><em>Appointments need to be booked in advance </em>please<em>. </em>Our other locations can be found below.</span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n\r\n&nbsp;\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2288.7363460386846!2d-1.4327294841378662!3d54.995256480357526!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487e6fcf7ba097ff%3A0xf725259ec370ddc6!2sWhite+Feather+House!5e0!3m2!1sen!2suk!4v1545328632905\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nWe run regular events, trainings and workshops from the South Shields Hypnotherapy Practice.\r\nJust some of the topics we cover are Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and many more more.\r\nYou can also take part in targeted workshops for Anxiety, Stress, Depression, Confidence, Pain Managemen etc.\r\n<strong>To learn more about these events simply <em>join the newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions &amp; Answers.\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy in the North East?\r\n</strong></span></h4>\r\nYes, you can also find us at:\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us as long as the conditions are right.\r\nSimply as about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\">Do you offer online Hypnosis and NLP services?</span></h4>\r\nOnline sessions have become very popular lately. For most issues, online sessions are just as effective as face to face appointments.\r\nSimply ask about online hypnosis sessions when you give us a call.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a talk or demonstration for a organisation?</strong></span></h4>\r\nOf course. We do quite a number of specialist events for companies, charites, groups on a number of subjects.\r\nSimply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you offer help for children and young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nUsually, an appointment will take about and hour and a half for the first session and following sessions are about an hour.\r\nWe can give advise during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How do I know how many appointments I will need?\r\n</strong></span></h4>\r\nOnce we have spoken we can advise better on the number of sessions. Quite often 2 to 3 sessions will see most issues resloved. Some people may require less or more.\r\n<h4><span style=\"color: #008000;\"><strong>What can I expect in my session?\r\n</strong></span></h4>\r\nHypnosis is a natural focused state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nDuring your session we start by exploring your issues and outcomes. During the hypnosis part of your session, clients state they are fully alert, remembering everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis. How should I start?</strong></span></h4>\r\nSelf-Hypnosis is an amazinig skill to learn as it allows you to control your states, feelings and emotions very quickly.\r\nOnce you learn Self-Hypnosis is gives you power over many issues such as anxiety, stress, depression, habits and behavious.\r\nWe teach self-hypnosis skills to most clients and we can do this through one to one sessions and small group sessions. We also run trainings through the <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops </strong></a>and larger courses<strong>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy South Shields can be found at\r\n\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Hypnotherapy Near Me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>\r\n</div>','South Shields Hypnotherapy Practice','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 17:59:36','2018-12-20 17:59:36','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2244,1,'2018-12-20 18:06:06','2018-12-20 18:06:06','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong>White Feather House is very close to the Metro Station and handy for drivers as there is always plenty of car parking near Charlotte Street.<strong>\r\n</strong><em>Appointments need to be booked in advance </em>please<em>. </em>Our other locations can be found below.</span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n\r\n&nbsp;\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2288.7363460386846!2d-1.4327294841378662!3d54.995256480357526!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487e6fcf7ba097ff%3A0xf725259ec370ddc6!2sWhite+Feather+House!5e0!3m2!1sen!2suk!4v1545328632905\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nWe run regular events, trainings and workshops from the South Shields Hypnotherapy Practice.\r\nJust some of the topics we cover are Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and many more more.\r\nYou can also take part in targeted workshops for Anxiety, Stress, Depression, Confidence, Pain Managemen etc.\r\n<strong>To learn more about these events simply <em>join the newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions &amp; Answers.\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy in the North East?\r\n</strong></span></h4>\r\nYes, you can also find us at:\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us as long as the conditions are right.\r\nSimply as about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\">Do you offer online Hypnosis and NLP services?</span></h4>\r\nOnline sessions have become very popular lately. For most issues, online sessions are just as effective as face to face appointments.\r\nSimply ask about online hypnosis sessions when you give us a call.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a talk or demonstration for a organisation?</strong></span></h4>\r\nOf course. We do quite a number of specialist events for companies, charites, groups on a number of subjects.\r\nSimply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you offer help for children and young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nUsually, an appointment will take about and hour and a half for the first session and following sessions are about an hour.\r\nWe can give advise during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How do I know how many appointments I will need?\r\n</strong></span></h4>\r\nOnce we have spoken we can advise better on the number of sessions. Quite often 2 to 3 sessions will see most issues resloved. Some people may require less or more.\r\n<h4><span style=\"color: #008000;\"><strong>What can I expect in my session?\r\n</strong></span></h4>\r\nHypnosis is a natural focused state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nDuring your session we start by exploring your issues and outcomes. During the hypnosis part of your session, clients state they are fully alert, remembering everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis. How should I start?</strong></span></h4>\r\nSelf-Hypnosis is an amazinig skill to learn as it allows you to control your states, feelings and emotions very quickly.\r\nOnce you learn Self-Hypnosis is gives you power over many issues such as anxiety, stress, depression, habits and behavious.\r\nWe teach self-hypnosis skills to most clients and we can do this through one to one sessions and small group sessions. We also run trainings through the <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops </strong></a>and larger courses<strong>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy South Shields can be found at\r\n\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Hypnotherapy Near Me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>\r\n</div>','South Shields Hypnotherapy Practice','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 18:06:06','2018-12-20 18:06:06','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2238,1,'2018-12-20 18:00:52','2018-12-20 18:00:52','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong>White Feather House is very close to the Metro Station and handy for drivers as there is always plenty of car parking near Charlotte Street.<strong>\r\n</strong><em>Appointments need to be booked in advance </em>please<em>. </em>Our other locations can be found below.</span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\">South Shields Hypnotherapy Practice - Google Map</span></h4>\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2288.7363460386846!2d-1.4327294841378662!3d54.995256480357526!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487e6fcf7ba097ff%3A0xf725259ec370ddc6!2sWhite+Feather+House!5e0!3m2!1sen!2suk!4v1545328632905\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nWe run regular events, trainings and workshops from the South Shields Hypnotherapy Practice.\r\nJust some of the topics we cover are Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and many more more.\r\nYou can also take part in targeted workshops for Anxiety, Stress, Depression, Confidence, Pain Managemen etc.\r\n<strong>To learn more about these events simply <em>join the newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions &amp; Answers.\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy in the North East?\r\n</strong></span></h4>\r\nYes, you can also find us at:\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us as long as the conditions are right.\r\nSimply as about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\">Do you offer online Hypnosis and NLP services?</span></h4>\r\nOnline sessions have become very popular lately. For most issues, online sessions are just as effective as face to face appointments.\r\nSimply ask about online hypnosis sessions when you give us a call.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a talk or demonstration for a organisation?</strong></span></h4>\r\nOf course. We do quite a number of specialist events for companies, charites, groups on a number of subjects.\r\nSimply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you offer help for children and young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nUsually, an appointment will take about and hour and a half for the first session and following sessions are about an hour.\r\nWe can give advise during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How do I know how many appointments I will need?\r\n</strong></span></h4>\r\nOnce we have spoken we can advise better on the number of sessions. Quite often 2 to 3 sessions will see most issues resloved. Some people may require less or more.\r\n<h4><span style=\"color: #008000;\"><strong>What can I expect in my session?\r\n</strong></span></h4>\r\nHypnosis is a natural focused state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nDuring your session we start by exploring your issues and outcomes. During the hypnosis part of your session, clients state they are fully alert, remembering everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis. How should I start?</strong></span></h4>\r\nSelf-Hypnosis is an amazinig skill to learn as it allows you to control your states, feelings and emotions very quickly.\r\nOnce you learn Self-Hypnosis is gives you power over many issues such as anxiety, stress, depression, habits and behavious.\r\nWe teach self-hypnosis skills to most clients and we can do this through one to one sessions and small group sessions. We also run trainings through the <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops </strong></a>and larger courses<strong>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy South Shields can be found at\r\n\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Hypnotherapy Near Me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>\r\n</div>','South Shields Hypnotherapy Practice','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 18:00:52','2018-12-20 18:00:52','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2240,1,'2018-12-20 18:02:00','2018-12-20 18:02:00','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong>White Feather House is very close to the Metro Station and handy for drivers as there is always plenty of car parking near Charlotte Street.<strong>\r\n</strong><em>Appointments need to be booked in advance </em>please<em>. </em>Our other locations can be found below.</span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\">South Shields Hypnotherapy Practice - Google Map</span></h4>\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2288.7363460386846!2d-1.4327294841378662!3d54.995256480357526!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487e6fcf7ba097ff%3A0xf725259ec370ddc6!2sWhite+Feather+House!5e0!3m2!1sen!2suk!4v1545328632905\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nWe run regular events, trainings and workshops from the South Shields Hypnotherapy Practice.\r\nJust some of the topics we cover are Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and many more more.\r\nYou can also take part in targeted workshops for Anxiety, Stress, Depression, Confidence, Pain Managemen etc.\r\n<strong>To learn more about these events simply <em>join the newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions &amp; Answers.\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy in the North East?\r\n</strong></span></h4>\r\nYes, you can also find us at:\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us as long as the conditions are right.\r\nSimply as about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\">Do you offer online Hypnosis and NLP services?</span></h4>\r\nOnline sessions have become very popular lately. For most issues, online sessions are just as effective as face to face appointments.\r\nSimply ask about online hypnosis sessions when you give us a call.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a talk or demonstration for a organisation?</strong></span></h4>\r\nOf course. We do quite a number of specialist events for companies, charites, groups on a number of subjects.\r\nSimply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you offer help for children and young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nUsually, an appointment will take about and hour and a half for the first session and following sessions are about an hour.\r\nWe can give advise during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How do I know how many appointments I will need?\r\n</strong></span></h4>\r\nOnce we have spoken we can advise better on the number of sessions. Quite often 2 to 3 sessions will see most issues resloved. Some people may require less or more.\r\n<h4><span style=\"color: #008000;\"><strong>What can I expect in my session?\r\n</strong></span></h4>\r\nHypnosis is a natural focused state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nDuring your session we start by exploring your issues and outcomes. During the hypnosis part of your session, clients state they are fully alert, remembering everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis. How should I start?</strong></span></h4>\r\nSelf-Hypnosis is an amazinig skill to learn as it allows you to control your states, feelings and emotions very quickly.\r\nOnce you learn Self-Hypnosis is gives you power over many issues such as anxiety, stress, depression, habits and behavious.\r\nWe teach self-hypnosis skills to most clients and we can do this through one to one sessions and small group sessions. We also run trainings through the <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops </strong></a>and larger courses<strong>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy South Shields can be found at\r\n\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Hypnotherapy Near Me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>\r\n</div>','South Shields Hypnotherapy Practice','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 18:02:00','2018-12-20 18:02:00','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2239,1,'2018-12-20 18:01:18','2018-12-20 18:01:18','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong>White Feather House is very close to the Metro Station and handy for drivers as there is always plenty of car parking near Charlotte Street.<strong>\r\n</strong><em>Appointments need to be booked in advance </em>please<em>. </em>Our other locations can be found below.</span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\">\r\nSouth Shields Hypnotherapy Practice - Google Map</span></h2>\r\n<div class=\"responsive-map\">\r\n\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2288.7363460386846!2d-1.4327294841378662!3d54.995256480357526!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487e6fcf7ba097ff%3A0xf725259ec370ddc6!2sWhite+Feather+House!5e0!3m2!1sen!2suk!4v1545328632905\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nWe run regular events, trainings and workshops from the South Shields Hypnotherapy Practice.\r\nJust some of the topics we cover are Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and many more more.\r\nYou can also take part in targeted workshops for Anxiety, Stress, Depression, Confidence, Pain Managemen etc.\r\n<strong>To learn more about these events simply <em>join the newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions &amp; Answers.\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy in the North East?\r\n</strong></span></h4>\r\nYes, you can also find us at:\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us as long as the conditions are right.\r\nSimply as about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\">Do you offer online Hypnosis and NLP services?</span></h4>\r\nOnline sessions have become very popular lately. For most issues, online sessions are just as effective as face to face appointments.\r\nSimply ask about online hypnosis sessions when you give us a call.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a talk or demonstration for a organisation?</strong></span></h4>\r\nOf course. We do quite a number of specialist events for companies, charites, groups on a number of subjects.\r\nSimply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you offer help for children and young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nUsually, an appointment will take about and hour and a half for the first session and following sessions are about an hour.\r\nWe can give advise during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How do I know how many appointments I will need?\r\n</strong></span></h4>\r\nOnce we have spoken we can advise better on the number of sessions. Quite often 2 to 3 sessions will see most issues resloved. Some people may require less or more.\r\n<h4><span style=\"color: #008000;\"><strong>What can I expect in my session?\r\n</strong></span></h4>\r\nHypnosis is a natural focused state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nDuring your session we start by exploring your issues and outcomes. During the hypnosis part of your session, clients state they are fully alert, remembering everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis. How should I start?</strong></span></h4>\r\nSelf-Hypnosis is an amazinig skill to learn as it allows you to control your states, feelings and emotions very quickly.\r\nOnce you learn Self-Hypnosis is gives you power over many issues such as anxiety, stress, depression, habits and behavious.\r\nWe teach self-hypnosis skills to most clients and we can do this through one to one sessions and small group sessions. We also run trainings through the <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops </strong></a>and larger courses<strong>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy South Shields can be found at\r\n\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Hypnotherapy Near Me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>\r\n</div>','South Shields Hypnotherapy Practice','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 18:01:18','2018-12-20 18:01:18','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2243,1,'2018-12-20 18:05:45','2018-12-20 18:05:45','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong>White Feather House is very close to the Metro Station and handy for drivers as there is always plenty of car parking near Charlotte Street.<strong>\r\n</strong><em>Appointments need to be booked in advance </em>please<em>. </em>Our other locations can be found below.</span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n\r\n&nbsp;\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2288.7363460386846!2d-1.4327294841378662!3d54.995256480357526!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487e6fcf7ba097ff%3A0xf725259ec370ddc6!2sWhite+Feather+House!5e0!3m2!1sen!2suk!4v1545328632905\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nWe run regular events, trainings and workshops from the South Shields Hypnotherapy Practice.\r\nJust some of the topics we cover are Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and many more more.\r\nYou can also take part in targeted workshops for Anxiety, Stress, Depression, Confidence, Pain Managemen etc.\r\n<strong>To learn more about these events simply <em>join the newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions &amp; Answers.\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy in the North East?\r\n</strong></span></h4>\r\nYes, you can also find us at:\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us as long as the conditions are right.\r\nSimply as about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\">Do you offer online Hypnosis and NLP services?</span></h4>\r\nOnline sessions have become very popular lately. For most issues, online sessions are just as effective as face to face appointments.\r\nSimply ask about online hypnosis sessions when you give us a call.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a talk or demonstration for a organisation?</strong></span></h4>\r\nOf course. We do quite a number of specialist events for companies, charites, groups on a number of subjects.\r\nSimply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you offer help for children and young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nUsually, an appointment will take about and hour and a half for the first session and following sessions are about an hour.\r\nWe can give advise during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How do I know how many appointments I will need?\r\n</strong></span></h4>\r\nOnce we have spoken we can advise better on the number of sessions. Quite often 2 to 3 sessions will see most issues resloved. Some people may require less or more.\r\n<h4><span style=\"color: #008000;\"><strong>What can I expect in my session?\r\n</strong></span></h4>\r\nHypnosis is a natural focused state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nDuring your session we start by exploring your issues and outcomes. During the hypnosis part of your session, clients state they are fully alert, remembering everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis. How should I start?</strong></span></h4>\r\nSelf-Hypnosis is an amazinig skill to learn as it allows you to control your states, feelings and emotions very quickly.\r\nOnce you learn Self-Hypnosis is gives you power over many issues such as anxiety, stress, depression, habits and behavious.\r\nWe teach self-hypnosis skills to most clients and we can do this through one to one sessions and small group sessions. We also run trainings through the <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops </strong></a>and larger courses<strong>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy South Shields can be found at\r\n\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Hypnotherapy Near Me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>\r\n</div>','South Shields Hypnotherapy Practice','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 18:05:45','2018-12-20 18:05:45','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2241,1,'2018-12-20 18:02:30','2018-12-20 18:02:30','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong>White Feather House is very close to the Metro Station and handy for drivers as there is always plenty of car parking near Charlotte Street.<strong>\r\n</strong><em>Appointments need to be booked in advance </em>please<em>. </em>Our other locations can be found below.</span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\">South Shields Hypnotherapy Practice - Google Map</span></h4>\r\n<div class=\"responsive-map\">\r\n\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2288.7363460386846!2d-1.4327294841378662!3d54.995256480357526!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487e6fcf7ba097ff%3A0xf725259ec370ddc6!2sWhite+Feather+House!5e0!3m2!1sen!2suk!4v1545328632905\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nWe run regular events, trainings and workshops from the South Shields Hypnotherapy Practice.\r\nJust some of the topics we cover are Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and many more more.\r\nYou can also take part in targeted workshops for Anxiety, Stress, Depression, Confidence, Pain Managemen etc.\r\n<strong>To learn more about these events simply <em>join the newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions &amp; Answers.\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy in the North East?\r\n</strong></span></h4>\r\nYes, you can also find us at:\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us as long as the conditions are right.\r\nSimply as about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\">Do you offer online Hypnosis and NLP services?</span></h4>\r\nOnline sessions have become very popular lately. For most issues, online sessions are just as effective as face to face appointments.\r\nSimply ask about online hypnosis sessions when you give us a call.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a talk or demonstration for a organisation?</strong></span></h4>\r\nOf course. We do quite a number of specialist events for companies, charites, groups on a number of subjects.\r\nSimply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you offer help for children and young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nUsually, an appointment will take about and hour and a half for the first session and following sessions are about an hour.\r\nWe can give advise during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How do I know how many appointments I will need?\r\n</strong></span></h4>\r\nOnce we have spoken we can advise better on the number of sessions. Quite often 2 to 3 sessions will see most issues resloved. Some people may require less or more.\r\n<h4><span style=\"color: #008000;\"><strong>What can I expect in my session?\r\n</strong></span></h4>\r\nHypnosis is a natural focused state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nDuring your session we start by exploring your issues and outcomes. During the hypnosis part of your session, clients state they are fully alert, remembering everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis. How should I start?</strong></span></h4>\r\nSelf-Hypnosis is an amazinig skill to learn as it allows you to control your states, feelings and emotions very quickly.\r\nOnce you learn Self-Hypnosis is gives you power over many issues such as anxiety, stress, depression, habits and behavious.\r\nWe teach self-hypnosis skills to most clients and we can do this through one to one sessions and small group sessions. We also run trainings through the <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops </strong></a>and larger courses<strong>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy South Shields can be found at\r\n\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Hypnotherapy Near Me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>\r\n</div>','South Shields Hypnotherapy Practice','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 18:02:30','2018-12-20 18:02:30','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2242,1,'2018-12-20 18:04:23','2018-12-20 18:04:23','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong>White Feather House is very close to the Metro Station and handy for drivers as there is always plenty of car parking near Charlotte Street.<strong>\r\n</strong><em>Appointments need to be booked in advance </em>please<em>. </em>Our other locations can be found below.</span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n<h2><span style=\"color: #008000;\">\r\nSouth Shields Hypnotherapy Practice - Google Map</span></h2>\r\n<div class=\"responsive-map\">\r\n\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2288.7363460386846!2d-1.4327294841378662!3d54.995256480357526!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487e6fcf7ba097ff%3A0xf725259ec370ddc6!2sWhite+Feather+House!5e0!3m2!1sen!2suk!4v1545328632905\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nWe run regular events, trainings and workshops from the South Shields Hypnotherapy Practice.\r\nJust some of the topics we cover are Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and many more more.\r\nYou can also take part in targeted workshops for Anxiety, Stress, Depression, Confidence, Pain Managemen etc.\r\n<strong>To learn more about these events simply <em>join the newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions &amp; Answers.\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy in the North East?\r\n</strong></span></h4>\r\nYes, you can also find us at:\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us as long as the conditions are right.\r\nSimply as about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\">Do you offer online Hypnosis and NLP services?</span></h4>\r\nOnline sessions have become very popular lately. For most issues, online sessions are just as effective as face to face appointments.\r\nSimply ask about online hypnosis sessions when you give us a call.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a talk or demonstration for a organisation?</strong></span></h4>\r\nOf course. We do quite a number of specialist events for companies, charites, groups on a number of subjects.\r\nSimply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you offer help for children and young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nUsually, an appointment will take about and hour and a half for the first session and following sessions are about an hour.\r\nWe can give advise during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How do I know how many appointments I will need?\r\n</strong></span></h4>\r\nOnce we have spoken we can advise better on the number of sessions. Quite often 2 to 3 sessions will see most issues resloved. Some people may require less or more.\r\n<h4><span style=\"color: #008000;\"><strong>What can I expect in my session?\r\n</strong></span></h4>\r\nHypnosis is a natural focused state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nDuring your session we start by exploring your issues and outcomes. During the hypnosis part of your session, clients state they are fully alert, remembering everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis. How should I start?</strong></span></h4>\r\nSelf-Hypnosis is an amazinig skill to learn as it allows you to control your states, feelings and emotions very quickly.\r\nOnce you learn Self-Hypnosis is gives you power over many issues such as anxiety, stress, depression, habits and behavious.\r\nWe teach self-hypnosis skills to most clients and we can do this through one to one sessions and small group sessions. We also run trainings through the <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops </strong></a>and larger courses<strong>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy South Shields can be found at\r\n\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Hypnotherapy Near Me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>\r\n</div>','South Shields Hypnotherapy Practice','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 18:04:23','2018-12-20 18:04:23','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2246,1,'2018-12-20 18:07:23','2018-12-20 18:07:23','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong>White Feather House is very close to the Metro Station and handy for drivers as there is always plenty of car parking near Charlotte Street.<strong>\r\n</strong><em>Appointments need to be booked in advance </em>please<em>. </em>Our other locations can be found below.</span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n\r\n&nbsp;\r\n<div class=\"responsive-map\"> <iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2288.7363460386846!2d-1.4327294841378662!3d54.995256480357526!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487e6fcf7ba097ff%3A0xf725259ec370ddc6!2sWhite+Feather+House!5e0!3m2!1sen!2suk!4v1545328632905\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nWe run regular events, trainings and workshops from the South Shields Hypnotherapy Practice.\r\nJust some of the topics we cover are Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and many more more.\r\nYou can also take part in targeted workshops for Anxiety, Stress, Depression, Confidence, Pain Managemen etc.\r\n<strong>To learn more about these events simply <em>join the newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions &amp; Answers.\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy in the North East?\r\n</strong></span></h4>\r\nYes, you can also find us at:\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us as long as the conditions are right.\r\nSimply as about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\">Do you offer online Hypnosis and NLP services?</span></h4>\r\nOnline sessions have become very popular lately. For most issues, online sessions are just as effective as face to face appointments.\r\nSimply ask about online hypnosis sessions when you give us a call.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a talk or demonstration for a organisation?</strong></span></h4>\r\nOf course. We do quite a number of specialist events for companies, charites, groups on a number of subjects.\r\nSimply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you offer help for children and young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nUsually, an appointment will take about and hour and a half for the first session and following sessions are about an hour.\r\nWe can give advise during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How do I know how many appointments I will need?\r\n</strong></span></h4>\r\nOnce we have spoken we can advise better on the number of sessions. Quite often 2 to 3 sessions will see most issues resloved. Some people may require less or more.\r\n<h4><span style=\"color: #008000;\"><strong>What can I expect in my session?\r\n</strong></span></h4>\r\nHypnosis is a natural focused state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nDuring your session we start by exploring your issues and outcomes. During the hypnosis part of your session, clients state they are fully alert, remembering everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis. How should I start?</strong></span></h4>\r\nSelf-Hypnosis is an amazinig skill to learn as it allows you to control your states, feelings and emotions very quickly.\r\nOnce you learn Self-Hypnosis is gives you power over many issues such as anxiety, stress, depression, habits and behavious.\r\nWe teach self-hypnosis skills to most clients and we can do this through one to one sessions and small group sessions. We also run trainings through the <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops </strong></a>and larger courses<strong>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy South Shields can be found at\r\n\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Hypnotherapy Near Me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>\r\n</div>','South Shields Hypnotherapy Practice','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 18:07:23','2018-12-20 18:07:23','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2245,1,'2018-12-20 18:06:50','2018-12-20 18:06:50','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong>White Feather House is very close to the Metro Station and handy for drivers as there is always plenty of car parking near Charlotte Street.<strong>\r\n</strong><em>Appointments need to be booked in advance </em>please<em>. </em>Our other locations can be found below.</span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n\r\n&nbsp;\r\n<div class=\"responsive-map\">\r\n\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2288.7363460386846!2d-1.4327294841378662!3d54.995256480357526!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487e6fcf7ba097ff%3A0xf725259ec370ddc6!2sWhite+Feather+House!5e0!3m2!1sen!2suk!4v1545328632905\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\n\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nWe run regular events, trainings and workshops from the South Shields Hypnotherapy Practice.\r\nJust some of the topics we cover are Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and many more more.\r\nYou can also take part in targeted workshops for Anxiety, Stress, Depression, Confidence, Pain Managemen etc.\r\n<strong>To learn more about these events simply <em>join the newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions &amp; Answers.\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy in the North East?\r\n</strong></span></h4>\r\nYes, you can also find us at:\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us as long as the conditions are right.\r\nSimply as about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\">Do you offer online Hypnosis and NLP services?</span></h4>\r\nOnline sessions have become very popular lately. For most issues, online sessions are just as effective as face to face appointments.\r\nSimply ask about online hypnosis sessions when you give us a call.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a talk or demonstration for a organisation?</strong></span></h4>\r\nOf course. We do quite a number of specialist events for companies, charites, groups on a number of subjects.\r\nSimply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you offer help for children and young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nUsually, an appointment will take about and hour and a half for the first session and following sessions are about an hour.\r\nWe can give advise during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How do I know how many appointments I will need?\r\n</strong></span></h4>\r\nOnce we have spoken we can advise better on the number of sessions. Quite often 2 to 3 sessions will see most issues resloved. Some people may require less or more.\r\n<h4><span style=\"color: #008000;\"><strong>What can I expect in my session?\r\n</strong></span></h4>\r\nHypnosis is a natural focused state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nDuring your session we start by exploring your issues and outcomes. During the hypnosis part of your session, clients state they are fully alert, remembering everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis. How should I start?</strong></span></h4>\r\nSelf-Hypnosis is an amazinig skill to learn as it allows you to control your states, feelings and emotions very quickly.\r\nOnce you learn Self-Hypnosis is gives you power over many issues such as anxiety, stress, depression, habits and behavious.\r\nWe teach self-hypnosis skills to most clients and we can do this through one to one sessions and small group sessions. We also run trainings through the <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops </strong></a>and larger courses<strong>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy South Shields can be found at\r\n\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Hypnotherapy Near Me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>\r\n</div>','South Shields Hypnotherapy Practice','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 18:06:50','2018-12-20 18:06:50','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2248,1,'2018-12-20 22:03:25','2018-12-20 22:03:25','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n<span style=\"font-family: Arial;\"><strong>You can read our hypnotherapy client feedback below.</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></p>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy or NLP Session?</strong></span></h2>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong>Bedlington</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15-minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:03:25','2018-12-20 22:03:25','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2249,1,'2018-12-20 22:05:22','2018-12-20 22:05:22','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\n<span style=\"font-family: Arial;\"><strong>What did Dr Andrew say about our service?</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></p>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy or NLP Session?</strong></span></h2>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong>Bedlington</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15-minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:05:22','2018-12-20 22:05:22','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2250,1,'2018-12-20 22:06:01','2018-12-20 22:06:01','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\n&nbsp;\r\n<h4><span style=\"font-family: Arial; color: #ff6600;\"><strong>What did Dr Andrew say about our service?</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></p>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy or NLP Session?</strong></span></h2>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong>Bedlington</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15-minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:06:01','2018-12-20 22:06:01','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2253,1,'2018-12-20 22:12:10','2018-12-20 22:12:10','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\n&nbsp;\r\n<h4><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy or NLP Session?</strong></span></h2>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong>Bedlington</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15-minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:12:10','2018-12-20 22:12:10','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2251,1,'2018-12-20 22:06:36','2018-12-20 22:06:36','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\n&nbsp;\r\n<h4><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></p>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy or NLP Session?</strong></span></h2>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong>Bedlington</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15-minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:06:36','2018-12-20 22:06:36','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2252,1,'2018-12-20 22:10:42','2018-12-20 22:10:42','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\n&nbsp;\r\n<h4><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></p>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<span style=\"color: #ff6600;\"><em><strong>Hypnotherapy Client Feedback by Steve</strong> </em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>How Do I Book My Hypnotherapy or NLP Session?</strong></span></h2>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong>Bedlington</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15-minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:10:42','2018-12-20 22:10:42','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2254,1,'2018-12-20 22:17:33','2018-12-20 22:17:33','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\n&nbsp;\r\n<h4><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of life including many NHS and health care professionals.</span></strong><em><strong>\r\n\r\nHypnotherapy Client Feedback by Steve </strong></em></span><em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>The Next Step?\r\n</strong></span></h2>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong>Bedlington</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15-minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:17:33','2018-12-20 22:17:33','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2479,1,'2019-01-06 15:04:36','2019-01-06 15:04:36','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />Very simply, we help people to make positive changes using hypnosis and NLP.</strong> <strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; more\r\n</strong></span></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-01-06 15:04:36','2019-01-06 15:04:36','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2255,1,'2018-12-20 22:18:46','2018-12-20 22:18:46','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\nRead on to see what our clients say..............\r\n<h4><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of life including many NHS and health care professionals.</span></strong></span>\r\n\r\nHypnotherapy Client Feedback by Steve <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>The Next Step?\r\n</strong></span></h2>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong>Bedlington</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15-minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:18:46','2018-12-20 22:18:46','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0);
INSERT INTO `wpqj_posts` VALUES (2256,1,'2018-12-20 22:19:10','2018-12-20 22:19:10','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\n<strong><span style=\"color: #ff6600;\">Read on to see what our clients say..............</span></strong>\r\n<h4><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of life including many NHS and health care professionals.</span></strong></span>\r\n\r\nHypnotherapy Client Feedback by Steve <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>The Next Step?\r\n</strong></span></h2>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong>Bedlington</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15-minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:19:10','2018-12-20 22:19:10','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2257,1,'2018-12-20 22:19:44','2018-12-20 22:19:44','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\n<strong><span style=\"color: #ff6600;\">Read on to see what our clients say..............</span></strong>\r\n<h4><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>The Next Step?\r\n</strong></span></h2>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong>Bedlington</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><strong>South Shields</strong></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15-minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:19:44','2018-12-20 22:19:44','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2258,1,'2018-12-20 22:21:37','2018-12-20 22:21:37','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\n<strong><span style=\"color: #ff6600;\">Read on to see what our clients say..............</span></strong>\r\n<h4><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>The Next Step?\r\n</strong></span></h2>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong>Bedlington</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15-minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:21:37','2018-12-20 22:21:37','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2259,1,'2018-12-20 22:22:40','2018-12-20 22:22:40','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\n<strong><span style=\"color: #ff6600;\">Read on to see what our clients say..............</span></strong>\r\n<h4><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of  life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>The Next Step?\r\n</strong></span></h2>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong>Bedlington</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15-minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:22:40','2018-12-20 22:22:40','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2269,1,'2018-12-20 22:45:01','2018-12-20 22:45:01','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\n<strong><span style=\"color: #ff6600;\">Read on to see what our clients say..............</span></strong>\r\n<h4><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of  life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>The Next Step?\r\n</strong></span></h2>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n<p class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></p>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:45:01','2018-12-20 22:45:01','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2260,1,'2018-12-20 22:25:23','2018-12-20 22:25:23','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\n<strong><span style=\"color: #ff6600;\">Read on to see what our clients say..............</span></strong>\r\n<h4><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of  life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h2><span style=\"color: #008000;\"><strong>The Next Step?\r\n</strong></span></h2>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h2>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h2><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h2>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h2>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h2><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h2>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h2><span style=\"color: #008000;\"><strong>Your First Step?</strong></span></h2>\r\n<div>The best way forward for most of our clients is to arrange your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free 15-minute phone consultation</a>. You can explain what you are looking to change. What may be causing you a problem and where you would rather be. During this consultation, we can assess if hypnosis &amp; NLP services will help you and the best way forward for you. We can answer your questions, explain how the process works and the results you can expect.\r\n<strong>Simply call Mark at Newcastle Hypnotherapy on 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h2>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h2><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h2>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h2><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h2>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h2><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h2>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h2><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h2>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h2>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h2><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h2><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h2>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h2><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h2>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h2>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h2><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h2>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h2><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h2>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h2>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h2>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h2>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h2>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h2><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h2>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h1>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h2><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h2>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h2>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h2>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h2><strong><span style=\"color: #008000;\">Contact Form</span></strong></h2>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:25:23','2018-12-20 22:25:23','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2261,1,'2018-12-20 22:32:54','2018-12-20 22:32:54','Dr Andrew\'s feedback on Newcastle Hypnotherapy.\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n\r\n<h2><span style=\"color: #008000;\"><strong><img class=\"alignleft size-thumbnail wp-image-813\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/Cleint-feedback-150x150.jpg\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming.\r\n</strong></span></h2>\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong><span style=\"color: #000000;\">\"<span class=\"Linkify\">Thankyou for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce\"</span></span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback  by Gary </span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by S F</span>.</strong>  \"<span style=\"color: #000000;\">I</span> Met Mark initially at an event at \'The Vault\' and found him to be a trustworthy genuine person, so I booked two Hypnotherapy sessions with him. I felt stuck with certain issues in my life and also had some trauma work to do. I had done a lot of work myself but the last little bit was still missing. With Mark\'s help I found that missing bit and can now work with the tools that Mark offered to me. He introduced me to tapping (EFT) and NLP (Neurolinguistic Programming) which are fantastic tools. Also I can always use the hypnotherapy session that Mark recorded for me. Thank you so much, Mark! \"\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />','CLIENT FEEDBACK','','inherit','closed','closed','','200-revision-v1','','','2018-12-20 22:32:54','2018-12-20 22:32:54','',200,'https://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(2262,1,'2018-12-20 22:33:32','2018-12-20 22:33:32','<h4><strong><span style=\"color: #008000;\">Client Feedback, Dr Andrew\'s feedback on Newcastle Hypnotherapy.</span></strong>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<h2><span style=\"color: #008000;\"><strong><img class=\"alignleft size-thumbnail wp-image-813\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/Cleint-feedback-150x150.jpg\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming.\r\n</strong></span></h2>\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong><span style=\"color: #000000;\">\"<span class=\"Linkify\">Thankyou for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce\"</span></span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback  by Gary </span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by S F</span>.</strong>  \"<span style=\"color: #000000;\">I</span> Met Mark initially at an event at \'The Vault\' and found him to be a trustworthy genuine person, so I booked two Hypnotherapy sessions with him. I felt stuck with certain issues in my life and also had some trauma work to do. I had done a lot of work myself but the last little bit was still missing. With Mark\'s help I found that missing bit and can now work with the tools that Mark offered to me. He introduced me to tapping (EFT) and NLP (Neurolinguistic Programming) which are fantastic tools. Also I can always use the hypnotherapy session that Mark recorded for me. Thank you so much, Mark! \"\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />','CLIENT FEEDBACK','','inherit','closed','closed','','200-revision-v1','','','2018-12-20 22:33:32','2018-12-20 22:33:32','',200,'https://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(2263,1,'2018-12-20 22:34:18','2018-12-20 22:34:18','<h2><span style=\"color: #008000;\"><strong><img class=\"alignleft size-thumbnail wp-image-813\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/Cleint-feedback-150x150.jpg\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming.\r\n</strong></span></h2>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback, Dr Andrew\'s feedback on Newcastle Hypnotherapy.</span></strong>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong><span style=\"color: #000000;\">\"<span class=\"Linkify\">Thankyou for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce\"</span></span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback  by Gary </span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by S F</span>.</strong>  \"<span style=\"color: #000000;\">I</span> Met Mark initially at an event at \'The Vault\' and found him to be a trustworthy genuine person, so I booked two Hypnotherapy sessions with him. I felt stuck with certain issues in my life and also had some trauma work to do. I had done a lot of work myself but the last little bit was still missing. With Mark\'s help I found that missing bit and can now work with the tools that Mark offered to me. He introduced me to tapping (EFT) and NLP (Neurolinguistic Programming) which are fantastic tools. Also I can always use the hypnotherapy session that Mark recorded for me. Thank you so much, Mark! \"\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />','CLIENT FEEDBACK','','inherit','closed','closed','','200-revision-v1','','','2018-12-20 22:34:18','2018-12-20 22:34:18','',200,'https://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(2264,1,'2018-12-20 22:34:34','2018-12-20 22:34:34','<h4><span style=\"color: #008000;\"><strong><img class=\"alignleft size-thumbnail wp-image-813\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/Cleint-feedback-150x150.jpg\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming.\r\n</strong></span></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback, Dr Andrew\'s feedback on Newcastle Hypnotherapy.</span></strong>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong><span style=\"color: #000000;\">\"<span class=\"Linkify\">Thankyou for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce\"</span></span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback  by Gary </span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by S F</span>.</strong>  \"<span style=\"color: #000000;\">I</span> Met Mark initially at an event at \'The Vault\' and found him to be a trustworthy genuine person, so I booked two Hypnotherapy sessions with him. I felt stuck with certain issues in my life and also had some trauma work to do. I had done a lot of work myself but the last little bit was still missing. With Mark\'s help I found that missing bit and can now work with the tools that Mark offered to me. He introduced me to tapping (EFT) and NLP (Neurolinguistic Programming) which are fantastic tools. Also I can always use the hypnotherapy session that Mark recorded for me. Thank you so much, Mark! \"\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />','CLIENT FEEDBACK','','inherit','closed','closed','','200-revision-v1','','','2018-12-20 22:34:34','2018-12-20 22:34:34','',200,'https://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(2268,1,'2018-12-20 22:40:40','2018-12-20 22:40:40','<h4><span style=\"color: #008000;\"><strong><img class=\"alignleft size-thumbnail wp-image-813\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/Cleint-feedback-150x150.jpg\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming.\r\n</strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback, Dr Andrew\'s feedback on Newcastle Hypnotherapy.</span></strong>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong><span style=\"color: #000000;\">\"<span class=\"Linkify\">Thankyou for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce\"</span></span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback  by Gary </span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by S F</span>.</strong>  \"<span style=\"color: #000000;\">I</span> Met Mark initially at an event at \'The Vault\' and found him to be a trustworthy genuine person, so I booked two Hypnotherapy sessions with him. I felt stuck with certain issues in my life and also had some trauma work to do. I had done a lot of work myself but the last little bit was still missing. With Mark\'s help I found that missing bit and can now work with the tools that Mark offered to me. He introduced me to tapping (EFT) and NLP (Neurolinguistic Programming) which are fantastic tools. Also I can always use the hypnotherapy session that Mark recorded for me. Thank you so much, Mark! \"\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />','Reviews','','inherit','closed','closed','','200-revision-v1','','','2018-12-20 22:40:40','2018-12-20 22:40:40','',200,'https://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(2265,1,'2018-12-20 22:34:55','2018-12-20 22:34:55','<h4><span style=\"color: #008000;\"><strong><img class=\"alignleft size-thumbnail wp-image-813\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/05/Cleint-feedback-150x150.jpg\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming.\r\n</strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback, Dr Andrew\'s feedback on Newcastle Hypnotherapy.</span></strong>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong><span style=\"color: #000000;\">\"<span class=\"Linkify\">Thankyou for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce\"</span></span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback  by Gary </span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by S F</span>.</strong>  \"<span style=\"color: #000000;\">I</span> Met Mark initially at an event at \'The Vault\' and found him to be a trustworthy genuine person, so I booked two Hypnotherapy sessions with him. I felt stuck with certain issues in my life and also had some trauma work to do. I had done a lot of work myself but the last little bit was still missing. With Mark\'s help I found that missing bit and can now work with the tools that Mark offered to me. He introduced me to tapping (EFT) and NLP (Neurolinguistic Programming) which are fantastic tools. Also I can always use the hypnotherapy session that Mark recorded for me. Thank you so much, Mark! \"\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />','CLIENT FEEDBACK','','inherit','closed','closed','','200-revision-v1','','','2018-12-20 22:34:55','2018-12-20 22:34:55','',200,'https://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(2571,1,'2019-01-31 11:47:53','2019-01-31 11:47:53','','Freedom From Anxiety & Stress Workshop - 23rd October','','publish','closed','closed','','2571','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=2571',20,'nav_menu_item','',0),(2270,1,'2018-12-20 22:52:09','2018-12-20 22:52:09','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\n<strong><span style=\"color: #ff6600;\">Read on to see what our clients say..............</span></strong>\r\n<h4><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of  life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n\r\n<span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span>\r\n\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:52:09','2018-12-20 22:52:09','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2271,1,'2018-12-20 22:52:50','2018-12-20 22:52:50','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\n<strong><span style=\"color: #ff6600;\">Read on to see what our clients say..............</span></strong>\r\n<h4><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of  life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:52:50','2018-12-20 22:52:50','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2272,1,'2018-12-20 22:54:43','2018-12-20 22:54:43','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time. <strong><span style=\"color: #ff6600;\">Read on to see what our clients say..............</span></strong>\r\n<h4><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of  life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:54:43','2018-12-20 22:54:43','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2273,1,'2018-12-20 22:55:03','2018-12-20 22:55:03','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n<strong><span style=\"color: #ff6600;\">Read on to see what our clients say..............</span></strong>\r\n<h4><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of  life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:55:03','2018-12-20 22:55:03','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2274,1,'2018-12-20 22:55:47','2018-12-20 22:55:47','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n<strong><span style=\"color: #ff6600;\">Read on to see what our clients say..............</span></strong>\r\n<h4 style=\"text-align: center;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of  life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:55:47','2018-12-20 22:55:47','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2275,1,'2018-12-20 22:56:03','2018-12-20 22:56:03','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n<strong><span style=\"color: #ff6600;\">Read on to see what our clients say..............\r\n\r\n</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of  life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:56:03','2018-12-20 22:56:03','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2276,1,'2018-12-20 22:56:21','2018-12-20 22:56:21','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\n<strong><span style=\"color: #ff6600;\">Read on to see what our clients say..............</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of  life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:56:21','2018-12-20 22:56:21','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2279,1,'2018-12-20 22:59:12','2018-12-20 22:59:12','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make positive changes using hypnosis and NLP.</strong> <strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; more\r\n</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\n<strong><span style=\"color: #ff6600;\">Read on to see what our clients say..............</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of  life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:59:12','2018-12-20 22:59:12','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2277,1,'2018-12-20 22:58:20','2018-12-20 22:58:20','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make positive changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\n<strong><span style=\"color: #ff6600;\">Read on to see what our clients say..............</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of  life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:58:20','2018-12-20 22:58:20','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2278,1,'2018-12-20 22:58:37','2018-12-20 22:58:37','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make positive changes using hypnosis and NLP.</strong> <strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; other problems.</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\n<strong><span style=\"color: #ff6600;\">Read on to see what our clients say..............</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of  life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 22:58:37','2018-12-20 22:58:37','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2280,1,'2018-12-20 23:48:10','2018-12-20 23:48:10','','SOUTH SHIELDS HYPNOTHERAPY PRACTICE','','publish','closed','closed','','2280','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=2280',44,'nav_menu_item','',0),(2281,1,'2018-12-20 23:52:04','2018-12-20 23:52:04','<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Hypnotherapy South Shields\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your South Shields Hypnotherapy Practice is located at </span></strong></h4>\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte Street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Practice by Newcastle Hypnotherapy.\r\n</strong></span></h4>\r\nNewcastle Hypnotherapy offers a wide range of professional, clinical Hypnosis Services along with other modern techniques.\r\nWe help clients with a wide range of subjects including <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking habits, behaviour and many other challenges.\r\nYou can find full information on the many issues Newcastle Hypnotherapy can help with on the <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a>.\r\n<h4><span style=\"color: #008000;\">Finding The South Shields Hypnotherapy Practice.<strong>\r\n</strong></span></h4>\r\n<span class=\"LrzXr\">Appointments &amp; events take place in the wonderful <strong>White Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong>White Feather House is very close to the Metro Station and handy for drivers as there is always plenty of car parking near Charlotte Street.<strong>\r\n</strong><em>Appointments need to be booked in advance </em>please<em>. </em>Our other locations can be found below.</span>\r\n\r\n<img class=\"alignleft wp-image-2218 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/south-shields-hypnotherapy-225x300.jpeg\" alt=\"South Shields Hypnotherapy\" width=\"225\" height=\"300\" /><strong>Opening Hours. Call to arrange your appointment on 07568 455 809.\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free strategy session or see below to book online.</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Appoinment Or Finding Out More.\r\n</strong></span></h4>\r\nMost of our clients prefer to speak to us in advance to discuss any issues and to answer any questions they may have.\r\nTo do this simply call <strong>07568 455 809</strong> and we can arrange a time suitable for you.\r\n\r\nYou can also bookyour hypnotherapy session online here.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>South Shields Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nWe run regular events, trainings and workshops from the South Shields Hypnotherapy Practice.\r\nJust some of the topics we cover are Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and many more more.\r\nYou can also take part in targeted workshops for Anxiety, Stress, Depression, Confidence, Pain Managemen etc.\r\n<strong>To learn more about these events simply <em>join the newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Questions &amp; Answers.\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy in the North East?\r\n</strong></span></h4>\r\nYes, you can also find us at:\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us as long as the conditions are right.\r\nSimply as about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\">Do you offer online Hypnosis and NLP services?</span></h4>\r\nOnline sessions have become very popular lately. For most issues, online sessions are just as effective as face to face appointments.\r\nSimply ask about online hypnosis sessions when you give us a call.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a talk or demonstration for a organisation?</strong></span></h4>\r\nOf course. We do quite a number of specialist events for companies, charites, groups on a number of subjects.\r\nSimply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you offer help for children and young adults?</strong></span></h4>\r\nYes. Many of our hypnosis therapies are suitable for everyone and we also have a specialist member of staff who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nUsually, an appointment will take about and hour and a half for the first session and following sessions are about an hour.\r\nWe can give advise during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How do I know how many appointments I will need?\r\n</strong></span></h4>\r\nOnce we have spoken we can advise better on the number of sessions. Quite often 2 to 3 sessions will see most issues resloved. Some people may require less or more.\r\n<h4><span style=\"color: #008000;\"><strong>What can I expect in my session?\r\n</strong></span></h4>\r\nHypnosis is a natural focused state that you experience every day. It is rather similar to being engaged in a good tv program of film.\r\nDuring your session we start by exploring your issues and outcomes. During the hypnosis part of your session, clients state they are fully alert, remembering everything in full detail. Hypnosis or trance should be a wonderful, relaxed feeling, rather like daydreaming. Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Learning Self-Hypnosis. How should I start?</strong></span></h4>\r\nSelf-Hypnosis is an amazinig skill to learn as it allows you to control your states, feelings and emotions very quickly.\r\nOnce you learn Self-Hypnosis is gives you power over many issues such as anxiety, stress, depression, habits and behavious.\r\nWe teach self-hypnosis skills to most clients and we can do this through one to one sessions and small group sessions. We also run trainings through the <a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>The Wednesday Workshops </strong></a>and larger courses<strong>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy South Shields can be found at\r\n\r\n<span class=\"LrzXr\"><strong>White Feather House\r\n46 Charlotte Street\r\nSouth Shields\r\nNE33 1PX</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Hypnotherapy Near Me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','South Shields Hypnotherapy Practice','','inherit','closed','closed','','2216-revision-v1','','','2018-12-20 23:52:04','2018-12-20 23:52:04','',2216,'https://www.newcastle-hypnotherapy.com/2216-revision-v1/',0,'revision','',0),(2282,1,'2018-12-20 23:58:21','2018-12-20 23:58:21','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make positive changes using hypnosis and NLP.</strong> <strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; more\r\n</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\n<strong><span style=\"color: #ff6600;\">Read on to see what our clients say..............</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-20 23:58:21','2018-12-20 23:58:21','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2283,1,'2018-12-27 12:10:51','2018-12-27 12:10:51','The Wednesday Workshop - Getting The Best Out Of 2019\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 powerful skills.</span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/hGFMkyt8U90?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<span style=\"color: #ff6600;\"><strong>SORRY - NOW FULLY BOOKED</strong></span></h2>\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">You can learn and practice these effective skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n<strong>16th Jan, The Vault. 7.30 pm to 9.30 - </strong><strong>Book Below</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n<ul>\r\n 	<li>REDUCE STRESS</li>\r\n 	<li>CONTROL ANXIETY</li>\r\n 	<li>CONQUER DEPRESSION</li>\r\n 	<li>IMPROVE SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>FEEL BETTER</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>IMPROVE YOUR PERFORMANCE</li>\r\n 	<li>CHANGE HABITS &amp; BEHAVIOURS</li>\r\n 	<li>BETTER TEMPER &amp; MOOD</li>\r\n 	<li>FEEL HAPPIER</li>\r\n 	<li>LEARN NEW SKILLS</li>\r\n 	<li>BE A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n 	<li>MAKE MORE MONEY</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and goals. It\'s simply all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\n<strong>This Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.</strong>\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events by simply joining our newsletter.</strong>\r\n<strong>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]</strong>\r\n<strong>Your privacy is always important to us and we are GDPR compliant.</strong>\r\n<strong>You may leave the newsletter at any time.</strong>\r\n\r\nYou can also join our <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></span> for more information on events and take part in the discussions.\r\n\r\nIf you would like to work with us privately to help with any issue please visit the <a href=\"https://www.newcastle-hypnotherapy.com\"><strong><span style=\"color: #339966;\">Newcastle Hypnotherapy Main Page</span></strong></a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','publish','closed','closed','','getting-the-best-out-of-2019','','','2019-01-16 23:03:26','2019-01-16 23:03:26','',0,'https://www.newcastle-hypnotherapy.com/?page_id=2283',0,'page','',0),(2284,1,'2018-12-27 10:59:11','2018-12-27 10:59:11','','Getting The Best Out Of 2018','','inherit','open','closed','','2019','','','2018-12-27 10:59:42','2018-12-27 10:59:42','',2283,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019.jpg',0,'attachment','image/jpeg',0),(2285,1,'2018-12-27 11:35:22','2018-12-27 11:35:22','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n\r\nWhat do you want to achieve?\r\n\r\nWhat do you want to change?\r\n\r\nWho do you want to be?\r\n\r\nWhat do you want to take control of?\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and it\'s all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\nThese two simple skills will condition your mind and body to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\nThis Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 11:35:22','2018-12-27 11:35:22','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2286,1,'2018-12-27 11:37:42','2018-12-27 11:37:42','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n\r\nWhat do you want to achieve?\r\n\r\nWhat do you want to change?\r\n\r\nWho do you want to be?\r\n\r\nWhat do you want to take control of?\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and it\'s all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\nThese two simple skills will condition your mind and body to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\nThis Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 11:37:42','2018-12-27 11:37:42','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2287,1,'2018-12-27 11:45:47','2018-12-27 11:45:47','Join us for the first Wednesday Workshop for 2019.\r\nThe Vault, Wallsend. 7.30 pm to 9.30 pm\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event running on the 1st and 3rd Wednesday of each month.\r\nAttendance is strictly by advance booking on a first come first served basis.\r\n\r\nOnce you have booked your place, the website will send you a confirmation.\r\nUseful notes regarding each workshop are sent out a few days in advance.\r\n\r\n<strong>Refund Policy.</strong> Please note we do not offer refunds if you are unable to attend.\r\nYou may transfer your place to someone else.\r\n\r\n&nbsp;','Getting The Best Out Of 2019 Workshop','<strong>Book your place for this workshop here.</strong>\r\nYou can pay by Card, Paypal or Bank Transfer.\r\n<em>Paying by bank transfer helps us to keep costs down.</em>\r\nPayments need to be made within 30 mins of your booking.\r\nPlaces are limited and taken on a first come first served basis','publish','closed','closed','','getting-the-best-out-of-2019-workshop','','','2019-01-15 06:30:58','2019-01-15 06:30:58','',0,'https://www.newcastle-hypnotherapy.com/?post_type=product&#038;p=2287',0,'product','',0),(2288,1,'2018-12-27 11:49:30','2018-12-27 11:49:30','Join us for the first Wednesday Workshop for 2019.\nThe Vault, Wallsend. 7.30 pm to 9.30 pm\n\n<strong>Terms &amp; Conditions.</strong>\nThe Wednesday Workshop is a non-profit event running on the 1st and 3rd Wednesday of each month.\nAttendance is strictly by advance booking on a first come first served basis.\n\nOnce you have booked your place, the website will send you a confirmation.\nUseful notes regarding each workshop are sent out a few days in advance.\n\n<strong>Refund Policy.</strong> Please note we do not offer refunds if you are unable to attend.\nYou may transfer your place to someone else if required.\n\n&nbsp;','Getting The Best Out Of 2019 Workshop','<strong>Book your place for this workshop here.</strong>\nYou can pay by Card, Paypal or Bank Transfer.\n<em>Paying by bank transfer helps us to keep costs down.</em>\nPayments need to be made within 30 mins of your booking.\nPlaces are limited and taken on a first come first served basis','inherit','closed','closed','','2287-autosave-v1','','','2018-12-27 11:49:30','2018-12-27 11:49:30','',2287,'https://www.newcastle-hypnotherapy.com/2287-autosave-v1/',0,'revision','',0),(2289,1,'2018-12-27 11:52:37','2018-12-27 11:52:37','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n\r\nWhat do you want to achieve?\r\n\r\nWhat do you want to change?\r\n\r\nWho do you want to be?\r\n\r\nWhat do you want to take control of?\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and it\'s all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\nThese two simple skills will condition your mind and body to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\nThis Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 11:52:37','2018-12-27 11:52:37','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2290,1,'2018-12-27 11:54:43','2018-12-27 11:54:43','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n\r\nThose that achieve their goals use 2 easy skills.\r\nYou can learn and practice these simple skills to make your 2019 amazing.\r\n\r\nWhat do you want to achieve?\r\n\r\nWhat do you want to change?\r\n\r\nWho do you want to be?\r\n\r\nWhat do you want to take control of?\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and it\'s all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\nThese two simple skills will condition your mind and body to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\nThis Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 11:54:43','2018-12-27 11:54:43','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2291,1,'2018-12-27 11:55:05','2018-12-27 11:55:05','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2>Those that achieve their goals use 2 easy skills.\r\nYou can learn and practice these simple skills to make your 2019 amazing.</h2>\r\nWhat do you want to achieve?\r\n\r\nWhat do you want to change?\r\n\r\nWho do you want to be?\r\n\r\nWhat do you want to take control of?\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and it\'s all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\nThese two simple skills will condition your mind and body to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\nThis Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 11:55:05','2018-12-27 11:55:05','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2292,1,'2018-12-27 11:55:31','2018-12-27 11:55:31','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span>\r\n<span style=\"color: #008000;\">You can learn and practice these simple skills to make your 2019 amazing.</span></h2>\r\nWhat do you want to achieve?\r\n\r\nWhat do you want to change?\r\n\r\nWho do you want to be?\r\n\r\nWhat do you want to take control of?\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and it\'s all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\nThese two simple skills will condition your mind and body to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\nThis Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 11:55:31','2018-12-27 11:55:31','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2293,1,'2018-12-27 11:55:58','2018-12-27 11:55:58','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<h2>\r\n<span style=\"color: #008000;\">You can learn and practice these simple skills to make your 2019 amazing.</span></h2>\r\nWhat do you want to achieve?\r\n\r\nWhat do you want to change?\r\n\r\nWho do you want to be?\r\n\r\nWhat do you want to take control of?\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and it\'s all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\nThese two simple skills will condition your mind and body to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\nThis Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 11:55:58','2018-12-27 11:55:58','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2300,1,'2018-12-27 11:59:51','2018-12-27 11:59:51','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these simple skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>What do you want to achieve,</strong><strong> change or be for 2019?</strong><strong>\r\n</strong>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and it\'s all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\nThese two simple skills will condition your mind and body to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\nThis Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 11:59:51','2018-12-27 11:59:51','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2294,1,'2018-12-27 11:56:38','2018-12-27 11:56:38','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<h2><span style=\"color: #008000;\">You can learn and practice these simple skills to make your 2019 amazing.</span></h2>\r\n<strong>What do you want to achieve?</strong>\r\n\r\n<strong>What do you want to change?</strong>\r\n\r\n<strong>Who do you want to be?</strong>\r\n\r\n<strong>What do you want to take control of?</strong>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and it\'s all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\nThese two simple skills will condition your mind and body to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\nThis Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 11:56:38','2018-12-27 11:56:38','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2295,1,'2018-12-27 11:56:54','2018-12-27 11:56:54','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<span style=\"color: #008000;\">You can learn and practice these simple skills to make your 2019 amazing.</span>\r\n\r\n<strong>What do you want to achieve?</strong>\r\n\r\n<strong>What do you want to change?</strong>\r\n\r\n<strong>Who do you want to be?</strong>\r\n\r\n<strong>What do you want to take control of?</strong>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and it\'s all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\nThese two simple skills will condition your mind and body to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\nThis Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 11:56:54','2018-12-27 11:56:54','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2296,1,'2018-12-27 11:57:17','2018-12-27 11:57:17','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these simple skills to make your 2019 amazing.</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>What do you want to achieve?</strong>\r\n\r\n<strong>What do you want to change?</strong>\r\n\r\n<strong>Who do you want to be?</strong>\r\n\r\n<strong>What do you want to take control of?</strong>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and it\'s all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\nThese two simple skills will condition your mind and body to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\nThis Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 11:57:17','2018-12-27 11:57:17','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2297,1,'2018-12-27 11:58:01','2018-12-27 11:58:01','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these simple skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>What do you want to achieve?</strong>\r\n\r\n<strong>What do you want to change?</strong>\r\n\r\n<strong>Who do you want to be?</strong>\r\n\r\n<strong>What do you want to take control of?</strong>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and it\'s all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\nThese two simple skills will condition your mind and body to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\nThis Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 11:58:01','2018-12-27 11:58:01','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2298,1,'2018-12-27 11:58:18','2018-12-27 11:58:18','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these simple skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>What do you want to achieve?</strong>\r\n\r\n<strong>What do you want to change?</strong>\r\n\r\n<strong>Who do you want to be?</strong>\r\n\r\n<strong>What do you want to take control of?</strong>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and it\'s all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\nThese two simple skills will condition your mind and body to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\nThis Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 11:58:18','2018-12-27 11:58:18','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2299,1,'2018-12-27 11:58:34','2018-12-27 11:58:34','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these simple skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>What do you want to achieve?</strong>\r\n\r\n<strong>What do you want to change?</strong>\r\n\r\n<strong>Who do you want to be?</strong>\r\n\r\n<strong>What do you want to take control of?</strong>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and it\'s all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\nThese two simple skills will condition your mind and body to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\nThis Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 11:58:34','2018-12-27 11:58:34','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2301,1,'2018-12-27 12:00:29','2018-12-27 12:00:29','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these simple skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong>What do you want to achieve or</strong><strong> change for 2019?</strong><strong>\r\n</strong></h4>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and it\'s all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\nThese two simple skills will condition your mind and body to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\nThis Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 12:00:29','2018-12-27 12:00:29','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2302,1,'2018-12-27 12:00:54','2018-12-27 12:00:54','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these simple skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and it\'s all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\nThese two simple skills will condition your mind and body to help you achieve your goals.\r\n\r\n<span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\nThis Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 12:00:54','2018-12-27 12:00:54','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2303,1,'2018-12-27 12:01:52','2018-12-27 12:01:52','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these simple skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and it\'s all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\nThese two simple skills will condition your mind and body to help you achieve your goals.\r\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\nThis Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 12:01:52','2018-12-27 12:01:52','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2304,1,'2018-12-27 12:10:51','2018-12-27 12:10:51','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these simple skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and it\'s all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\nThese two simple skills will condition your mind and body to help you achieve your goals.\r\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\n<strong>This Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.</strong>\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLearn more about our regular events by simply joining our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always important to us and we are GDPR compliant.\r\nYou may leave the newsletter at any time.\r\n\r\nYou can also join our <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></span> for more information on events and take part in the discussions.\r\n\r\nIf you would like to work with us privately to help with any issue please visit the <a href=\"https://www.newcastle-hypnotherapy.com\"><strong><span style=\"color: #339966;\">Newcastle Hypnotherapy Main Page</span></strong></a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 12:10:51','2018-12-27 12:10:51','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2308,1,'2018-12-27 12:15:39','2018-12-27 12:15:39','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these effective skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and goals. It\'s simply all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\n<strong>This Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.</strong>\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLearn more about our regular events by simply joining our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always important to us and we are GDPR compliant.\r\nYou may leave the newsletter at any time.\r\n\r\nYou can also join our <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></span> for more information on events and take part in the discussions.\r\n\r\nIf you would like to work with us privately to help with any issue please visit the <a href=\"https://www.newcastle-hypnotherapy.com\"><strong><span style=\"color: #339966;\">Newcastle Hypnotherapy Main Page</span></strong></a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 12:15:39','2018-12-27 12:15:39','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2305,1,'2018-12-27 12:11:37','2018-12-27 12:11:37','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these errective skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and it\'s all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\nThese two simple skills will condition your mind and body to help you achieve your goals.\r\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\n<strong>This Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.</strong>\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLearn more about our regular events by simply joining our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always important to us and we are GDPR compliant.\r\nYou may leave the newsletter at any time.\r\n\r\nYou can also join our <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></span> for more information on events and take part in the discussions.\r\n\r\nIf you would like to work with us privately to help with any issue please visit the <a href=\"https://www.newcastle-hypnotherapy.com\"><strong><span style=\"color: #339966;\">Newcastle Hypnotherapy Main Page</span></strong></a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 12:11:37','2018-12-27 12:11:37','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2306,1,'2018-12-27 12:12:00','2018-12-27 12:12:00','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these effective skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and it\'s all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\nThese two simple skills will condition your mind and body to help you achieve your goals.\r\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\n<strong>This Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.</strong>\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLearn more about our regular events by simply joining our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always important to us and we are GDPR compliant.\r\nYou may leave the newsletter at any time.\r\n\r\nYou can also join our <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></span> for more information on events and take part in the discussions.\r\n\r\nIf you would like to work with us privately to help with any issue please visit the <a href=\"https://www.newcastle-hypnotherapy.com\"><strong><span style=\"color: #339966;\">Newcastle Hypnotherapy Main Page</span></strong></a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 12:12:00','2018-12-27 12:12:00','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2307,1,'2019-01-06 13:40:15','2019-01-06 13:40:15','The Wednesday Workshop - Getting The Best Out Of 2019\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\n<iframe src=\"https://www.youtube.com/embed/hGFMkyt8U90?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\n\n<strong><span style=\"color: #008000;\">You can learn and practice these effective skills at your next workshop.\nMake your 2019 amazing.</span></strong>\n\n<strong>16th Jan, The Vault. 7.30 pm to 9.30 - </strong><strong>Book Below</strong>\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\n</strong></h4>\n<ul>\n 	<li>REDUCE STRESS</li>\n 	<li>CONTROL ANXIETY</li>\n 	<li>CONQUER DEPRESSION</li>\n 	<li>IMPROVE SELF CONFIDENCE</li>\n 	<li>WEIGHT LOSS</li>\n 	<li>STOP SMOKING</li>\n 	<li>FEEL BETTER</li>\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\n 	<li>ENERGY LEVELS</li>\n 	<li>MOTIVATION</li>\n 	<li>IMPROVE YOUR PERFORMANCE</li>\n 	<li>HABITS &amp; BEHAVIOURS</li>\n 	<li>TEMPER &amp; MOOD</li>\n 	<li>FEEL HAPPIER</li>\n 	<li>LEARNING NEW SKILLS</li>\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\n 	<li>IMPROVE YOUR BUSINESS</li>\n</ul>\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\n\nHowever, there is a secret to achieving your resolutions and goals. It\'s simply all about copying what the successful people do.\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\n<ul>\n 	<li>FOCUS YOUR MIND</li>\n 	<li>GIVE YOU ENERGY</li>\n 	<li>INCREASE YOUR WILLPOWER</li>\n 	<li>IMPROVE YOUR MOTIVATION</li>\n 	<li>CONDITION YOUR BODY</li>\n 	<li>SPEED UP YOUR RESULTS</li>\n 	<li>ACHIEVE YOUR GOALS</li>\n</ul>\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\n\nYou will be ready to start making changes, achieving your goals and increase your happiness.\n\n<strong>This Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.</strong>\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\nDrinks and snacks are included.\n\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\n\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<strong>Learn more about our regular events by simply joining our newsletter.</strong>\n<strong>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]</strong>\n<strong>Your privacy is always important to us and we are GDPR compliant.</strong>\n<strong>You may leave the newsletter at any time.</strong>\n\nYou can also join our <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></span> for more information on events and take part in the discussions.\n\nIf you would like to work with us privately to help with any issue please visit the <a href=\"https://www.newcastle-hypnotherapy.com\"><strong><span style=\"color: #339966;\">Newcastle Hypnotherapy Main Page</span></strong></a>.\n\n&nbsp;\n\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-autosave-v1','','','2019-01-06 13:40:15','2019-01-06 13:40:15','',2283,'https://www.newcastle-hypnotherapy.com/2283-autosave-v1/',0,'revision','',0),(2309,1,'2018-12-27 12:17:15','2018-12-27 12:17:15','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these effective skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and goals. It\'s simply all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\n<strong>This Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.</strong>\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events by simply joining our newsletter.</strong>\r\n<strong>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]</strong>\r\n<strong>Your privacy is always important to us and we are GDPR compliant.</strong>\r\n<strong>You may leave the newsletter at any time.</strong>\r\n\r\nYou can also join our <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></span> for more information on events and take part in the discussions.\r\n\r\nIf you would like to work with us privately to help with any issue please visit the <a href=\"https://www.newcastle-hypnotherapy.com\"><strong><span style=\"color: #339966;\">Newcastle Hypnotherapy Main Page</span></strong></a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 12:17:15','2018-12-27 12:17:15','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2310,1,'2018-12-27 12:32:02','2018-12-27 12:32:02','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these effective skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>FEEL BETTER</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>FEEL HAPPIER</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and goals. It\'s simply all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\n<strong>This Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.</strong>\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events by simply joining our newsletter.</strong>\r\n<strong>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]</strong>\r\n<strong>Your privacy is always important to us and we are GDPR compliant.</strong>\r\n<strong>You may leave the newsletter at any time.</strong>\r\n\r\nYou can also join our <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></span> for more information on events and take part in the discussions.\r\n\r\nIf you would like to work with us privately to help with any issue please visit the <a href=\"https://www.newcastle-hypnotherapy.com\"><strong><span style=\"color: #339966;\">Newcastle Hypnotherapy Main Page</span></strong></a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2018-12-27 12:32:02','2018-12-27 12:32:02','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2311,1,'2018-12-27 13:02:54','2018-12-27 13:02:54','','Getting The Best Out Of 2019 - 16th Jan','','publish','closed','closed','','2311','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=2311',27,'nav_menu_item','',0),(2312,1,'2018-12-27 14:08:05','2018-12-27 14:08:05','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<h4><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #ff6600;\">So Easy To Get Started.</span></strong></h4>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n<h2><span style=\"color: #008000;\"><strong>\r\n\r\nTake control, reduce your anxiety today</strong></span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:08:05','2018-12-27 14:08:05','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2313,1,'2018-12-27 14:10:34','2018-12-27 14:10:34','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<h4><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #ff6600;\">So Easy To Get Started.</span></strong></h4>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Or grab your free Anxiety Help Tips below</strong>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:10:34','2018-12-27 14:10:34','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2314,1,'2018-12-27 14:11:08','2018-12-27 14:11:08','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<h4><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #ff6600;\">So Easy To Get Started.</span></strong></h4>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Or grab your free Anxiety Help Tips below</strong>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:11:08','2018-12-27 14:11:08','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2315,1,'2018-12-27 14:11:29','2018-12-27 14:11:29','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<h4><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #ff6600;\">So Easy To Get Started.</span></strong></h4>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Or grab your free Anxiety Help Tips below</strong>\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:11:29','2018-12-27 14:11:29','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2316,1,'2018-12-27 14:12:32','2018-12-27 14:12:32','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<h4><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #ff6600;\">So Easy To Get Started.</span></strong></h4>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or<strong>\r\n</strong></li>\r\n 	<li><strong>Book your session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Or grab your free Anxiety Help Tips below</strong>\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:12:32','2018-12-27 14:12:32','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2318,1,'2018-12-27 14:14:21','2018-12-27 14:14:21','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<h4><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #ff6600;\">So Easy To Get Started.</span></strong></h4>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Phone Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or<strong>\r\n</strong></li>\r\n 	<li><strong>Book your first session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Free Anxiety Help Tips are below</strong>\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:14:21','2018-12-27 14:14:21','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2317,1,'2018-12-27 14:13:38','2018-12-27 14:13:38','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<h4><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #ff6600;\">So Easy To Get Started.</span></strong></h4>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Phone Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or<strong>\r\n</strong></li>\r\n 	<li><strong>Book your first session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<strong>Or grab your free Anxiety Help Tips below</strong>\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:13:38','2018-12-27 14:13:38','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2319,1,'2018-12-27 14:14:55','2018-12-27 14:14:55','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<h4><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #ff6600;\">So Easy To Get Started.</span></strong></h4>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Phone Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or<strong>\r\n</strong></li>\r\n 	<li><strong>Book your first session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Your Free Anxiety Help Tips are below</strong></span>\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:14:55','2018-12-27 14:14:55','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2320,1,'2018-12-27 14:15:43','2018-12-27 14:15:43','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<h4><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #ff6600;\">So Easy To Get Started.</span></strong></h4>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Phone Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or<strong>\r\n</strong></li>\r\n 	<li><strong>Book your first session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Your Free Anxiety Help Tips are below</strong></span>\r\n\r\nWhat did Dr Andrew say about our Anxiety Services?\r\n\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:15:43','2018-12-27 14:15:43','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2321,1,'2018-12-27 14:17:22','2018-12-27 14:17:22','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<h4><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #ff6600;\">So Easy To Get Started.</span></strong></h4>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Phone Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or<strong>\r\n</strong></li>\r\n 	<li><strong>Book your first session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Your Free Anxiety Help Tips are below</strong></span>\r\n&nbsp;\r\n\r\nWhat did Dr Andrew say about our Anxiety Services?\r\n\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:17:22','2018-12-27 14:17:22','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2322,1,'2018-12-27 14:17:52','2018-12-27 14:17:52','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<h4><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #ff6600;\">So Easy To Get Started.</span></strong></h4>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Phone Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or<strong>\r\n</strong></li>\r\n 	<li><strong>Book your first session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Your Free Anxiety Help Tips are below</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:17:52','2018-12-27 14:17:52','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2323,1,'2018-12-27 14:18:44','2018-12-27 14:18:44','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<h4><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #ff6600;\">So Easy To Get Started.</span></strong></h4>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Phone Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or<strong>\r\n</strong></li>\r\n 	<li><strong>Book your first session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Your Free Anxiety Help Tips are below</strong></span>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:18:44','2018-12-27 14:18:44','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2324,1,'2018-12-27 14:19:02','2018-12-27 14:19:02','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<h4><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #ff6600;\">So Easy To Get Started.</span></strong></h4>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Phone Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or<strong>\r\n</strong></li>\r\n 	<li><strong>Book your first session to take control - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Your Free Anxiety Help Tips are below</strong></span>\r\n&nbsp;\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:19:02','2018-12-27 14:19:02','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2344,1,'2018-12-27 14:43:51','2018-12-27 14:43:51','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<h4><iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happeing over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:43:51','2018-12-27 14:43:51','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2325,1,'2018-12-27 14:23:36','2018-12-27 14:23:36','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing results.\r\n\r\nYou can</span></strong><span style=\"color: #000000;\"><strong>Arrange your <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or <strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information is below.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:23:36','2018-12-27 14:23:36','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2326,1,'2018-12-27 14:24:04','2018-12-27 14:24:04','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing results.</span></strong>\r\n\r\nYou can<span style=\"color: #000000;\"><strong>Arrange your <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or <strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information is below.\r\n\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:24:04','2018-12-27 14:24:04','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2328,1,'2018-12-27 14:24:38','2018-12-27 14:24:38','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing results.</span></strong>\r\n\r\nYou can<span style=\"color: #000000;\"><strong>Arrange your <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or <strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information is below.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:24:38','2018-12-27 14:24:38','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2327,1,'2018-12-27 14:24:21','2018-12-27 14:24:21','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing results.</span></strong>\r\n\r\nYou can<span style=\"color: #000000;\"><strong>Arrange your <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or <strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information is below.</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:24:21','2018-12-27 14:24:21','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2329,1,'2018-12-27 14:25:38','2018-12-27 14:25:38','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing results.</span></strong>\r\n\r\nYou can<span style=\"color: #000000;\"><strong>Arrange your <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or <strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be foudn below along with reviews from clients.\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:25:38','2018-12-27 14:25:38','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2330,1,'2018-12-27 14:25:55','2018-12-27 14:25:55','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing results.</span></strong>\r\n\r\nYou can<span style=\"color: #000000;\"><strong>Arrange your <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or <strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be foudn below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:25:55','2018-12-27 14:25:55','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2331,1,'2018-12-27 14:26:15','2018-12-27 14:26:15','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing results.</span></strong>\r\n\r\nYou can<span style=\"color: #000000;\"><strong>Arrange your <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or <strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be foudn below along with reviews from clients.\r\n\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:26:15','2018-12-27 14:26:15','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2333,1,'2018-12-27 14:27:10','2018-12-27 14:27:10','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing results.</span></strong>\r\n\r\nYou can<span style=\"color: #000000;\"><strong>Arrange your <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or <strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be foudn below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:27:10','2018-12-27 14:27:10','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0);
INSERT INTO `wpqj_posts` VALUES (2332,1,'2018-12-27 14:26:41','2018-12-27 14:26:41','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing results.</span></strong>\r\n\r\nYou can<span style=\"color: #000000;\"><strong>Arrange your <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or <strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be foudn below along with reviews from clients.</strong></span>\r\n&nbsp;\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:26:41','2018-12-27 14:26:41','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2334,1,'2018-12-27 14:27:32','2018-12-27 14:27:32','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing results.</span></strong>\r\n\r\nYou can<span style=\"color: #000000;\"><strong>Arrange your <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be foudn below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:27:32','2018-12-27 14:27:32','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2335,1,'2018-12-27 14:27:54','2018-12-27 14:27:54','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing results.</span></strong>\r\n\r\nYou can <span style=\"color: #000000;\">Arrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be foudn below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:27:54','2018-12-27 14:27:54','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2336,1,'2018-12-27 14:28:35','2018-12-27 14:28:35','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing results.</span></strong>\r\n\r\nYou can <span style=\"color: #000000;\">Arrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:28:35','2018-12-27 14:28:35','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2337,1,'2018-12-27 14:29:27','2018-12-27 14:29:27','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can <span style=\"color: #000000;\">Arrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTake control, reduce your anxiety today\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:29:27','2018-12-27 14:29:27','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2338,1,'2018-12-27 14:31:39','2018-12-27 14:31:39','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can <span style=\"color: #000000;\">Arrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h2>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:31:39','2018-12-27 14:31:39','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2339,1,'2018-12-27 14:33:22','2018-12-27 14:33:22','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can <span style=\"color: #000000;\">Arrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<h4><iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms will start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:33:22','2018-12-27 14:33:22','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2340,1,'2018-12-27 14:38:12','2018-12-27 14:38:12','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can <span style=\"color: #000000;\">Arrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<h4><iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.\r\n\r\n</strong>Most of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happeing over time.<strong>\r\n</strong></p>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:38:12','2018-12-27 14:38:12','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2341,1,'2018-12-27 14:38:47','2018-12-27 14:38:47','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<h4><iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happeing over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:38:47','2018-12-27 14:38:47','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2343,1,'2018-12-27 14:41:23','2018-12-27 14:41:23','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<h4><iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happeing over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a></strong></p>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:41:23','2018-12-27 14:41:23','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2342,1,'2018-12-27 14:40:40','2018-12-27 14:40:40','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<h4><iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happeing over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><span style=\"color: #ff6600;\">Anxiety Client Feedback.</span>  <span style=\"color: #008000;\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></span></a>\r\n</strong></p>\r\n\r\n<h2><img class=\"alignleft size-thumbnail wp-image-103\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"150\" height=\"150\" /><strong><span style=\"color: #008000;\">So Easy To Get Started.</span></strong></h2>\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <span style=\"color: #993366;\"><a style=\"color: #993366;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a></span>\r\n</strong></li>\r\n 	<li><strong><strong>Book your session to take control - <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></span></strong></strong><strong>Or grab your free Anxiety Help Tips below</strong></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:40:40','2018-12-27 14:40:40','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2349,1,'2018-12-27 14:57:16','2018-12-27 14:57:16','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<h4><iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happeing over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n\r\nCall 07568 455809 today to get started or CLICK HERE\r\nto arrange Your FREE 15 Minute Phone Session.\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:57:16','2018-12-27 14:57:16','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2345,1,'2018-12-27 14:45:32','2018-12-27 14:45:32','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<h4><iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happeing over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n\r\n&nbsp;\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started </strong><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em>\r\nto arrange Your FREE 15 Minute Phone Strategy Session</b>.</div>\r\n</div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:45:32','2018-12-27 14:45:32','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2346,1,'2018-12-27 14:46:13','2018-12-27 14:46:13','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<h4><iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happeing over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n\r\n&nbsp;\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: left;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started </strong><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em>\r\nto arrange Your FREE 15 Minute Phone Strategy Session</b>.</div>\r\n</div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:46:13','2018-12-27 14:46:13','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2348,1,'2018-12-27 14:55:20','2018-12-27 14:55:20','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<h4><iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happeing over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n\r\n&nbsp;\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong><strong>809</strong></span></a><strong> today to get started </strong><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em>\r\nto arrange Your FREE 15 Minute Phone Session</b>.</div>\r\n<div></div>\r\n</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:55:20','2018-12-27 14:55:20','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2347,1,'2018-12-27 14:46:49','2018-12-27 14:46:49','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<h4><iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happeing over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n\r\n&nbsp;\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong><strong>809</strong></span></a><strong> today to get started </strong><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em>\r\nto arrange Your FREE 15 Minute Phone Session</b>.</div>\r\n</div>\r\n<div></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-1723 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-button-300x300.jpg\" alt=\"Anxiety Relief Hypnosis Program\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:46:49','2018-12-27 14:46:49','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2350,1,'2018-12-27 14:57:49','2018-12-27 14:57:49','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<h4><iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happeing over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<p style=\"text-align: center;\">Call 07568 455809 today to get started or\r\nCLICK HERE to arrange Your FREE 15 Minute Phone Session.</p>\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:57:49','2018-12-27 14:57:49','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2351,1,'2018-12-27 14:59:19','2018-12-27 14:59:19','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<h4><iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happeing over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange Your FREE 15 Minute Phone Session.</strong></h4>\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:59:19','2018-12-27 14:59:19','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2352,1,'2018-12-27 14:59:51','2018-12-27 14:59:51','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<h4><iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happeing over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 14:59:51','2018-12-27 14:59:51','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2353,1,'2018-12-27 15:02:04','2018-12-27 15:02:04','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<h4><iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happeing over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Newsletter</span></strong></h2>\r\n<strong>Enter your details below to receive the free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 15:02:04','2018-12-27 15:02:04','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2354,1,'2018-12-27 15:04:03','2018-12-27 15:04:03','<h2><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h2>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<h4><iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happeing over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<h2><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h2>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 15:04:03','2018-12-27 15:04:03','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2355,1,'2018-12-27 15:10:18','2018-12-27 15:10:18','<h4><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h4>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<h4><iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happeing over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists. We are also\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h2>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h2><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h2>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h2>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h2>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong is can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone consultation and start taking charge of your anxiety now.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h2>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h2>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h2><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h2>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h2><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can complete the form below or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\nWe are GDPR compliant and will only use your data to provide further information or news. You may unsubscribe at any time.\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h2><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h2>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h2><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h2>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h2>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h2><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h2>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h2><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h2>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h2><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h2>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h2><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h2>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h2><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h2>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h2><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>.</span>\r\n</em></h2>\r\n<em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h2>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone strategy session consultation.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 15:10:18','2018-12-27 15:10:18','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2356,1,'2018-12-27 15:26:29','2018-12-27 15:26:29','<h4><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h4>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<h4><iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happeing over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, excercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n<h4><em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em></h4>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 15:26:29','2018-12-27 15:26:29','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2357,1,'2018-12-27 15:27:56','2018-12-27 15:27:56','<h4><span style=\"color: #008000;\"><strong>Anxiety Relief - Newcastle Hypnotherapy</strong></span></h4>\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<h4><iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happeing over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, excercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 15:27:56','2018-12-27 15:27:56','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2360,1,'2018-12-27 15:38:00','2018-12-27 15:38:00','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 15:38:00','2018-12-27 15:38:00','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2358,1,'2018-12-27 15:30:02','2018-12-27 15:30:02','<span style=\"color: #008000;\"><strong>The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</strong></span>\r\n\r\n<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\">It\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<h4><iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happeing over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, excercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 15:30:02','2018-12-27 15:30:02','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2359,1,'2018-12-27 15:32:12','2018-12-27 15:32:12','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<h4><iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happeing over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, excercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you a new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 15:32:12','2018-12-27 15:32:12','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2361,1,'2018-12-27 15:39:39','2018-12-27 15:39:39','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 15:39:39','2018-12-27 15:39:39','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2368,1,'2018-12-27 16:02:29','2018-12-27 16:02:29','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or <strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 16:02:29','2018-12-27 16:02:29','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2362,1,'2018-12-27 15:40:38','2018-12-27 15:40:38','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"></p>\r\n\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 15:40:38','2018-12-27 15:40:38','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2363,1,'2018-12-27 15:41:24','2018-12-27 15:41:24','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"></p>\r\n\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 15:41:24','2018-12-27 15:41:24','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2364,1,'2018-12-27 15:41:56','2018-12-27 15:41:56','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"></p>\r\n\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 15:41:56','2018-12-27 15:41:56','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2365,1,'2018-12-27 15:42:17','2018-12-27 15:42:17','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"></p>\r\n\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 15:42:17','2018-12-27 15:42:17','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2367,1,'2018-12-27 16:02:00','2018-12-27 16:02:00','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or <strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 16:02:00','2018-12-27 16:02:00','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2366,1,'2018-12-27 15:42:51','2018-12-27 15:42:51','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or\r\n<strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n&nbsp;\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<p style=\"text-align: left;\"></p>\r\n\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 15:42:51','2018-12-27 15:42:51','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2496,1,'2019-01-06 16:42:36','2019-01-06 16:42:36','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below.\r\n</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></span></h4>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2019-01-06 16:42:36','2019-01-06 16:42:36','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2369,1,'2018-12-27 16:30:58','2018-12-27 16:30:58','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or <strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.\r\n\r\n</strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></span></h4>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2018-12-27 16:30:58','2018-12-27 16:30:58','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2370,1,'2018-12-27 16:42:53','2018-12-27 16:42:53','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place,</strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span class=\"LrzXr\">\r\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\r\n</strong></span></h4>\r\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\r\n\r\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\r\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span></strong></h4>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\r\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nYes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.4503404803413!2d-1.5884962846403832!3d55.07036405188417!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487e73dc227692fd%3A0x9bdb486d3b27565f!2sNewcastle+Hypnotherapy+Cramlington+Practice!5e0!3m2!1sen!2suk!4v1545936976379\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\r\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\r\n</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n 	<li><strong>Online – by video\r\n</strong></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>Newcastle Hypnotherapy Cramlington Practice Map</h4>\r\n<div class=\"responsive-map\"></div>\r\n</div>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes, of course, we can help with service designed for children and young adults.   We also have a specialist member of staff on our team who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nRoughly about and hour to an hour and a half.\r\nWe can give you a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many sessions will I need?</strong></span></h4>\r\nThis will really vary on your issue and what you would prefer as an outcome. We can certainly advise better during your free session or first appointment. We find for most people, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a value in doing so.\r\n<h4><span style=\"color: #008000;\"><strong>What is hypnosis like?\r\n</strong></span></h4>\r\nHypnosis is a natural state that you experience every day. It is rather like pure focus and awareness while feeling relaxed and calm.\r\nYou will be fully alert during your hypnosis session and you will usually remember everything in full detail.  Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h4>\r\nHypnosis works for most people and there are differening opinions regarding everyone being able to be hypnotised.\r\nMost of our clients find hypnotherapy works very well for them and we do see great imporvments. However, we do use many modern techniques such as NLP, EFT, Mindfulness and Meditation. We can use any of these techniques if hypnosis is not our chosen method.\r\n<h4><span style=\"color: #008000;\"><strong>What is the best way to learn Self- Hypnosis\r\n</strong></span></h4>\r\nSelf-hypnosis is a very powerful set of tools that can really help us to control out states, emotions and feelings, on demand.\r\nWe teach self-hypnosis in a number of ways such as group workshops and individual sessions.\r\nYou can learn more about <strong>The Wednesday Workshops </strong>where we teach many usefull NLP, EFT and Self-Hypnosis skills.\r\n<a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit the Wednesday Workshop Group here.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually, change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe Newcastle Hypnotherapy Cramlington Practice can be found at\r\n\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','Newcastle Hypnotherapy Cramlington Practice','','publish','closed','closed','','newcastle-hypnotherapy-cramlington-practice','','','2018-12-27 18:57:55','2018-12-27 18:57:55','',0,'https://www.newcastle-hypnotherapy.com/?page_id=2370',0,'page','',0),(2371,1,'2018-12-27 16:42:40','2018-12-27 16:42:40','','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-revision-v1','','','2018-12-27 16:42:40','2018-12-27 16:42:40','',2370,'https://www.newcastle-hypnotherapy.com/2370-revision-v1/',0,'revision','',0),(2372,1,'2018-12-27 18:18:49','2018-12-27 18:18:49','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:</span></strong></h4>\n<span class=\"LrzXr\"><strong>27 Greystoke Place,</strong>\n<strong>Cramlington,</strong>\n<strong>Northumberland</strong>\n<strong>NE23 6NL\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\n<h4><span class=\"LrzXr\">\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\n</strong></span></h4>\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\n\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span></strong></h4>\n<strong>Monday -</strong> 9.00 am to 8.00 pm\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\n<strong>Friday - </strong> 9.00 am to 1.00 pm\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\n\n<strong>Other hypnosis appointment times can be arranged on request.\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\n<ol>\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\n</strong></li>\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\n</ol>\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\nFor details of these events simply <em>join our email newsletter below.</em>\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\n</strong></span></h2>\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\nYes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.\n<div class=\"responsive-map\">\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\n</strong></li>\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\n 	<li><strong>Online – by video\n</strong></li>\n</ul>\n</li>\n</ul>\n<h4>Newcastle Hypnotherapy Cramlington Practice Map</h4>\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.4503404803413!2d-1.5884962846403832!3d55.07036405188417!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487e73ba94a126c9%3A0xdf350e99c273a554!2s27+Greystoke+Pl%2C+Cramlington+NE23+6NL!5e0!3m2!1sen!2suk!4v1545934239865\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\n</div>\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\nYes, we can certainly offer home or work visits if you are unable to come to us.\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\nClients certainly experience the same successful benefits as face to face hypnotherapy.\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\nYes, of course we can help with service designed for children and young adults.   We also have a specialist member of staff on our team who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\nRoughly about and hour to an hour and a half.\nWe can give you a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\n<h4><span style=\"color: #008000;\"><strong>How many sessions will I need?</strong></span></h4>\nThis will really vary on your issue and what you would prefer as an outcome. We can certainly advise better during your free session or first appointment. We find for most people, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a value in doing so.\n<h4><span style=\"color: #008000;\"><strong>What is hypnosis like?\n</strong></span></h4>\nHypnosis is a natural state that you experience every day. Its is rather like pure focus and awarness while feeling relaxed and calm.\nYou will be fully alert during you hypnosis session and you will usually remember everything in full detail.  Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\n<h4><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h4>\nHypnosis works for most people and there are differening opinions regarding everyone being able to be hypnotised.\nMost of our clients find hypnotherapy works very well for them and we do see great imporvments. However, we do use many modern techniques such as NLP, EFT, Mindfulness and Meditation. We can use any of these techniques if hypnosis is not our chosen method.\n<h4><span style=\"color: #008000;\"><strong>What is the best way to learn Self- Hypnosis\n</strong></span></h4>\nSelf-hypnosis is a very powerful set of tools that can really help us to control out states, emotions and feelings, on demand.\nWe teach self-hypnosis in a number of ways such as group workshops and individual sessions.\nYou can learn more about <strong>The Wednesday Workshops </strong>where we teach many usefull NLP, EFT and Self-Hypnosis skills.\n<a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit the Wednesday Workshop Group here.</strong></a>\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\nWe can advise better when you contact us.\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\n\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\nThe Newcastle Hypnotherapy Cramlington Practice can be found at\n\n<span class=\"LrzXr\"><strong>27 Greystoke Place, </strong>\n<strong>Cramlington,</strong>\n<strong>Northumberland</strong>\n<strong>NE23 6NL\n</strong></span>\n\n<strong>Tel 07568 455 809.</strong>\n\nYou can also learn about our regular events and workshops by joining our newsletter above.\n<div class=\"responsive-map\">\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\n<ul>\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington</strong></a></li>\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\n 	<li><strong>Newcastle City Centre</strong></li>\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\n 	<li><strong>Online - by video</strong></li>\n</ul>\n</div>','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-autosave-v1','','','2018-12-27 18:18:49','2018-12-27 18:18:49','',2370,'https://www.newcastle-hypnotherapy.com/2370-autosave-v1/',0,'revision','',0),(2385,1,'2018-12-27 18:02:07','2018-12-27 18:02:07','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>27 Greystoke Pl, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span class=\"LrzXr\">\r\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\r\n</strong></span></h4>\r\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\r\n\r\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\r\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span></strong></h4>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\r\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\n<strong>For details of these events simply <em>join our email newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nYes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.\r\n<div class=\"responsive-map\">\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\r\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\r\n</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<strong><strong>Online – by video\r\n</strong></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n\r\n</div>','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-revision-v1','','','2018-12-27 18:02:07','2018-12-27 18:02:07','',2370,'https://www.newcastle-hypnotherapy.com/2370-revision-v1/',0,'revision','',0),(2373,1,'2018-12-27 17:45:59','2018-12-27 17:45:59','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:\r\n</span></strong><span class=\"LrzXr\"><strong>27 Greystoke Pl, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span></h4>\r\n<h4><span class=\"LrzXr\">\r\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\r\n</strong></span></h4>\r\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\r\n\r\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\r\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span>\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm</h4>\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\r\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\n<div class=\"responsive-map\">\r\n\r\nYes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\r\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\r\n</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n 	<li><strong>Online – by video,\r\n</strong></li>\r\n</ul>\r\n</div>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes, of course we can help with service designed for children and young adults.   We also have a specialist member of staff on our team who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nRoughly about and hour to an hour and a half.\r\nWe can give you a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many sessions will I need?</strong></span></h4>\r\nThis will really vary on your issue and what you would prefer as an outcome. We can certainly advise better during your free session or first appointment. We find for most people, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a value in doing so.\r\n<h4><span style=\"color: #008000;\"><strong>What is hypnosis like?\r\n</strong></span></h4>\r\nHypnosis is a natural state that you experience every day. Its is rather like pure focus and awarness while feeling relaxed and calm.\r\nYou will be fully alert during you hypnosis session and you will usually remember everything in full detail.  Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h4>\r\nHypnosis works for most people and there are differening opinions regarding everyone being able to be hypnotised.\r\nMost of our clients find hypnotherapy works very well for them and we do see great imporvments. However, we do use many modern techniques such as NLP, EFT, Mindfulness and Meditation. We can use any of these techniques if hypnosis is not our chosen method.\r\n<h4><span style=\"color: #008000;\"><strong>What is the best way to learn Self- Hypnosis\r\n</strong></span></h4>\r\nSelf-hypnosis is a very powerful set of tools that can really help us to control out states, emotions and feelings, on demand.\r\nWe teach self-hypnosis in a number of ways such as group workshops and individual sessions.\r\nYou can learn more about <strong>The Wednesday Workshops </strong>where we teach many usefull NLP, EFT and Self-Hypnosis skills.\r\n<a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit the Wednesday Workshop Group here.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe Newcastle Hypnotherapy Cramlington Practice can be found at\r\n\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-revision-v1','','','2018-12-27 17:45:59','2018-12-27 17:45:59','',2370,'https://www.newcastle-hypnotherapy.com/2370-revision-v1/',0,'revision','',0),(2374,1,'2018-12-27 17:47:20','2018-12-27 17:47:20','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>27 Greystoke Pl, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span class=\"LrzXr\">\r\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\r\n</strong></span></h4>\r\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\r\n\r\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\r\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span>\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm</h4>\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\r\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\n<div class=\"responsive-map\">\r\n\r\nYes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\r\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\r\n</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n 	<li><strong>Online – by video,\r\n</strong></li>\r\n</ul>\r\n</div>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes, of course we can help with service designed for children and young adults.   We also have a specialist member of staff on our team who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nRoughly about and hour to an hour and a half.\r\nWe can give you a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many sessions will I need?</strong></span></h4>\r\nThis will really vary on your issue and what you would prefer as an outcome. We can certainly advise better during your free session or first appointment. We find for most people, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a value in doing so.\r\n<h4><span style=\"color: #008000;\"><strong>What is hypnosis like?\r\n</strong></span></h4>\r\nHypnosis is a natural state that you experience every day. Its is rather like pure focus and awarness while feeling relaxed and calm.\r\nYou will be fully alert during you hypnosis session and you will usually remember everything in full detail.  Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h4>\r\nHypnosis works for most people and there are differening opinions regarding everyone being able to be hypnotised.\r\nMost of our clients find hypnotherapy works very well for them and we do see great imporvments. However, we do use many modern techniques such as NLP, EFT, Mindfulness and Meditation. We can use any of these techniques if hypnosis is not our chosen method.\r\n<h4><span style=\"color: #008000;\"><strong>What is the best way to learn Self- Hypnosis\r\n</strong></span></h4>\r\nSelf-hypnosis is a very powerful set of tools that can really help us to control out states, emotions and feelings, on demand.\r\nWe teach self-hypnosis in a number of ways such as group workshops and individual sessions.\r\nYou can learn more about <strong>The Wednesday Workshops </strong>where we teach many usefull NLP, EFT and Self-Hypnosis skills.\r\n<a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit the Wednesday Workshop Group here.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe Newcastle Hypnotherapy Cramlington Practice can be found at\r\n\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-revision-v1','','','2018-12-27 17:47:20','2018-12-27 17:47:20','',2370,'https://www.newcastle-hypnotherapy.com/2370-revision-v1/',0,'revision','',0),(2375,1,'2018-12-27 17:48:28','2018-12-27 17:48:28','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>27 Greystoke Pl, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span class=\"LrzXr\">\r\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\r\n</strong></span></h4>\r\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\r\n\r\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\r\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span>\r\n</strong>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm</h4>\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\r\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\n<div class=\"responsive-map\">\r\n\r\nYes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\r\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\r\n</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n 	<li><strong>Online – by video,\r\n</strong></li>\r\n</ul>\r\n</div>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes, of course we can help with service designed for children and young adults.   We also have a specialist member of staff on our team who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nRoughly about and hour to an hour and a half.\r\nWe can give you a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many sessions will I need?</strong></span></h4>\r\nThis will really vary on your issue and what you would prefer as an outcome. We can certainly advise better during your free session or first appointment. We find for most people, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a value in doing so.\r\n<h4><span style=\"color: #008000;\"><strong>What is hypnosis like?\r\n</strong></span></h4>\r\nHypnosis is a natural state that you experience every day. Its is rather like pure focus and awarness while feeling relaxed and calm.\r\nYou will be fully alert during you hypnosis session and you will usually remember everything in full detail.  Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h4>\r\nHypnosis works for most people and there are differening opinions regarding everyone being able to be hypnotised.\r\nMost of our clients find hypnotherapy works very well for them and we do see great imporvments. However, we do use many modern techniques such as NLP, EFT, Mindfulness and Meditation. We can use any of these techniques if hypnosis is not our chosen method.\r\n<h4><span style=\"color: #008000;\"><strong>What is the best way to learn Self- Hypnosis\r\n</strong></span></h4>\r\nSelf-hypnosis is a very powerful set of tools that can really help us to control out states, emotions and feelings, on demand.\r\nWe teach self-hypnosis in a number of ways such as group workshops and individual sessions.\r\nYou can learn more about <strong>The Wednesday Workshops </strong>where we teach many usefull NLP, EFT and Self-Hypnosis skills.\r\n<a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit the Wednesday Workshop Group here.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe Newcastle Hypnotherapy Cramlington Practice can be found at\r\n\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-revision-v1','','','2018-12-27 17:48:28','2018-12-27 17:48:28','',2370,'https://www.newcastle-hypnotherapy.com/2370-revision-v1/',0,'revision','',0),(2376,1,'2018-12-27 17:49:42','2018-12-27 17:49:42','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>27 Greystoke Pl, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span class=\"LrzXr\">\r\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\r\n</strong></span></h4>\r\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\r\n\r\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\r\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span></strong></h4>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\r\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\n<div class=\"responsive-map\">\r\n\r\nYes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\r\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\r\n</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n 	<li><strong>Online – by video,\r\n</strong></li>\r\n</ul>\r\n</div>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes, of course we can help with service designed for children and young adults.   We also have a specialist member of staff on our team who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nRoughly about and hour to an hour and a half.\r\nWe can give you a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many sessions will I need?</strong></span></h4>\r\nThis will really vary on your issue and what you would prefer as an outcome. We can certainly advise better during your free session or first appointment. We find for most people, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a value in doing so.\r\n<h4><span style=\"color: #008000;\"><strong>What is hypnosis like?\r\n</strong></span></h4>\r\nHypnosis is a natural state that you experience every day. Its is rather like pure focus and awarness while feeling relaxed and calm.\r\nYou will be fully alert during you hypnosis session and you will usually remember everything in full detail.  Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h4>\r\nHypnosis works for most people and there are differening opinions regarding everyone being able to be hypnotised.\r\nMost of our clients find hypnotherapy works very well for them and we do see great imporvments. However, we do use many modern techniques such as NLP, EFT, Mindfulness and Meditation. We can use any of these techniques if hypnosis is not our chosen method.\r\n<h4><span style=\"color: #008000;\"><strong>What is the best way to learn Self- Hypnosis\r\n</strong></span></h4>\r\nSelf-hypnosis is a very powerful set of tools that can really help us to control out states, emotions and feelings, on demand.\r\nWe teach self-hypnosis in a number of ways such as group workshops and individual sessions.\r\nYou can learn more about <strong>The Wednesday Workshops </strong>where we teach many usefull NLP, EFT and Self-Hypnosis skills.\r\n<a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit the Wednesday Workshop Group here.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe Newcastle Hypnotherapy Cramlington Practice can be found at\r\n\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-revision-v1','','','2018-12-27 17:49:42','2018-12-27 17:49:42','',2370,'https://www.newcastle-hypnotherapy.com/2370-revision-v1/',0,'revision','',0),(2387,1,'2018-12-27 18:08:08','2018-12-27 18:08:08','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>27 Greystoke Pl, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span class=\"LrzXr\">\r\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\r\n</strong></span></h4>\r\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\r\n\r\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\r\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span></strong></h4>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\r\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\n<strong>For details of these events simply <em>join our email newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nYes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.\r\n<div class=\"responsive-map\">\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\r\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\r\n</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n 	<li><strong><strong>Online – by video\r\n</strong></strong></li>\r\n</ul>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n\r\n<strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong>\r\n\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><strong>Do you offer help and services for children or young adults?</strong></h4>\r\nYes, of course we can help with service designed for children and young adults.   We also have a specialist member of staff on our team who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><strong>How long is a hypnosis session?</strong></h4>\r\nRoughly about and hour to an hour and a half.\r\nWe can give you a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><strong>How many sessions will I need?</strong></h4>\r\nThis will really vary on your issue and what you would prefer as an outcome. We can certainly advise better during your free session or first appointment. We find for most people, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a value in doing so.\r\n<h4><strong>What is hypnosis like?\r\n</strong></h4>\r\nHypnosis is a natural state that you experience every day. Its is rather like pure focus and awarness while feeling relaxed and calm.\r\nYou will be fully alert during you hypnosis session and you will usually remember everything in full detail.  Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><strong>Will hypnotherapy work for everyone?</strong></h4>\r\nHypnosis works for most people and there are differening opinions regarding everyone being able to be hypnotised.\r\nMost of our clients find hypnotherapy works very well for them and we do see great imporvments. However, we do use many modern techniques such as NLP, EFT, Mindfulness and Meditation. We can use any of these techniques if hypnosis is not our chosen method.\r\n<h4><strong>What is the best way to learn Self- Hypnosis\r\n</strong></h4>\r\nSelf-hypnosis is a very powerful set of tools that can really help us to control out states, emotions and feelings, on demand.\r\nWe teach self-hypnosis in a number of ways such as group workshops and individual sessions.\r\nYou can learn more about <strong>The Wednesday Workshops </strong>where we teach many usefull NLP, EFT and Self-Hypnosis skills.\r\n<a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit the Wednesday Workshop Group here.</strong></a>\r\n<h4><strong>How much do you charge for sessions?</strong></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><strong>How fast can hypnotherapy and NLP help me?</strong></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe Newcastle Hypnotherapy Cramlington Practice can be found at\r\n\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>\r\n</div>','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-revision-v1','','','2018-12-27 18:08:08','2018-12-27 18:08:08','',2370,'https://www.newcastle-hypnotherapy.com/2370-revision-v1/',0,'revision','',0),(2378,1,'2018-12-27 17:52:34','2018-12-27 17:52:34','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>27 Greystoke Pl, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span class=\"LrzXr\">\r\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\r\n</strong></span></h4>\r\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\r\n\r\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\r\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span></strong></h4>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\r\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nYes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.\r\n<div class=\"responsive-map\">\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\r\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\r\n</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n 	<li><strong>Online – by video,\r\n</strong></li>\r\n</ul>\r\n</div>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes, of course we can help with service designed for children and young adults.   We also have a specialist member of staff on our team who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nRoughly about and hour to an hour and a half.\r\nWe can give you a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many sessions will I need?</strong></span></h4>\r\nThis will really vary on your issue and what you would prefer as an outcome. We can certainly advise better during your free session or first appointment. We find for most people, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a value in doing so.\r\n<h4><span style=\"color: #008000;\"><strong>What is hypnosis like?\r\n</strong></span></h4>\r\nHypnosis is a natural state that you experience every day. Its is rather like pure focus and awarness while feeling relaxed and calm.\r\nYou will be fully alert during you hypnosis session and you will usually remember everything in full detail.  Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h4>\r\nHypnosis works for most people and there are differening opinions regarding everyone being able to be hypnotised.\r\nMost of our clients find hypnotherapy works very well for them and we do see great imporvments. However, we do use many modern techniques such as NLP, EFT, Mindfulness and Meditation. We can use any of these techniques if hypnosis is not our chosen method.\r\n<h4><span style=\"color: #008000;\"><strong>What is the best way to learn Self- Hypnosis\r\n</strong></span></h4>\r\nSelf-hypnosis is a very powerful set of tools that can really help us to control out states, emotions and feelings, on demand.\r\nWe teach self-hypnosis in a number of ways such as group workshops and individual sessions.\r\nYou can learn more about <strong>The Wednesday Workshops </strong>where we teach many usefull NLP, EFT and Self-Hypnosis skills.\r\n<a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit the Wednesday Workshop Group here.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe Newcastle Hypnotherapy Cramlington Practice can be found at\r\n\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-revision-v1','','','2018-12-27 17:52:34','2018-12-27 17:52:34','',2370,'https://www.newcastle-hypnotherapy.com/2370-revision-v1/',0,'revision','',0),(2377,1,'2018-12-27 17:51:40','2018-12-27 17:51:40','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>27 Greystoke Pl, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span class=\"LrzXr\">\r\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\r\n</strong></span></h4>\r\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\r\n\r\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\r\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span></strong></h4>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\r\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\n<h4>Yes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.</h4>\r\n<div class=\"responsive-map\">\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\r\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\r\n</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n 	<li><strong>Online – by video,\r\n</strong></li>\r\n</ul>\r\n</div>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes, of course we can help with service designed for children and young adults.   We also have a specialist member of staff on our team who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nRoughly about and hour to an hour and a half.\r\nWe can give you a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many sessions will I need?</strong></span></h4>\r\nThis will really vary on your issue and what you would prefer as an outcome. We can certainly advise better during your free session or first appointment. We find for most people, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a value in doing so.\r\n<h4><span style=\"color: #008000;\"><strong>What is hypnosis like?\r\n</strong></span></h4>\r\nHypnosis is a natural state that you experience every day. Its is rather like pure focus and awarness while feeling relaxed and calm.\r\nYou will be fully alert during you hypnosis session and you will usually remember everything in full detail.  Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h4>\r\nHypnosis works for most people and there are differening opinions regarding everyone being able to be hypnotised.\r\nMost of our clients find hypnotherapy works very well for them and we do see great imporvments. However, we do use many modern techniques such as NLP, EFT, Mindfulness and Meditation. We can use any of these techniques if hypnosis is not our chosen method.\r\n<h4><span style=\"color: #008000;\"><strong>What is the best way to learn Self- Hypnosis\r\n</strong></span></h4>\r\nSelf-hypnosis is a very powerful set of tools that can really help us to control out states, emotions and feelings, on demand.\r\nWe teach self-hypnosis in a number of ways such as group workshops and individual sessions.\r\nYou can learn more about <strong>The Wednesday Workshops </strong>where we teach many usefull NLP, EFT and Self-Hypnosis skills.\r\n<a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit the Wednesday Workshop Group here.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe Newcastle Hypnotherapy Cramlington Practice can be found at\r\n\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-revision-v1','','','2018-12-27 17:51:40','2018-12-27 17:51:40','',2370,'https://www.newcastle-hypnotherapy.com/2370-revision-v1/',0,'revision','',0),(2379,1,'2018-12-27 17:54:06','2018-12-27 17:54:06','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>27 Greystoke Pl, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span class=\"LrzXr\">\r\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\r\n</strong></span></h4>\r\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\r\n\r\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\r\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span></strong></h4>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\r\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nYes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.\r\n<div class=\"responsive-map\">\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\r\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\r\n</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n 	<li><strong>Online – by video\r\n</strong></li>\r\n</ul>\r\n</div>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes, of course we can help with service designed for children and young adults.   We also have a specialist member of staff on our team who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nRoughly about and hour to an hour and a half.\r\nWe can give you a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many sessions will I need?</strong></span></h4>\r\nThis will really vary on your issue and what you would prefer as an outcome. We can certainly advise better during your free session or first appointment. We find for most people, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a value in doing so.\r\n<h4><span style=\"color: #008000;\"><strong>What is hypnosis like?\r\n</strong></span></h4>\r\nHypnosis is a natural state that you experience every day. Its is rather like pure focus and awarness while feeling relaxed and calm.\r\nYou will be fully alert during you hypnosis session and you will usually remember everything in full detail.  Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h4>\r\nHypnosis works for most people and there are differening opinions regarding everyone being able to be hypnotised.\r\nMost of our clients find hypnotherapy works very well for them and we do see great imporvments. However, we do use many modern techniques such as NLP, EFT, Mindfulness and Meditation. We can use any of these techniques if hypnosis is not our chosen method.\r\n<h4><span style=\"color: #008000;\"><strong>What is the best way to learn Self- Hypnosis\r\n</strong></span></h4>\r\nSelf-hypnosis is a very powerful set of tools that can really help us to control out states, emotions and feelings, on demand.\r\nWe teach self-hypnosis in a number of ways such as group workshops and individual sessions.\r\nYou can learn more about <strong>The Wednesday Workshops </strong>where we teach many usefull NLP, EFT and Self-Hypnosis skills.\r\n<a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit the Wednesday Workshop Group here.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe Newcastle Hypnotherapy Cramlington Practice can be found at\r\n\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-revision-v1','','','2018-12-27 17:54:06','2018-12-27 17:54:06','',2370,'https://www.newcastle-hypnotherapy.com/2370-revision-v1/',0,'revision','',0),(2380,1,'2018-12-27 17:55:07','2018-12-27 17:55:07','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>27 Greystoke Pl, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span class=\"LrzXr\">\r\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\r\n</strong></span></h4>\r\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\r\n\r\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\r\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span></strong></h4>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\r\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nYes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.\r\n<div class=\"responsive-map\">\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\r\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\r\n</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n 	<li><strong><strong>Online – by video\r\n</strong></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes, of course we can help with service designed for children and young adults.   We also have a specialist member of staff on our team who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nRoughly about and hour to an hour and a half.\r\nWe can give you a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many sessions will I need?</strong></span></h4>\r\nThis will really vary on your issue and what you would prefer as an outcome. We can certainly advise better during your free session or first appointment. We find for most people, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a value in doing so.\r\n<h4><span style=\"color: #008000;\"><strong>What is hypnosis like?\r\n</strong></span></h4>\r\nHypnosis is a natural state that you experience every day. Its is rather like pure focus and awarness while feeling relaxed and calm.\r\nYou will be fully alert during you hypnosis session and you will usually remember everything in full detail.  Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h4>\r\nHypnosis works for most people and there are differening opinions regarding everyone being able to be hypnotised.\r\nMost of our clients find hypnotherapy works very well for them and we do see great imporvments. However, we do use many modern techniques such as NLP, EFT, Mindfulness and Meditation. We can use any of these techniques if hypnosis is not our chosen method.\r\n<h4><span style=\"color: #008000;\"><strong>What is the best way to learn Self- Hypnosis\r\n</strong></span></h4>\r\nSelf-hypnosis is a very powerful set of tools that can really help us to control out states, emotions and feelings, on demand.\r\nWe teach self-hypnosis in a number of ways such as group workshops and individual sessions.\r\nYou can learn more about <strong>The Wednesday Workshops </strong>where we teach many usefull NLP, EFT and Self-Hypnosis skills.\r\n<a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit the Wednesday Workshop Group here.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe Newcastle Hypnotherapy Cramlington Practice can be found at\r\n\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div></li>\r\n</ul>\r\n</div>','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-revision-v1','','','2018-12-27 17:55:07','2018-12-27 17:55:07','',2370,'https://www.newcastle-hypnotherapy.com/2370-revision-v1/',0,'revision','',0),(2384,1,'2018-12-27 18:01:38','2018-12-27 18:01:38','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>27 Greystoke Pl, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span class=\"LrzXr\">\r\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\r\n</strong></span></h4>\r\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\r\n\r\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\r\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span></strong></h4>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\r\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\n<strong>For details of these events simply <em>join our email newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nYes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.\r\n<div class=\"responsive-map\">\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\r\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\r\n</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<strong><strong>Online – by video\r\n</strong></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<div class=\"responsive-map\">\r\n<ul>\r\n 	<li></li>\r\n</ul>\r\n</div>\r\n</div>','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-revision-v1','','','2018-12-27 18:01:38','2018-12-27 18:01:38','',2370,'https://www.newcastle-hypnotherapy.com/2370-revision-v1/',0,'revision','',0),(2381,1,'2018-12-27 17:56:47','2018-12-27 17:56:47','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>27 Greystoke Pl, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span class=\"LrzXr\">\r\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\r\n</strong></span></h4>\r\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\r\n\r\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\r\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span></strong></h4>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\r\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\n<strong>For details of these events simply <em>join our email newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nYes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.\r\n<div class=\"responsive-map\">\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\r\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\r\n</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n 	<li><strong><strong>Online – by video\r\n</strong></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes, of course we can help with service designed for children and young adults.   We also have a specialist member of staff on our team who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nRoughly about and hour to an hour and a half.\r\nWe can give you a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many sessions will I need?</strong></span></h4>\r\nThis will really vary on your issue and what you would prefer as an outcome. We can certainly advise better during your free session or first appointment. We find for most people, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a value in doing so.\r\n<h4><span style=\"color: #008000;\"><strong>What is hypnosis like?\r\n</strong></span></h4>\r\nHypnosis is a natural state that you experience every day. Its is rather like pure focus and awarness while feeling relaxed and calm.\r\nYou will be fully alert during you hypnosis session and you will usually remember everything in full detail.  Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h4>\r\nHypnosis works for most people and there are differening opinions regarding everyone being able to be hypnotised.\r\nMost of our clients find hypnotherapy works very well for them and we do see great imporvments. However, we do use many modern techniques such as NLP, EFT, Mindfulness and Meditation. We can use any of these techniques if hypnosis is not our chosen method.\r\n<h4><span style=\"color: #008000;\"><strong>What is the best way to learn Self- Hypnosis\r\n</strong></span></h4>\r\nSelf-hypnosis is a very powerful set of tools that can really help us to control out states, emotions and feelings, on demand.\r\nWe teach self-hypnosis in a number of ways such as group workshops and individual sessions.\r\nYou can learn more about <strong>The Wednesday Workshops </strong>where we teach many usefull NLP, EFT and Self-Hypnosis skills.\r\n<a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit the Wednesday Workshop Group here.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe Newcastle Hypnotherapy Cramlington Practice can be found at\r\n\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div></li>\r\n</ul>\r\n</div>','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-revision-v1','','','2018-12-27 17:56:47','2018-12-27 17:56:47','',2370,'https://www.newcastle-hypnotherapy.com/2370-revision-v1/',0,'revision','',0),(2382,1,'2018-12-27 17:58:07','2018-12-27 17:58:07','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>27 Greystoke Pl, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span class=\"LrzXr\">\r\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\r\n</strong></span></h4>\r\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\r\n\r\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\r\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span></strong></h4>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\r\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\n<strong>For details of these events simply <em>join our email newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nYes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.\r\n<div class=\"responsive-map\">\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\r\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\r\n</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<strong><strong>Online – by video\r\n</strong></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\n&nbsp;\r\n\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes, of course we can help with service designed for children and young adults.   We also have a specialist member of staff on our team who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nRoughly about and hour to an hour and a half.\r\nWe can give you a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many sessions will I need?</strong></span></h4>\r\nThis will really vary on your issue and what you would prefer as an outcome. We can certainly advise better during your free session or first appointment. We find for most people, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a value in doing so.\r\n<h4><span style=\"color: #008000;\"><strong>What is hypnosis like?\r\n</strong></span></h4>\r\nHypnosis is a natural state that you experience every day. Its is rather like pure focus and awarness while feeling relaxed and calm.\r\nYou will be fully alert during you hypnosis session and you will usually remember everything in full detail.  Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h4>\r\nHypnosis works for most people and there are differening opinions regarding everyone being able to be hypnotised.\r\nMost of our clients find hypnotherapy works very well for them and we do see great imporvments. However, we do use many modern techniques such as NLP, EFT, Mindfulness and Meditation. We can use any of these techniques if hypnosis is not our chosen method.\r\n<h4><span style=\"color: #008000;\"><strong>What is the best way to learn Self- Hypnosis\r\n</strong></span></h4>\r\nSelf-hypnosis is a very powerful set of tools that can really help us to control out states, emotions and feelings, on demand.\r\nWe teach self-hypnosis in a number of ways such as group workshops and individual sessions.\r\nYou can learn more about <strong>The Wednesday Workshops </strong>where we teach many usefull NLP, EFT and Self-Hypnosis skills.\r\n<a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit the Wednesday Workshop Group here.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe Newcastle Hypnotherapy Cramlington Practice can be found at\r\n\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>\r\n</div>','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-revision-v1','','','2018-12-27 17:58:07','2018-12-27 17:58:07','',2370,'https://www.newcastle-hypnotherapy.com/2370-revision-v1/',0,'revision','',0),(2383,1,'2018-12-27 17:59:37','2018-12-27 17:59:37','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>27 Greystoke Pl, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span class=\"LrzXr\">\r\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\r\n</strong></span></h4>\r\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\r\n\r\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\r\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span></strong></h4>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\r\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\n<strong>For details of these events simply <em>join our email newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nYes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.\r\n<div class=\"responsive-map\">\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\r\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\r\n</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<strong><strong>Online – by video\r\n</strong></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes, of course we can help with service designed for children and young adults.   We also have a specialist member of staff on our team who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nRoughly about and hour to an hour and a half.\r\nWe can give you a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many sessions will I need?</strong></span></h4>\r\nThis will really vary on your issue and what you would prefer as an outcome. We can certainly advise better during your free session or first appointment. We find for most people, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a value in doing so.\r\n<h4><span style=\"color: #008000;\"><strong>What is hypnosis like?\r\n</strong></span></h4>\r\nHypnosis is a natural state that you experience every day. Its is rather like pure focus and awarness while feeling relaxed and calm.\r\nYou will be fully alert during you hypnosis session and you will usually remember everything in full detail.  Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h4>\r\nHypnosis works for most people and there are differening opinions regarding everyone being able to be hypnotised.\r\nMost of our clients find hypnotherapy works very well for them and we do see great imporvments. However, we do use many modern techniques such as NLP, EFT, Mindfulness and Meditation. We can use any of these techniques if hypnosis is not our chosen method.\r\n<h4><span style=\"color: #008000;\"><strong>What is the best way to learn Self- Hypnosis\r\n</strong></span></h4>\r\nSelf-hypnosis is a very powerful set of tools that can really help us to control out states, emotions and feelings, on demand.\r\nWe teach self-hypnosis in a number of ways such as group workshops and individual sessions.\r\nYou can learn more about <strong>The Wednesday Workshops </strong>where we teach many usefull NLP, EFT and Self-Hypnosis skills.\r\n<a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit the Wednesday Workshop Group here.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe Newcastle Hypnotherapy Cramlington Practice can be found at\r\n\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>\r\n</div>','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-revision-v1','','','2018-12-27 17:59:37','2018-12-27 17:59:37','',2370,'https://www.newcastle-hypnotherapy.com/2370-revision-v1/',0,'revision','',0),(2386,1,'2018-12-27 18:02:48','2018-12-27 18:02:48','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>27 Greystoke Pl, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span class=\"LrzXr\">\r\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\r\n</strong></span></h4>\r\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\r\n\r\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\r\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span></strong></h4>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\r\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\n<strong>For details of these events simply <em>join our email newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nYes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.\r\n<div class=\"responsive-map\">\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\r\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\r\n</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<strong><strong>Online – by video\r\n</strong></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n\r\n<strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong>\r\n\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><strong>Do you offer help and services for children or young adults?</strong></h4>\r\nYes, of course we can help with service designed for children and young adults.   We also have a specialist member of staff on our team who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><strong>How long is a hypnosis session?</strong></h4>\r\nRoughly about and hour to an hour and a half.\r\nWe can give you a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><strong>How many sessions will I need?</strong></h4>\r\nThis will really vary on your issue and what you would prefer as an outcome. We can certainly advise better during your free session or first appointment. We find for most people, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a value in doing so.\r\n<h4><strong>What is hypnosis like?\r\n</strong></h4>\r\nHypnosis is a natural state that you experience every day. Its is rather like pure focus and awarness while feeling relaxed and calm.\r\nYou will be fully alert during you hypnosis session and you will usually remember everything in full detail.  Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><strong>Will hypnotherapy work for everyone?</strong></h4>\r\nHypnosis works for most people and there are differening opinions regarding everyone being able to be hypnotised.\r\nMost of our clients find hypnotherapy works very well for them and we do see great imporvments. However, we do use many modern techniques such as NLP, EFT, Mindfulness and Meditation. We can use any of these techniques if hypnosis is not our chosen method.\r\n<h4><strong>What is the best way to learn Self- Hypnosis\r\n</strong></h4>\r\nSelf-hypnosis is a very powerful set of tools that can really help us to control out states, emotions and feelings, on demand.\r\nWe teach self-hypnosis in a number of ways such as group workshops and individual sessions.\r\nYou can learn more about <strong>The Wednesday Workshops </strong>where we teach many usefull NLP, EFT and Self-Hypnosis skills.\r\n<a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit the Wednesday Workshop Group here.</strong></a>\r\n<h4><strong>How much do you charge for sessions?</strong></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><strong>How fast can hypnotherapy and NLP help me?</strong></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe Newcastle Hypnotherapy Cramlington Practice can be found at\r\n\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>\r\n</div>','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-revision-v1','','','2018-12-27 18:02:48','2018-12-27 18:02:48','',2370,'https://www.newcastle-hypnotherapy.com/2370-revision-v1/',0,'revision','',0),(2388,1,'2018-12-27 18:08:40','2018-12-27 18:08:40','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>27 Greystoke Pl, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span class=\"LrzXr\">\r\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\r\n</strong></span></h4>\r\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\r\n\r\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\r\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span></strong></h4>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\r\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\n<strong>For details of these events simply <em>join our email newsletter below.</em></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nYes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.\r\n<div class=\"responsive-map\">\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\r\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\r\n</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<strong><strong>Online – by video\r\n</strong></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes, of course we can help with service designed for children and young adults.   We also have a specialist member of staff on our team who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nRoughly about and hour to an hour and a half.\r\nWe can give you a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many sessions will I need?</strong></span></h4>\r\nThis will really vary on your issue and what you would prefer as an outcome. We can certainly advise better during your free session or first appointment. We find for most people, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a value in doing so.\r\n<h4><span style=\"color: #008000;\"><strong>What is hypnosis like?\r\n</strong></span></h4>\r\nHypnosis is a natural state that you experience every day. Its is rather like pure focus and awarness while feeling relaxed and calm.\r\nYou will be fully alert during you hypnosis session and you will usually remember everything in full detail.  Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h4>\r\nHypnosis works for most people and there are differening opinions regarding everyone being able to be hypnotised.\r\nMost of our clients find hypnotherapy works very well for them and we do see great imporvments. However, we do use many modern techniques such as NLP, EFT, Mindfulness and Meditation. We can use any of these techniques if hypnosis is not our chosen method.\r\n<h4><span style=\"color: #008000;\"><strong>What is the best way to learn Self- Hypnosis\r\n</strong></span></h4>\r\nSelf-hypnosis is a very powerful set of tools that can really help us to control out states, emotions and feelings, on demand.\r\nWe teach self-hypnosis in a number of ways such as group workshops and individual sessions.\r\nYou can learn more about <strong>The Wednesday Workshops </strong>where we teach many usefull NLP, EFT and Self-Hypnosis skills.\r\n<a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit the Wednesday Workshop Group here.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe Newcastle Hypnotherapy Cramlington Practice can be found at\r\n\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>\r\n</div>','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-revision-v1','','','2018-12-27 18:08:40','2018-12-27 18:08:40','',2370,'https://www.newcastle-hypnotherapy.com/2370-revision-v1/',0,'revision','',0),(2389,1,'2018-12-27 18:09:16','2018-12-27 18:09:16','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>27 Greystoke Pl, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span class=\"LrzXr\">\r\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\r\n</strong></span></h4>\r\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\r\n\r\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\r\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span></strong></h4>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\r\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nYes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.\r\n<div class=\"responsive-map\">\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\r\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\r\n</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n 	<li><strong>Online – by video\r\n</strong></li>\r\n</ul>\r\n</div>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes, of course we can help with service designed for children and young adults.   We also have a specialist member of staff on our team who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nRoughly about and hour to an hour and a half.\r\nWe can give you a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many sessions will I need?</strong></span></h4>\r\nThis will really vary on your issue and what you would prefer as an outcome. We can certainly advise better during your free session or first appointment. We find for most people, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a value in doing so.\r\n<h4><span style=\"color: #008000;\"><strong>What is hypnosis like?\r\n</strong></span></h4>\r\nHypnosis is a natural state that you experience every day. Its is rather like pure focus and awarness while feeling relaxed and calm.\r\nYou will be fully alert during you hypnosis session and you will usually remember everything in full detail.  Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h4>\r\nHypnosis works for most people and there are differening opinions regarding everyone being able to be hypnotised.\r\nMost of our clients find hypnotherapy works very well for them and we do see great imporvments. However, we do use many modern techniques such as NLP, EFT, Mindfulness and Meditation. We can use any of these techniques if hypnosis is not our chosen method.\r\n<h4><span style=\"color: #008000;\"><strong>What is the best way to learn Self- Hypnosis\r\n</strong></span></h4>\r\nSelf-hypnosis is a very powerful set of tools that can really help us to control out states, emotions and feelings, on demand.\r\nWe teach self-hypnosis in a number of ways such as group workshops and individual sessions.\r\nYou can learn more about <strong>The Wednesday Workshops </strong>where we teach many usefull NLP, EFT and Self-Hypnosis skills.\r\n<a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit the Wednesday Workshop Group here.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe Newcastle Hypnotherapy Cramlington Practice can be found at\r\n\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-revision-v1','','','2018-12-27 18:09:16','2018-12-27 18:09:16','',2370,'https://www.newcastle-hypnotherapy.com/2370-revision-v1/',0,'revision','',0),(2390,1,'2018-12-27 18:12:28','2018-12-27 18:12:28','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>27 Greystoke Pl, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span class=\"LrzXr\">\r\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\r\n</strong></span></h4>\r\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\r\n\r\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\r\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span></strong></h4>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\r\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nYes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.\r\n<div class=\"responsive-map\">\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\r\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\r\n</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n 	<li><strong>Online – by video\r\n</strong></li>\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.4503404803413!2d-1.5884962846403832!3d55.07036405188417!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487e73ba94a126c9%3A0xdf350e99c273a554!2s27+Greystoke+Pl%2C+Cramlington+NE23+6NL!5e0!3m2!1sen!2suk!4v1545934239865\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\r\n</ul>\r\n</div>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes, of course we can help with service designed for children and young adults.   We also have a specialist member of staff on our team who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nRoughly about and hour to an hour and a half.\r\nWe can give you a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many sessions will I need?</strong></span></h4>\r\nThis will really vary on your issue and what you would prefer as an outcome. We can certainly advise better during your free session or first appointment. We find for most people, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a value in doing so.\r\n<h4><span style=\"color: #008000;\"><strong>What is hypnosis like?\r\n</strong></span></h4>\r\nHypnosis is a natural state that you experience every day. Its is rather like pure focus and awarness while feeling relaxed and calm.\r\nYou will be fully alert during you hypnosis session and you will usually remember everything in full detail.  Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h4>\r\nHypnosis works for most people and there are differening opinions regarding everyone being able to be hypnotised.\r\nMost of our clients find hypnotherapy works very well for them and we do see great imporvments. However, we do use many modern techniques such as NLP, EFT, Mindfulness and Meditation. We can use any of these techniques if hypnosis is not our chosen method.\r\n<h4><span style=\"color: #008000;\"><strong>What is the best way to learn Self- Hypnosis\r\n</strong></span></h4>\r\nSelf-hypnosis is a very powerful set of tools that can really help us to control out states, emotions and feelings, on demand.\r\nWe teach self-hypnosis in a number of ways such as group workshops and individual sessions.\r\nYou can learn more about <strong>The Wednesday Workshops </strong>where we teach many usefull NLP, EFT and Self-Hypnosis skills.\r\n<a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit the Wednesday Workshop Group here.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe Newcastle Hypnotherapy Cramlington Practice can be found at\r\n\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-revision-v1','','','2018-12-27 18:12:28','2018-12-27 18:12:28','',2370,'https://www.newcastle-hypnotherapy.com/2370-revision-v1/',0,'revision','',0),(2392,1,'2018-12-27 18:19:43','2018-12-27 18:19:43','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place,</strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span class=\"LrzXr\">\r\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\r\n</strong></span></h4>\r\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\r\n\r\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\r\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span></strong></h4>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\r\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nYes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.\r\n<div class=\"responsive-map\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\r\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\r\n</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n 	<li><strong>Online – by video\r\n</strong></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>Newcastle Hypnotherapy Cramlington Practice Map</h4>\r\n<div class=\"responsive-map\"></div>\r\n</div>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes, of course, we can help with service designed for children and young adults.   We also have a specialist member of staff on our team who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nRoughly about and hour to an hour and a half.\r\nWe can give you a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many sessions will I need?</strong></span></h4>\r\nThis will really vary on your issue and what you would prefer as an outcome. We can certainly advise better during your free session or first appointment. We find for most people, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a value in doing so.\r\n<h4><span style=\"color: #008000;\"><strong>What is hypnosis like?\r\n</strong></span></h4>\r\nHypnosis is a natural state that you experience every day. It is rather like pure focus and awareness while feeling relaxed and calm.\r\nYou will be fully alert during your hypnosis session and you will usually remember everything in full detail.  Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h4>\r\nHypnosis works for most people and there are differening opinions regarding everyone being able to be hypnotised.\r\nMost of our clients find hypnotherapy works very well for them and we do see great imporvments. However, we do use many modern techniques such as NLP, EFT, Mindfulness and Meditation. We can use any of these techniques if hypnosis is not our chosen method.\r\n<h4><span style=\"color: #008000;\"><strong>What is the best way to learn Self- Hypnosis\r\n</strong></span></h4>\r\nSelf-hypnosis is a very powerful set of tools that can really help us to control out states, emotions and feelings, on demand.\r\nWe teach self-hypnosis in a number of ways such as group workshops and individual sessions.\r\nYou can learn more about <strong>The Wednesday Workshops </strong>where we teach many usefull NLP, EFT and Self-Hypnosis skills.\r\n<a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit the Wednesday Workshop Group here.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually, change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe Newcastle Hypnotherapy Cramlington Practice can be found at\r\n\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-revision-v1','','','2018-12-27 18:19:43','2018-12-27 18:19:43','',2370,'https://www.newcastle-hypnotherapy.com/2370-revision-v1/',0,'revision','',0),(2391,1,'2018-12-27 18:13:48','2018-12-27 18:13:48','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>27 Greystoke Pl, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span class=\"LrzXr\">\r\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\r\n</strong></span></h4>\r\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\r\n\r\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\r\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span></strong></h4>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\r\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nYes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.\r\n<div class=\"responsive-map\">\r\n<ul>\r\n 	<li style=\"list-style-type: none\">\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\r\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\r\n</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n 	<li><strong>Online – by video\r\n</strong></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>Newcastle Hypnotherapy Cramlington Practice Map</h4>\r\n<div class=\"responsive-map\"><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.4503404803413!2d-1.5884962846403832!3d55.07036405188417!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487e73ba94a126c9%3A0xdf350e99c273a554!2s27+Greystoke+Pl%2C+Cramlington+NE23+6NL!5e0!3m2!1sen!2suk!4v1545934239865\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n</div>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes, of course we can help with service designed for children and young adults.   We also have a specialist member of staff on our team who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nRoughly about and hour to an hour and a half.\r\nWe can give you a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many sessions will I need?</strong></span></h4>\r\nThis will really vary on your issue and what you would prefer as an outcome. We can certainly advise better during your free session or first appointment. We find for most people, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a value in doing so.\r\n<h4><span style=\"color: #008000;\"><strong>What is hypnosis like?\r\n</strong></span></h4>\r\nHypnosis is a natural state that you experience every day. Its is rather like pure focus and awarness while feeling relaxed and calm.\r\nYou will be fully alert during you hypnosis session and you will usually remember everything in full detail.  Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h4>\r\nHypnosis works for most people and there are differening opinions regarding everyone being able to be hypnotised.\r\nMost of our clients find hypnotherapy works very well for them and we do see great imporvments. However, we do use many modern techniques such as NLP, EFT, Mindfulness and Meditation. We can use any of these techniques if hypnosis is not our chosen method.\r\n<h4><span style=\"color: #008000;\"><strong>What is the best way to learn Self- Hypnosis\r\n</strong></span></h4>\r\nSelf-hypnosis is a very powerful set of tools that can really help us to control out states, emotions and feelings, on demand.\r\nWe teach self-hypnosis in a number of ways such as group workshops and individual sessions.\r\nYou can learn more about <strong>The Wednesday Workshops </strong>where we teach many usefull NLP, EFT and Self-Hypnosis skills.\r\n<a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit the Wednesday Workshop Group here.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe Newcastle Hypnotherapy Cramlington Practice can be found at\r\n\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-revision-v1','','','2018-12-27 18:13:48','2018-12-27 18:13:48','',2370,'https://www.newcastle-hypnotherapy.com/2370-revision-v1/',0,'revision','',0),(2478,1,'2019-01-06 15:04:08','2019-01-06 15:04:08','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make positive changes using hypnosis and NLP.</strong> <strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; more\r\n</strong></span></p>\r\n<strong><span style=\"color: #ff6600;\">Read on to see what our clients say..............</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-01-06 15:04:08','2019-01-06 15:04:08','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2393,1,'2018-12-27 18:54:18','2018-12-27 18:54:18','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make positive changes using hypnosis and NLP.</strong> <strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; more\r\n</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\n<strong><span style=\"color: #ff6600;\">Read on to see what our clients say..............</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2018-12-27 18:54:18','2018-12-27 18:54:18','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2394,1,'2018-12-27 18:57:55','2018-12-27 18:57:55','<strong> Newcastle Hypnotherapy Cramlington Practice.</strong>\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy Bedlington\" width=\"300\" height=\"198\" />\r\n<h4><strong><span style=\"color: #008000;\">Your Cramlington Hypnotherapy Practice:</span></strong></h4>\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place,</strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span><span style=\"color: #008000;\"><strong>Tel 07568 455 809.</strong></span>\r\n<h4><span class=\"LrzXr\">\r\n</span><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Cramlington Practice\r\n</strong></span></h4>\r\nOur Cramlington Hypnotherapy Practice offers professional Hypnosis Services with other modern techniquest such as NLP - Neuro-Linguistic Programming, EFT - Emotional Freedom Technique and more.\r\n\r\nWe are specialists in <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress,</a> <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, Self-confidence, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain</a>, Weight Loss, Stop Smoking, habits, behaviours and many others.\r\nVisit our <a href=\"https://www.newcastle-hypnotherapy.com\">Main Page</a> for full information on the issues Newcastle Hypnotherapy can help with and our other locations in the North East.\r\n<h4><strong><span style=\"color: #008000;\">Opening Hours. Call to arrange your appointment on 07568 455 809.</span></strong></h4>\r\n<strong>Monday -</strong> 9.00 am to 8.00 pm\r\n<strong>Tuesday - </strong> 9.00 am to 1.00pm\r\n<strong>Wednesday - </strong> 9.00 am to 5.00 pm\r\n<strong>Thursday - </strong> 9.00 am to 8.00 pm\r\n<strong>Friday - </strong> 9.00 am to 1.00 pm\r\n<strong>Saturday - </strong> 9.00 am to 5.00 pm\r\n<strong>Sunday - </strong> 10.00 am to 5.00 pm\r\n\r\n<strong>Other hypnosis appointment times can be arranged on request.\r\nCall 07568 455 809 to arrange your free phone session or see below to book online.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Booking My Cramlington Hypnotherapy Session?</strong></span></h4>\r\nBooking your session at Newcastle Hypnotherapy Cramlington Practice is easy. You can book by phone on 07568 455 809 or book online.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your Hypnotherapy Session Online – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Events &amp; Workshops.</strong></span></h4>\r\nYes, we host regular workshops, events and training from various locations in the North East including Cramlington.\r\nThese include Hypnosis, Self-Hypnosis, Personal Development, EFT, NLP, Tapping, Modelling, Meditation, Mindfulness and more.\r\nWe also run workshops for Anxiety, Stress, Depression, Confidence, Pain Management &amp; more.\r\nFor details of these events simply <em>join our email newsletter below.</em>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and important to us. You can unsubscribe from the events newsletter at any time using the link in each email.\r\n<h2><span style=\"color: #008000;\"><strong>Frequently Asked Questions\r\n</strong></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Are there other locations for Newcastle Hypnotherapy?</strong></span></h4>\r\nYes. We can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online. Please ask when you <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Contact Us</strong></span></a>.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2284.4503404803413!2d-1.5884962846403832!3d55.07036405188417!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487e73dc227692fd%3A0x9bdb486d3b27565f!2sNewcastle+Hypnotherapy+Cramlington+Practice!5e0!3m2!1sen!2suk!4v1545936976379\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle Upon Tyne</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington, Northumberland</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington, Northumberland</strong></a></li>\r\n 	<li><strong>Newcastle City Centre, Newcastle upon Tyne\r\n</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n 	<li><strong>Online – by video\r\n</strong></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<h4>Newcastle Hypnotherapy Cramlington Practice Map</h4>\r\n<div class=\"responsive-map\"></div>\r\n</div>\r\n<h4><span style=\"color: #008000;\"><strong>Can you provide Hypnotherapy Services at my home or workplace?</strong></span></h4>\r\nYes, we can certainly offer home or work visits if you are unable to come to us.\r\nAsk about special visits when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Is Online Hypnotherapy as effective as personal appointments?</strong></span></h4>\r\nCertainly, yes. Online hypnotherapy services are now very popular using services like Zoom and Skype.\r\nClients certainly experience the same successful benefits as face to face hypnotherapy.\r\n<h4><span style=\"color: #008000;\"><strong>Can we arrange a hypnosis talk or demonstration for our club, charity or organisation?</strong></span></h4>\r\nMost certainly. We often attend fairs, events and lunch clubs to give talks about the many benefits of hypnotherapy and NLP.\r\nWe can arrange talks and workshops for you about a number of subjects and health issues. Simply ask when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do you offer help and services for children or young adults?</strong></span></h4>\r\nYes, of course, we can help with service designed for children and young adults.   We also have a specialist member of staff on our team who is an experienced in child issues. Simply ask about this when you <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong>.\r\n<h4><span style=\"color: #008000;\"><strong>How long is a hypnosis session?</strong></span></h4>\r\nRoughly about and hour to an hour and a half.\r\nWe can give you a better indication during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>free strategy session</strong></a> or when<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">making your booking</a>.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How many sessions will I need?</strong></span></h4>\r\nThis will really vary on your issue and what you would prefer as an outcome. We can certainly advise better during your free session or first appointment. We find for most people, 2 to 3 sessions are enough to resolve most issues. However, we can certainly add in extra sessions if there is a value in doing so.\r\n<h4><span style=\"color: #008000;\"><strong>What is hypnosis like?\r\n</strong></span></h4>\r\nHypnosis is a natural state that you experience every day. It is rather like pure focus and awareness while feeling relaxed and calm.\r\nYou will be fully alert during your hypnosis session and you will usually remember everything in full detail.  Feel free to ask about this during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free strategy session.</a></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Will hypnotherapy work for everyone?</strong></span></h4>\r\nHypnosis works for most people and there are differening opinions regarding everyone being able to be hypnotised.\r\nMost of our clients find hypnotherapy works very well for them and we do see great imporvments. However, we do use many modern techniques such as NLP, EFT, Mindfulness and Meditation. We can use any of these techniques if hypnosis is not our chosen method.\r\n<h4><span style=\"color: #008000;\"><strong>What is the best way to learn Self- Hypnosis\r\n</strong></span></h4>\r\nSelf-hypnosis is a very powerful set of tools that can really help us to control out states, emotions and feelings, on demand.\r\nWe teach self-hypnosis in a number of ways such as group workshops and individual sessions.\r\nYou can learn more about <strong>The Wednesday Workshops </strong>where we teach many usefull NLP, EFT and Self-Hypnosis skills.\r\n<a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\"><strong>Visit the Wednesday Workshop Group here.</strong></a>\r\n<h4><span style=\"color: #008000;\"><strong>How much do you charge for sessions?</strong></span></h4>\r\nPrices vary depending on the issues we are working on and if we are working by the session or a program of sessions.\r\nWe can advise better when you contact us.\r\n<h4><span style=\"color: #008000;\"><strong>How fast can hypnotherapy and NLP help me?</strong></span></h4>\r\nMost clients see benefits with the first session although this can vary from person to person and on the issues we are looking to change. Usually, change and improvements happen over a period of time. We usually give you exercises to practice in between sessions and these can really speed up your results.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a><a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\"><img class=\"alignleft wp-image-1660 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/Click-now-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe Newcastle Hypnotherapy Cramlington Practice can be found at\r\n\r\n<span class=\"LrzXr\"><strong>27 Greystoke Place, </strong>\r\n<strong>Cramlington,</strong>\r\n<strong>Northumberland</strong>\r\n<strong>NE23 6NL\r\n</strong></span>\r\n\r\n<strong>Tel 07568 455 809.</strong>\r\n\r\nYou can also learn about our regular events and workshops by joining our newsletter above.\r\n<div class=\"responsive-map\">\r\n<h2><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h2>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n 	<li><strong>Online - by video</strong></li>\r\n</ul>\r\n</div>','Newcastle Hypnotherapy Cramlington Practice','','inherit','closed','closed','','2370-revision-v1','','','2018-12-27 18:57:55','2018-12-27 18:57:55','',2370,'https://www.newcastle-hypnotherapy.com/2370-revision-v1/',0,'revision','',0),(2395,1,'2018-12-27 18:59:20','2018-12-27 18:59:20','','NEWCASTLE HYPNOTHERAPY CRAMLINGTON PRACTICE','','publish','closed','closed','','2395','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=2395',45,'nav_menu_item','',0),(2396,1,'2018-12-27 19:06:03','2018-12-27 19:06:03','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Linguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications and previously spent many years learning Self-Hypnosis and NLP for himself.\r\nStarting in his teems, Mark has always been very passionate about personal development, nutrition and health and has enjoyed training others in many areas.\r\n\r\nMark enjoys speaking at events such as The Mind, Body, Spirit Fair at The Vault each month. Topics include Hypnotherapy, Self-Hypnosis, Neuro-Linguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnosis and NLP skills.\r\n\r\n<span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span>\r\n\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clinical Hypnotherapy, NLP and other modern techniques. He also works in many other areas.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n<h2><span style=\"color: #008000;\"><strong>Yvette Spoor</strong></span></h2>\r\nYvette is a passionate Occupational Therapist, a Practitioner of Neuro-Linguistic Programming and is also skilled in many other areas including family and child work.\r\n\r\nShe has many years of experience within the NHS and also enjoys specialist work in many other areas, helping people with anxiety and stress problems.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including</span></strong>\r\n<ul>\r\n 	<li><strong>NLP</strong> - Neuro Linguistic Programming</li>\r\n 	<li><strong>Hypnotherapy</strong></li>\r\n 	<li><strong>EFT</strong> - Emotional Freedom Technique</li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Coaching</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Nutritional Therapy\r\n</strong> and other useful techniques.</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<ul>\r\n 	<li><strong>Anxiety</strong></li>\r\n 	<li><strong>Depression</strong></li>\r\n 	<li><strong>Stress &amp; Stress Management</strong></li>\r\n 	<li><strong>Anger Management</strong></li>\r\n 	<li><strong>Phobias </strong></li>\r\n 	<li><strong>Pain &amp; Chronic Pain Management</strong></li>\r\n 	<li><strong>Weight Loss &amp; Weight Management</strong></li>\r\n 	<li><strong>Addiction - Alcohol &amp; Habits</strong></li>\r\n 	<li><strong>Smoking Cessation</strong></li>\r\n 	<li><strong>Grief Counselling</strong></li>\r\n 	<li><strong>Confidence Building</strong></li>\r\n 	<li><strong>IBS - Irritable Bowel Syndrome</strong></li>\r\n 	<li><strong>Tinnitus</strong></li>\r\n 	<li><strong>Sleep Disorders</strong></li>\r\n 	<li><strong>Allergies</strong></li>\r\n 	<li><strong>Food Intolerances</strong></li>\r\n</ul>\r\n<h3><span style=\"color: #008000;\"><strong>Where do we work?</strong></span></h3>\r\nWe work across the <strong>North East of England</strong>, <strong>Newcastle &amp; Northumberland</strong> for face to face <strong>appointments &amp; workshops</strong>.\r\nWe also work <strong>online &amp; by phone</strong> across the<strong> UK</strong> when needed.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend</a></strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\"><strong>Cramlington</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\"><strong>Bedlington</strong></a></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields</strong></a></li>\r\n</ul>\r\nOur Main Office Address is <span class=\"LrzXr\"><strong>31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ</strong>.\r\n<strong>Tel 07568 455 809</strong></span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">contact us.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\">Click here to arrange your free consultation.</span></a>\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £79 for a 1 to 1.5-hour session.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour to an hour and a half although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 to arrange your free 15-minute consultation.</span></strong></h3>\r\n&nbsp;','ABOUT US','','inherit','closed','closed','','43-revision-v1','','','2018-12-27 19:06:03','2018-12-27 19:06:03','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(2397,1,'2018-12-28 09:18:44','2018-12-28 09:18:44','','Order &ndash; December 28, 2018 @ 09:18 AM','','wc-processing','open','closed','order_5c25ea74d7893','order-dec-28-2018-0918-am','','','2018-12-28 09:20:04','2018-12-28 09:20:04','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2397',0,'shop_order','',2),(2398,1,'2018-12-28 13:18:58','2018-12-28 13:18:58','','Order &ndash; December 28, 2018 @ 01:18 PM','','wc-on-hold','open','closed','order_5c2622c2ed817','order-dec-28-2018-0118-pm','','','2018-12-28 13:18:59','2018-12-28 13:18:59','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2398',0,'shop_order','',1),(2399,1,'2018-12-28 21:45:37','2018-12-28 21:45:37','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Linguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications and previously spent many years learning Self-Hypnosis and NLP for himself.\r\nStarting in his teems, Mark has always been very passionate about personal development, nutrition and health and has enjoyed training others in many areas.\r\n\r\nMark enjoys speaking at events such as The Mind, Body, Spirit Fair at The Vault each month. Topics include Hypnotherapy, Self-Hypnosis, Neuro-Linguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnosis and NLP skills.\r\n\r\n<span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span>\r\n\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clinical Hypnotherapy, NLP and other modern techniques. He also works in many other areas.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n<h2><span style=\"color: #008000;\"><strong>Yvette Spoor</strong></span></h2>\r\nYvette is a passionate Occupational Therapist, a Practitioner of Neuro-Linguistic Programming and is also skilled in many other areas including family and child work.\r\n\r\nShe has many years of experience within the NHS and also enjoys specialist work in many other areas, helping people with anxiety and stress problems.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including</span></strong>\r\n<ul>\r\n 	<li><strong>NLP</strong> - Neuro Linguistic Programming</li>\r\n 	<li><strong>Hypnotherapy</strong></li>\r\n 	<li><strong>EFT</strong> - Emotional Freedom Technique</li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Coaching</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Nutritional Therapy\r\n</strong> and other useful techniques.</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<ul>\r\n 	<li><strong>Anxiety</strong></li>\r\n 	<li><strong>Depression</strong></li>\r\n 	<li><strong>Stress &amp; Stress Management</strong></li>\r\n 	<li><strong>Anger Management</strong></li>\r\n 	<li><strong>Phobias </strong></li>\r\n 	<li><strong>Pain &amp; Chronic Pain Management</strong></li>\r\n 	<li><strong>Weight Loss &amp; Weight Management</strong></li>\r\n 	<li><strong>Addiction - Alcohol &amp; Habits</strong></li>\r\n 	<li><strong>Smoking Cessation</strong></li>\r\n 	<li><strong>Grief Counselling</strong></li>\r\n 	<li><strong>Confidence Building</strong></li>\r\n 	<li><strong>IBS - Irritable Bowel Syndrome</strong></li>\r\n 	<li><strong>Tinnitus</strong></li>\r\n 	<li><strong>Sleep Disorders</strong></li>\r\n 	<li><strong>Allergies</strong></li>\r\n 	<li><strong>Food Intolerances</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Practice Locations\r\n</strong></span></h2>\r\nWe work across the North East of England, Newcastle upon Tyne &amp; Northumberland for face to face appointments &amp; workshops. We also work online &amp; by phone across the UK when needed.\r\n<h4><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend\"><span style=\"color: #008000;\">Newcastle Hypnotherapy Wallsend Practice</span></a>\r\n<span class=\"LrzXr\"><strong>31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\n\r\n<span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\">Newcastle Hypnotherapy Seaton Delaval Practice</a></span>\r\n28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n\r\n<span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Newcastle Hypnotherapy Bedlington Practice</a></span>\r\n1 Vulcan Place, Bedlington, Northumberland, NE22 5DN.\r\n\r\n<span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Newcastle Hypnotherapy Cramlington Practice</a></span>\r\n27 Greystoke Place, Cramlington, Northumberland, NE23 6NL.\r\n\r\n<span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\">Newcastle Hypnotherapy South Shields Practice</a></span>\r\nWhite Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n</strong></span></h4>\r\nTo book an appointment for any of these locations please call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\r\n<div class=\"responsive-map\"></div>\r\nYou can make your payment by Bank Transfer, Cheque, Paypal &amp; Card.\r\nPayment is made in advance to secure your appointment.\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">contact us.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\">Click here to arrange your free consultation.</span></a>\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £79 for a 1 to 1.5-hour session.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour to an hour and a half although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 to arrange your free 15-minute consultation.</span></strong></h3>\r\n&nbsp;','ABOUT US','','inherit','closed','closed','','43-revision-v1','','','2018-12-28 21:45:37','2018-12-28 21:45:37','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(2400,1,'2018-12-28 22:05:00','2018-12-28 22:05:00','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Linguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications and previously spent many years learning Self-Hypnosis and NLP for himself.\r\nStarting in his teems, Mark has always been very passionate about personal development, nutrition and health and has enjoyed training others in many areas.\r\n\r\nMark enjoys speaking at events such as The Mind, Body, Spirit Fair at The Vault each month. Topics include Hypnotherapy, Self-Hypnosis, Neuro-Linguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnosis and NLP skills.\r\n\r\n<span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span>\r\n\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clinical Hypnotherapy, NLP and other modern techniques. He also works in many other areas.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n<h2><span style=\"color: #008000;\"><strong>Yvette Spoor</strong></span></h2>\r\nYvette is a passionate Occupational Therapist, a Practitioner of Neuro-Linguistic Programming and is also skilled in many other areas including family and child work.\r\n\r\nShe has many years of experience within the NHS and also enjoys specialist work in many other areas, helping people with anxiety and stress problems.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including</span></strong>\r\n<ul>\r\n 	<li><strong>NLP</strong> - Neuro Linguistic Programming</li>\r\n 	<li><strong>Hypnotherapy</strong></li>\r\n 	<li><strong>EFT</strong> - Emotional Freedom Technique</li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Coaching</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Nutritional Therapy\r\n</strong> and other useful techniques.</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<ul>\r\n 	<li><strong>Anxiety</strong></li>\r\n 	<li><strong>Depression</strong></li>\r\n 	<li><strong>Stress &amp; Stress Management</strong></li>\r\n 	<li><strong>Anger Management</strong></li>\r\n 	<li><strong>Phobias </strong></li>\r\n 	<li><strong>Pain &amp; Chronic Pain Management</strong></li>\r\n 	<li><strong>Weight Loss &amp; Weight Management</strong></li>\r\n 	<li><strong>Addiction - Alcohol &amp; Habits</strong></li>\r\n 	<li><strong>Smoking Cessation</strong></li>\r\n 	<li><strong>Grief Counselling</strong></li>\r\n 	<li><strong>Confidence Building</strong></li>\r\n 	<li><strong>IBS - Irritable Bowel Syndrome</strong></li>\r\n 	<li><strong>Tinnitus</strong></li>\r\n 	<li><strong>Sleep Disorders</strong></li>\r\n 	<li><strong>Allergies</strong></li>\r\n 	<li><strong>Food Intolerances</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Practice Locations\r\n</strong></span></h2>\r\nWe work across the North East of England, Newcastle upon Tyne &amp; Northumberland for face to face appointments &amp; workshops. We also work online &amp; by phone across the UK when needed.\r\n<h4><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend\"><span style=\"color: #008000;\">Newcastle Hypnotherapy Wallsend Practice</span></a>\r\n<span class=\"LrzXr\"><strong>31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.</strong></span></h4>\r\n<span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Newcastle Hypnotherapy Seaton Delaval Practice</strong></a></span>\r\n28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Newcastle Hypnotherapy Bedlington Practice</a></span></strong>\r\n1 Vulcan Place, Bedlington, Northumberland, NE22 5DN.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Newcastle Hypnotherapy Cramlington Practice</a></span></strong>\r\n27 Greystoke Place, Cramlington, Northumberland, NE23 6NL.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\">Newcastle Hypnotherapy South Shields Practice</a></span></strong>\r\nWhite Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n\r\nTo book you appointment for hypnotherapy or NLP for these locations please call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\r\n<h2><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy Events, Workshops &amp; Training.</span></strong></h2>\r\nThe<strong> <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\">Wednesday Workshop</a></strong> is a regular event to share useful skills such as Self-Hypnosis, Hypnosis, Neuro-linguistic programming - NLP, Emotional Freedom Technique Tapping - EFT, Meditation, Mindfulness and more.\r\nThe aim is to share skills to improve happines and good mental health while also making friends and having fun.\r\n\r\nNewcastle Hypnotherapy also run longer training and development events for deeper learning and advanced skills.\r\n\r\nFor more information about these events and workshops join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe from the newsletter at any time.\r\n\r\n\r\n&nbsp;\r\n<div class=\"responsive-map\"></div>\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">contact us.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\">Click here to arrange your free consultation.</span></a>\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £79 for a 1 to 1.5-hour session.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour to an hour and a half although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 to arrange your free 15-minute consultation.</span></strong></h3>\r\n&nbsp;','ABOUT US','','inherit','closed','closed','','43-revision-v1','','','2018-12-28 22:05:00','2018-12-28 22:05:00','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(2401,1,'2018-12-28 22:05:50','2018-12-28 22:05:50','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Linguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications and previously spent many years learning Self-Hypnosis and NLP for himself.\r\nStarting in his teems, Mark has always been very passionate about personal development, nutrition and health and has enjoyed training others in many areas.\r\n\r\nMark enjoys speaking at events such as The Mind, Body, Spirit Fair at The Vault each month. Topics include Hypnotherapy, Self-Hypnosis, Neuro-Linguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnosis and NLP skills.\r\n\r\n<span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span>\r\n\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clinical Hypnotherapy, NLP and other modern techniques. He also works in many other areas.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n<h2><span style=\"color: #008000;\"><strong>Yvette Spoor</strong></span></h2>\r\nYvette is a passionate Occupational Therapist, a Practitioner of Neuro-Linguistic Programming and is also skilled in many other areas including family and child work.\r\n\r\nShe has many years of experience within the NHS and also enjoys specialist work in many other areas, helping people with anxiety and stress problems.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including</span></strong>\r\n<ul>\r\n 	<li><strong>NLP</strong> - Neuro Linguistic Programming</li>\r\n 	<li><strong>Hypnotherapy</strong></li>\r\n 	<li><strong>EFT</strong> - Emotional Freedom Technique</li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Coaching</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Nutritional Therapy\r\n</strong> and other useful techniques.</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<ul>\r\n 	<li><strong>Anxiety</strong></li>\r\n 	<li><strong>Depression</strong></li>\r\n 	<li><strong>Stress &amp; Stress Management</strong></li>\r\n 	<li><strong>Anger Management</strong></li>\r\n 	<li><strong>Phobias </strong></li>\r\n 	<li><strong>Pain &amp; Chronic Pain Management</strong></li>\r\n 	<li><strong>Weight Loss &amp; Weight Management</strong></li>\r\n 	<li><strong>Addiction - Alcohol &amp; Habits</strong></li>\r\n 	<li><strong>Smoking Cessation</strong></li>\r\n 	<li><strong>Grief Counselling</strong></li>\r\n 	<li><strong>Confidence Building</strong></li>\r\n 	<li><strong>IBS - Irritable Bowel Syndrome</strong></li>\r\n 	<li><strong>Tinnitus</strong></li>\r\n 	<li><strong>Sleep Disorders</strong></li>\r\n 	<li><strong>Allergies</strong></li>\r\n 	<li><strong>Food Intolerances</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Practice Locations\r\n</strong></span></h2>\r\nWe work across the North East of England, Newcastle upon Tyne &amp; Northumberland for face to face appointments &amp; workshops. We also work online &amp; by phone across the UK when needed.\r\n<h4><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend\"><span style=\"color: #008000;\">Newcastle <strong>Hypnotherapy</strong> Wallsend Practice</span></a>\r\n<span class=\"LrzXr\"><strong>31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.</strong></span></h4>\r\n<span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Newcastle Hypnotherapy Seaton Delaval Practice</strong></a></span>\r\n28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Newcastle Hypnotherapy Bedlington Practice</a></span></strong>\r\n1 Vulcan Place, Bedlington, Northumberland, NE22 5DN.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Newcastle Hypnotherapy Cramlington Practice</a></span></strong>\r\n27 Greystoke Place, Cramlington, Northumberland, NE23 6NL.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\">Newcastle Hypnotherapy South Shields Practice</a></span></strong>\r\nWhite Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n\r\nTo book you appointment for hypnotherapy or NLP for these locations please call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\r\n<h2><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy Events, Workshops &amp; Training.</span></strong></h2>\r\nThe<strong> <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\">Wednesday Workshop</a></strong> is a regular event to share useful skills such as Self-Hypnosis, Hypnosis, Neuro-linguistic programming - NLP, Emotional Freedom Technique Tapping - EFT, Meditation, Mindfulness and more.\r\nThe aim is to share skills to improve happines and good mental health while also making friends and having fun.\r\n\r\nNewcastle Hypnotherapy also run longer training and development events for deeper learning and advanced skills.\r\n\r\nFor more information about these events and workshops join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe from the newsletter at any time.\r\n\r\n&nbsp;\r\n<div class=\"responsive-map\"></div>\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">contact us.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\">Click here to arrange your free consultation.</span></a>\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £79 for a 1 to 1.5-hour session.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour to an hour and a half although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 to arrange your free 15-minute consultation.</span></strong></h3>\r\n&nbsp;','ABOUT US','','inherit','closed','closed','','43-revision-v1','','','2018-12-28 22:05:50','2018-12-28 22:05:50','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(2402,1,'2018-12-28 22:06:49','2018-12-28 22:06:49','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Linguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications and previously spent many years learning Self-Hypnosis and NLP for himself.\r\nStarting in his teems, Mark has always been very passionate about personal development, nutrition and health and has enjoyed training others in many areas.\r\n\r\nMark enjoys speaking at events such as The Mind, Body, Spirit Fair at The Vault each month. Topics include Hypnotherapy, Self-Hypnosis, Neuro-Linguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnosis and NLP skills.\r\n\r\n<span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span>\r\n\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clinical Hypnotherapy, NLP and other modern techniques. He also works in many other areas.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n<h2><span style=\"color: #008000;\"><strong>Yvette Spoor</strong></span></h2>\r\nYvette is a passionate Occupational Therapist, a Practitioner of Neuro-Linguistic Programming and is also skilled in many other areas including family and child work.\r\n\r\nShe has many years of experience within the NHS and also enjoys specialist work in many other areas, helping people with anxiety and stress problems.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including</span></strong>\r\n<ul>\r\n 	<li><strong>NLP</strong> - Neuro Linguistic Programming</li>\r\n 	<li><strong>Hypnotherapy</strong></li>\r\n 	<li><strong>EFT</strong> - Emotional Freedom Technique</li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Coaching</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Nutritional Therapy\r\n</strong> and other useful techniques.</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<ul>\r\n 	<li><strong>Anxiety</strong></li>\r\n 	<li><strong>Depression</strong></li>\r\n 	<li><strong>Stress &amp; Stress Management</strong></li>\r\n 	<li><strong>Anger Management</strong></li>\r\n 	<li><strong>Phobias </strong></li>\r\n 	<li><strong>Pain &amp; Chronic Pain Management</strong></li>\r\n 	<li><strong>Weight Loss &amp; Weight Management</strong></li>\r\n 	<li><strong>Addiction - Alcohol &amp; Habits</strong></li>\r\n 	<li><strong>Smoking Cessation</strong></li>\r\n 	<li><strong>Grief Counselling</strong></li>\r\n 	<li><strong>Confidence Building</strong></li>\r\n 	<li><strong>IBS - Irritable Bowel Syndrome</strong></li>\r\n 	<li><strong>Tinnitus</strong></li>\r\n 	<li><strong>Sleep Disorders</strong></li>\r\n 	<li><strong>Allergies</strong></li>\r\n 	<li><strong>Food Intolerances</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Practice Locations\r\n</strong></span></h2>\r\nWe work across the North East of England, Newcastle upon Tyne &amp; Northumberland for face to face appointments &amp; workshops. We also work online &amp; by phone across the UK when needed.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend\"><span style=\"color: #008000;\">Newcastle <strong>Hypnotherapy</strong> Wallsend Practice</span></a>\r\n<span class=\"LrzXr\"><strong>31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Newcastle Hypnotherapy Seaton Delaval Practice</strong></a></span>\r\n28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Newcastle Hypnotherapy Bedlington Practice</a></span></strong>\r\n1 Vulcan Place, Bedlington, Northumberland, NE22 5DN.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Newcastle Hypnotherapy Cramlington Practice</a></span></strong>\r\n27 Greystoke Place, Cramlington, Northumberland, NE23 6NL.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\">Newcastle Hypnotherapy South Shields Practice</a></span></strong>\r\nWhite Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n\r\nTo book you appointment for hypnotherapy or NLP for these locations please call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\r\n<h2><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy Events, Workshops &amp; Training.</span></strong></h2>\r\nThe<strong> <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\">Wednesday Workshop</a></strong> is a regular event to share useful skills such as Self-Hypnosis, Hypnosis, Neuro-linguistic programming - NLP, Emotional Freedom Technique Tapping - EFT, Meditation, Mindfulness and more.\r\nThe aim is to share skills to improve happines and good mental health while also making friends and having fun.\r\n\r\nNewcastle Hypnotherapy also run longer training and development events for deeper learning and advanced skills.\r\n\r\nFor more information about these events and workshops join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe from the newsletter at any time.\r\n\r\n&nbsp;\r\n<div class=\"responsive-map\"></div>\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">contact us.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\">Click here to arrange your free consultation.</span></a>\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £79 for a 1 to 1.5-hour session.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour to an hour and a half although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 to arrange your free 15-minute consultation.</span></strong></h3>\r\n&nbsp;','ABOUT US','','inherit','closed','closed','','43-revision-v1','','','2018-12-28 22:06:49','2018-12-28 22:06:49','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0);
INSERT INTO `wpqj_posts` VALUES (2405,1,'2018-12-28 22:13:34','2018-12-28 22:13:34','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Linguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications and previously spent many years learning Self-Hypnosis and NLP for himself.\r\nStarting in his teems, Mark has always been very passionate about personal development, nutrition and health and has enjoyed training others in many areas.\r\n\r\nMark enjoys speaking at events such as The Mind, Body, Spirit Fair at The Vault each month. Topics include Hypnotherapy, Self-Hypnosis, Neuro-Linguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnosis and NLP skills.\r\n\r\n<span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span>\r\n\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clinical Hypnotherapy, NLP and other modern techniques. He also works in many other areas.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n<h2><span style=\"color: #008000;\"><strong>Yvette Spoor</strong></span></h2>\r\nYvette is a passionate Occupational Therapist, a Practitioner of Neuro-Linguistic Programming and is also skilled in many other areas including family and child work.\r\n\r\nShe has many years of experience within the NHS and also enjoys specialist work in many other areas, helping people with anxiety and stress problems.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including</span></strong>\r\n<ul>\r\n 	<li><strong>NLP</strong> - Neuro Linguistic Programming</li>\r\n 	<li><strong>Hypnotherapy</strong></li>\r\n 	<li><strong>EFT</strong> - Emotional Freedom Technique</li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Coaching</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Nutritional Therapy\r\n</strong> and other useful techniques.</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<ul>\r\n 	<li><strong>Anxiety</strong></li>\r\n 	<li><strong>Depression</strong></li>\r\n 	<li><strong>Stress &amp; Stress Management</strong></li>\r\n 	<li><strong>Anger Management</strong></li>\r\n 	<li><strong>Phobias </strong></li>\r\n 	<li><strong>Pain &amp; Chronic Pain Management</strong></li>\r\n 	<li><strong>Weight Loss &amp; Weight Management</strong></li>\r\n 	<li><strong>Addiction - Alcohol &amp; Habits</strong></li>\r\n 	<li><strong>Smoking Cessation</strong></li>\r\n 	<li><strong>Grief Counselling</strong></li>\r\n 	<li><strong>Confidence Building</strong></li>\r\n 	<li><strong>IBS - Irritable Bowel Syndrome</strong></li>\r\n 	<li><strong>Tinnitus</strong></li>\r\n 	<li><strong>Sleep Disorders</strong></li>\r\n 	<li><strong>Allergies</strong></li>\r\n 	<li><strong>Food Intolerances</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Practice Locations\r\n</strong></span></h4>\r\nWe work across the North East of England, Newcastle upon Tyne &amp; Northumberland for face to face appointments &amp; workshops. We also work online &amp; by phone across the UK when needed.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend\"><span style=\"color: #008000;\">Newcastle <strong>Hypnotherapy</strong> Wallsend Practice</span></a>\r\n<span class=\"LrzXr\"><strong>31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Newcastle Hypnotherapy Seaton Delaval Practice</strong></a></span>\r\n28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Newcastle Hypnotherapy Bedlington Practice</a></span></strong>\r\n1 Vulcan Place, Bedlington, Northumberland, NE22 5DN.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Newcastle Hypnotherapy Cramlington Practice</a></span></strong>\r\n27 Greystoke Place, Cramlington, Northumberland, NE23 6NL.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\">Newcastle Hypnotherapy South Shields Practice</a></span></strong>\r\nWhite Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n\r\nTo book your appointment for hypnotherapy or NLP for these locations please call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\r\n<h4><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy Events, Workshops &amp; Training.</span></strong></h4>\r\nThe<strong> <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\">Wednesday Workshop</a></strong> is a regular event to share useful skills such as Self-Hypnosis, Hypnosis, Neuro-linguistic programming - NLP, Emotional Freedom Technique Tapping - EFT, Meditation, Mindfulness and more.\r\nThe aim is to share skills to improve happiness and good mental health while also making friends and having fun.\r\n\r\nNewcastle Hypnotherapy also runs longer training and development events for deeper learning and advanced skills.\r\n\r\n<strong>For more information about these events and workshops join our newsletter below.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n<strong>Your privacy is safe and you can unsubscribe from the newsletter at any time.</strong>\r\n<h4><strong><span style=\"color: #008000;\">How do I book my appointment?</span></strong></h4>\r\nSimply <strong>call on 07568 455 809</strong> or <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">contact us.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span></strong></h4>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\">Click here to arrange your free consultation.</span></a>\r\n<h4><span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span></h4>\r\nMost appointments are charged at £79 for a 1 to 1.5-hour session.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n<h4><span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span></h4>\r\nMost appointments take about an hour to an hour and a half although may vary depending on your circumstances.\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span></h4>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 to arrange your free 15-minute consultation.</span></strong></h3>\r\n&nbsp;','ABOUT US','','inherit','closed','closed','','43-revision-v1','','','2018-12-28 22:13:34','2018-12-28 22:13:34','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(2403,1,'2018-12-28 22:08:40','2018-12-28 22:08:40','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Linguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications and previously spent many years learning Self-Hypnosis and NLP for himself.\r\nStarting in his teems, Mark has always been very passionate about personal development, nutrition and health and has enjoyed training others in many areas.\r\n\r\nMark enjoys speaking at events such as The Mind, Body, Spirit Fair at The Vault each month. Topics include Hypnotherapy, Self-Hypnosis, Neuro-Linguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnosis and NLP skills.\r\n\r\n<span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span>\r\n\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clinical Hypnotherapy, NLP and other modern techniques. He also works in many other areas.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n<h2><span style=\"color: #008000;\"><strong>Yvette Spoor</strong></span></h2>\r\nYvette is a passionate Occupational Therapist, a Practitioner of Neuro-Linguistic Programming and is also skilled in many other areas including family and child work.\r\n\r\nShe has many years of experience within the NHS and also enjoys specialist work in many other areas, helping people with anxiety and stress problems.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including</span></strong>\r\n<ul>\r\n 	<li><strong>NLP</strong> - Neuro Linguistic Programming</li>\r\n 	<li><strong>Hypnotherapy</strong></li>\r\n 	<li><strong>EFT</strong> - Emotional Freedom Technique</li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Coaching</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Nutritional Therapy\r\n</strong> and other useful techniques.</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<ul>\r\n 	<li><strong>Anxiety</strong></li>\r\n 	<li><strong>Depression</strong></li>\r\n 	<li><strong>Stress &amp; Stress Management</strong></li>\r\n 	<li><strong>Anger Management</strong></li>\r\n 	<li><strong>Phobias </strong></li>\r\n 	<li><strong>Pain &amp; Chronic Pain Management</strong></li>\r\n 	<li><strong>Weight Loss &amp; Weight Management</strong></li>\r\n 	<li><strong>Addiction - Alcohol &amp; Habits</strong></li>\r\n 	<li><strong>Smoking Cessation</strong></li>\r\n 	<li><strong>Grief Counselling</strong></li>\r\n 	<li><strong>Confidence Building</strong></li>\r\n 	<li><strong>IBS - Irritable Bowel Syndrome</strong></li>\r\n 	<li><strong>Tinnitus</strong></li>\r\n 	<li><strong>Sleep Disorders</strong></li>\r\n 	<li><strong>Allergies</strong></li>\r\n 	<li><strong>Food Intolerances</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Practice Locations\r\n</strong></span></h2>\r\nWe work across the North East of England, Newcastle upon Tyne &amp; Northumberland for face to face appointments &amp; workshops. We also work online &amp; by phone across the UK when needed.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend\"><span style=\"color: #008000;\">Newcastle <strong>Hypnotherapy</strong> Wallsend Practice</span></a>\r\n<span class=\"LrzXr\"><strong>31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Newcastle Hypnotherapy Seaton Delaval Practice</strong></a></span>\r\n28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Newcastle Hypnotherapy Bedlington Practice</a></span></strong>\r\n1 Vulcan Place, Bedlington, Northumberland, NE22 5DN.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Newcastle Hypnotherapy Cramlington Practice</a></span></strong>\r\n27 Greystoke Place, Cramlington, Northumberland, NE23 6NL.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\">Newcastle Hypnotherapy South Shields Practice</a></span></strong>\r\nWhite Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n\r\nTo book your appointment for hypnotherapy or NLP for these locations please call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\r\n<h2><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy Events, Workshops &amp; Training.</span></strong></h2>\r\nThe<strong> <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\">Wednesday Workshop</a></strong> is a regular event to share useful skills such as Self-Hypnosis, Hypnosis, Neuro-linguistic programming - NLP, Emotional Freedom Technique Tapping - EFT, Meditation, Mindfulness and more.\r\nThe aim is to share skills to improve happiness and good mental health while also making friends and having fun.\r\n\r\nNewcastle Hypnotherapy also runs longer training and development events for deeper learning and advanced skills.\r\n\r\n<strong>For more information about these events and workshops join our newsletter below.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n<strong>Your privacy is safe and you can unsubscribe from the newsletter at any time.</strong>\r\n\r\n&nbsp;\r\n<div class=\"responsive-map\"></div>\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">contact us.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\">Click here to arrange your free consultation.</span></a>\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £79 for a 1 to 1.5-hour session.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour to an hour and a half although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 to arrange your free 15-minute consultation.</span></strong></h3>\r\n&nbsp;','ABOUT US','','inherit','closed','closed','','43-revision-v1','','','2018-12-28 22:08:40','2018-12-28 22:08:40','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(2404,1,'2018-12-28 22:09:49','2018-12-28 22:09:49','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Linguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications and previously spent many years learning Self-Hypnosis and NLP for himself.\r\nStarting in his teems, Mark has always been very passionate about personal development, nutrition and health and has enjoyed training others in many areas.\r\n\r\nMark enjoys speaking at events such as The Mind, Body, Spirit Fair at The Vault each month. Topics include Hypnotherapy, Self-Hypnosis, Neuro-Linguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnosis and NLP skills.\r\n\r\n<span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span>\r\n\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clinical Hypnotherapy, NLP and other modern techniques. He also works in many other areas.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n<h2><span style=\"color: #008000;\"><strong>Yvette Spoor</strong></span></h2>\r\nYvette is a passionate Occupational Therapist, a Practitioner of Neuro-Linguistic Programming and is also skilled in many other areas including family and child work.\r\n\r\nShe has many years of experience within the NHS and also enjoys specialist work in many other areas, helping people with anxiety and stress problems.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including</span></strong>\r\n<ul>\r\n 	<li><strong>NLP</strong> - Neuro Linguistic Programming</li>\r\n 	<li><strong>Hypnotherapy</strong></li>\r\n 	<li><strong>EFT</strong> - Emotional Freedom Technique</li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Coaching</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Nutritional Therapy\r\n</strong> and other useful techniques.</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<ul>\r\n 	<li><strong>Anxiety</strong></li>\r\n 	<li><strong>Depression</strong></li>\r\n 	<li><strong>Stress &amp; Stress Management</strong></li>\r\n 	<li><strong>Anger Management</strong></li>\r\n 	<li><strong>Phobias </strong></li>\r\n 	<li><strong>Pain &amp; Chronic Pain Management</strong></li>\r\n 	<li><strong>Weight Loss &amp; Weight Management</strong></li>\r\n 	<li><strong>Addiction - Alcohol &amp; Habits</strong></li>\r\n 	<li><strong>Smoking Cessation</strong></li>\r\n 	<li><strong>Grief Counselling</strong></li>\r\n 	<li><strong>Confidence Building</strong></li>\r\n 	<li><strong>IBS - Irritable Bowel Syndrome</strong></li>\r\n 	<li><strong>Tinnitus</strong></li>\r\n 	<li><strong>Sleep Disorders</strong></li>\r\n 	<li><strong>Allergies</strong></li>\r\n 	<li><strong>Food Intolerances</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Practice Locations\r\n</strong></span></h2>\r\nWe work across the North East of England, Newcastle upon Tyne &amp; Northumberland for face to face appointments &amp; workshops. We also work online &amp; by phone across the UK when needed.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend\"><span style=\"color: #008000;\">Newcastle <strong>Hypnotherapy</strong> Wallsend Practice</span></a>\r\n<span class=\"LrzXr\"><strong>31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Newcastle Hypnotherapy Seaton Delaval Practice</strong></a></span>\r\n28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Newcastle Hypnotherapy Bedlington Practice</a></span></strong>\r\n1 Vulcan Place, Bedlington, Northumberland, NE22 5DN.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Newcastle Hypnotherapy Cramlington Practice</a></span></strong>\r\n27 Greystoke Place, Cramlington, Northumberland, NE23 6NL.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\">Newcastle Hypnotherapy South Shields Practice</a></span></strong>\r\nWhite Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n\r\nTo book your appointment for hypnotherapy or NLP for these locations please call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\r\n<h2><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy Events, Workshops &amp; Training.</span></strong></h2>\r\nThe<strong> <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\">Wednesday Workshop</a></strong> is a regular event to share useful skills such as Self-Hypnosis, Hypnosis, Neuro-linguistic programming - NLP, Emotional Freedom Technique Tapping - EFT, Meditation, Mindfulness and more.\r\nThe aim is to share skills to improve happiness and good mental health while also making friends and having fun.\r\n\r\nNewcastle Hypnotherapy also runs longer training and development events for deeper learning and advanced skills.\r\n\r\n<strong>For more information about these events and workshops join our newsletter below.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n<strong>Your privacy is safe and you can unsubscribe from the newsletter at any time.</strong>\r\n\r\n&nbsp;\r\n<div class=\"responsive-map\"></div>\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">How do I book my appointment?</span>\r\n</strong>\r\nSimply <strong>call on 07568 455 809</strong> or <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">contact us.</a></strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span>\r\n</strong>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\">Click here to arrange your free consultation.</span></a>\r\n\r\n<span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span>\r\nMost appointments are charged at £79 for a 1 to 1.5-hour session.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n\r\n<span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span>\r\nMost appointments take about an hour to an hour and a half although may vary depending on your circumstances.\r\n\r\n<span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h3><strong><span style=\"color: #008000;\">Call us on 07568 455 809 to arrange your free 15-minute consultation.</span></strong></h3>\r\n&nbsp;','ABOUT US','','inherit','closed','closed','','43-revision-v1','','','2018-12-28 22:09:49','2018-12-28 22:09:49','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(2406,1,'2018-12-28 22:14:18','2018-12-28 22:14:18','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Linguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications and previously spent many years learning Self-Hypnosis and NLP for himself.\r\nStarting in his teems, Mark has always been very passionate about personal development, nutrition and health and has enjoyed training others in many areas.\r\n\r\nMark enjoys speaking at events such as The Mind, Body, Spirit Fair at The Vault each month. Topics include Hypnotherapy, Self-Hypnosis, Neuro-Linguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnosis and NLP skills.\r\n\r\n<span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span>\r\n\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clinical Hypnotherapy, NLP and other modern techniques. He also works in many other areas.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n<h2><span style=\"color: #008000;\"><strong>Yvette Spoor</strong></span></h2>\r\nYvette is a passionate Occupational Therapist, a Practitioner of Neuro-Linguistic Programming and is also skilled in many other areas including family and child work.\r\n\r\nShe has many years of experience within the NHS and also enjoys specialist work in many other areas, helping people with anxiety and stress problems.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including</span></strong>\r\n<ul>\r\n 	<li><strong>NLP</strong> - Neuro Linguistic Programming</li>\r\n 	<li><strong>Hypnotherapy</strong></li>\r\n 	<li><strong>EFT</strong> - Emotional Freedom Technique</li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Coaching</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Nutritional Therapy\r\n</strong> and other useful techniques.</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<ul>\r\n 	<li><strong>Anxiety</strong></li>\r\n 	<li><strong>Depression</strong></li>\r\n 	<li><strong>Stress &amp; Stress Management</strong></li>\r\n 	<li><strong>Anger Management</strong></li>\r\n 	<li><strong>Phobias </strong></li>\r\n 	<li><strong>Pain &amp; Chronic Pain Management</strong></li>\r\n 	<li><strong>Weight Loss &amp; Weight Management</strong></li>\r\n 	<li><strong>Addiction - Alcohol &amp; Habits</strong></li>\r\n 	<li><strong>Smoking Cessation</strong></li>\r\n 	<li><strong>Grief Counselling</strong></li>\r\n 	<li><strong>Confidence Building</strong></li>\r\n 	<li><strong>IBS - Irritable Bowel Syndrome</strong></li>\r\n 	<li><strong>Tinnitus</strong></li>\r\n 	<li><strong>Sleep Disorders</strong></li>\r\n 	<li><strong>Allergies</strong></li>\r\n 	<li><strong>Food Intolerances</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Practice Locations\r\n</strong></span></h4>\r\nWe work across the North East of England, Newcastle upon Tyne &amp; Northumberland for face to face appointments &amp; workshops. We also work online &amp; by phone across the UK when needed.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend\"><span style=\"color: #008000;\">Newcastle <strong>Hypnotherapy</strong> Wallsend Practice</span></a>\r\n<span class=\"LrzXr\"><strong>31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Newcastle Hypnotherapy Seaton Delaval Practice</strong></a></span>\r\n28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Newcastle Hypnotherapy Bedlington Practice</a></span></strong>\r\n1 Vulcan Place, Bedlington, Northumberland, NE22 5DN.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Newcastle Hypnotherapy Cramlington Practice</a></span></strong>\r\n27 Greystoke Place, Cramlington, Northumberland, NE23 6NL.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\">Newcastle Hypnotherapy South Shields Practice</a></span></strong>\r\nWhite Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n\r\nTo book your appointment for hypnotherapy or NLP for these locations please call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\r\n<h4><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy Events, Workshops &amp; Training.</span></strong></h4>\r\nThe<strong> <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\">Wednesday Workshop</a></strong> is a regular event to share useful skills such as Self-Hypnosis, Hypnosis, Neuro-linguistic programming - NLP, Emotional Freedom Technique Tapping - EFT, Meditation, Mindfulness and more.\r\nThe aim is to share skills to improve happiness and good mental health while also making friends and having fun.\r\n\r\nNewcastle Hypnotherapy also runs longer training and development events for deeper learning and advanced skills.\r\n\r\n<strong>For more information about these events and workshops join our newsletter below.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n<strong>Your privacy is safe and you can unsubscribe from the newsletter at any time.</strong>\r\n<h4><strong><span style=\"color: #008000;\">How do I book my appointment?</span></strong></h4>\r\nSimply <strong>call on 07568 455 809</strong> or <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">contact us.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span></strong></h4>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\">Click here to arrange your free consultation.</span></a>\r\n<h4><span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span></h4>\r\nMost appointments are charged at £79 for a 1 to 1.5-hour session.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n<h4><span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span></h4>\r\nMost appointments take about an hour to an hour and a half although may vary depending on your circumstances.\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span></h4>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h4><strong><span style=\"color: #008000;\">Call us on 07568 455 809 to arrange your free 15-minute consultation.</span></strong></h4>\r\n&nbsp;','ABOUT US','','inherit','closed','closed','','43-revision-v1','','','2018-12-28 22:14:18','2018-12-28 22:14:18','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(2407,1,'2018-12-28 22:57:07','2018-12-28 22:57:07','','Order &ndash; December 28, 2018 @ 10:57 PM','Gift for Debbie Walker','wc-on-hold','open','closed','order_5c26aa43e77ac','order-dec-28-2018-1057-pm','','','2018-12-28 22:57:08','2018-12-28 22:57:08','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2407',0,'shop_order','',1),(2408,1,'2018-12-29 22:23:49','2018-12-29 22:23:49','One of our new clients explained she found the process of choosing your hypnotherapist, quite a daunting task and I have to agree with her. <img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" />There is such a selection of hypnotherapists to choose from and you need to choose a good one that is right for you. Hopefully this article will help you with your choice.\r\n\r\n<strong>When choosing your hypnotherapist, take a little time to decide what you want and what is important to you. Once decided its time do a little research to find the right one for you. Look for qualifications, training, insurance, cutomer reviews, a free initial consultation, a website with good information, is the venue professional and do the fees match your budget? As you choose aim</strong><strong> to find someone that ticks all of your boxes.</strong>\r\n\r\nUseful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Master NLP Practitioner.\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Make sure you ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nEveryone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nChoosing a hypnotherapist at a low price is a false economy as paying a realistic will result in fewer sessions being required.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n<h4><span style=\"color: #008000;\"><strong>11. Be Clear On What You Want To </strong>Achieve</span></h4>\r\nIt will really help your hypnotherapist and you to know exactly what you want to achieve with hypnotherapy?\r\nAs an example, many clients with anxiety issues come to us just wanting the anxiety problems to go away. A better outcome may be to feel, relaxed, confident, calm, strong, focused, clear and energetic. This may be a different way of thinking for you and having a clear outcome of your future will help us to help you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Tips For Choosing Your Hypnotherapist.</span></strong></h2>\r\n<ul>\r\n 	<li>Check qualifications &amp; training</li>\r\n 	<li>Check insurance</li>\r\n 	<li>Is there a free consultation</li>\r\n 	<li>Check the venue</li>\r\n 	<li>Avoid those working from home if you are concerned about safety and security</li>\r\n 	<li>Ask about areas of expertise</li>\r\n 	<li>Are you clear on prices?</li>\r\n 	<li>Look for reviews and testimonials</li>\r\n 	<li>Avoid guarantees or one session promises</li>\r\n 	<li>Are they specialists or experienced in your issue?</li>\r\n 	<li>Look for events and workshops</li>\r\n 	<li>Get to know your hypnotherapist</li>\r\n 	<li>Enjoy your hypnotherapy - it is a wonderful experience</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions Clients Ask About Hypnotherapy.</span></strong></h2>\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy similar to sleep?</span></strong></h4>\r\nNo, hypnotherapy is very different to sleep. The word sleep is often used by stage hypnotists and incorrect.\r\nHypnosis is a relaxed but alert state where you are fully awake, fully aware and fully in control.\r\nDuring this hypnotic state, we can give your subconscious mind suggestions and commands to resolve the issues you wish to resolve.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy dangerous?</span></strong></h4>\r\nHypnosis is perfectly safe when conducted by a professional trained clinical hypnotherapy.\r\nHypnotherapy is regarded as a safe therapy by the NHS and insurance companies.\r\nHypnosis should never be used when operating machinery or driving a vehicle.\r\n<h4><span style=\"color: #008000;\"><strong>How many hypnotherapy sessions will it take to fix my problem?</strong></span></h4>\r\nThis will vary on the issue and will be advised by the hypnotherapist you choose.\r\nAsking for<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong> a free consultation</strong></a> will help you with this question.\r\n<h4><strong><span style=\"color: #008000;\">What is hypnosis?</span></strong></h4>\r\nHypnosis is a natural state that we all experience every day, rather similar to daydreaming.\r\nImagine being totally focused on a tv program, that is a hypnotic state.\r\nA good hypnotherapist will simply guide you into a hypnotic state while using language to change how you think and act.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nHypnosis is usually guided by a hypnotherapist to make the changes you desire.\r\nSelf-hypnosis is guided by you for relaxation or change, rather similar to meditation although faster, deeper and more effective.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Meditation and Hypnosis?</strong></span></h4>\r\nMeditation is usually used to clear the mind while hypnosis is used to change the mind.\r\n<h4><span style=\"color: #008000;\"><strong>How can I find a good hypnotherapist?</strong></span></h4>\r\nLook at the information above about finding a good hypnotherapist for you.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnotherapy a permanent, long lasting solution?</strong></span></h4>\r\nUsually, hypnotherapy solutions will be a permanent resolution to your problem. If required you can certainly visit your hypnotherapist again to strengthen or modify your improvements.\r\n<h4><strong><span style=\"color: #008000;\">Which health issues can hypnotherapy help with?</span></strong></h4>\r\nMany of our clients find hypnotherapy is very effective with health conditions that involve stress and anxiety. Both of these can make almost any health issue worse and once we remove stress and anxiety, our minds are free to resolve issues better.\r\nStress and anxiety are presently very common health issues and effect a very high number of people.\r\nHypnotherapy can also help with many other health conditions such as IBS, pain management, depression, insomnia, weight loss, stopping smoking, addictions, changing habits, behaviour problems, food allergies, food intolerances and so much more.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis available on the NHS?</strong></span></h4>\r\nAlthough the NHS state that hypnotherapy is effective with many health issues they do not currently offer hypnosis services.\r\nWe believe that hypnotherapy should be available to everyone on the NHS as it can be most effective and it avoids the side effects of many medications. Hopefully in the future hypnosis will be offered on the NHS.\r\n<h4><span style=\"color: #008000;\"><strong>Can everyone be hypnotised and helped?</strong></span></h4>\r\nPersonally, I believe everyone can experience hypnosis and with the right methods, everyone can be helped with hypnotherapy. However, this question will draw different answers and arguments from many respected hypnotherapy professionals.\r\nSome people are resistant to hypnosis as they may have a fear of losing control. This is where learning self-hypnosis is very useful, allowing people to help themselves.\r\nA good hypnotherapist will usually be experienced with other modern change techniques that can be just as powerful. The more tools we have in our mental toolbox the better we can help clients with health issues.\r\n<h4><span style=\"color: #008000;\"><strong>Can people be hypnotised </strong>against<strong> their will?</strong></span></h4>\r\nChange with hypnotherapy can only happen if the client is willing to change. We can help with giving people reasons to change or improve things but ultimately change has to come from within.\r\nA good therapist would not take on a client unless they are willing to make changes.\r\n<h4><span style=\"color: #008000;\"><strong>Is it true that hypnosis weakens the mind?</strong></span></h4>\r\nNo. Hypnosis and self-hypnosis can help to control mental states such as happiness and self-confidence. In effect we do have \"mental muscles\" and the more we practice helpful techniques the easier and stronger they become.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnosis addictive?</span></strong></h4>\r\nI have never heard of anyone becoming addicted to hypnosis. Hypnosis is a wonderful state and a great way to feel relaxed, in control, happy, self-confident, strong, focused etc. Once you learn to enter into self-hypnosis you have a powerful mental technique that allows you to control your emotions, feelings and other mental states.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnotherapy useful for children?</strong></span></h4>\r\nYes, children and adults can enjoy the benefits of hypnotherapy. Children are usually very good hypnotic subjects and naturally enjoy hypnotic states on a daily basis.\r\n<h4><span style=\"color: #008000;\">How can I learn to <strong>hypnotise other</strong> people?</span></h4>\r\nI would strongly suggest finding a self-hypnosis course near to you with a respected hypnotherapy practitioner.\r\nCourses encouraging you to practice on others are very useful and far better than online courses and books.\r\nSelf-hypnosis is perfectly safe and a great first step into the world of hypnotherapy. Always treat yourself as your first client.\r\n\r\nA good instructor will teach you many hypnosis inductions and a little history of hypnotherapy.\r\nRegular practice will see you improve and you will become aware of how people change and improve during hypnosis.\r\n<h4><span style=\"color: #008000;\"><strong>Are there different levels of Hypnosis?</strong></span></h4>\r\nYes. For most hypnotherapy change requirements clients do not need to go too deep to enjoy the many benefits.\r\nJust like meditation, the more someone experiences hypnosis, the more they can enjoy deep hypnosis.\r\nA trained hypnotherapist can guide clients to deeper hypnosis levels when and if required.\r\n<h4><span style=\"color: #008000;\">What is a hypnotic induction?</span></h4>\r\nHypnotic inductions are the methods used to guide a person into a hypnotic trance. They include hypnotic phrases, hypnotic scripts, language and need to be used with the correct rhythm, breathing and tonality. Hypnosis training helps you to recognise where the client is in the hypnotic process and how to guide them along until they are ready for hypnotic suggestions and commands.\r\nGood hypnosis training will explain this in more detail.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nVisit the Newcastle <a href=\"https://www.facebook.com/newcastlehypnosis/\">Hypnotherapy Facebook Page</a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Choosing Your Hypnotherapist','','publish','closed','closed','','choosing-your-hypnotherapist','','','2018-12-30 15:04:16','2018-12-30 15:04:16','',0,'https://www.newcastle-hypnotherapy.com/?page_id=2408',0,'page','',0),(2409,1,'2018-12-28 23:56:21','2018-12-28 23:56:21','We are very fortunate to have a choice of good hypnotherapists avialable to us.\r\nHypnotherapy is unregulated in the UK as it is regarded as a safe therapy. It is worth taking a little time to choose your hypnotherapist to make sure they are right for you and that they understand your issues and desired outcome.\r\n\r\nHere are some tips to help you choose your hypnotherapist.\r\n\r\n1. Hypnotherapy Qualifications.\r\n\r\nAnyone can learn to hypnotize others and its important that your therapist has a suitable qualification or diploma in hypnotherapy.\r\nSuitable training in specialist areas is very important when it comes to dealing with certain areas of health or change work. A qualified hypnotherapist will have undergone a set number of\r\nWhen searching for your hypnotherapist do ask for qualifications and previous background information.\r\nMany hypnotherapists will be experience in other health areas that can be most useful.\r\n\r\nhours of training\r\n\r\nonline training\r\n\r\n2. In','Essential Tips For Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-28 23:56:21','2018-12-28 23:56:21','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2411,1,'2018-12-29 19:10:00','2018-12-29 19:10:00','We are very fortunate to have a selection of good hypnotherapists available to us locally and online.\r\nHypnotherapy is unregulated in the UK as it is regarded as a safe therapy. However, it really is worth taking a little time to choose the right hypnotherapist for you.\r\n\r\nHere are some tips to help you choose your hypnotherapist.\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make anyone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and then continue their development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training and previous background information.\r\nDo ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people in person. Do check the hypnosis qualifications we not obtained by simply taking an online hypnosis course.  These online courses are becoming popular and rarely give the therapist the experience and practice needed.\r\n\r\nMany hypnotherapists may be experienced in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Mindfulness &amp; Meditation.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately insured.\r\nYou can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have questions. Most of our clients love the initial free consultation as this allows you to ask questions, explain the issue they wish to resolve and get to know the hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked.\r\nIf you have limited mobility is the venue suitable? Are there stairs? Is there suitable car parking space? Is it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this our do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use. This gives them a sense of security as they know other therapists use these centres and there are other members of staff around. Wellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy. They also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nIt appears everyone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from £60 per session to £250 per session. It is important to pick a hypnotherapist that suits your budget while also ensuring you are getting value for you money.\r\n\r\nOne mistake we see is clients who have previously chosen a hypnotherapist as they were at the cheaper end of the market. As a result they have paid for more sessions than would have been required with a more experienced hypnotherapist. Many then move on to find a better hypnotherpist to actually resolve the issue.\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional tests.\r\n<h4>\r\n<span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for google reviews along with other information.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Gaurantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering with an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certaing specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specilaise in to help you.\r\n<h4><strong><span style=\"color: #008000;\">9. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist. Do you feel they undertsand your issue and\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Essential Tips For Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-29 19:10:00','2018-12-29 19:10:00','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2412,1,'2018-12-29 19:43:09','2018-12-29 19:43:09','We are very fortunate to have a selection of good hypnotherapists available to us locally and online.\r\nHypnotherapy is unregulated in the UK as it is regarded as a safe therapy. However, it really is worth taking a little time to choose the right hypnotherapist for you.\r\n\r\nHere are some useful tips to help you when choose your hypnotherapist.\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training and previous background information.\r\nDo ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications we not obtained by simply taking an online hypnosis course.\r\nThese online courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance cover for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions. Most of our clients love the initial free consultation as this allows you to ask questions, explain the issue they wish to resolve and get to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this our do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy. They also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nIt appears everyone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to pick a hypnotherapist that suits your budget while also ensuring you are getting value for you money.\r\n\r\nOne mistake we see is clients who have previously chosen a hypnotherapist as they were at the cheaper end of the market. As a result they have paid for more sessions than would have been required with a more experienced hypnotherapist. Some clients move on to find a better hypnotherpist to actually resolve the issue.\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for google reviews along with other information on a hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Gaurantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering with an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certaing specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specilaise in to help you.\r\n<h4>\r\n<span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events. They may also give demonstrations and regular talks at health and wellness events. Simply ask about these events or look for information on the hypnotherapists website.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they undertsand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions.\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Essential Tips For Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-29 19:43:09','2018-12-29 19:43:09','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2414,1,'2018-12-29 20:10:03','2018-12-29 20:10:03','We are very fortunate to have a selection of excellent hypnotherapists available to us locally and online.\r\nHypnotherapy is unregulated in the UK as it is regarded as a safe therapy. However, it really is worth taking a little time to choose the right hypnotherapist to suit you.\r\n\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" />Here are some useful tips to help you when choosing your hypnotherapist by Mark Morley, Clincal Hypnotherapist &amp; Mast NLP Practitioner.\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Do ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nIt appears everyone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nOne mistake we often see is clients who have chosen a hypnotherapist due to a cheap price.\r\nThis often results in a high number of sessions being booked and then the issue is not resolved.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Essential Tips For Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-29 20:10:03','2018-12-29 20:10:03','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2413,1,'2018-12-29 19:49:16','2018-12-29 19:49:16','We are very fortunate to have a selection of good hypnotherapists available to us locally and online.\r\nHypnotherapy is unregulated in the UK as it is regarded as a safe therapy. However, it really is worth taking a little time to choose the right hypnotherapist for you.\r\n\r\nHere are some useful tips to help you when choose your hypnotherapist.\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas that may work in. Do ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications we not obtained by simply taking an online hypnosis course.\r\nThese online courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance cover for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions. Most of our clients love the initial free consultation as this allows you to ask questions, explain the issue they wish to resolve and get to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this our do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other areas,really compliment hypnotherapy eRemember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nIt appears everyone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to pick a hypnotherapist that suits your budget while also ensuring you are getting value for you money.\r\n\r\nOne mistake we see is clients who have previously chosen a hypnotherapist as they were at the cheaper end of the market. As a result they have paid for more sessions than would have been required with a more experienced hypnotherapist. Some clients move on to find a better hypnotherpist to actually resolve the issue.\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for google reviews along with other information on a hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Gaurantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering with an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certaing specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specilaise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events. They may also give demonstrations and regular talks at health and wellness events. Simply ask about these events or look for information on the hypnotherapists website.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they undertsand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions.\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Essential Tips For Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-29 19:49:16','2018-12-29 19:49:16','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2415,1,'2018-12-29 20:12:42','2018-12-29 20:12:42','We are very fortunate to have a selection of excellent hypnotherapists available to us locally and online.\r\nChoosing your hypnotherapist is important to obtain the best reuslts for you. It really is worth taking a little time to choose the right hypnotherapist to suit you.\r\n\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" /><strong>Here are some useful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Mast NLP Practitioner.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Do ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nIt appears everyone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nOne mistake we often see is clients who have chosen a hypnotherapist due to a cheap price.\r\nThis often results in a high number of sessions being booked and then the issue is not resolved.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-29 20:12:42','2018-12-29 20:12:42','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2416,1,'2018-12-29 20:19:56','2018-12-29 20:19:56','We are very fortunate to have a selection of excellent hypnotherapists available to us locally and online.\r\nChoosing your hypnotherapist is important to obtain the best reuslts for you. It really is worth taking a little time to choose the right hypnotherapist to suit you.\r\n\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" /><strong>Here are some useful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Mast NLP Practitioner.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Do ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nIt appears everyone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nOne mistake we often see is clients who have chosen a hypnotherapist due to a cheap price.\r\nThis often results in a high number of sessions being booked and then the issue is not resolved.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Quick Tips For Choosing Your Hypnotherapist.</span></strong></h2>\r\n<ul>\r\n 	<li>Check qualifications &amp; training</li>\r\n 	<li>Check insurance</li>\r\n 	<li>Is there a free consultation</li>\r\n 	<li>Check the venue &amp; avoid those that work from home</li>\r\n 	<li>Ask about areas of expertise</li>\r\n 	<li>Are you clear on prices?</li>\r\n 	<li>Look for reviews and testimonials</li>\r\n 	<li>Avoid guarantees an one session promises</li>\r\n 	<li>Are they specialists or experienced in your issue?</li>\r\n 	<li>Look for events and workshops</li>\r\n 	<li>Get to know your hypnotherapist</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-29 20:19:56','2018-12-29 20:19:56','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2417,1,'2018-12-29 20:26:39','2018-12-29 20:26:39','We are very fortunate to have a selection of excellent hypnotherapists available to us locally and online.\r\nChoosing your hypnotherapist is important to obtain the best reuslts for you. It really is worth taking a little time to choose the right hypnotherapist to suit you.\r\n\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" /><strong>Here are some useful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Mast NLP Practitioner.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Do ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nIt appears everyone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nOne mistake we often see is clients who have chosen a hypnotherapist due to a cheap price.\r\nThis often results in a high number of sessions being booked and then the issue is not resolved.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n<h4><span style=\"color: #008000;\"><strong>11. Be Clear On What You Want To </strong>Achieve</span></h4>\r\nIt will really help your hypnotherapist and you to know exactly what you want to achive with hypnotherapy?\r\nAs an example, many clients with anxiety issues come to us just wanting the anxiety problems to go away. A better outcome maybe to feel, realaxed, confident, calm, strong, focused, clear and energetic. This many be a different way of thinking for you and having a clear outcome of your future will help us to help you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Tips For Choosing Your Hypnotherapist.</span></strong></h2>\r\n<ul>\r\n 	<li>Check qualifications &amp; training</li>\r\n 	<li>Check insurance</li>\r\n 	<li>Is there a free consultation</li>\r\n 	<li>Check the venue</li>\r\n 	<li>Avoid those working from home</li>\r\n 	<li>Ask about areas of expertise</li>\r\n 	<li>Are you clear on prices?</li>\r\n 	<li>Look for reviews and testimonials</li>\r\n 	<li>Avoid guarantees an one session promises</li>\r\n 	<li>Are they specialists or experienced in your issue?</li>\r\n 	<li>Look for events and workshops</li>\r\n 	<li>Get to know your hypnotherapist</li>\r\n 	<li>Enjoy your hypnotherapy - it is a wonderful experience</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-29 20:26:39','2018-12-29 20:26:39','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2418,1,'2018-12-29 20:35:37','2018-12-29 20:35:37','We are very fortunate to have a selection of excellent hypnotherapists available to us locally and online.\r\nChoosing your hypnotherapist is important to obtain the best reuslts for you. It really is worth taking a little time to choose the right hypnotherapist to suit you.\r\n\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" /><strong>Here are some useful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Mast NLP Practitioner.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Do ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nIt appears everyone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nOne mistake we often see is clients who have chosen a hypnotherapist due to a cheap price.\r\nThis often results in a high number of sessions being booked and then the issue is not resolved.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n<h4><span style=\"color: #008000;\"><strong>11. Be Clear On What You Want To </strong>Achieve</span></h4>\r\nIt will really help your hypnotherapist and you to know exactly what you want to achive with hypnotherapy?\r\nAs an example, many clients with anxiety issues come to us just wanting the anxiety problems to go away. A better outcome maybe to feel, realaxed, confident, calm, strong, focused, clear and energetic. This many be a different way of thinking for you and having a clear outcome of your future will help us to help you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Tips For Choosing Your Hypnotherapist.</span></strong></h2>\r\n<ul>\r\n 	<li>Check qualifications &amp; training</li>\r\n 	<li>Check insurance</li>\r\n 	<li>Is there a free consultation</li>\r\n 	<li>Check the venue</li>\r\n 	<li>Avoid those working from home</li>\r\n 	<li>Ask about areas of expertise</li>\r\n 	<li>Are you clear on prices?</li>\r\n 	<li>Look for reviews and testimonials</li>\r\n 	<li>Avoid guarantees an one session promises</li>\r\n 	<li>Are they specialists or experienced in your issue?</li>\r\n 	<li>Look for events and workshops</li>\r\n 	<li>Get to know your hypnotherapist</li>\r\n 	<li>Enjoy your hypnotherapy - it is a wonderful experience</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions Clients Ask About Hypnotherapy.</span></strong></h2>\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy similar to sleep?</span></strong></h4>\r\n<h4>No, hypnotherapy is very different to sleep. The word sleep is often used by stage hypnotists and incorrect.\r\nHypnosis is a relaxed but alert state where you are fully awake, fully aware and fully in control.\r\nDuring this hypnotic state we can give your subconcious mind suggestions and commands to resolve the issues you wish to resolve.\r\n\r\n<strong><span style=\"color: #008000;\">Is hypnotherapy dangerous?</span></strong></h4>\r\nHypnosis is perfectly safe when conducted by a professional trainined in clincal hypnotherapy.\r\nHypnotherapy is regarded as a safe therapy by the NHS and insurance companies.\r\nHypnosis should never be used when operating machinery or driving a vehicle.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-29 20:35:37','2018-12-29 20:35:37','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2419,1,'2018-12-29 20:45:37','2018-12-29 20:45:37','We are very fortunate to have a selection of excellent hypnotherapists available to us locally and online.\r\nChoosing your hypnotherapist is important to obtain the best reuslts for you. It really is worth taking a little time to choose the right hypnotherapist to suit you.\r\n\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" /><strong>Here are some useful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Mast NLP Practitioner.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Do ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nIt appears everyone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nOne mistake we often see is clients who have chosen a hypnotherapist due to a cheap price.\r\nThis often results in a high number of sessions being booked and then the issue is not resolved.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n<h4><span style=\"color: #008000;\"><strong>11. Be Clear On What You Want To </strong>Achieve</span></h4>\r\nIt will really help your hypnotherapist and you to know exactly what you want to achive with hypnotherapy?\r\nAs an example, many clients with anxiety issues come to us just wanting the anxiety problems to go away. A better outcome maybe to feel, realaxed, confident, calm, strong, focused, clear and energetic. This many be a different way of thinking for you and having a clear outcome of your future will help us to help you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Tips For Choosing Your Hypnotherapist.</span></strong></h2>\r\n<ul>\r\n 	<li>Check qualifications &amp; training</li>\r\n 	<li>Check insurance</li>\r\n 	<li>Is there a free consultation</li>\r\n 	<li>Check the venue</li>\r\n 	<li>Avoid those working from home</li>\r\n 	<li>Ask about areas of expertise</li>\r\n 	<li>Are you clear on prices?</li>\r\n 	<li>Look for reviews and testimonials</li>\r\n 	<li>Avoid guarantees an one session promises</li>\r\n 	<li>Are they specialists or experienced in your issue?</li>\r\n 	<li>Look for events and workshops</li>\r\n 	<li>Get to know your hypnotherapist</li>\r\n 	<li>Enjoy your hypnotherapy - it is a wonderful experience</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions Clients Ask About Hypnotherapy.</span></strong></h2>\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy similar to sleep?</span></strong></h4>\r\nNo, hypnotherapy is very different to sleep. The word sleep is often used by stage hypnotists and incorrect.\r\nHypnosis is a relaxed but alert state where you are fully awake, fully aware and fully in control.\r\nDuring this hypnotic state we can give your subconcious mind suggestions and commands to resolve the issues you wish to resolve.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy dangerous?</span></strong></h4>\r\nHypnosis is perfectly safe when conducted by a professional trainined in clincal hypnotherapy.\r\nHypnotherapy is regarded as a safe therapy by the NHS and insurance companies.\r\nHypnosis should never be used when operating machinery or driving a vehicle.\r\n<h4><span style=\"color: #008000;\"><strong>How many hypnotherapy sessions will it take to fix my problem?</strong></span></h4>\r\nThis will vary on the issue and will be advised by the hypnotherapist you choose.\r\nAsking for<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong> a free consultation</strong></a> will help you with this question.\r\n<h4><strong><span style=\"color: #008000;\">What is hypnosis?</span></strong></h4>\r\nHypnosis is a natural state that we all experience every day, rather similar to day dreaming.\r\nImagine being totally focused on a tv program, that is a hypnotic state.\r\nA good hypnotherapist will simply guide you into a hypnotic state while using language to change how you think and act.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nHypnosis is usually guided by a hypnotherapist to make the changes you desire.\r\nSelf-hypnosis is guided by you for relaxation or change, rather similar to meditation although faster, deeper and more effective.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Meditation and Hypnosis?</strong></span></h4>\r\nMeditation is usually used to clear the mind while hypnosis is used to change the mind.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-29 20:45:37','2018-12-29 20:45:37','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2420,1,'2018-12-29 20:53:57','2018-12-29 20:53:57','We are very fortunate to have a selection of excellent hypnotherapists available to us locally and online.\r\nChoosing your hypnotherapist is important to obtain the best reuslts for you. It really is worth taking a little time to choose the right hypnotherapist to suit you.\r\n\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" /><strong>Here are some useful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Mast NLP Practitioner.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Do ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nIt appears everyone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nOne mistake we often see is clients who have chosen a hypnotherapist due to a cheap price.\r\nThis often results in a high number of sessions being booked and then the issue is not resolved.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n<h4><span style=\"color: #008000;\"><strong>11. Be Clear On What You Want To </strong>Achieve</span></h4>\r\nIt will really help your hypnotherapist and you to know exactly what you want to achive with hypnotherapy?\r\nAs an example, many clients with anxiety issues come to us just wanting the anxiety problems to go away. A better outcome maybe to feel, realaxed, confident, calm, strong, focused, clear and energetic. This many be a different way of thinking for you and having a clear outcome of your future will help us to help you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Tips For Choosing Your Hypnotherapist.</span></strong></h2>\r\n<ul>\r\n 	<li>Check qualifications &amp; training</li>\r\n 	<li>Check insurance</li>\r\n 	<li>Is there a free consultation</li>\r\n 	<li>Check the venue</li>\r\n 	<li>Avoid those working from home</li>\r\n 	<li>Ask about areas of expertise</li>\r\n 	<li>Are you clear on prices?</li>\r\n 	<li>Look for reviews and testimonials</li>\r\n 	<li>Avoid guarantees an one session promises</li>\r\n 	<li>Are they specialists or experienced in your issue?</li>\r\n 	<li>Look for events and workshops</li>\r\n 	<li>Get to know your hypnotherapist</li>\r\n 	<li>Enjoy your hypnotherapy - it is a wonderful experience</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions Clients Ask About Hypnotherapy.</span></strong></h2>\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy similar to sleep?</span></strong></h4>\r\nNo, hypnotherapy is very different to sleep. The word sleep is often used by stage hypnotists and incorrect.\r\nHypnosis is a relaxed but alert state where you are fully awake, fully aware and fully in control.\r\nDuring this hypnotic state we can give your subconcious mind suggestions and commands to resolve the issues you wish to resolve.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy dangerous?</span></strong></h4>\r\nHypnosis is perfectly safe when conducted by a professional trainined in clincal hypnotherapy.\r\nHypnotherapy is regarded as a safe therapy by the NHS and insurance companies.\r\nHypnosis should never be used when operating machinery or driving a vehicle.\r\n<h4><span style=\"color: #008000;\"><strong>How many hypnotherapy sessions will it take to fix my problem?</strong></span></h4>\r\nThis will vary on the issue and will be advised by the hypnotherapist you choose.\r\nAsking for<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong> a free consultation</strong></a> will help you with this question.\r\n<h4><strong><span style=\"color: #008000;\">What is hypnosis?</span></strong></h4>\r\nHypnosis is a natural state that we all experience every day, rather similar to day dreaming.\r\nImagine being totally focused on a tv program, that is a hypnotic state.\r\nA good hypnotherapist will simply guide you into a hypnotic state while using language to change how you think and act.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nHypnosis is usually guided by a hypnotherapist to make the changes you desire.\r\nSelf-hypnosis is guided by you for relaxation or change, rather similar to meditation although faster, deeper and more effective.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Meditation and Hypnosis?</strong></span></h4>\r\nMeditation is usually used to clear the mind while hypnosis is used to change the mind.\r\n<h4><span style=\"color: #008000;\"><strong>How can I find a good hypnotherapist?</strong></span></h4>\r\nLook at the information above about finding a good hypnotherapist for you.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnotherapy a permanent, long lasting solution?</strong></span></h4>\r\nUsually hypnotherapy solutions will be permanent resolution to your problem. If required you can certainly visit your hypnotherapist again to strengthen or modify your improvements.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-29 20:53:57','2018-12-29 20:53:57','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2421,1,'2018-12-29 21:15:11','2018-12-29 21:15:11','We are very fortunate to have a selection of excellent hypnotherapists available to us locally and online.\r\nChoosing your hypnotherapist is important to obtain the best reuslts for you. It really is worth taking a little time to choose the right hypnotherapist to suit you.\r\n\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" /><strong>Here are some useful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Mast NLP Practitioner.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Do ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nIt appears everyone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nOne mistake we often see is clients who have chosen a hypnotherapist due to a cheap price.\r\nThis often results in a high number of sessions being booked and then the issue is not resolved.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n<h4><span style=\"color: #008000;\"><strong>11. Be Clear On What You Want To </strong>Achieve</span></h4>\r\nIt will really help your hypnotherapist and you to know exactly what you want to achive with hypnotherapy?\r\nAs an example, many clients with anxiety issues come to us just wanting the anxiety problems to go away. A better outcome maybe to feel, realaxed, confident, calm, strong, focused, clear and energetic. This many be a different way of thinking for you and having a clear outcome of your future will help us to help you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Tips For Choosing Your Hypnotherapist.</span></strong></h2>\r\n<ul>\r\n 	<li>Check qualifications &amp; training</li>\r\n 	<li>Check insurance</li>\r\n 	<li>Is there a free consultation</li>\r\n 	<li>Check the venue</li>\r\n 	<li>Avoid those working from home</li>\r\n 	<li>Ask about areas of expertise</li>\r\n 	<li>Are you clear on prices?</li>\r\n 	<li>Look for reviews and testimonials</li>\r\n 	<li>Avoid guarantees an one session promises</li>\r\n 	<li>Are they specialists or experienced in your issue?</li>\r\n 	<li>Look for events and workshops</li>\r\n 	<li>Get to know your hypnotherapist</li>\r\n 	<li>Enjoy your hypnotherapy - it is a wonderful experience</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions Clients Ask About Hypnotherapy.</span></strong></h2>\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy similar to sleep?</span></strong></h4>\r\nNo, hypnotherapy is very different to sleep. The word sleep is often used by stage hypnotists and incorrect.\r\nHypnosis is a relaxed but alert state where you are fully awake, fully aware and fully in control.\r\nDuring this hypnotic state we can give your subconcious mind suggestions and commands to resolve the issues you wish to resolve.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy dangerous?</span></strong></h4>\r\nHypnosis is perfectly safe when conducted by a professional trainined in clincal hypnotherapy.\r\nHypnotherapy is regarded as a safe therapy by the NHS and insurance companies.\r\nHypnosis should never be used when operating machinery or driving a vehicle.\r\n<h4><span style=\"color: #008000;\"><strong>How many hypnotherapy sessions will it take to fix my problem?</strong></span></h4>\r\nThis will vary on the issue and will be advised by the hypnotherapist you choose.\r\nAsking for<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong> a free consultation</strong></a> will help you with this question.\r\n<h4><strong><span style=\"color: #008000;\">What is hypnosis?</span></strong></h4>\r\nHypnosis is a natural state that we all experience every day, rather similar to day dreaming.\r\nImagine being totally focused on a tv program, that is a hypnotic state.\r\nA good hypnotherapist will simply guide you into a hypnotic state while using language to change how you think and act.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nHypnosis is usually guided by a hypnotherapist to make the changes you desire.\r\nSelf-hypnosis is guided by you for relaxation or change, rather similar to meditation although faster, deeper and more effective.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Meditation and Hypnosis?</strong></span></h4>\r\nMeditation is usually used to clear the mind while hypnosis is used to change the mind.\r\n<h4><span style=\"color: #008000;\"><strong>How can I find a good hypnotherapist?</strong></span></h4>\r\nLook at the information above about finding a good hypnotherapist for you.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnotherapy a permanent, long lasting solution?</strong></span></h4>\r\nUsually hypnotherapy solutions will be permanent resolution to your problem. If required you can certainly visit your hypnotherapist again to strengthen or modify your improvements.\r\n<h4><strong><span style=\"color: #008000;\">Which health issues can hypnotherapy help with?</span></strong></h4>\r\nMany of our clients find hypnotherapy is very effective with health conditions that involve stress and anxiety. Both of these can make almost any health issue worse and once we remove stress and anxiety, our minds are free to resolve issues better.\r\nStress and anxiety are presently very common health issues and effect a very high number of people.\r\nHypnotherapy can also help with many other health conditions such as IBS, pain management, depression, insomnia, weight loss, stopping smoking, addictions, changing habits, behaviour problems, food allergies, food intolernaces and so much more.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis available on the NHS?</strong></span></h4>\r\nAlthough the NHS state that hypnotherapy is effective with many health issues they do not currently offer hypnosis services.\r\nWe believe that hypnotherapy should be available to everyone on the NHS as it can be most effective and it avoids the side effects of many medications. Hopefully in the future hypnosis will be offered on the NHS.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-29 21:15:11','2018-12-29 21:15:11','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2422,1,'2018-12-29 21:47:23','2018-12-29 21:47:23','We are very fortunate to have a selection of excellent hypnotherapists available to us locally and online.\r\nChoosing your hypnotherapist is important to obtain the best reuslts for you. It really is worth taking a little time to choose the right hypnotherapist to suit you.\r\n\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" /><strong>Here are some useful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Mast NLP Practitioner.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Do ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nIt appears everyone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nOne mistake we often see is clients who have chosen a hypnotherapist due to a cheap price.\r\nThis often results in a high number of sessions being booked and then the issue is not resolved.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n<h4><span style=\"color: #008000;\"><strong>11. Be Clear On What You Want To </strong>Achieve</span></h4>\r\nIt will really help your hypnotherapist and you to know exactly what you want to achive with hypnotherapy?\r\nAs an example, many clients with anxiety issues come to us just wanting the anxiety problems to go away. A better outcome maybe to feel, realaxed, confident, calm, strong, focused, clear and energetic. This many be a different way of thinking for you and having a clear outcome of your future will help us to help you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Tips For Choosing Your Hypnotherapist.</span></strong></h2>\r\n<ul>\r\n 	<li>Check qualifications &amp; training</li>\r\n 	<li>Check insurance</li>\r\n 	<li>Is there a free consultation</li>\r\n 	<li>Check the venue</li>\r\n 	<li>Avoid those working from home</li>\r\n 	<li>Ask about areas of expertise</li>\r\n 	<li>Are you clear on prices?</li>\r\n 	<li>Look for reviews and testimonials</li>\r\n 	<li>Avoid guarantees an one session promises</li>\r\n 	<li>Are they specialists or experienced in your issue?</li>\r\n 	<li>Look for events and workshops</li>\r\n 	<li>Get to know your hypnotherapist</li>\r\n 	<li>Enjoy your hypnotherapy - it is a wonderful experience</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions Clients Ask About Hypnotherapy.</span></strong></h2>\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy similar to sleep?</span></strong></h4>\r\nNo, hypnotherapy is very different to sleep. The word sleep is often used by stage hypnotists and incorrect.\r\nHypnosis is a relaxed but alert state where you are fully awake, fully aware and fully in control.\r\nDuring this hypnotic state we can give your subconcious mind suggestions and commands to resolve the issues you wish to resolve.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy dangerous?</span></strong></h4>\r\nHypnosis is perfectly safe when conducted by a professional trainined in clincal hypnotherapy.\r\nHypnotherapy is regarded as a safe therapy by the NHS and insurance companies.\r\nHypnosis should never be used when operating machinery or driving a vehicle.\r\n<h4><span style=\"color: #008000;\"><strong>How many hypnotherapy sessions will it take to fix my problem?</strong></span></h4>\r\nThis will vary on the issue and will be advised by the hypnotherapist you choose.\r\nAsking for<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong> a free consultation</strong></a> will help you with this question.\r\n<h4><strong><span style=\"color: #008000;\">What is hypnosis?</span></strong></h4>\r\nHypnosis is a natural state that we all experience every day, rather similar to day dreaming.\r\nImagine being totally focused on a tv program, that is a hypnotic state.\r\nA good hypnotherapist will simply guide you into a hypnotic state while using language to change how you think and act.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nHypnosis is usually guided by a hypnotherapist to make the changes you desire.\r\nSelf-hypnosis is guided by you for relaxation or change, rather similar to meditation although faster, deeper and more effective.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Meditation and Hypnosis?</strong></span></h4>\r\nMeditation is usually used to clear the mind while hypnosis is used to change the mind.\r\n<h4><span style=\"color: #008000;\"><strong>How can I find a good hypnotherapist?</strong></span></h4>\r\nLook at the information above about finding a good hypnotherapist for you.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnotherapy a permanent, long lasting solution?</strong></span></h4>\r\nUsually hypnotherapy solutions will be permanent resolution to your problem. If required you can certainly visit your hypnotherapist again to strengthen or modify your improvements.\r\n<h4><strong><span style=\"color: #008000;\">Which health issues can hypnotherapy help with?</span></strong></h4>\r\nMany of our clients find hypnotherapy is very effective with health conditions that involve stress and anxiety. Both of these can make almost any health issue worse and once we remove stress and anxiety, our minds are free to resolve issues better.\r\nStress and anxiety are presently very common health issues and effect a very high number of people.\r\nHypnotherapy can also help with many other health conditions such as IBS, pain management, depression, insomnia, weight loss, stopping smoking, addictions, changing habits, behaviour problems, food allergies, food intolernaces and so much more.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis available on the NHS?</strong></span></h4>\r\nAlthough the NHS state that hypnotherapy is effective with many health issues they do not currently offer hypnosis services.\r\nWe believe that hypnotherapy should be available to everyone on the NHS as it can be most effective and it avoids the side effects of many medications. Hopefully in the future hypnosis will be offered on the NHS.\r\n<h4><span style=\"color: #008000;\"><strong>Can everyone be hypnotised and helped?</strong></span></h4>\r\nPersonally I believe everyone can experience hypnosis and with the right methods everyone can be helped with hypnotherapy. However, this question will draw different answers and arguments from many respected hypnotherapy professionals.\r\nSome people are resitant to hypnosis as they may have a fear of losing control. This is where learning self-hypnosis is very useful, allowing people to help themselves.\r\nA good hypnotherapist will usually be experienced with other modern change techniques that can be just as powerful. The more tools we have in our mental toolbox the better we can help clients with health issues.\r\n<h4><span style=\"color: #008000;\"><strong>Can people be hypnotised </strong>against<strong> thier will?</strong></span></h4>\r\nChange with hypnotherapy can only happen if the client is willing to change. We can help with giving people reasons to change or improve things but ulimatly change has to come from within.\r\nA good therapist would not take on a client unless they are willing to make changes.\r\n<h4><span style=\"color: #008000;\"><strong>Is it true that hypnosis weakens the mind?</strong></span></h4>\r\nNo. Hypnosis and self-hypnosis can help to control menal states such as happiness and self confidence. In effect we do have \"mental muscles\" and the more we practice helpful techniques the easier and stronger they become.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnosis addictive?</span></strong></h4>\r\nI have never heard of anyone becoming addictied to hypnosis. Hypnosis is a wonderful state and a great way to feel relaxed, in control, happy, self-confident, strong, focused etc. Once you learn to enter into self-hypnosis you have a powerful mental technique that allows you to control your emotions, feelings and other mental states.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnotherapy useful for children?</strong></span></h4>\r\nYes, children and adults can enjoy the benefits of hypnotherapy. Children are usually very good hypnotic subjects and naturally enjoy hypnotic states on a daily basis.\r\n<h4><span style=\"color: #008000;\">How can I learn to <strong>hypnotise other</strong> people?</span></h4>\r\nI would strongly suggest finding a self-hypnosis course near to you with a respected hypnotherapy practitioner.\r\nCourses encouraging you to practice on others are very useful and far better than online courses and books.\r\nSelf-hypnosis is perfectly safe and a great first step into the world of hypnotherapy.\r\n\r\nA good instructor will teach you many hypnosis inductions and a little history of hypnotherapy.\r\nRegular practice will see you improve and you will become aware of how people change and improve during hypnosis.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-29 21:47:23','2018-12-29 21:47:23','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2424,1,'2018-12-29 22:05:03','2018-12-29 22:05:03','We are very fortunate to have a selection of excellent hypnotherapists available to us locally and online.\r\nChoosing your hypnotherapist is important to obtain the best reuslts for you. It really is worth taking a little time to choose the right hypnotherapist to suit you.\r\n\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" /><strong>Here are some useful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Mast NLP Practitioner.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Make sure you ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nEveryone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nChoosing a hypnotherapist on a low price is often false economy. More sessions may be required with the issue never being resolved.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n<h4><span style=\"color: #008000;\"><strong>11. Be Clear On What You Want To </strong>Achieve</span></h4>\r\nIt will really help your hypnotherapist and you to know exactly what you want to achive with hypnotherapy?\r\nAs an example, many clients with anxiety issues come to us just wanting the anxiety problems to go away. A better outcome maybe to feel, realaxed, confident, calm, strong, focused, clear and energetic. This many be a different way of thinking for you and having a clear outcome of your future will help us to help you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Tips For Choosing Your Hypnotherapist.</span></strong></h2>\r\n<ul>\r\n 	<li>Check qualifications &amp; training</li>\r\n 	<li>Check insurance</li>\r\n 	<li>Is there a free consultation</li>\r\n 	<li>Check the venue</li>\r\n 	<li>Avoid those working from home</li>\r\n 	<li>Ask about areas of expertise</li>\r\n 	<li>Are you clear on prices?</li>\r\n 	<li>Look for reviews and testimonials</li>\r\n 	<li>Avoid guarantees an one session promises</li>\r\n 	<li>Are they specialists or experienced in your issue?</li>\r\n 	<li>Look for events and workshops</li>\r\n 	<li>Get to know your hypnotherapist</li>\r\n 	<li>Enjoy your hypnotherapy - it is a wonderful experience</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions Clients Ask About Hypnotherapy.</span></strong></h2>\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy similar to sleep?</span></strong></h4>\r\nNo, hypnotherapy is very different to sleep. The word sleep is often used by stage hypnotists and incorrect.\r\nHypnosis is a relaxed but alert state where you are fully awake, fully aware and fully in control.\r\nDuring this hypnotic state we can give your subconcious mind suggestions and commands to resolve the issues you wish to resolve.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy dangerous?</span></strong></h4>\r\nHypnosis is perfectly safe when conducted by a professional trainined in clincal hypnotherapy.\r\nHypnotherapy is regarded as a safe therapy by the NHS and insurance companies.\r\nHypnosis should never be used when operating machinery or driving a vehicle.\r\n<h4><span style=\"color: #008000;\"><strong>How many hypnotherapy sessions will it take to fix my problem?</strong></span></h4>\r\nThis will vary on the issue and will be advised by the hypnotherapist you choose.\r\nAsking for<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong> a free consultation</strong></a> will help you with this question.\r\n<h4><strong><span style=\"color: #008000;\">What is hypnosis?</span></strong></h4>\r\nHypnosis is a natural state that we all experience every day, rather similar to day dreaming.\r\nImagine being totally focused on a tv program, that is a hypnotic state.\r\nA good hypnotherapist will simply guide you into a hypnotic state while using language to change how you think and act.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nHypnosis is usually guided by a hypnotherapist to make the changes you desire.\r\nSelf-hypnosis is guided by you for relaxation or change, rather similar to meditation although faster, deeper and more effective.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Meditation and Hypnosis?</strong></span></h4>\r\nMeditation is usually used to clear the mind while hypnosis is used to change the mind.\r\n<h4><span style=\"color: #008000;\"><strong>How can I find a good hypnotherapist?</strong></span></h4>\r\nLook at the information above about finding a good hypnotherapist for you.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnotherapy a permanent, long lasting solution?</strong></span></h4>\r\nUsually hypnotherapy solutions will be permanent resolution to your problem. If required you can certainly visit your hypnotherapist again to strengthen or modify your improvements.\r\n<h4><strong><span style=\"color: #008000;\">Which health issues can hypnotherapy help with?</span></strong></h4>\r\nMany of our clients find hypnotherapy is very effective with health conditions that involve stress and anxiety. Both of these can make almost any health issue worse and once we remove stress and anxiety, our minds are free to resolve issues better.\r\nStress and anxiety are presently very common health issues and effect a very high number of people.\r\nHypnotherapy can also help with many other health conditions such as IBS, pain management, depression, insomnia, weight loss, stopping smoking, addictions, changing habits, behaviour problems, food allergies, food intolernaces and so much more.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis available on the NHS?</strong></span></h4>\r\nAlthough the NHS state that hypnotherapy is effective with many health issues they do not currently offer hypnosis services.\r\nWe believe that hypnotherapy should be available to everyone on the NHS as it can be most effective and it avoids the side effects of many medications. Hopefully in the future hypnosis will be offered on the NHS.\r\n<h4><span style=\"color: #008000;\"><strong>Can everyone be hypnotised and helped?</strong></span></h4>\r\nPersonally I believe everyone can experience hypnosis and with the right methods everyone can be helped with hypnotherapy. However, this question will draw different answers and arguments from many respected hypnotherapy professionals.\r\nSome people are resitant to hypnosis as they may have a fear of losing control. This is where learning self-hypnosis is very useful, allowing people to help themselves.\r\nA good hypnotherapist will usually be experienced with other modern change techniques that can be just as powerful. The more tools we have in our mental toolbox the better we can help clients with health issues.\r\n<h4><span style=\"color: #008000;\"><strong>Can people be hypnotised </strong>against<strong> thier will?</strong></span></h4>\r\nChange with hypnotherapy can only happen if the client is willing to change. We can help with giving people reasons to change or improve things but ulimatly change has to come from within.\r\nA good therapist would not take on a client unless they are willing to make changes.\r\n<h4><span style=\"color: #008000;\"><strong>Is it true that hypnosis weakens the mind?</strong></span></h4>\r\nNo. Hypnosis and self-hypnosis can help to control menal states such as happiness and self confidence. In effect we do have \"mental muscles\" and the more we practice helpful techniques the easier and stronger they become.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnosis addictive?</span></strong></h4>\r\nI have never heard of anyone becoming addictied to hypnosis. Hypnosis is a wonderful state and a great way to feel relaxed, in control, happy, self-confident, strong, focused etc. Once you learn to enter into self-hypnosis you have a powerful mental technique that allows you to control your emotions, feelings and other mental states.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnotherapy useful for children?</strong></span></h4>\r\nYes, children and adults can enjoy the benefits of hypnotherapy. Children are usually very good hypnotic subjects and naturally enjoy hypnotic states on a daily basis.\r\n<h4><span style=\"color: #008000;\">How can I learn to <strong>hypnotise other</strong> people?</span></h4>\r\nI would strongly suggest finding a self-hypnosis course near to you with a respected hypnotherapy practitioner.\r\nCourses encouraging you to practice on others are very useful and far better than online courses and books.\r\nSelf-hypnosis is perfectly safe and a great first step into the world of hypnotherapy. Always treat yourself as your first client.\r\n\r\nA good instructor will teach you many hypnosis inductions and a little history of hypnotherapy.\r\nRegular practice will see you improve and you will become aware of how people change and improve during hypnosis.\r\n<h4><span style=\"color: #008000;\"><strong>Are there different levels of Hypnosis?</strong></span></h4>\r\nYes. For most hypnotherapy change requirements clients do not need to go too deep to enjoy the many benefits.\r\nJust like meditation, the more someone experiences hypnosis, the more they can enjoy deep hypnosis.\r\nA trained hypnotherapist can guide clients to deeper hypnosis levels when required.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-29 22:05:03','2018-12-29 22:05:03','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2423,1,'2018-12-29 21:52:29','2018-12-29 21:52:29','We are very fortunate to have a selection of excellent hypnotherapists available to us locally and online.\r\nChoosing your hypnotherapist is important to obtain the best reuslts for you. It really is worth taking a little time to choose the right hypnotherapist to suit you.\r\n\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" /><strong>Here are some useful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Mast NLP Practitioner.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Do ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nIt appears everyone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nOne mistake we often see is clients who have chosen a hypnotherapist due to a cheap price.\r\nThis often results in a high number of sessions being booked and then the issue is not resolved.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n<h4><span style=\"color: #008000;\"><strong>11. Be Clear On What You Want To </strong>Achieve</span></h4>\r\nIt will really help your hypnotherapist and you to know exactly what you want to achive with hypnotherapy?\r\nAs an example, many clients with anxiety issues come to us just wanting the anxiety problems to go away. A better outcome maybe to feel, realaxed, confident, calm, strong, focused, clear and energetic. This many be a different way of thinking for you and having a clear outcome of your future will help us to help you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Tips For Choosing Your Hypnotherapist.</span></strong></h2>\r\n<ul>\r\n 	<li>Check qualifications &amp; training</li>\r\n 	<li>Check insurance</li>\r\n 	<li>Is there a free consultation</li>\r\n 	<li>Check the venue</li>\r\n 	<li>Avoid those working from home</li>\r\n 	<li>Ask about areas of expertise</li>\r\n 	<li>Are you clear on prices?</li>\r\n 	<li>Look for reviews and testimonials</li>\r\n 	<li>Avoid guarantees an one session promises</li>\r\n 	<li>Are they specialists or experienced in your issue?</li>\r\n 	<li>Look for events and workshops</li>\r\n 	<li>Get to know your hypnotherapist</li>\r\n 	<li>Enjoy your hypnotherapy - it is a wonderful experience</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions Clients Ask About Hypnotherapy.</span></strong></h2>\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy similar to sleep?</span></strong></h4>\r\nNo, hypnotherapy is very different to sleep. The word sleep is often used by stage hypnotists and incorrect.\r\nHypnosis is a relaxed but alert state where you are fully awake, fully aware and fully in control.\r\nDuring this hypnotic state we can give your subconcious mind suggestions and commands to resolve the issues you wish to resolve.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy dangerous?</span></strong></h4>\r\nHypnosis is perfectly safe when conducted by a professional trainined in clincal hypnotherapy.\r\nHypnotherapy is regarded as a safe therapy by the NHS and insurance companies.\r\nHypnosis should never be used when operating machinery or driving a vehicle.\r\n<h4><span style=\"color: #008000;\"><strong>How many hypnotherapy sessions will it take to fix my problem?</strong></span></h4>\r\nThis will vary on the issue and will be advised by the hypnotherapist you choose.\r\nAsking for<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong> a free consultation</strong></a> will help you with this question.\r\n<h4><strong><span style=\"color: #008000;\">What is hypnosis?</span></strong></h4>\r\nHypnosis is a natural state that we all experience every day, rather similar to day dreaming.\r\nImagine being totally focused on a tv program, that is a hypnotic state.\r\nA good hypnotherapist will simply guide you into a hypnotic state while using language to change how you think and act.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nHypnosis is usually guided by a hypnotherapist to make the changes you desire.\r\nSelf-hypnosis is guided by you for relaxation or change, rather similar to meditation although faster, deeper and more effective.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Meditation and Hypnosis?</strong></span></h4>\r\nMeditation is usually used to clear the mind while hypnosis is used to change the mind.\r\n<h4><span style=\"color: #008000;\"><strong>How can I find a good hypnotherapist?</strong></span></h4>\r\nLook at the information above about finding a good hypnotherapist for you.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnotherapy a permanent, long lasting solution?</strong></span></h4>\r\nUsually hypnotherapy solutions will be permanent resolution to your problem. If required you can certainly visit your hypnotherapist again to strengthen or modify your improvements.\r\n<h4><strong><span style=\"color: #008000;\">Which health issues can hypnotherapy help with?</span></strong></h4>\r\nMany of our clients find hypnotherapy is very effective with health conditions that involve stress and anxiety. Both of these can make almost any health issue worse and once we remove stress and anxiety, our minds are free to resolve issues better.\r\nStress and anxiety are presently very common health issues and effect a very high number of people.\r\nHypnotherapy can also help with many other health conditions such as IBS, pain management, depression, insomnia, weight loss, stopping smoking, addictions, changing habits, behaviour problems, food allergies, food intolernaces and so much more.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis available on the NHS?</strong></span></h4>\r\nAlthough the NHS state that hypnotherapy is effective with many health issues they do not currently offer hypnosis services.\r\nWe believe that hypnotherapy should be available to everyone on the NHS as it can be most effective and it avoids the side effects of many medications. Hopefully in the future hypnosis will be offered on the NHS.\r\n<h4><span style=\"color: #008000;\"><strong>Can everyone be hypnotised and helped?</strong></span></h4>\r\nPersonally I believe everyone can experience hypnosis and with the right methods everyone can be helped with hypnotherapy. However, this question will draw different answers and arguments from many respected hypnotherapy professionals.\r\nSome people are resitant to hypnosis as they may have a fear of losing control. This is where learning self-hypnosis is very useful, allowing people to help themselves.\r\nA good hypnotherapist will usually be experienced with other modern change techniques that can be just as powerful. The more tools we have in our mental toolbox the better we can help clients with health issues.\r\n<h4><span style=\"color: #008000;\"><strong>Can people be hypnotised </strong>against<strong> thier will?</strong></span></h4>\r\nChange with hypnotherapy can only happen if the client is willing to change. We can help with giving people reasons to change or improve things but ulimatly change has to come from within.\r\nA good therapist would not take on a client unless they are willing to make changes.\r\n<h4><span style=\"color: #008000;\"><strong>Is it true that hypnosis weakens the mind?</strong></span></h4>\r\nNo. Hypnosis and self-hypnosis can help to control menal states such as happiness and self confidence. In effect we do have \"mental muscles\" and the more we practice helpful techniques the easier and stronger they become.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnosis addictive?</span></strong></h4>\r\nI have never heard of anyone becoming addictied to hypnosis. Hypnosis is a wonderful state and a great way to feel relaxed, in control, happy, self-confident, strong, focused etc. Once you learn to enter into self-hypnosis you have a powerful mental technique that allows you to control your emotions, feelings and other mental states.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnotherapy useful for children?</strong></span></h4>\r\nYes, children and adults can enjoy the benefits of hypnotherapy. Children are usually very good hypnotic subjects and naturally enjoy hypnotic states on a daily basis.\r\n<h4><span style=\"color: #008000;\">How can I learn to <strong>hypnotise other</strong> people?</span></h4>\r\nI would strongly suggest finding a self-hypnosis course near to you with a respected hypnotherapy practitioner.\r\nCourses encouraging you to practice on others are very useful and far better than online courses and books.\r\nSelf-hypnosis is perfectly safe and a great first step into the world of hypnotherapy. Always treat yourself as your first client.\r\n\r\nA good instructor will teach you many hypnosis inductions and a little history of hypnotherapy.\r\nRegular practice will see you improve and you will become aware of how people change and improve during hypnosis.\r\n<h4><span style=\"color: #008000;\"><strong>Are there different levels of Hypnosis?</strong></span></h4>\r\nYes. For most hypnotherapy change requirements clients do not need to go too deep to enjoy the many benefits.\r\nJust like meditation, the more someone experiences hypnosis, the more they can enjoy deep hypnosis.\r\nA trained hypnotherapist can guide clients to deeper hypnosis levels when required.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-29 21:52:29','2018-12-29 21:52:29','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2425,1,'2018-12-29 22:08:07','2018-12-29 22:08:07','We are very fortunate to have a selection of excellent hypnotherapists available to us locally and online.\r\nChoosing your hypnotherapist is important to obtain the best reuslts for you. It really is worth taking a little time to choose the right hypnotherapist to suit you.\r\n\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" /><strong>Here are some useful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Mast NLP Practitioner.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Make sure you ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nEveryone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nChoosing a hypnotherapist on a low price is often false economy as paying a realistic will result in less sessions being required.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n<h4><span style=\"color: #008000;\"><strong>11. Be Clear On What You Want To </strong>Achieve</span></h4>\r\nIt will really help your hypnotherapist and you to know exactly what you want to achive with hypnotherapy?\r\nAs an example, many clients with anxiety issues come to us just wanting the anxiety problems to go away. A better outcome maybe to feel, realaxed, confident, calm, strong, focused, clear and energetic. This many be a different way of thinking for you and having a clear outcome of your future will help us to help you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Tips For Choosing Your Hypnotherapist.</span></strong></h2>\r\n<ul>\r\n 	<li>Check qualifications &amp; training</li>\r\n 	<li>Check insurance</li>\r\n 	<li>Is there a free consultation</li>\r\n 	<li>Check the venue</li>\r\n 	<li>Avoid those working from home</li>\r\n 	<li>Ask about areas of expertise</li>\r\n 	<li>Are you clear on prices?</li>\r\n 	<li>Look for reviews and testimonials</li>\r\n 	<li>Avoid guarantees an one session promises</li>\r\n 	<li>Are they specialists or experienced in your issue?</li>\r\n 	<li>Look for events and workshops</li>\r\n 	<li>Get to know your hypnotherapist</li>\r\n 	<li>Enjoy your hypnotherapy - it is a wonderful experience</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions Clients Ask About Hypnotherapy.</span></strong></h2>\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy similar to sleep?</span></strong></h4>\r\nNo, hypnotherapy is very different to sleep. The word sleep is often used by stage hypnotists and incorrect.\r\nHypnosis is a relaxed but alert state where you are fully awake, fully aware and fully in control.\r\nDuring this hypnotic state we can give your subconcious mind suggestions and commands to resolve the issues you wish to resolve.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy dangerous?</span></strong></h4>\r\nHypnosis is perfectly safe when conducted by a professional trainined in clincal hypnotherapy.\r\nHypnotherapy is regarded as a safe therapy by the NHS and insurance companies.\r\nHypnosis should never be used when operating machinery or driving a vehicle.\r\n<h4><span style=\"color: #008000;\"><strong>How many hypnotherapy sessions will it take to fix my problem?</strong></span></h4>\r\nThis will vary on the issue and will be advised by the hypnotherapist you choose.\r\nAsking for<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong> a free consultation</strong></a> will help you with this question.\r\n<h4><strong><span style=\"color: #008000;\">What is hypnosis?</span></strong></h4>\r\nHypnosis is a natural state that we all experience every day, rather similar to day dreaming.\r\nImagine being totally focused on a tv program, that is a hypnotic state.\r\nA good hypnotherapist will simply guide you into a hypnotic state while using language to change how you think and act.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nHypnosis is usually guided by a hypnotherapist to make the changes you desire.\r\nSelf-hypnosis is guided by you for relaxation or change, rather similar to meditation although faster, deeper and more effective.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Meditation and Hypnosis?</strong></span></h4>\r\nMeditation is usually used to clear the mind while hypnosis is used to change the mind.\r\n<h4><span style=\"color: #008000;\"><strong>How can I find a good hypnotherapist?</strong></span></h4>\r\nLook at the information above about finding a good hypnotherapist for you.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnotherapy a permanent, long lasting solution?</strong></span></h4>\r\nUsually hypnotherapy solutions will be permanent resolution to your problem. If required you can certainly visit your hypnotherapist again to strengthen or modify your improvements.\r\n<h4><strong><span style=\"color: #008000;\">Which health issues can hypnotherapy help with?</span></strong></h4>\r\nMany of our clients find hypnotherapy is very effective with health conditions that involve stress and anxiety. Both of these can make almost any health issue worse and once we remove stress and anxiety, our minds are free to resolve issues better.\r\nStress and anxiety are presently very common health issues and effect a very high number of people.\r\nHypnotherapy can also help with many other health conditions such as IBS, pain management, depression, insomnia, weight loss, stopping smoking, addictions, changing habits, behaviour problems, food allergies, food intolernaces and so much more.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis available on the NHS?</strong></span></h4>\r\nAlthough the NHS state that hypnotherapy is effective with many health issues they do not currently offer hypnosis services.\r\nWe believe that hypnotherapy should be available to everyone on the NHS as it can be most effective and it avoids the side effects of many medications. Hopefully in the future hypnosis will be offered on the NHS.\r\n<h4><span style=\"color: #008000;\"><strong>Can everyone be hypnotised and helped?</strong></span></h4>\r\nPersonally I believe everyone can experience hypnosis and with the right methods everyone can be helped with hypnotherapy. However, this question will draw different answers and arguments from many respected hypnotherapy professionals.\r\nSome people are resitant to hypnosis as they may have a fear of losing control. This is where learning self-hypnosis is very useful, allowing people to help themselves.\r\nA good hypnotherapist will usually be experienced with other modern change techniques that can be just as powerful. The more tools we have in our mental toolbox the better we can help clients with health issues.\r\n<h4><span style=\"color: #008000;\"><strong>Can people be hypnotised </strong>against<strong> thier will?</strong></span></h4>\r\nChange with hypnotherapy can only happen if the client is willing to change. We can help with giving people reasons to change or improve things but ulimatly change has to come from within.\r\nA good therapist would not take on a client unless they are willing to make changes.\r\n<h4><span style=\"color: #008000;\"><strong>Is it true that hypnosis weakens the mind?</strong></span></h4>\r\nNo. Hypnosis and self-hypnosis can help to control menal states such as happiness and self confidence. In effect we do have \"mental muscles\" and the more we practice helpful techniques the easier and stronger they become.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnosis addictive?</span></strong></h4>\r\nI have never heard of anyone becoming addictied to hypnosis. Hypnosis is a wonderful state and a great way to feel relaxed, in control, happy, self-confident, strong, focused etc. Once you learn to enter into self-hypnosis you have a powerful mental technique that allows you to control your emotions, feelings and other mental states.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnotherapy useful for children?</strong></span></h4>\r\nYes, children and adults can enjoy the benefits of hypnotherapy. Children are usually very good hypnotic subjects and naturally enjoy hypnotic states on a daily basis.\r\n<h4><span style=\"color: #008000;\">How can I learn to <strong>hypnotise other</strong> people?</span></h4>\r\nI would strongly suggest finding a self-hypnosis course near to you with a respected hypnotherapy practitioner.\r\nCourses encouraging you to practice on others are very useful and far better than online courses and books.\r\nSelf-hypnosis is perfectly safe and a great first step into the world of hypnotherapy. Always treat yourself as your first client.\r\n\r\nA good instructor will teach you many hypnosis inductions and a little history of hypnotherapy.\r\nRegular practice will see you improve and you will become aware of how people change and improve during hypnosis.\r\n<h4><span style=\"color: #008000;\"><strong>Are there different levels of Hypnosis?</strong></span></h4>\r\nYes. For most hypnotherapy change requirements clients do not need to go too deep to enjoy the many benefits.\r\nJust like meditation, the more someone experiences hypnosis, the more they can enjoy deep hypnosis.\r\nA trained hypnotherapist can guide clients to deeper hypnosis levels when required.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-29 22:08:07','2018-12-29 22:08:07','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2426,1,'2018-12-29 22:08:59','2018-12-29 22:08:59','We are very fortunate to have a selection of excellent hypnotherapists available to us locally and online.\r\nChoosing your hypnotherapist is important to obtain the best reuslts for you. It really is worth taking a little time to choose the right hypnotherapist to suit you.\r\n\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" /><strong>Here are some useful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Mast NLP Practitioner.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Make sure you ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nEveryone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nChoosing a hypnotherapist on a low price is false economy as paying a realistic will result in less sessions being required.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n<h4><span style=\"color: #008000;\"><strong>11. Be Clear On What You Want To </strong>Achieve</span></h4>\r\nIt will really help your hypnotherapist and you to know exactly what you want to achive with hypnotherapy?\r\nAs an example, many clients with anxiety issues come to us just wanting the anxiety problems to go away. A better outcome maybe to feel, realaxed, confident, calm, strong, focused, clear and energetic. This many be a different way of thinking for you and having a clear outcome of your future will help us to help you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Tips For Choosing Your Hypnotherapist.</span></strong></h2>\r\n<ul>\r\n 	<li>Check qualifications &amp; training</li>\r\n 	<li>Check insurance</li>\r\n 	<li>Is there a free consultation</li>\r\n 	<li>Check the venue</li>\r\n 	<li>Avoid those working from home</li>\r\n 	<li>Ask about areas of expertise</li>\r\n 	<li>Are you clear on prices?</li>\r\n 	<li>Look for reviews and testimonials</li>\r\n 	<li>Avoid guarantees an one session promises</li>\r\n 	<li>Are they specialists or experienced in your issue?</li>\r\n 	<li>Look for events and workshops</li>\r\n 	<li>Get to know your hypnotherapist</li>\r\n 	<li>Enjoy your hypnotherapy - it is a wonderful experience</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions Clients Ask About Hypnotherapy.</span></strong></h2>\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy similar to sleep?</span></strong></h4>\r\nNo, hypnotherapy is very different to sleep. The word sleep is often used by stage hypnotists and incorrect.\r\nHypnosis is a relaxed but alert state where you are fully awake, fully aware and fully in control.\r\nDuring this hypnotic state we can give your subconcious mind suggestions and commands to resolve the issues you wish to resolve.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy dangerous?</span></strong></h4>\r\nHypnosis is perfectly safe when conducted by a professional trainined in clincal hypnotherapy.\r\nHypnotherapy is regarded as a safe therapy by the NHS and insurance companies.\r\nHypnosis should never be used when operating machinery or driving a vehicle.\r\n<h4><span style=\"color: #008000;\"><strong>How many hypnotherapy sessions will it take to fix my problem?</strong></span></h4>\r\nThis will vary on the issue and will be advised by the hypnotherapist you choose.\r\nAsking for<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong> a free consultation</strong></a> will help you with this question.\r\n<h4><strong><span style=\"color: #008000;\">What is hypnosis?</span></strong></h4>\r\nHypnosis is a natural state that we all experience every day, rather similar to day dreaming.\r\nImagine being totally focused on a tv program, that is a hypnotic state.\r\nA good hypnotherapist will simply guide you into a hypnotic state while using language to change how you think and act.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nHypnosis is usually guided by a hypnotherapist to make the changes you desire.\r\nSelf-hypnosis is guided by you for relaxation or change, rather similar to meditation although faster, deeper and more effective.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Meditation and Hypnosis?</strong></span></h4>\r\nMeditation is usually used to clear the mind while hypnosis is used to change the mind.\r\n<h4><span style=\"color: #008000;\"><strong>How can I find a good hypnotherapist?</strong></span></h4>\r\nLook at the information above about finding a good hypnotherapist for you.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnotherapy a permanent, long lasting solution?</strong></span></h4>\r\nUsually hypnotherapy solutions will be permanent resolution to your problem. If required you can certainly visit your hypnotherapist again to strengthen or modify your improvements.\r\n<h4><strong><span style=\"color: #008000;\">Which health issues can hypnotherapy help with?</span></strong></h4>\r\nMany of our clients find hypnotherapy is very effective with health conditions that involve stress and anxiety. Both of these can make almost any health issue worse and once we remove stress and anxiety, our minds are free to resolve issues better.\r\nStress and anxiety are presently very common health issues and effect a very high number of people.\r\nHypnotherapy can also help with many other health conditions such as IBS, pain management, depression, insomnia, weight loss, stopping smoking, addictions, changing habits, behaviour problems, food allergies, food intolernaces and so much more.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis available on the NHS?</strong></span></h4>\r\nAlthough the NHS state that hypnotherapy is effective with many health issues they do not currently offer hypnosis services.\r\nWe believe that hypnotherapy should be available to everyone on the NHS as it can be most effective and it avoids the side effects of many medications. Hopefully in the future hypnosis will be offered on the NHS.\r\n<h4><span style=\"color: #008000;\"><strong>Can everyone be hypnotised and helped?</strong></span></h4>\r\nPersonally I believe everyone can experience hypnosis and with the right methods everyone can be helped with hypnotherapy. However, this question will draw different answers and arguments from many respected hypnotherapy professionals.\r\nSome people are resitant to hypnosis as they may have a fear of losing control. This is where learning self-hypnosis is very useful, allowing people to help themselves.\r\nA good hypnotherapist will usually be experienced with other modern change techniques that can be just as powerful. The more tools we have in our mental toolbox the better we can help clients with health issues.\r\n<h4><span style=\"color: #008000;\"><strong>Can people be hypnotised </strong>against<strong> thier will?</strong></span></h4>\r\nChange with hypnotherapy can only happen if the client is willing to change. We can help with giving people reasons to change or improve things but ulimatly change has to come from within.\r\nA good therapist would not take on a client unless they are willing to make changes.\r\n<h4><span style=\"color: #008000;\"><strong>Is it true that hypnosis weakens the mind?</strong></span></h4>\r\nNo. Hypnosis and self-hypnosis can help to control menal states such as happiness and self confidence. In effect we do have \"mental muscles\" and the more we practice helpful techniques the easier and stronger they become.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnosis addictive?</span></strong></h4>\r\nI have never heard of anyone becoming addictied to hypnosis. Hypnosis is a wonderful state and a great way to feel relaxed, in control, happy, self-confident, strong, focused etc. Once you learn to enter into self-hypnosis you have a powerful mental technique that allows you to control your emotions, feelings and other mental states.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnotherapy useful for children?</strong></span></h4>\r\nYes, children and adults can enjoy the benefits of hypnotherapy. Children are usually very good hypnotic subjects and naturally enjoy hypnotic states on a daily basis.\r\n<h4><span style=\"color: #008000;\">How can I learn to <strong>hypnotise other</strong> people?</span></h4>\r\nI would strongly suggest finding a self-hypnosis course near to you with a respected hypnotherapy practitioner.\r\nCourses encouraging you to practice on others are very useful and far better than online courses and books.\r\nSelf-hypnosis is perfectly safe and a great first step into the world of hypnotherapy. Always treat yourself as your first client.\r\n\r\nA good instructor will teach you many hypnosis inductions and a little history of hypnotherapy.\r\nRegular practice will see you improve and you will become aware of how people change and improve during hypnosis.\r\n<h4><span style=\"color: #008000;\"><strong>Are there different levels of Hypnosis?</strong></span></h4>\r\nYes. For most hypnotherapy change requirements clients do not need to go too deep to enjoy the many benefits.\r\nJust like meditation, the more someone experiences hypnosis, the more they can enjoy deep hypnosis.\r\nA trained hypnotherapist can guide clients to deeper hypnosis levels when required.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-29 22:08:59','2018-12-29 22:08:59','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2427,1,'2018-12-29 22:18:17','2018-12-29 22:18:17','We are very fortunate to have a selection of excellent hypnotherapists available to us locally and online.\r\nChoosing your hypnotherapist is important to obtain the best results for you. It really is worth taking a little time to choose the right hypnotherapist to suit you.\r\n\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" /><strong>Here are some useful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Mast NLP Practitioner.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Make sure you ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nEveryone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nChoosing a hypnotherapist at a low price is a false economy as paying a realistic will result in fewer sessions being required.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n<h4><span style=\"color: #008000;\"><strong>11. Be Clear On What You Want To </strong>Achieve</span></h4>\r\nIt will really help your hypnotherapist and you to know exactly what you want to achieve with hypnotherapy?\r\nAs an example, many clients with anxiety issues come to us just wanting the anxiety problems to go away. A better outcome may be to feel, relaxed, confident, calm, strong, focused, clear and energetic. This may be a different way of thinking for you and having a clear outcome of your future will help us to help you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Tips For Choosing Your Hypnotherapist.</span></strong></h2>\r\n<ul>\r\n 	<li>Check qualifications &amp; training</li>\r\n 	<li>Check insurance</li>\r\n 	<li>Is there a free consultation</li>\r\n 	<li>Check the venue</li>\r\n 	<li>Avoid those working from home</li>\r\n 	<li>Ask about areas of expertise</li>\r\n 	<li>Are you clear on prices?</li>\r\n 	<li>Look for reviews and testimonials</li>\r\n 	<li>Avoid guarantees or one session promises</li>\r\n 	<li>Are they specialists or experienced in your issue?</li>\r\n 	<li>Look for events and workshops</li>\r\n 	<li>Get to know your hypnotherapist</li>\r\n 	<li>Enjoy your hypnotherapy - it is a wonderful experience</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions Clients Ask About Hypnotherapy.</span></strong></h2>\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy similar to sleep?</span></strong></h4>\r\nNo, hypnotherapy is very different to sleep. The word sleep is often used by stage hypnotists and incorrect.\r\nHypnosis is a relaxed but alert state where you are fully awake, fully aware and fully in control.\r\nDuring this hypnotic state, we can give your subconscious mind suggestions and commands to resolve the issues you wish to resolve.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy dangerous?</span></strong></h4>\r\nHypnosis is perfectly safe when conducted by a professional trained clinical hypnotherapy.\r\nHypnotherapy is regarded as a safe therapy by the NHS and insurance companies.\r\nHypnosis should never be used when operating machinery or driving a vehicle.\r\n<h4><span style=\"color: #008000;\"><strong>How many hypnotherapy sessions will it take to fix my problem?</strong></span></h4>\r\nThis will vary on the issue and will be advised by the hypnotherapist you choose.\r\nAsking for<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong> a free consultation</strong></a> will help you with this question.\r\n<h4><strong><span style=\"color: #008000;\">What is hypnosis?</span></strong></h4>\r\nHypnosis is a natural state that we all experience every day, rather similar to daydreaming.\r\nImagine being totally focused on a tv program, that is a hypnotic state.\r\nA good hypnotherapist will simply guide you into a hypnotic state while using language to change how you think and act.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nHypnosis is usually guided by a hypnotherapist to make the changes you desire.\r\nSelf-hypnosis is guided by you for relaxation or change, rather similar to meditation although faster, deeper and more effective.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Meditation and Hypnosis?</strong></span></h4>\r\nMeditation is usually used to clear the mind while hypnosis is used to change the mind.\r\n<h4><span style=\"color: #008000;\"><strong>How can I find a good hypnotherapist?</strong></span></h4>\r\nLook at the information above about finding a good hypnotherapist for you.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnotherapy a permanent, long lasting solution?</strong></span></h4>\r\nUsually, hypnotherapy solutions will be a permanent resolution to your problem. If required you can certainly visit your hypnotherapist again to strengthen or modify your improvements.\r\n<h4><strong><span style=\"color: #008000;\">Which health issues can hypnotherapy help with?</span></strong></h4>\r\nMany of our clients find hypnotherapy is very effective with health conditions that involve stress and anxiety. Both of these can make almost any health issue worse and once we remove stress and anxiety, our minds are free to resolve issues better.\r\nStress and anxiety are presently very common health issues and effect a very high number of people.\r\nHypnotherapy can also help with many other health conditions such as IBS, pain management, depression, insomnia, weight loss, stopping smoking, addictions, changing habits, behaviour problems, food allergies, food intolerances and so much more.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis available on the NHS?</strong></span></h4>\r\nAlthough the NHS state that hypnotherapy is effective with many health issues they do not currently offer hypnosis services.\r\nWe believe that hypnotherapy should be available to everyone on the NHS as it can be most effective and it avoids the side effects of many medications. Hopefully in the future hypnosis will be offered on the NHS.\r\n<h4><span style=\"color: #008000;\"><strong>Can everyone be hypnotised and helped?</strong></span></h4>\r\nPersonally, I believe everyone can experience hypnosis and with the right methods, everyone can be helped with hypnotherapy. However, this question will draw different answers and arguments from many respected hypnotherapy professionals.\r\nSome people are resistant to hypnosis as they may have a fear of losing control. This is where learning self-hypnosis is very useful, allowing people to help themselves.\r\nA good hypnotherapist will usually be experienced with other modern change techniques that can be just as powerful. The more tools we have in our mental toolbox the better we can help clients with health issues.\r\n<h4><span style=\"color: #008000;\"><strong>Can people be hypnotised </strong>against<strong> their will?</strong></span></h4>\r\nChange with hypnotherapy can only happen if the client is willing to change. We can help with giving people reasons to change or improve things but ultimately change has to come from within.\r\nA good therapist would not take on a client unless they are willing to make changes.\r\n<h4><span style=\"color: #008000;\"><strong>Is it true that hypnosis weakens the mind?</strong></span></h4>\r\nNo. Hypnosis and self-hypnosis can help to control mental states such as happiness and self-confidence. In effect we do have \"mental muscles\" and the more we practice helpful techniques the easier and stronger they become.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnosis addictive?</span></strong></h4>\r\nI have never heard of anyone becoming addicted to hypnosis. Hypnosis is a wonderful state and a great way to feel relaxed, in control, happy, self-confident, strong, focused etc. Once you learn to enter into self-hypnosis you have a powerful mental technique that allows you to control your emotions, feelings and other mental states.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnotherapy useful for children?</strong></span></h4>\r\nYes, children and adults can enjoy the benefits of hypnotherapy. Children are usually very good hypnotic subjects and naturally enjoy hypnotic states on a daily basis.\r\n<h4><span style=\"color: #008000;\">How can I learn to <strong>hypnotise other</strong> people?</span></h4>\r\nI would strongly suggest finding a self-hypnosis course near to you with a respected hypnotherapy practitioner.\r\nCourses encouraging you to practice on others are very useful and far better than online courses and books.\r\nSelf-hypnosis is perfectly safe and a great first step into the world of hypnotherapy. Always treat yourself as your first client.\r\n\r\nA good instructor will teach you many hypnosis inductions and a little history of hypnotherapy.\r\nRegular practice will see you improve and you will become aware of how people change and improve during hypnosis.\r\n<h4><span style=\"color: #008000;\"><strong>Are there different levels of Hypnosis?</strong></span></h4>\r\nYes. For most hypnotherapy change requirements clients do not need to go too deep to enjoy the many benefits.\r\nJust like meditation, the more someone experiences hypnosis, the more they can enjoy deep hypnosis.\r\nA trained hypnotherapist can guide clients to deeper hypnosis levels when and if required.\r\n<h4><span style=\"color: #008000;\">What is a hypnotic induction?</span></h4>\r\nHypnotic inductions are the methods used to guide a person into a hypnotic trance. They include hypnotic phrases, hypnotic scripts, language and need to be used with the correct rhythm, breathing and tonality. Hypnosis training helps you to recognise where the client is in the hypnotic process and how to guide them along until they are ready for hypnotic suggestions and commands.\r\nGood hypnosis training will explain this in more detail.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-29 22:18:17','2018-12-29 22:18:17','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2428,1,'2018-12-29 22:22:07','2018-12-29 22:22:07','We are very fortunate to have a selection of excellent hypnotherapists available to us locally and online.\r\nChoosing your hypnotherapist is important to obtain the best results for you. It really is worth taking a little time to choose the right hypnotherapist to suit you.\r\n\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" /><strong>Here are some useful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Mast NLP Practitioner.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Make sure you ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nEveryone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nChoosing a hypnotherapist at a low price is a false economy as paying a realistic will result in fewer sessions being required.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n<h4><span style=\"color: #008000;\"><strong>11. Be Clear On What You Want To </strong>Achieve</span></h4>\r\nIt will really help your hypnotherapist and you to know exactly what you want to achieve with hypnotherapy?\r\nAs an example, many clients with anxiety issues come to us just wanting the anxiety problems to go away. A better outcome may be to feel, relaxed, confident, calm, strong, focused, clear and energetic. This may be a different way of thinking for you and having a clear outcome of your future will help us to help you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Tips For Choosing Your Hypnotherapist.</span></strong></h2>\r\n<ul>\r\n 	<li>Check qualifications &amp; training</li>\r\n 	<li>Check insurance</li>\r\n 	<li>Is there a free consultation</li>\r\n 	<li>Check the venue</li>\r\n 	<li>Avoid those working from home</li>\r\n 	<li>Ask about areas of expertise</li>\r\n 	<li>Are you clear on prices?</li>\r\n 	<li>Look for reviews and testimonials</li>\r\n 	<li>Avoid guarantees or one session promises</li>\r\n 	<li>Are they specialists or experienced in your issue?</li>\r\n 	<li>Look for events and workshops</li>\r\n 	<li>Get to know your hypnotherapist</li>\r\n 	<li>Enjoy your hypnotherapy - it is a wonderful experience</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions Clients Ask About Hypnotherapy.</span></strong></h2>\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy similar to sleep?</span></strong></h4>\r\nNo, hypnotherapy is very different to sleep. The word sleep is often used by stage hypnotists and incorrect.\r\nHypnosis is a relaxed but alert state where you are fully awake, fully aware and fully in control.\r\nDuring this hypnotic state, we can give your subconscious mind suggestions and commands to resolve the issues you wish to resolve.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy dangerous?</span></strong></h4>\r\nHypnosis is perfectly safe when conducted by a professional trained clinical hypnotherapy.\r\nHypnotherapy is regarded as a safe therapy by the NHS and insurance companies.\r\nHypnosis should never be used when operating machinery or driving a vehicle.\r\n<h4><span style=\"color: #008000;\"><strong>How many hypnotherapy sessions will it take to fix my problem?</strong></span></h4>\r\nThis will vary on the issue and will be advised by the hypnotherapist you choose.\r\nAsking for<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong> a free consultation</strong></a> will help you with this question.\r\n<h4><strong><span style=\"color: #008000;\">What is hypnosis?</span></strong></h4>\r\nHypnosis is a natural state that we all experience every day, rather similar to daydreaming.\r\nImagine being totally focused on a tv program, that is a hypnotic state.\r\nA good hypnotherapist will simply guide you into a hypnotic state while using language to change how you think and act.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nHypnosis is usually guided by a hypnotherapist to make the changes you desire.\r\nSelf-hypnosis is guided by you for relaxation or change, rather similar to meditation although faster, deeper and more effective.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Meditation and Hypnosis?</strong></span></h4>\r\nMeditation is usually used to clear the mind while hypnosis is used to change the mind.\r\n<h4><span style=\"color: #008000;\"><strong>How can I find a good hypnotherapist?</strong></span></h4>\r\nLook at the information above about finding a good hypnotherapist for you.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnotherapy a permanent, long lasting solution?</strong></span></h4>\r\nUsually, hypnotherapy solutions will be a permanent resolution to your problem. If required you can certainly visit your hypnotherapist again to strengthen or modify your improvements.\r\n<h4><strong><span style=\"color: #008000;\">Which health issues can hypnotherapy help with?</span></strong></h4>\r\nMany of our clients find hypnotherapy is very effective with health conditions that involve stress and anxiety. Both of these can make almost any health issue worse and once we remove stress and anxiety, our minds are free to resolve issues better.\r\nStress and anxiety are presently very common health issues and effect a very high number of people.\r\nHypnotherapy can also help with many other health conditions such as IBS, pain management, depression, insomnia, weight loss, stopping smoking, addictions, changing habits, behaviour problems, food allergies, food intolerances and so much more.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis available on the NHS?</strong></span></h4>\r\nAlthough the NHS state that hypnotherapy is effective with many health issues they do not currently offer hypnosis services.\r\nWe believe that hypnotherapy should be available to everyone on the NHS as it can be most effective and it avoids the side effects of many medications. Hopefully in the future hypnosis will be offered on the NHS.\r\n<h4><span style=\"color: #008000;\"><strong>Can everyone be hypnotised and helped?</strong></span></h4>\r\nPersonally, I believe everyone can experience hypnosis and with the right methods, everyone can be helped with hypnotherapy. However, this question will draw different answers and arguments from many respected hypnotherapy professionals.\r\nSome people are resistant to hypnosis as they may have a fear of losing control. This is where learning self-hypnosis is very useful, allowing people to help themselves.\r\nA good hypnotherapist will usually be experienced with other modern change techniques that can be just as powerful. The more tools we have in our mental toolbox the better we can help clients with health issues.\r\n<h4><span style=\"color: #008000;\"><strong>Can people be hypnotised </strong>against<strong> their will?</strong></span></h4>\r\nChange with hypnotherapy can only happen if the client is willing to change. We can help with giving people reasons to change or improve things but ultimately change has to come from within.\r\nA good therapist would not take on a client unless they are willing to make changes.\r\n<h4><span style=\"color: #008000;\"><strong>Is it true that hypnosis weakens the mind?</strong></span></h4>\r\nNo. Hypnosis and self-hypnosis can help to control mental states such as happiness and self-confidence. In effect we do have \"mental muscles\" and the more we practice helpful techniques the easier and stronger they become.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnosis addictive?</span></strong></h4>\r\nI have never heard of anyone becoming addicted to hypnosis. Hypnosis is a wonderful state and a great way to feel relaxed, in control, happy, self-confident, strong, focused etc. Once you learn to enter into self-hypnosis you have a powerful mental technique that allows you to control your emotions, feelings and other mental states.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnotherapy useful for children?</strong></span></h4>\r\nYes, children and adults can enjoy the benefits of hypnotherapy. Children are usually very good hypnotic subjects and naturally enjoy hypnotic states on a daily basis.\r\n<h4><span style=\"color: #008000;\">How can I learn to <strong>hypnotise other</strong> people?</span></h4>\r\nI would strongly suggest finding a self-hypnosis course near to you with a respected hypnotherapy practitioner.\r\nCourses encouraging you to practice on others are very useful and far better than online courses and books.\r\nSelf-hypnosis is perfectly safe and a great first step into the world of hypnotherapy. Always treat yourself as your first client.\r\n\r\nA good instructor will teach you many hypnosis inductions and a little history of hypnotherapy.\r\nRegular practice will see you improve and you will become aware of how people change and improve during hypnosis.\r\n<h4><span style=\"color: #008000;\"><strong>Are there different levels of Hypnosis?</strong></span></h4>\r\nYes. For most hypnotherapy change requirements clients do not need to go too deep to enjoy the many benefits.\r\nJust like meditation, the more someone experiences hypnosis, the more they can enjoy deep hypnosis.\r\nA trained hypnotherapist can guide clients to deeper hypnosis levels when and if required.\r\n<h4><span style=\"color: #008000;\">What is a hypnotic induction?</span></h4>\r\nHypnotic inductions are the methods used to guide a person into a hypnotic trance. They include hypnotic phrases, hypnotic scripts, language and need to be used with the correct rhythm, breathing and tonality. Hypnosis training helps you to recognise where the client is in the hypnotic process and how to guide them along until they are ready for hypnotic suggestions and commands.\r\nGood hypnosis training will explain this in more detail.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nVisit the Newcastle <a href=\"https://www.facebook.com/newcastlehypnosis/\">Hypnotherapy Facebook Page</a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-29 22:22:07','2018-12-29 22:22:07','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2429,1,'2018-12-29 22:24:55','2018-12-29 22:24:55','We are very fortunate to have a selection of excellent hypnotherapists available to us locally and online.\r\nChoosing your hypnotherapist is important to obtain the best results for you. It really is worth taking a little time to choose the right hypnotherapist to suit you.\r\n\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" /><strong>Here are some useful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Master NLP Practitioner.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Make sure you ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nEveryone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nChoosing a hypnotherapist at a low price is a false economy as paying a realistic will result in fewer sessions being required.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n<h4><span style=\"color: #008000;\"><strong>11. Be Clear On What You Want To </strong>Achieve</span></h4>\r\nIt will really help your hypnotherapist and you to know exactly what you want to achieve with hypnotherapy?\r\nAs an example, many clients with anxiety issues come to us just wanting the anxiety problems to go away. A better outcome may be to feel, relaxed, confident, calm, strong, focused, clear and energetic. This may be a different way of thinking for you and having a clear outcome of your future will help us to help you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Tips For Choosing Your Hypnotherapist.</span></strong></h2>\r\n<ul>\r\n 	<li>Check qualifications &amp; training</li>\r\n 	<li>Check insurance</li>\r\n 	<li>Is there a free consultation</li>\r\n 	<li>Check the venue</li>\r\n 	<li>Avoid those working from home</li>\r\n 	<li>Ask about areas of expertise</li>\r\n 	<li>Are you clear on prices?</li>\r\n 	<li>Look for reviews and testimonials</li>\r\n 	<li>Avoid guarantees or one session promises</li>\r\n 	<li>Are they specialists or experienced in your issue?</li>\r\n 	<li>Look for events and workshops</li>\r\n 	<li>Get to know your hypnotherapist</li>\r\n 	<li>Enjoy your hypnotherapy - it is a wonderful experience</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions Clients Ask About Hypnotherapy.</span></strong></h2>\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy similar to sleep?</span></strong></h4>\r\nNo, hypnotherapy is very different to sleep. The word sleep is often used by stage hypnotists and incorrect.\r\nHypnosis is a relaxed but alert state where you are fully awake, fully aware and fully in control.\r\nDuring this hypnotic state, we can give your subconscious mind suggestions and commands to resolve the issues you wish to resolve.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy dangerous?</span></strong></h4>\r\nHypnosis is perfectly safe when conducted by a professional trained clinical hypnotherapy.\r\nHypnotherapy is regarded as a safe therapy by the NHS and insurance companies.\r\nHypnosis should never be used when operating machinery or driving a vehicle.\r\n<h4><span style=\"color: #008000;\"><strong>How many hypnotherapy sessions will it take to fix my problem?</strong></span></h4>\r\nThis will vary on the issue and will be advised by the hypnotherapist you choose.\r\nAsking for<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong> a free consultation</strong></a> will help you with this question.\r\n<h4><strong><span style=\"color: #008000;\">What is hypnosis?</span></strong></h4>\r\nHypnosis is a natural state that we all experience every day, rather similar to daydreaming.\r\nImagine being totally focused on a tv program, that is a hypnotic state.\r\nA good hypnotherapist will simply guide you into a hypnotic state while using language to change how you think and act.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nHypnosis is usually guided by a hypnotherapist to make the changes you desire.\r\nSelf-hypnosis is guided by you for relaxation or change, rather similar to meditation although faster, deeper and more effective.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Meditation and Hypnosis?</strong></span></h4>\r\nMeditation is usually used to clear the mind while hypnosis is used to change the mind.\r\n<h4><span style=\"color: #008000;\"><strong>How can I find a good hypnotherapist?</strong></span></h4>\r\nLook at the information above about finding a good hypnotherapist for you.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnotherapy a permanent, long lasting solution?</strong></span></h4>\r\nUsually, hypnotherapy solutions will be a permanent resolution to your problem. If required you can certainly visit your hypnotherapist again to strengthen or modify your improvements.\r\n<h4><strong><span style=\"color: #008000;\">Which health issues can hypnotherapy help with?</span></strong></h4>\r\nMany of our clients find hypnotherapy is very effective with health conditions that involve stress and anxiety. Both of these can make almost any health issue worse and once we remove stress and anxiety, our minds are free to resolve issues better.\r\nStress and anxiety are presently very common health issues and effect a very high number of people.\r\nHypnotherapy can also help with many other health conditions such as IBS, pain management, depression, insomnia, weight loss, stopping smoking, addictions, changing habits, behaviour problems, food allergies, food intolerances and so much more.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis available on the NHS?</strong></span></h4>\r\nAlthough the NHS state that hypnotherapy is effective with many health issues they do not currently offer hypnosis services.\r\nWe believe that hypnotherapy should be available to everyone on the NHS as it can be most effective and it avoids the side effects of many medications. Hopefully in the future hypnosis will be offered on the NHS.\r\n<h4><span style=\"color: #008000;\"><strong>Can everyone be hypnotised and helped?</strong></span></h4>\r\nPersonally, I believe everyone can experience hypnosis and with the right methods, everyone can be helped with hypnotherapy. However, this question will draw different answers and arguments from many respected hypnotherapy professionals.\r\nSome people are resistant to hypnosis as they may have a fear of losing control. This is where learning self-hypnosis is very useful, allowing people to help themselves.\r\nA good hypnotherapist will usually be experienced with other modern change techniques that can be just as powerful. The more tools we have in our mental toolbox the better we can help clients with health issues.\r\n<h4><span style=\"color: #008000;\"><strong>Can people be hypnotised </strong>against<strong> their will?</strong></span></h4>\r\nChange with hypnotherapy can only happen if the client is willing to change. We can help with giving people reasons to change or improve things but ultimately change has to come from within.\r\nA good therapist would not take on a client unless they are willing to make changes.\r\n<h4><span style=\"color: #008000;\"><strong>Is it true that hypnosis weakens the mind?</strong></span></h4>\r\nNo. Hypnosis and self-hypnosis can help to control mental states such as happiness and self-confidence. In effect we do have \"mental muscles\" and the more we practice helpful techniques the easier and stronger they become.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnosis addictive?</span></strong></h4>\r\nI have never heard of anyone becoming addicted to hypnosis. Hypnosis is a wonderful state and a great way to feel relaxed, in control, happy, self-confident, strong, focused etc. Once you learn to enter into self-hypnosis you have a powerful mental technique that allows you to control your emotions, feelings and other mental states.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnotherapy useful for children?</strong></span></h4>\r\nYes, children and adults can enjoy the benefits of hypnotherapy. Children are usually very good hypnotic subjects and naturally enjoy hypnotic states on a daily basis.\r\n<h4><span style=\"color: #008000;\">How can I learn to <strong>hypnotise other</strong> people?</span></h4>\r\nI would strongly suggest finding a self-hypnosis course near to you with a respected hypnotherapy practitioner.\r\nCourses encouraging you to practice on others are very useful and far better than online courses and books.\r\nSelf-hypnosis is perfectly safe and a great first step into the world of hypnotherapy. Always treat yourself as your first client.\r\n\r\nA good instructor will teach you many hypnosis inductions and a little history of hypnotherapy.\r\nRegular practice will see you improve and you will become aware of how people change and improve during hypnosis.\r\n<h4><span style=\"color: #008000;\"><strong>Are there different levels of Hypnosis?</strong></span></h4>\r\nYes. For most hypnotherapy change requirements clients do not need to go too deep to enjoy the many benefits.\r\nJust like meditation, the more someone experiences hypnosis, the more they can enjoy deep hypnosis.\r\nA trained hypnotherapist can guide clients to deeper hypnosis levels when and if required.\r\n<h4><span style=\"color: #008000;\">What is a hypnotic induction?</span></h4>\r\nHypnotic inductions are the methods used to guide a person into a hypnotic trance. They include hypnotic phrases, hypnotic scripts, language and need to be used with the correct rhythm, breathing and tonality. Hypnosis training helps you to recognise where the client is in the hypnotic process and how to guide them along until they are ready for hypnotic suggestions and commands.\r\nGood hypnosis training will explain this in more detail.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nVisit the Newcastle <a href=\"https://www.facebook.com/newcastlehypnosis/\">Hypnotherapy Facebook Page</a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-29 22:24:55','2018-12-29 22:24:55','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2430,1,'2018-12-30 15:03:43','2018-12-30 15:03:43','One of our new clients explained she found the process of choosing your hypnotherapist, quite a daunting task and I have to agree with her. Thinking back to <img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" />There is such a selection of hypnotherapists to choose from and you need to choose a good one that is right for you. Hopefully this article will help you with your choice.\n\n<strong>When choosing your hypnotherapist, take a little time to decide what you want and what is important to you. Once decided its time do a little research to find the right one for you. Look for qualifications, training, insurance, cutomer reviews, a free initial consultation, a website with good information, is the venue professional and do the fees match your budget? As you choose aim</strong><strong> to find someone that ticks all of your boxes.</strong>\n\nUseful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Master NLP Practitioner.\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\nThey will have completed a recognised qualification under professional supervision and practice.\nMany then continue their professional development after qualification.\n\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Make sure you ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\n\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\nIf you have limited mobility is the venue suitable?\nAre there stairs?\nIs there a suitable car parking space?\nIs it close to public transport links?\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\n\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\nEveryone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\n\nChoosing a hypnotherapist at a low price is a false economy as paying a realistic will result in fewer sessions being required.\n\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\n\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\n\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\n\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\n\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\nThey may also give demonstrations and regular talks at health and wellness events.\nSimply ask about these events or look for information on the hypnotherapists website.\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\nThis may sound silly but you should feel comfortable with your hypnotherapist.\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\n\nDo you feel they understand your issue and give you confidence they can help you with your issue?\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\nAre they happy to give you examples of previous clients results and what you can expect?\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\nHave they answered your questions on how you will move forward?\nIs there plenty of information on their website with reviews and testimonials from other clients?\n<h4><span style=\"color: #008000;\"><strong>11. Be Clear On What You Want To </strong>Achieve</span></h4>\nIt will really help your hypnotherapist and you to know exactly what you want to achieve with hypnotherapy?\nAs an example, many clients with anxiety issues come to us just wanting the anxiety problems to go away. A better outcome may be to feel, relaxed, confident, calm, strong, focused, clear and energetic. This may be a different way of thinking for you and having a clear outcome of your future will help us to help you.\n<h2><strong><span style=\"color: #008000;\">Quick Tips For Choosing Your Hypnotherapist.</span></strong></h2>\n<ul>\n 	<li>Check qualifications &amp; training</li>\n 	<li>Check insurance</li>\n 	<li>Is there a free consultation</li>\n 	<li>Check the venue</li>\n 	<li>Avoid those working from home if you are concerned about safety and security</li>\n 	<li>Ask about areas of expertise</li>\n 	<li>Are you clear on prices?</li>\n 	<li>Look for reviews and testimonials</li>\n 	<li>Avoid guarantees or one session promises</li>\n 	<li>Are they specialists or experienced in your issue?</li>\n 	<li>Look for events and workshops</li>\n 	<li>Get to know your hypnotherapist</li>\n 	<li>Enjoy your hypnotherapy - it is a wonderful experience</li>\n</ul>\n<h2><strong><span style=\"color: #008000;\">Common Questions Clients Ask About Hypnotherapy.</span></strong></h2>\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy similar to sleep?</span></strong></h4>\nNo, hypnotherapy is very different to sleep. The word sleep is often used by stage hypnotists and incorrect.\nHypnosis is a relaxed but alert state where you are fully awake, fully aware and fully in control.\nDuring this hypnotic state, we can give your subconscious mind suggestions and commands to resolve the issues you wish to resolve.\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy dangerous?</span></strong></h4>\nHypnosis is perfectly safe when conducted by a professional trained clinical hypnotherapy.\nHypnotherapy is regarded as a safe therapy by the NHS and insurance companies.\nHypnosis should never be used when operating machinery or driving a vehicle.\n<h4><span style=\"color: #008000;\"><strong>How many hypnotherapy sessions will it take to fix my problem?</strong></span></h4>\nThis will vary on the issue and will be advised by the hypnotherapist you choose.\nAsking for<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong> a free consultation</strong></a> will help you with this question.\n<h4><strong><span style=\"color: #008000;\">What is hypnosis?</span></strong></h4>\nHypnosis is a natural state that we all experience every day, rather similar to daydreaming.\nImagine being totally focused on a tv program, that is a hypnotic state.\nA good hypnotherapist will simply guide you into a hypnotic state while using language to change how you think and act.\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\nHypnosis is usually guided by a hypnotherapist to make the changes you desire.\nSelf-hypnosis is guided by you for relaxation or change, rather similar to meditation although faster, deeper and more effective.\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Meditation and Hypnosis?</strong></span></h4>\nMeditation is usually used to clear the mind while hypnosis is used to change the mind.\n<h4><span style=\"color: #008000;\"><strong>How can I find a good hypnotherapist?</strong></span></h4>\nLook at the information above about finding a good hypnotherapist for you.\n<h4><span style=\"color: #008000;\"><strong>Is Hypnotherapy a permanent, long lasting solution?</strong></span></h4>\nUsually, hypnotherapy solutions will be a permanent resolution to your problem. If required you can certainly visit your hypnotherapist again to strengthen or modify your improvements.\n<h4><strong><span style=\"color: #008000;\">Which health issues can hypnotherapy help with?</span></strong></h4>\nMany of our clients find hypnotherapy is very effective with health conditions that involve stress and anxiety. Both of these can make almost any health issue worse and once we remove stress and anxiety, our minds are free to resolve issues better.\nStress and anxiety are presently very common health issues and effect a very high number of people.\nHypnotherapy can also help with many other health conditions such as IBS, pain management, depression, insomnia, weight loss, stopping smoking, addictions, changing habits, behaviour problems, food allergies, food intolerances and so much more.\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis available on the NHS?</strong></span></h4>\nAlthough the NHS state that hypnotherapy is effective with many health issues they do not currently offer hypnosis services.\nWe believe that hypnotherapy should be available to everyone on the NHS as it can be most effective and it avoids the side effects of many medications. Hopefully in the future hypnosis will be offered on the NHS.\n<h4><span style=\"color: #008000;\"><strong>Can everyone be hypnotised and helped?</strong></span></h4>\nPersonally, I believe everyone can experience hypnosis and with the right methods, everyone can be helped with hypnotherapy. However, this question will draw different answers and arguments from many respected hypnotherapy professionals.\nSome people are resistant to hypnosis as they may have a fear of losing control. This is where learning self-hypnosis is very useful, allowing people to help themselves.\nA good hypnotherapist will usually be experienced with other modern change techniques that can be just as powerful. The more tools we have in our mental toolbox the better we can help clients with health issues.\n<h4><span style=\"color: #008000;\"><strong>Can people be hypnotised </strong>against<strong> their will?</strong></span></h4>\nChange with hypnotherapy can only happen if the client is willing to change. We can help with giving people reasons to change or improve things but ultimately change has to come from within.\nA good therapist would not take on a client unless they are willing to make changes.\n<h4><span style=\"color: #008000;\"><strong>Is it true that hypnosis weakens the mind?</strong></span></h4>\nNo. Hypnosis and self-hypnosis can help to control mental states such as happiness and self-confidence. In effect we do have \"mental muscles\" and the more we practice helpful techniques the easier and stronger they become.\n<h4><strong><span style=\"color: #008000;\">Is hypnosis addictive?</span></strong></h4>\nI have never heard of anyone becoming addicted to hypnosis. Hypnosis is a wonderful state and a great way to feel relaxed, in control, happy, self-confident, strong, focused etc. Once you learn to enter into self-hypnosis you have a powerful mental technique that allows you to control your emotions, feelings and other mental states.\n<h4><span style=\"color: #008000;\"><strong>Is hypnotherapy useful for children?</strong></span></h4>\nYes, children and adults can enjoy the benefits of hypnotherapy. Children are usually very good hypnotic subjects and naturally enjoy hypnotic states on a daily basis.\n<h4><span style=\"color: #008000;\">How can I learn to <strong>hypnotise other</strong> people?</span></h4>\nI would strongly suggest finding a self-hypnosis course near to you with a respected hypnotherapy practitioner.\nCourses encouraging you to practice on others are very useful and far better than online courses and books.\nSelf-hypnosis is perfectly safe and a great first step into the world of hypnotherapy. Always treat yourself as your first client.\n\nA good instructor will teach you many hypnosis inductions and a little history of hypnotherapy.\nRegular practice will see you improve and you will become aware of how people change and improve during hypnosis.\n<h4><span style=\"color: #008000;\"><strong>Are there different levels of Hypnosis?</strong></span></h4>\nYes. For most hypnotherapy change requirements clients do not need to go too deep to enjoy the many benefits.\nJust like meditation, the more someone experiences hypnosis, the more they can enjoy deep hypnosis.\nA trained hypnotherapist can guide clients to deeper hypnosis levels when and if required.\n<h4><span style=\"color: #008000;\">What is a hypnotic induction?</span></h4>\nHypnotic inductions are the methods used to guide a person into a hypnotic trance. They include hypnotic phrases, hypnotic scripts, language and need to be used with the correct rhythm, breathing and tonality. Hypnosis training helps you to recognise where the client is in the hypnotic process and how to guide them along until they are ready for hypnotic suggestions and commands.\nGood hypnosis training will explain this in more detail.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\nVisit the Newcastle <a href=\"https://www.facebook.com/newcastlehypnosis/\">Hypnotherapy Facebook Page</a>.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-autosave-v1','','','2018-12-30 15:03:43','2018-12-30 15:03:43','',2408,'https://www.newcastle-hypnotherapy.com/2408-autosave-v1/',0,'revision','',0),(2431,1,'2018-12-29 22:32:25','2018-12-29 22:32:25','We are very fortunate to have a selection of excellent hypnotherapists available to us locally and online.\r\nChoosing your hypnotherapist is important to obtain the best results for you. It really is worth taking a little time to choose the right hypnotherapist to suit you.\r\n\r\n<img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Choosing Your Hypnotherapist\" width=\"300\" height=\"198\" /><strong>Here are some useful tips to help you when choosing your hypnotherapist by <a href=\"https://www.newcastle-hypnotherapy.com/about-us/\">Mark Morley</a>, Clinical Hypnotherapist &amp; Master NLP Practitioner.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>1. Hypnotherapy Qualifications And Training.</strong></span></h4>\r\nLearning the ability to hypnotise people is not difficult and this will not make someone a hypnotherapist.\r\nA good hypnotherapist is someone who has taken the time for essential training with a recognised organisation.\r\nThey will have completed a recognised qualification under professional supervision and practice.\r\nMany then continue their professional development after qualification.\r\n\r\nWhen choosing your hypnotherapist do ask about qualifications, training, previous background information and other areas they may work in. Make sure you ask if the qualification was achieved through hypnosis practice hours with a qualified hypnotherapy instructor and included practice on people, face to face. Do check their hypnosis qualifications were not obtained by simply taking an online hypnosis course.\r\n\r\nOnline courses are becoming popular and rarely give the therapist the experience and practice needed.\r\nMany insurance companies will not provide insurance coverage for online qualifications as they do not give the needed experience.\r\n<h4><strong><span style=\"color: #008000;\">2. Hypnotherapy Insurance Requirements.</span></strong></h4>\r\nAlthough hypnotherapy is recognised as a safe therapy, every professional should be adequately covered for public liability insurance and professional indemnity insurance. You can ask your hypnotherapist if they are insured as a professional therapist.\r\n<h4><span style=\"color: #008000;\"><strong>3. A Free Initial Consultation?</strong></span></h4>\r\nAs a new hypnosis client, I am sure you have many questions and possibly some concerns.\r\nMost of our clients love the initial free consultation as this allows you to ask your questions, explain your issue while getting to know your hypnotherapist better.\r\nYour free consultation is a great way to have all of your questions answered and to learn how the process works.\r\nGood hypnotherapists usually offer a free consultation by phone or video call to discuss your challenges, answer your questions and to give an idea of the outcome you can expect.\r\n<h4><span style=\"color: #008000;\"><strong>4. Ask About The Venue Your Hypnotherapist Works From.</strong></span></h4>\r\nThis is a very important part of your research questions and usually overlooked by many new hypnotherapy clients.\r\nIf you have limited mobility is the venue suitable?\r\nAre there stairs?\r\nIs there a suitable car parking space?\r\nIs it close to public transport links?\r\nSome hypnotherapists work from home. Are you comfortable with this or do you prefer to use a practitioner that works from a wellbeing centre, health centre or professional premises?\r\n\r\nMany of our clients state they prefer to visit us at the various wellbeing centres we use.\r\nThis gives them a sense of security as they know other therapists use these centres and there are other members of staff around.\r\nWellbeing and health centres are usually exactly just for this purpose, offering rooms ideal for hypnotherapy.\r\nThey also offer a friendly warm atmosphere, perfect for both the hypnotherapy client and the hypnotherapist.\r\n<h4><strong><span style=\"color: #008000;\">4. Other Areas Of Expertise.</span></strong></h4>\r\nMany hypnotherapists may be experienced practitioners in other health areas such as Neuro-Linguistic Programming - NLP, Emotional Freedom Technique - EFT, Nutrition, Diet, Mindfulness &amp; Meditation.\r\nMany other fields such as NLP can really compliment hypnotherapy and boost your results. Remember to ask when you contact them.\r\n<h4><span style=\"color: #008000;\"><strong>5. Hypnotherapy Prices &amp; Fees.</strong></span></h4>\r\nEveryone has different ideas of the fees charged for hypnotherapy. Around us we see prices seem to vary from a low £60 per session for newly qualified or training hypnotherapists to £250 per session. It is important to choose a hypnotherapist that suits your budget while also ensuring you are getting value for your money.\r\n\r\nChoosing a hypnotherapist at a low price is a false economy as paying a realistic will result in fewer sessions being required.\r\n\r\nIt\'s important to understand that some hypnotherapists are charging low fees for a reason and long-term this can be more expensive for you. Hypnotherapists charging higher prices usually do so as their diary is busy and they get results for clients in a shorter period of time.\r\n\r\nSome hypnotherapists will also charge for a program of sessions to resolve your issue. This usually does not state a number of sessions but they work to resolve your issue.\r\n\r\nDo ensure your hypnotherapist clearly states the cost per session or for the program in advance and of any extras that may be required, such as supplements or additional health tests.\r\n<h4><span style=\"color: #008000;\"><strong>6. Client Reviews &amp; Testimonials.</strong></span></h4>\r\nA good hypnotherapist should have a website they can direct you to for further information. This will usually include information on the hypnotherapy services they provide and include client reviews and testimonials.\r\nYou can also search online for Google reviews along with other information about the hypnotherapist or hypnotherapy practice.\r\n<h4><span style=\"color: #008000;\"><strong>7. Avoid Guarantees and One Session Promises.</strong></span></h4>\r\nAlthough a good hypnotherapist will ask for lots of information during your free consultation and on the new client form, they will explore your issue in detail during your first session.\r\n\r\nAs you will understand, it is very difficult for a hypnotherapist to promise they can resolve your issue in just one session, until they know exactly what they are dealing with. Usually, your hypnotherapist will need to measure your improvements a little time after your first session and will then work with you, to strengthen your benefits and work on any other issues present.\r\n\r\nIf you have been suffering from an issue for a number of years, it is unrealistic to expect one hypnosis session to fix your problems overnight.\r\nYour Doctor and other medical professionals will never give you a guarantee in fixing your health problems and professional therapists are exactly the same.\r\n<h4><span style=\"color: #008000;\"><strong>8. Hypnotherapy Specialists</strong></span></h4>\r\nIt may be worth finding a hypnotherapist that specialises with the issue you are looking to resolve.\r\nSome hypnotherapists will take on every issue where others stick to certain specialities and often obtain better results in shorter periods of time. The hypnotherapists website should list the areas they specialise in to help you.\r\n<h4><span style=\"color: #008000;\"><strong>9. Events &amp; Workshops?</strong></span></h4>\r\nMany hypnotherapists run self-hypnosis groups, training and workshop events.\r\nThey may also give demonstrations and regular talks at health and wellness events.\r\nSimply ask about these events or look for information on the hypnotherapists website.\r\nThese events are a great way to meet your hypnotherapist, ask questions and experience their work in advance.\r\n<h4><strong><span style=\"color: #008000;\">10. Get To Know Your Hypnotherapist.</span></strong></h4>\r\nThis may sound silly but you should feel comfortable with your hypnotherapist.\r\nThe free consultation should give you a good indication of how you feel about a possible hypnotherapist.\r\n\r\nDo you feel they understand your issue and give you confidence they can help you with your issue?\r\nIs your Hypnotherapist happy to give you details of insurance and qualifications?\r\nAre they happy to give you examples of previous clients results and what you can expect?\r\nHave they given you information about the centre they work from and how suitable it is for hypnotherapy sessions?\r\nHave they answered your questions on how you will move forward?\r\nIs there plenty of information on their website with reviews and testimonials from other clients?\r\n<h4><span style=\"color: #008000;\"><strong>11. Be Clear On What You Want To </strong>Achieve</span></h4>\r\nIt will really help your hypnotherapist and you to know exactly what you want to achieve with hypnotherapy?\r\nAs an example, many clients with anxiety issues come to us just wanting the anxiety problems to go away. A better outcome may be to feel, relaxed, confident, calm, strong, focused, clear and energetic. This may be a different way of thinking for you and having a clear outcome of your future will help us to help you.\r\n<h2><strong><span style=\"color: #008000;\">Quick Tips For Choosing Your Hypnotherapist.</span></strong></h2>\r\n<ul>\r\n 	<li>Check qualifications &amp; training</li>\r\n 	<li>Check insurance</li>\r\n 	<li>Is there a free consultation</li>\r\n 	<li>Check the venue</li>\r\n 	<li>Avoid those working from home if you are concerned about safety and security</li>\r\n 	<li>Ask about areas of expertise</li>\r\n 	<li>Are you clear on prices?</li>\r\n 	<li>Look for reviews and testimonials</li>\r\n 	<li>Avoid guarantees or one session promises</li>\r\n 	<li>Are they specialists or experienced in your issue?</li>\r\n 	<li>Look for events and workshops</li>\r\n 	<li>Get to know your hypnotherapist</li>\r\n 	<li>Enjoy your hypnotherapy - it is a wonderful experience</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions Clients Ask About Hypnotherapy.</span></strong></h2>\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy similar to sleep?</span></strong></h4>\r\nNo, hypnotherapy is very different to sleep. The word sleep is often used by stage hypnotists and incorrect.\r\nHypnosis is a relaxed but alert state where you are fully awake, fully aware and fully in control.\r\nDuring this hypnotic state, we can give your subconscious mind suggestions and commands to resolve the issues you wish to resolve.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnotherapy dangerous?</span></strong></h4>\r\nHypnosis is perfectly safe when conducted by a professional trained clinical hypnotherapy.\r\nHypnotherapy is regarded as a safe therapy by the NHS and insurance companies.\r\nHypnosis should never be used when operating machinery or driving a vehicle.\r\n<h4><span style=\"color: #008000;\"><strong>How many hypnotherapy sessions will it take to fix my problem?</strong></span></h4>\r\nThis will vary on the issue and will be advised by the hypnotherapist you choose.\r\nAsking for<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong> a free consultation</strong></a> will help you with this question.\r\n<h4><strong><span style=\"color: #008000;\">What is hypnosis?</span></strong></h4>\r\nHypnosis is a natural state that we all experience every day, rather similar to daydreaming.\r\nImagine being totally focused on a tv program, that is a hypnotic state.\r\nA good hypnotherapist will simply guide you into a hypnotic state while using language to change how you think and act.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nHypnosis is usually guided by a hypnotherapist to make the changes you desire.\r\nSelf-hypnosis is guided by you for relaxation or change, rather similar to meditation although faster, deeper and more effective.\r\n<h4><span style=\"color: #008000;\"><strong>What is the difference between Meditation and Hypnosis?</strong></span></h4>\r\nMeditation is usually used to clear the mind while hypnosis is used to change the mind.\r\n<h4><span style=\"color: #008000;\"><strong>How can I find a good hypnotherapist?</strong></span></h4>\r\nLook at the information above about finding a good hypnotherapist for you.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnotherapy a permanent, long lasting solution?</strong></span></h4>\r\nUsually, hypnotherapy solutions will be a permanent resolution to your problem. If required you can certainly visit your hypnotherapist again to strengthen or modify your improvements.\r\n<h4><strong><span style=\"color: #008000;\">Which health issues can hypnotherapy help with?</span></strong></h4>\r\nMany of our clients find hypnotherapy is very effective with health conditions that involve stress and anxiety. Both of these can make almost any health issue worse and once we remove stress and anxiety, our minds are free to resolve issues better.\r\nStress and anxiety are presently very common health issues and effect a very high number of people.\r\nHypnotherapy can also help with many other health conditions such as IBS, pain management, depression, insomnia, weight loss, stopping smoking, addictions, changing habits, behaviour problems, food allergies, food intolerances and so much more.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis available on the NHS?</strong></span></h4>\r\nAlthough the NHS state that hypnotherapy is effective with many health issues they do not currently offer hypnosis services.\r\nWe believe that hypnotherapy should be available to everyone on the NHS as it can be most effective and it avoids the side effects of many medications. Hopefully in the future hypnosis will be offered on the NHS.\r\n<h4><span style=\"color: #008000;\"><strong>Can everyone be hypnotised and helped?</strong></span></h4>\r\nPersonally, I believe everyone can experience hypnosis and with the right methods, everyone can be helped with hypnotherapy. However, this question will draw different answers and arguments from many respected hypnotherapy professionals.\r\nSome people are resistant to hypnosis as they may have a fear of losing control. This is where learning self-hypnosis is very useful, allowing people to help themselves.\r\nA good hypnotherapist will usually be experienced with other modern change techniques that can be just as powerful. The more tools we have in our mental toolbox the better we can help clients with health issues.\r\n<h4><span style=\"color: #008000;\"><strong>Can people be hypnotised </strong>against<strong> their will?</strong></span></h4>\r\nChange with hypnotherapy can only happen if the client is willing to change. We can help with giving people reasons to change or improve things but ultimately change has to come from within.\r\nA good therapist would not take on a client unless they are willing to make changes.\r\n<h4><span style=\"color: #008000;\"><strong>Is it true that hypnosis weakens the mind?</strong></span></h4>\r\nNo. Hypnosis and self-hypnosis can help to control mental states such as happiness and self-confidence. In effect we do have \"mental muscles\" and the more we practice helpful techniques the easier and stronger they become.\r\n<h4><strong><span style=\"color: #008000;\">Is hypnosis addictive?</span></strong></h4>\r\nI have never heard of anyone becoming addicted to hypnosis. Hypnosis is a wonderful state and a great way to feel relaxed, in control, happy, self-confident, strong, focused etc. Once you learn to enter into self-hypnosis you have a powerful mental technique that allows you to control your emotions, feelings and other mental states.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnotherapy useful for children?</strong></span></h4>\r\nYes, children and adults can enjoy the benefits of hypnotherapy. Children are usually very good hypnotic subjects and naturally enjoy hypnotic states on a daily basis.\r\n<h4><span style=\"color: #008000;\">How can I learn to <strong>hypnotise other</strong> people?</span></h4>\r\nI would strongly suggest finding a self-hypnosis course near to you with a respected hypnotherapy practitioner.\r\nCourses encouraging you to practice on others are very useful and far better than online courses and books.\r\nSelf-hypnosis is perfectly safe and a great first step into the world of hypnotherapy. Always treat yourself as your first client.\r\n\r\nA good instructor will teach you many hypnosis inductions and a little history of hypnotherapy.\r\nRegular practice will see you improve and you will become aware of how people change and improve during hypnosis.\r\n<h4><span style=\"color: #008000;\"><strong>Are there different levels of Hypnosis?</strong></span></h4>\r\nYes. For most hypnotherapy change requirements clients do not need to go too deep to enjoy the many benefits.\r\nJust like meditation, the more someone experiences hypnosis, the more they can enjoy deep hypnosis.\r\nA trained hypnotherapist can guide clients to deeper hypnosis levels when and if required.\r\n<h4><span style=\"color: #008000;\">What is a hypnotic induction?</span></h4>\r\nHypnotic inductions are the methods used to guide a person into a hypnotic trance. They include hypnotic phrases, hypnotic scripts, language and need to be used with the correct rhythm, breathing and tonality. Hypnosis training helps you to recognise where the client is in the hypnotic process and how to guide them along until they are ready for hypnotic suggestions and commands.\r\nGood hypnosis training will explain this in more detail.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nVisit the Newcastle <a href=\"https://www.facebook.com/newcastlehypnosis/\">Hypnotherapy Facebook Page</a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Choosing Your Hypnotherapist','','inherit','closed','closed','','2408-revision-v1','','','2018-12-29 22:32:25','2018-12-29 22:32:25','',2408,'https://www.newcastle-hypnotherapy.com/2408-revision-v1/',0,'revision','',0),(2432,1,'2018-12-30 11:51:30','2018-12-30 11:51:30','','CHOOSING YOUR HYPNOTHERAPIST','','publish','closed','closed','','choosing-your-hypnotherapist','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=2432',46,'nav_menu_item','',0),(2433,1,'2018-12-30 11:53:29','2018-12-30 11:53:29',' ','','','publish','closed','closed','','2433','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=2433',13,'nav_menu_item','',0),(2441,1,'2019-01-02 13:48:39','2019-01-02 13:48:39','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong>Join us for another enjoyable evening of Past Life <span style=\"color: #000000;\">Regression.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\n\r\n<strong>White Feather House, South Shields.\r\nWednesday 23rd January December, 7 pm to 9.30 pm.</strong>\r\n£10 per person. <strong>Booking required. Limited Spaces</strong>.\r\nIncludes tea, coffee &amp; snacks.\r\n\r\n<strong>We do expect this to sell out again so please book early to avoid disappointment.</strong>\r\nWe will record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nThe Wednesday Workshop is held on the first and third Wednesday of each month as a nonprofit group. Each evening we explore a new subject of discovery.\r\nFeel free to suggest a topic or skill you would like to learn. If you could take part in a workshop to share or teach a skill please let us know via the <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us Form.</strong></a>\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out before the workshop.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>&nbsp;\r\n\r\n&nbsp;\r\n\r\nTo learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop - 23rd Jan','','inherit','closed','closed','','1185-revision-v1','','','2019-01-02 13:48:39','2019-01-02 13:48:39','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(2442,1,'2019-01-02 13:49:27','2019-01-02 13:49:27','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong>Join us for another enjoyable evening of Past Life <span style=\"color: #000000;\">Regression.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\n\r\n<strong>White Feather House, South Shields.\r\nWednesday 23rd January, 7 pm to 9.30 pm.</strong>\r\n£10 per person. <strong>Booking required. Limited Spaces</strong>.\r\nIncludes tea, coffee &amp; snacks.\r\n\r\n<strong>We do expect this to sell out again so please book early to avoid disappointment.</strong>\r\nWe will record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nThe Wednesday Workshop is held on the first and third Wednesday of each month as a nonprofit group. Each evening we explore a new subject of discovery.\r\nFeel free to suggest a topic or skill you would like to learn. If you could take part in a workshop to share or teach a skill please let us know via the <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us Form.</strong></a>\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out before the workshop.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>&nbsp;\r\n\r\n&nbsp;\r\n\r\nTo learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop - 23rd Jan','','inherit','closed','closed','','1185-revision-v1','','','2019-01-02 13:49:27','2019-01-02 13:49:27','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(2443,1,'2019-01-02 13:49:57','2019-01-02 13:49:57','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong>Join us for another enjoyable evening of Past Life <span style=\"color: #000000;\">Regression.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\n\r\n&nbsp;\r\n\r\n<strong>White Feather House, South Shields.\r\nWednesday 23rd January, 7 pm to 9.30 pm.</strong>\r\n£10 per person. <strong>Booking required. Limited Spaces</strong>.\r\nIncludes tea, coffee &amp; snacks.\r\n\r\n<strong>We do expect this to sell out again so please book early to avoid disappointment.</strong>\r\nWe will record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nThe Wednesday Workshop is held on the first and third Wednesday of each month as a nonprofit group. Each evening we explore a new subject of discovery.\r\nFeel free to suggest a topic or skill you would like to learn. If you could take part in a workshop to share or teach a skill please let us know via the <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us Form.</strong></a>\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out before the workshop.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>&nbsp;\r\n\r\n&nbsp;\r\n\r\nTo learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop - 23rd Jan','','inherit','closed','closed','','1185-revision-v1','','','2019-01-02 13:49:57','2019-01-02 13:49:57','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(2445,1,'2019-01-02 13:54:55','2019-01-02 13:54:55','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong>Join us for another enjoyable evening of Past Life <span style=\"color: #000000;\">Regression.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\n\r\n&nbsp;\r\n\r\n<strong>White Feather House, South Shields.\r\nWednesday 23rd January, from 7 pm to 9.30 pm.</strong>\r\n£10 per person. <strong>Booking required. Limited Spaces</strong>.\r\nIncludes tea, coffee &amp; snacks.\r\n\r\n<span style=\"color: #ff6600;\"><strong>We do expect this to sell out fast so please book early to avoid disappointment.</strong></span>\r\nWe will record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\nWho were your family?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nYou can come along and just watch others being regressed or if you would like to be regressed yourself, simply let us know when making your booking. We will work through as many people as we can and can\'t promise to fit everyone in.\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out to you before the workshop.\r\nYou will need to book your place in advance by clicking the button below.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>&nbsp;\r\n\r\n&nbsp;\r\n\r\nTo learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop - 23rd Jan','','inherit','closed','closed','','1185-revision-v1','','','2019-01-02 13:54:55','2019-01-02 13:54:55','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(2444,1,'2019-01-02 13:50:29','2019-01-02 13:50:29','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong>Join us for another enjoyable evening of Past Life <span style=\"color: #000000;\">Regression.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\n\r\n&nbsp;\r\n\r\n<strong>White Feather House, South Shields.\r\nWednesday 23rd January, 7 pm to 9.30 pm.</strong>\r\n£10 per person. <strong>Booking required. Limited Spaces</strong>.\r\nIncludes tea, coffee &amp; snacks.\r\n\r\n<span style=\"color: #ff6600;\"><strong>We do expect this to sell out fast so please book early to avoid disappointment.</strong></span>\r\nWe will record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nThe Wednesday Workshop is held on the first and third Wednesday of each month as a nonprofit group. Each evening we explore a new subject of discovery.\r\nFeel free to suggest a topic or skill you would like to learn. If you could take part in a workshop to share or teach a skill please let us know via the <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><strong>Contact Us Form.</strong></a>\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out before the workshop.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>&nbsp;\r\n\r\n&nbsp;\r\n\r\nTo learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop - 23rd Jan','','inherit','closed','closed','','1185-revision-v1','','','2019-01-02 13:50:29','2019-01-02 13:50:29','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(2446,1,'2019-01-02 15:56:10','2019-01-02 15:56:10','<img class=\"alignleft wp-image-326 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n<h4><strong><span style=\"color: #008000;\">Self Hypnosis Introduction Workshop</span>\r\n</strong></h4>\r\nWednesday 6th Feb 2019,\r\n7.30 to 9.30 pm,\r\nNewcastle Hypnotherapy - The Vault.\r\nAdvance booking required.\r\n\r\n&nbsp;\r\n\r\n<strong>\r\n</strong>\r\n\r\nJoin us for another enjoyable workshop where you\'ll learn a uniquely desirable set of skills in a friendly group environment.\r\nThis is a practical workshop where you will learn and practice real self-hypnosis skills.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self-Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2019-01-02 15:56:10','2019-01-02 15:56:10','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(2447,1,'2019-01-02 16:16:05','2019-01-02 16:16:05','<img class=\"alignleft wp-image-326 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n<h4><strong><span style=\"color: #008000;\">Self Hypnosis Introduction Workshop</span>\r\n</strong></h4>\r\n<strong>Wednesday 6th Feb 2019,</strong>\r\n<strong>7.30 to 9.30 pm,</strong>\r\n<strong>Newcastle Hypnotherapy - The Vault.</strong>\r\n<strong>Advance booking required.</strong>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">The Secrets Of Self-Hypnosis Workshop</span>\r\n</strong></h2>\r\nBack by popular request, the introduction to self-hypnosis evening.\r\nIn this practical, fun workshop you will learn a new set of skills around self-hypnosis.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\nPlaces are just £10 each and limited to just 12 participants. Handouts, tea, coffee and snacks are included.\r\nOnce you have booked your place, helpful info will be sent out just before the event.\r\nBooking is strictly by advance booking only and on a first come, first served basis.\r\n\r\n\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self-Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2019-01-02 16:16:05','2019-01-02 16:16:05','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(2448,1,'2019-01-02 16:17:10','2019-01-02 16:17:10','<img class=\"alignleft wp-image-326 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n<h4><strong><span style=\"color: #008000;\">Self Hypnosis Introduction Workshop</span>\r\n</strong></h4>\r\n<strong>Wednesday 6th Feb 2019,</strong>\r\n<strong>7.30 to 9.30 pm,</strong>\r\n<strong>Newcastle Hypnotherapy - The Vault.</strong>\r\n<strong>Advance booking required.</strong>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">The Secrets Of Self-Hypnosis Workshop</span>\r\n</strong></h2>\r\nBack by popular request, the introduction to self-hypnosis evening.\r\nIn this practical, fun workshop you will learn a new set of skills around self-hypnosis.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\nPlaces are just £10 each and limited to just 12 participants. Handouts, tea, coffee and snacks are included.\r\nOnce you have booked your place, helpful info will be sent out just before the event.\r\nBooking is strictly by advance booking only and on a first come, first served basis.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self-Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2019-01-02 16:17:10','2019-01-02 16:17:10','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(2449,1,'2019-01-02 16:17:30','2019-01-02 16:17:30','<img class=\"alignleft wp-image-326 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n<h4><strong><span style=\"color: #008000;\">Self Hypnosis Introduction Workshop</span>\r\n</strong></h4>\r\n<strong>Wednesday 6th Feb 2019,</strong>\r\n<strong>7.30 to 9.30 pm,</strong>\r\n<strong>Newcastle Hypnotherapy - The Vault.</strong>\r\n<strong>Advance booking required.</strong>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">The Secrets Of Self-Hypnosis Workshop</span>\r\n</strong></h2>\r\nBack by popular request, the introduction to self-hypnosis evening.\r\nIn this practical, fun workshop you will learn a new set of skills around self-hypnosis.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\nPlaces are just £10 each and limited to just 12 participants. Handouts, tea, coffee and snacks are included.\r\nOnce you have booked your place, helpful info will be sent out just before the event.\r\nBooking is strictly by advance booking only and on a first come, first served basis.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self-Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2019-01-02 16:17:30','2019-01-02 16:17:30','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(2450,1,'2019-01-02 16:18:25','2019-01-02 16:18:25','<img class=\"alignleft wp-image-326 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n<h4><strong><span style=\"color: #008000;\">Self Hypnosis Introduction Workshop</span>\r\n</strong></h4>\r\n<strong>Wednesday 6th Feb 2019,</strong>\r\n<strong>7.30 to 9.30 pm,</strong>\r\n<strong>Newcastle Hypnotherapy - The Vault.</strong>\r\n<strong>Advance booking required.</strong>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Secrets Of Self-Hypnosis Workshop</span>\r\n</strong></h2>\r\nBack by popular request, the introduction to self-hypnosis evening.\r\nIn this practical, fun workshop you will learn a new set of skills around self-hypnosis.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\nPlaces are just £10 each and limited to just 12 participants. Handouts, tea, coffee and snacks are included.\r\nOnce you have booked your place, helpful info will be sent out just before the event.\r\nBooking is strictly by advance booking only and on a first come, first served basis.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self-Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2019-01-02 16:18:25','2019-01-02 16:18:25','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(2451,1,'2019-01-02 16:19:36','2019-01-02 16:19:36','<img class=\"alignleft size-medium wp-image-1088\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/IMG_20180519_154207-300x225.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"225\" />\r\n<h4><strong><span style=\"color: #008000;\">Self Hypnosis Introduction Workshop</span>\r\n</strong></h4>\r\n<strong>Wednesday 6th Feb 2019,</strong>\r\n<strong>7.30 to 9.30 pm,</strong>\r\n<strong>Newcastle Hypnotherapy - The Vault.</strong>\r\n<strong>Advance booking required.</strong>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Secrets Of Self-Hypnosis Workshop</span>\r\n</strong></h2>\r\nBack by popular request, the introduction to self-hypnosis evening.\r\nIn this practical, fun workshop you will learn a new set of skills around self-hypnosis.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\nPlaces are just £10 each and limited to just 12 participants. Handouts, tea, coffee and snacks are included.\r\nOnce you have booked your place, helpful info will be sent out just before the event.\r\nBooking is strictly by advance booking only and on a first come, first served basis.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self-Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2019-01-02 16:19:36','2019-01-02 16:19:36','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(2453,1,'2019-01-02 16:21:30','2019-01-02 16:21:30','<img class=\"alignleft size-medium wp-image-326\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n<h4><strong><span style=\"color: #008000;\">Self Hypnosis Introduction Workshop</span>\r\n</strong></h4>\r\n<strong>Wednesday 6th Feb 2019,</strong>\r\n<strong>7.30 to 9.30 pm,</strong>\r\n<strong>Newcastle Hypnotherapy - The Vault.</strong>\r\n<strong>Advance booking required.</strong>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Secrets Of Self-Hypnosis Workshop</span>\r\n</strong></h2>\r\nBack by popular request, the introduction to self-hypnosis evening.\r\nIn this practical, fun workshop you will learn a new set of skills around self-hypnosis.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\nPlaces are just £10 each and limited to just 12 participants. Handouts, tea, coffee and snacks are included.\r\nOnce you have booked your place, helpful info will be sent out just before the event.\r\nBooking is strictly by advance booking only and on a first come, first served basis.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self-Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2019-01-02 16:21:30','2019-01-02 16:21:30','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(2452,1,'2019-01-02 16:20:13','2019-01-02 16:20:13','<img class=\"alignleft size-medium wp-image-1088\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/07/IMG_20180519_154207-300x225.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"225\" />\r\n<h4><strong><span style=\"color: #008000;\">Self Hypnosis Introduction Workshop</span>\r\n</strong></h4>\r\n<strong>Wednesday 6th Feb 2019,</strong>\r\n<strong>7.30 to 9.30 pm,</strong>\r\n<strong>Newcastle Hypnotherapy - The Vault.</strong>\r\n<strong>Advance booking required.</strong>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Secrets Of Self-Hypnosis Workshop</span>\r\n</strong></h2>\r\nBack by popular request, the introduction to self-hypnosis evening.\r\nIn this practical, fun workshop you will learn a new set of skills around self-hypnosis.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\nPlaces are just £10 each and limited to just 12 participants. Handouts, tea, coffee and snacks are included.\r\nOnce you have booked your place, helpful info will be sent out just before the event.\r\nBooking is strictly by advance booking only and on a first come, first served basis.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self-Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2019-01-02 16:20:13','2019-01-02 16:20:13','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(2454,1,'2019-01-02 16:24:07','2019-01-02 16:24:07','The Vault, Wallsend. 7.30 pm to 9.30 pm\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nAttendance is strictly by advance booking on a first come first served basis.\r\n\r\nOnce you have booked your place, the website will send you a confirmation.\r\nUseful notes regarding each workshop are sent out a few days in advance.\r\n\r\n<strong>Refund Policy.</strong> Please note we do not offer refunds if you are unable to attend.\r\nYou may transfer your place to someone else.\r\n\r\n&nbsp;','Self-Hypnosis Practice Group - Newcastle','<strong>Book your place for this practice group. 24th July\r\n</strong>You can pay by Card, Paypal or Bank Transfer.\r\n<em>Paying by bank transfer helps us to keep costs down.</em>\r\nPayments need to be made within 30 mins of your booking if paying by BACS.\r\nPlaces are limited and taken on a first come first served basis','publish','closed','closed','','self-hypnosis-practice-group-booking','','','2019-06-29 17:06:54','2019-06-29 17:06:54','',0,'https://www.newcastle-hypnotherapy.com/?post_type=product&#038;p=2454',0,'product','',0),(2455,1,'2019-01-02 16:27:58','2019-01-02 16:27:58','<img class=\"alignleft size-medium wp-image-326\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n<h4><strong><span style=\"color: #008000;\">Self Hypnosis Introduction Workshop</span>\r\n</strong></h4>\r\n<strong>Wednesday 6th Feb 2019,</strong>\r\n<strong>7.30 to 9.30 pm,</strong>\r\n<strong>Newcastle Hypnotherapy - The Vault.</strong>\r\n<strong>Advance booking required.</strong>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Secrets Of Self-Hypnosis Workshop</span>\r\n</strong></h2>\r\nBack by popular request, the introduction to self-hypnosis evening.\r\nIn this practical, fun workshop you will learn a new set of skills around self-hypnosis.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\nPlaces are just £10 each and limited to just 12 participants. Handouts, tea, coffee and snacks are included.\r\nOnce you have booked your place, helpful info will be sent out just before the event.\r\nBooking is strictly by advance booking only and on a first come, first served basis.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/secrets-of-self-hypnosis/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self-Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2019-01-02 16:27:58','2019-01-02 16:27:58','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(2456,1,'2019-01-02 16:32:21','2019-01-02 16:32:21','','IMG_20180519_154126','','inherit','open','closed','','img_20180519_154126','','','2019-01-02 16:32:21','2019-01-02 16:32:21','',2454,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/IMG_20180519_154126.jpg',0,'attachment','image/jpeg',0),(2457,1,'2019-01-02 16:32:24','2019-01-02 16:32:24','','IMG_20180519_154134','','inherit','open','closed','','img_20180519_154134','','','2019-01-02 16:32:24','2019-01-02 16:32:24','',2454,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/IMG_20180519_154134.jpg',0,'attachment','image/jpeg',0),(2458,1,'2019-01-02 16:32:27','2019-01-02 16:32:27','','IMG_20180519_154141','','inherit','open','closed','','img_20180519_154141','','','2019-01-02 16:32:27','2019-01-02 16:32:27','',2454,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/IMG_20180519_154141.jpg',0,'attachment','image/jpeg',0),(2459,1,'2019-01-02 16:32:28','2019-01-02 16:32:28','','IMG_20180519_154200','','inherit','open','closed','','img_20180519_154200','','','2019-01-02 16:32:28','2019-01-02 16:32:28','',2454,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/IMG_20180519_154200.jpg',0,'attachment','image/jpeg',0),(2460,1,'2019-01-02 16:36:45','2019-01-02 16:36:45','<img class=\"alignleft size-medium wp-image-326\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n<h4><strong><span style=\"color: #008000;\">Self Hypnosis Introduction Workshop</span>\r\n</strong></h4>\r\n<strong>Wednesday 6th Feb 2019,</strong>\r\n<strong>7.30 to 9.30 pm,</strong>\r\n<strong>Newcastle Hypnotherapy - The Vault.</strong>\r\n<strong>Advance booking required.</strong>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Secrets Of Self-Hypnosis Workshop</span>\r\n</strong></h2>\r\nBack by popular request, the introduction to self-hypnosis evening.\r\nIn this practical, fun workshop you will learn a new set of skills around self-hypnosis.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\nPlaces are just £10 each and limited to just 12 participants. Handouts, tea, coffee and snacks are included.\r\nOnce you have booked your place, helpful info will be sent out just before the event.\r\nBooking is strictly by advance booking only and on a first come, first served basis.\r\n<img class=\"alignleft size-medium wp-image-2458\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/IMG_20180519_154141-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/secrets-of-self-hypnosis/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self-Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2019-01-02 16:36:45','2019-01-02 16:36:45','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(2461,1,'2019-01-02 19:57:08','2019-01-02 19:57:08','','Order &ndash; January 2, 2019 @ 07:57 PM','','wc-processing','open','closed','order_5c2d179435d3d','order-jan-02-2019-0757-pm','','','2019-01-02 19:58:48','2019-01-02 19:58:48','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2461',0,'shop_order','',3),(2462,1,'2019-01-04 20:11:03','2019-01-04 20:11:03','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these effective skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n16th Jan, The Vault. 7.30 pm to 9.30\r\nBook Below\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>FEEL BETTER</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>FEEL HAPPIER</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and goals. It\'s simply all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\n<strong>This Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.</strong>\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events by simply joining our newsletter.</strong>\r\n<strong>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]</strong>\r\n<strong>Your privacy is always important to us and we are GDPR compliant.</strong>\r\n<strong>You may leave the newsletter at any time.</strong>\r\n\r\nYou can also join our <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></span> for more information on events and take part in the discussions.\r\n\r\nIf you would like to work with us privately to help with any issue please visit the <a href=\"https://www.newcastle-hypnotherapy.com\"><strong><span style=\"color: #339966;\">Newcastle Hypnotherapy Main Page</span></strong></a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2019-01-04 20:11:03','2019-01-04 20:11:03','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2463,1,'2019-01-04 20:11:37','2019-01-04 20:11:37','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these effective skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>16th Jan, The Vault. 7.30 pm to 9.30</strong>\r\n<strong>Book Below</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>FEEL BETTER</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>FEEL HAPPIER</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and goals. It\'s simply all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\n<strong>This Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.</strong>\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events by simply joining our newsletter.</strong>\r\n<strong>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]</strong>\r\n<strong>Your privacy is always important to us and we are GDPR compliant.</strong>\r\n<strong>You may leave the newsletter at any time.</strong>\r\n\r\nYou can also join our <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></span> for more information on events and take part in the discussions.\r\n\r\nIf you would like to work with us privately to help with any issue please visit the <a href=\"https://www.newcastle-hypnotherapy.com\"><strong><span style=\"color: #339966;\">Newcastle Hypnotherapy Main Page</span></strong></a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2019-01-04 20:11:37','2019-01-04 20:11:37','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2464,1,'2019-01-04 20:11:50','2019-01-04 20:11:50','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these effective skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>16th Jan, The Vault. 7.30 pm to 9.30</strong>\r\n<strong>Book Below</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>FEEL BETTER</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>FEEL HAPPIER</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and goals. It\'s simply all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\n<strong>This Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.</strong>\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events by simply joining our newsletter.</strong>\r\n<strong>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]</strong>\r\n<strong>Your privacy is always important to us and we are GDPR compliant.</strong>\r\n<strong>You may leave the newsletter at any time.</strong>\r\n\r\nYou can also join our <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></span> for more information on events and take part in the discussions.\r\n\r\nIf you would like to work with us privately to help with any issue please visit the <a href=\"https://www.newcastle-hypnotherapy.com\"><strong><span style=\"color: #339966;\">Newcastle Hypnotherapy Main Page</span></strong></a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2019-01-04 20:11:50','2019-01-04 20:11:50','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2465,1,'2019-01-04 20:12:08','2019-01-04 20:12:08','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these effective skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>16th Jan, The Vault. 7.30 pm to 9.30 - </strong><strong>Book Below</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>FEEL BETTER</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>FEEL HAPPIER</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and goals. It\'s simply all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\n<strong>This Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.</strong>\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events by simply joining our newsletter.</strong>\r\n<strong>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]</strong>\r\n<strong>Your privacy is always important to us and we are GDPR compliant.</strong>\r\n<strong>You may leave the newsletter at any time.</strong>\r\n\r\nYou can also join our <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></span> for more information on events and take part in the discussions.\r\n\r\nIf you would like to work with us privately to help with any issue please visit the <a href=\"https://www.newcastle-hypnotherapy.com\"><strong><span style=\"color: #339966;\">Newcastle Hypnotherapy Main Page</span></strong></a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2019-01-04 20:12:08','2019-01-04 20:12:08','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2466,1,'2019-01-04 20:12:22','2019-01-04 20:12:22','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these effective skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n<strong>16th Jan, The Vault. 7.30 pm to 9.30 - </strong><strong>Book Below</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>FEEL BETTER</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>FEEL HAPPIER</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and goals. It\'s simply all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\n<strong>This Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.</strong>\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events by simply joining our newsletter.</strong>\r\n<strong>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]</strong>\r\n<strong>Your privacy is always important to us and we are GDPR compliant.</strong>\r\n<strong>You may leave the newsletter at any time.</strong>\r\n\r\nYou can also join our <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></span> for more information on events and take part in the discussions.\r\n\r\nIf you would like to work with us privately to help with any issue please visit the <a href=\"https://www.newcastle-hypnotherapy.com\"><strong><span style=\"color: #339966;\">Newcastle Hypnotherapy Main Page</span></strong></a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2019-01-04 20:12:22','2019-01-04 20:12:22','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2467,1,'2019-01-04 20:12:41','2019-01-04 20:12:41','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these effective skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n<strong>16th Jan, The Vault. 7.30 pm to 9.30 - </strong><strong>Book Below\r\n\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>FEEL BETTER</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>FEEL HAPPIER</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and goals. It\'s simply all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\n<strong>This Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.</strong>\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events by simply joining our newsletter.</strong>\r\n<strong>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]</strong>\r\n<strong>Your privacy is always important to us and we are GDPR compliant.</strong>\r\n<strong>You may leave the newsletter at any time.</strong>\r\n\r\nYou can also join our <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></span> for more information on events and take part in the discussions.\r\n\r\nIf you would like to work with us privately to help with any issue please visit the <a href=\"https://www.newcastle-hypnotherapy.com\"><strong><span style=\"color: #339966;\">Newcastle Hypnotherapy Main Page</span></strong></a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2019-01-04 20:12:41','2019-01-04 20:12:41','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2468,1,'2019-01-04 20:13:02','2019-01-04 20:13:02','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these effective skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n<strong>16th Jan, The Vault. 7.30 pm to 9.30 - </strong><strong>Book Below</strong>\r\n&nbsp;\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>FEEL BETTER</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>FEEL HAPPIER</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and goals. It\'s simply all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\n<strong>This Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.</strong>\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events by simply joining our newsletter.</strong>\r\n<strong>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]</strong>\r\n<strong>Your privacy is always important to us and we are GDPR compliant.</strong>\r\n<strong>You may leave the newsletter at any time.</strong>\r\n\r\nYou can also join our <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></span> for more information on events and take part in the discussions.\r\n\r\nIf you would like to work with us privately to help with any issue please visit the <a href=\"https://www.newcastle-hypnotherapy.com\"><strong><span style=\"color: #339966;\">Newcastle Hypnotherapy Main Page</span></strong></a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2019-01-04 20:13:02','2019-01-04 20:13:02','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2469,1,'2019-01-04 20:13:55','2019-01-04 20:13:55','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these effective skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n<strong>16th Jan, The Vault. 7.30 pm to 9.30 - </strong><strong>Book Below</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>FEEL BETTER</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>IMPROVE YOUR PERFORMANCE</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>FEEL HAPPIER</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and goals. It\'s simply all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\n<strong>This Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.</strong>\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events by simply joining our newsletter.</strong>\r\n<strong>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]</strong>\r\n<strong>Your privacy is always important to us and we are GDPR compliant.</strong>\r\n<strong>You may leave the newsletter at any time.</strong>\r\n\r\nYou can also join our <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></span> for more information on events and take part in the discussions.\r\n\r\nIf you would like to work with us privately to help with any issue please visit the <a href=\"https://www.newcastle-hypnotherapy.com\"><strong><span style=\"color: #339966;\">Newcastle Hypnotherapy Main Page</span></strong></a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2019-01-04 20:13:55','2019-01-04 20:13:55','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2470,1,'2019-01-04 20:14:18','2019-01-04 20:14:18','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n<img class=\"alignleft wp-image-2284 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/12/2019-300x200.jpg\" alt=\"Getting The Best Out Of 2018\" width=\"300\" height=\"200\" />\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<strong><span style=\"color: #008000;\">You can learn and practice these effective skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n<strong>16th Jan, The Vault. 7.30 pm to 9.30 - </strong><strong>Book Below</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>FEEL BETTER</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>IMPROVE YOUR PERFORMANCE</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>FEEL HAPPIER</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and goals. It\'s simply all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\n<strong>This Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.</strong>\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events by simply joining our newsletter.</strong>\r\n<strong>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]</strong>\r\n<strong>Your privacy is always important to us and we are GDPR compliant.</strong>\r\n<strong>You may leave the newsletter at any time.</strong>\r\n\r\nYou can also join our <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></span> for more information on events and take part in the discussions.\r\n\r\nIf you would like to work with us privately to help with any issue please visit the <a href=\"https://www.newcastle-hypnotherapy.com\"><strong><span style=\"color: #339966;\">Newcastle Hypnotherapy Main Page</span></strong></a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2019-01-04 20:14:18','2019-01-04 20:14:18','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2471,1,'2019-01-06 13:32:05','2019-01-06 13:32:05','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make positive changes using hypnosis and NLP.</strong> <strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; more\r\n</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\n<strong><span style=\"color: #ff6600;\">Read on to see what our clients say..............</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://youtu.be/hGFMkyt8U90\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-01-06 13:32:05','2019-01-06 13:32:05','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2472,1,'2019-01-06 13:32:31','2019-01-06 13:32:31','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\nVery simply, we help people to make positive changes using hypnosis and NLP.</strong> <strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; more\r\n</strong></span></p>\r\nHypnotherapy and Neuro-linguistic programming are powerful techniques that really help people to make changes for good, usually in a short period of time.\r\n\r\n<strong><span style=\"color: #ff6600;\">Read on to see what our clients say..............</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-01-06 13:32:31','2019-01-06 13:32:31','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2473,1,'2019-01-06 13:33:27','2019-01-06 13:33:27','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<iframe src=\"https://youtu.be/hGFMkyt8U90\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<strong><span style=\"color: #008000;\">You can learn and practice these effective skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n<strong>16th Jan, The Vault. 7.30 pm to 9.30 - </strong><strong>Book Below</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>FEEL BETTER</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>IMPROVE YOUR PERFORMANCE</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>FEEL HAPPIER</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and goals. It\'s simply all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\n<strong>This Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.</strong>\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events by simply joining our newsletter.</strong>\r\n<strong>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]</strong>\r\n<strong>Your privacy is always important to us and we are GDPR compliant.</strong>\r\n<strong>You may leave the newsletter at any time.</strong>\r\n\r\nYou can also join our <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></span> for more information on events and take part in the discussions.\r\n\r\nIf you would like to work with us privately to help with any issue please visit the <a href=\"https://www.newcastle-hypnotherapy.com\"><strong><span style=\"color: #339966;\">Newcastle Hypnotherapy Main Page</span></strong></a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2019-01-06 13:33:27','2019-01-06 13:33:27','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2474,1,'2019-01-06 13:34:51','2019-01-06 13:34:51','The Wednesday Workshop - Getting The Best Out Of 2019\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<iframe src=\"https://www.youtube.com/embed/hGFMkyt8U90?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<strong><span style=\"color: #008000;\">You can learn and practice these effective skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n<strong>16th Jan, The Vault. 7.30 pm to 9.30 - </strong><strong>Book Below</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n<ul>\r\n 	<li>STRESS</li>\r\n 	<li>ANXIETY</li>\r\n 	<li>DEPRESSION</li>\r\n 	<li>SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>FEEL BETTER</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>IMPROVE YOUR PERFORMANCE</li>\r\n 	<li>HABITS &amp; BEHAVIOURS</li>\r\n 	<li>TEMPER &amp; MOOD</li>\r\n 	<li>FEEL HAPPIER</li>\r\n 	<li>LEARNING NEW SKILLS</li>\r\n 	<li>BEING A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and goals. It\'s simply all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\n<strong>This Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.</strong>\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events by simply joining our newsletter.</strong>\r\n<strong>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]</strong>\r\n<strong>Your privacy is always important to us and we are GDPR compliant.</strong>\r\n<strong>You may leave the newsletter at any time.</strong>\r\n\r\nYou can also join our <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></span> for more information on events and take part in the discussions.\r\n\r\nIf you would like to work with us privately to help with any issue please visit the <a href=\"https://www.newcastle-hypnotherapy.com\"><strong><span style=\"color: #339966;\">Newcastle Hypnotherapy Main Page</span></strong></a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2019-01-06 13:34:51','2019-01-06 13:34:51','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2475,1,'2019-01-06 13:41:24','2019-01-06 13:41:24','The Wednesday Workshop - Getting The Best Out Of 2019\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 easy skills.</span></h2>\r\n<iframe src=\"https://www.youtube.com/embed/hGFMkyt8U90?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<strong><span style=\"color: #008000;\">You can learn and practice these effective skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n<strong>16th Jan, The Vault. 7.30 pm to 9.30 - </strong><strong>Book Below</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n<ul>\r\n 	<li>REDUCE STRESS</li>\r\n 	<li>CONTROL ANXIETY</li>\r\n 	<li>CONQUER DEPRESSION</li>\r\n 	<li>IMPROVE SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>FEEL BETTER</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>IMPROVE YOUR PERFORMANCE</li>\r\n 	<li>CHANGE HABITS &amp; BEHAVIOURS</li>\r\n 	<li>BETTER TEMPER &amp; MOOD</li>\r\n 	<li>FEEL HAPPIER</li>\r\n 	<li>LEARN NEW SKILLS</li>\r\n 	<li>BE A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n 	<li>MAKE MORE MONEY</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and goals. It\'s simply all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\n<strong>This Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.</strong>\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events by simply joining our newsletter.</strong>\r\n<strong>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]</strong>\r\n<strong>Your privacy is always important to us and we are GDPR compliant.</strong>\r\n<strong>You may leave the newsletter at any time.</strong>\r\n\r\nYou can also join our <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></span> for more information on events and take part in the discussions.\r\n\r\nIf you would like to work with us privately to help with any issue please visit the <a href=\"https://www.newcastle-hypnotherapy.com\"><strong><span style=\"color: #339966;\">Newcastle Hypnotherapy Main Page</span></strong></a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2019-01-06 13:41:24','2019-01-06 13:41:24','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2480,1,'2019-01-06 15:06:01','2019-01-06 15:06:01','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />Very simply, we help people to make positive changes using hypnosis and NLP.</strong> <strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; more,\r\n\r\n</strong></span></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-01-06 15:06:01','2019-01-06 15:06:01','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2481,1,'2019-01-06 15:06:40','2019-01-06 15:06:40','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />Very simply, we help people to make positive changes using hypnosis and NLP.</strong> <strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; more.</strong></span></p>\r\n&nbsp;\r\n&nbsp;\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did Dr Andrew say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-01-06 15:06:40','2019-01-06 15:06:40','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2482,1,'2019-01-06 15:07:33','2019-01-06 15:07:33','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />Very simply, we help people to make positive changes using hypnosis and NLP.</strong> <strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; more.</strong></span></p>\r\n&nbsp;\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help peoplefrom all walks of life including many NHS and health care professionals.</span></strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-01-06 15:07:33','2019-01-06 15:07:33','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2483,1,'2019-01-06 15:25:57','2019-01-06 15:25:57','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Linguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications and previously spent many years learning Self-Hypnosis and NLP for himself.\r\n<h4><span style=\"color: #008000;\"><strong>Mark\'s Qualifications</strong></span></h4>\r\n<strong>Practitioner Neuro-Linguistic Programming - NLP North East</strong>\r\n\r\n<strong>Master Practitioner Neuro-Linguistic Programming - NLP North East</strong>\r\n\r\n<strong>Diploma in Clinical Hypnotherapy - Transform NLP</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Mark\'s Experience &amp; Personal Achievements.\r\n</strong></span></h4>\r\nMark has always been very passionate about personal development, nutrition and health.\r\nMark started to learn self-hypnosis and neuro-linguistic programming in his teens as a way to overcome issues such as anxiety, stress, poor self-confidence and a stammer.\r\nMark overcame these issues and at the age of 18 started his first business as a mobile disc jockey. The techniques he learnt helped to improve his self-confidence issues and helped him to work as a multiple mobile disco operator for many North East Hotels and even to enjoy public speaking and training others in various roles.\r\n\r\nMark now enjoys speaking at regular health events such as The Mind, Body, Spirit Fair at The Vault each month. Topics include Hypnotherapy, Self-Hypnosis, Neuro-Linguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnosis and NLP skills to others.\r\n\r\n<span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span>\r\n\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clinical Hypnotherapy, NLP and other modern techniques. He also works in many other areas.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n<h2><span style=\"color: #008000;\"><strong>Yvette Spoor</strong></span></h2>\r\nYvette is a passionate Occupational Therapist, a Practitioner of Neuro-Linguistic Programming and is also skilled in many other areas including family and child work.\r\n\r\nShe has many years of experience within the NHS and also enjoys specialist work in many other areas, helping people with anxiety and stress problems.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including</span></strong>\r\n<ul>\r\n 	<li><strong>NLP</strong> - Neuro Linguistic Programming</li>\r\n 	<li><strong>Hypnotherapy</strong></li>\r\n 	<li><strong>EFT</strong> - Emotional Freedom Technique</li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Coaching</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Nutritional Therapy\r\n</strong> and other useful techniques.</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<ul>\r\n 	<li><strong>Anxiety</strong></li>\r\n 	<li><strong>Depression</strong></li>\r\n 	<li><strong>Stress &amp; Stress Management</strong></li>\r\n 	<li><strong>Anger Management</strong></li>\r\n 	<li><strong>Phobias </strong></li>\r\n 	<li><strong>Pain &amp; Chronic Pain Management</strong></li>\r\n 	<li><strong>Weight Loss &amp; Weight Management</strong></li>\r\n 	<li><strong>Addiction - Alcohol &amp; Habits</strong></li>\r\n 	<li><strong>Smoking Cessation</strong></li>\r\n 	<li><strong>Grief Counselling</strong></li>\r\n 	<li><strong>Confidence Building</strong></li>\r\n 	<li><strong>IBS - Irritable Bowel Syndrome</strong></li>\r\n 	<li><strong>Tinnitus</strong></li>\r\n 	<li><strong>Sleep Disorders</strong></li>\r\n 	<li><strong>Allergies</strong></li>\r\n 	<li><strong>Food Intolerances</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Practice Locations\r\n</strong></span></h4>\r\nWe work across the North East of England, Newcastle upon Tyne &amp; Northumberland for face to face appointments &amp; workshops. We also work online &amp; by phone across the UK when needed.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend\"><span style=\"color: #008000;\">Newcastle <strong>Hypnotherapy</strong> Wallsend Practice</span></a>\r\n<span class=\"LrzXr\"><strong>31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Newcastle Hypnotherapy Seaton Delaval Practice</strong></a></span>\r\n28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Newcastle Hypnotherapy Bedlington Practice</a></span></strong>\r\n1 Vulcan Place, Bedlington, Northumberland, NE22 5DN.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Newcastle Hypnotherapy Cramlington Practice</a></span></strong>\r\n27 Greystoke Place, Cramlington, Northumberland, NE23 6NL.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\">Newcastle Hypnotherapy South Shields Practice</a></span></strong>\r\nWhite Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n\r\nTo book your appointment for hypnotherapy or NLP for these locations please call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\r\n<h4><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy Events, Workshops &amp; Training.</span></strong></h4>\r\nThe<strong> <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\">Wednesday Workshop</a></strong> is a regular event to share useful skills such as Self-Hypnosis, Hypnosis, Neuro-linguistic programming - NLP, Emotional Freedom Technique Tapping - EFT, Meditation, Mindfulness and more.\r\nThe aim is to share skills to improve happiness and good mental health while also making friends and having fun.\r\n\r\nNewcastle Hypnotherapy also runs longer training and development events for deeper learning and advanced skills.\r\n\r\n<strong>For more information about these events and workshops join our newsletter below.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n<strong>Your privacy is safe and you can unsubscribe from the newsletter at any time.</strong>\r\n<h4><strong><span style=\"color: #008000;\">How do I book my appointment?</span></strong></h4>\r\nSimply <strong>call on 07568 455 809</strong> or <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">contact us.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span></strong></h4>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\">Click here to arrange your free consultation.</span></a>\r\n<h4><span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span></h4>\r\nMost appointments are charged at £79 for a 1 to 1.5-hour session.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n<h4><span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span></h4>\r\nMost appointments take about an hour to an hour and a half although may vary depending on your circumstances.\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span></h4>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h4><strong><span style=\"color: #008000;\">Call us on 07568 455 809 to arrange your free 15-minute consultation.</span></strong></h4>\r\n&nbsp;','ABOUT US','','inherit','closed','closed','','43-revision-v1','','','2019-01-06 15:25:57','2019-01-06 15:25:57','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(2484,1,'2019-01-06 15:45:26','2019-01-06 15:45:26','About Us - Newcastle Hypnotherapy\r\n\r\n<img class=\"alignleft wp-image-1818 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"About Us Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Mark Morley</strong></span></h2>\r\nMark is the director of Newcastle Hypnotherapy, a Clinical Hypnotherapist and a Master Practitioner of Neuro-Linguistic Programming.\r\nTraining with NLP North East and Transform NLP, Mark obtained his qualifications and previously spent many years learning Self-Hypnosis and NLP for himself.\r\n<h4><span style=\"color: #008000;\"><strong>Mark\'s Qualifications</strong></span></h4>\r\n<strong>Practitioner Neuro-Linguistic Programming - NLP North East</strong>\r\n\r\n<strong>Master Practitioner Neuro-Linguistic Programming - NLP North East</strong>\r\n\r\n<strong>Diploma in Clinical Hypnotherapy - Transform NLP</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Mark\'s Experience &amp; Personal Achievements.\r\n</strong></span></h4>\r\nMark has always been very passionate about personal development, nutrition and health.\r\nMark started to learn self-hypnosis and neuro-linguistic programming in his teens as a way to overcome issues such as anxiety, stress, poor self-confidence and a stammer.\r\nMark overcame these issues and at the age of 18 started his first business as a mobile disc jockey. The techniques he learnt helped to improve his self-confidence issues and helped him to work as a multiple mobile disco operator for many North East Hotels and even to enjoy public speaking and training others in various roles.\r\n\r\nMark now enjoys speaking at regular health events such as The Mind, Body, Spirit Fair at The Vault each month. Topics include Hypnotherapy, Self-Hypnosis, Neuro-Linguistic Programming,  Emotional Freedom Technique, and more.\r\n\r\nYou can also find Mark speaking at the regular <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop</a></strong> in Newcastle teaching Self-Hypnosis and NLP skills to others.\r\n\r\n<span style=\"color: #008000;\"><strong>Mark\'s Areas Of Speciality</strong></span>\r\n\r\nMark loves successfully helping people who have issues with stress, anxiety, self-confidence and pain using Clinical Hypnotherapy, NLP and other modern techniques. He also works in many other areas.\r\n\r\nTo chat with Mark about your issues call <strong>07568 455 809</strong> or <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #ff6600;\"><strong>Contact Us</strong></span></a> for a call back.\r\n\r\nTou can also learn about the regualr events and workshops by joining the newsletter lower down the page.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-104\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/19059074_10154638475062322_1825527744185497542_n-300x300.jpg\" alt=\"About Us Yvette Spoor\" width=\"300\" height=\"300\" />\r\n<h2><span style=\"color: #008000;\"><strong>Yvette Spoor</strong></span></h2>\r\nYvette is a passionate Occupational Therapist, a Practitioner of Neuro-Linguistic Programming and is also skilled in many other areas including family and child work.\r\n\r\nShe has many years of experience within the NHS and also enjoys specialist work in many other areas, helping people with anxiety and stress problems.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">We help people, just like you, to make life-improving changes, using specialist techniques and therapies including</span></strong>\r\n<ul>\r\n 	<li><strong>NLP</strong> - Neuro Linguistic Programming</li>\r\n 	<li><strong>Hypnotherapy</strong></li>\r\n 	<li><strong>EFT</strong> - Emotional Freedom Technique</li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Coaching</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Nutritional Therapy\r\n</strong> and other useful techniques.</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">We</span><span style=\"color: #008000;\"> help people with the following issues:</span></strong></h3>\r\n<ul>\r\n 	<li><strong>Anxiety</strong></li>\r\n 	<li><strong>Depression</strong></li>\r\n 	<li><strong>Stress &amp; Stress Management</strong></li>\r\n 	<li><strong>Anger Management</strong></li>\r\n 	<li><strong>Phobias </strong></li>\r\n 	<li><strong>Pain &amp; Chronic Pain Management</strong></li>\r\n 	<li><strong>Weight Loss &amp; Weight Management</strong></li>\r\n 	<li><strong>Addiction - Alcohol &amp; Habits</strong></li>\r\n 	<li><strong>Smoking Cessation</strong></li>\r\n 	<li><strong>Grief Counselling</strong></li>\r\n 	<li><strong>Confidence Building</strong></li>\r\n 	<li><strong>IBS - Irritable Bowel Syndrome</strong></li>\r\n 	<li><strong>Tinnitus</strong></li>\r\n 	<li><strong>Sleep Disorders</strong></li>\r\n 	<li><strong>Allergies</strong></li>\r\n 	<li><strong>Food Intolerances</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Practice Locations\r\n</strong></span></h4>\r\nWe work across the North East of England, Newcastle upon Tyne &amp; Northumberland for face to face appointments &amp; workshops. We also work online &amp; by phone across the UK when needed.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend\"><span style=\"color: #008000;\">Newcastle <strong>Hypnotherapy</strong> Wallsend Practice</span></a>\r\n<span class=\"LrzXr\"><strong>31 Station Road, Wallsend, Newcastle upon Tyne, NE28 6SZ.</strong></span>\r\n\r\n<span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Newcastle Hypnotherapy Seaton Delaval Practice</strong></a></span>\r\n28 Astley Road, Seaton Delaval, Whitley Bay, Newcastle upon Tyne. NE25 0DG.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Newcastle Hypnotherapy Bedlington Practice</a></span></strong>\r\n1 Vulcan Place, Bedlington, Northumberland, NE22 5DN.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Newcastle Hypnotherapy Cramlington Practice</a></span></strong>\r\n27 Greystoke Place, Cramlington, Northumberland, NE23 6NL.\r\n\r\n<strong><span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\">Newcastle Hypnotherapy South Shields Practice</a></span></strong>\r\nWhite Feather House, 46 Charlotte Street, South Shields, NE33 1PX.\r\n\r\nTo book your appointment for hypnotherapy or NLP for these locations please call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a>.\r\n<h4><strong><span style=\"color: #008000;\">Newcastle Hypnotherapy Events, Workshops &amp; Training.</span></strong></h4>\r\nThe<strong> <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/\">Wednesday Workshop</a></strong> is a regular event to share useful skills such as Self-Hypnosis, Hypnosis, Neuro-linguistic programming - NLP, Emotional Freedom Technique Tapping - EFT, Meditation, Mindfulness and more.\r\nThe aim is to share skills to improve happiness and good mental health while also making friends and having fun.\r\n\r\nNewcastle Hypnotherapy also runs longer training and development events for deeper learning and advanced skills.\r\n\r\n<strong>For more information about these events and workshops join our newsletter below.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n<strong>Your privacy is safe and you can unsubscribe from the newsletter at any time.</strong>\r\n<h4><strong><span style=\"color: #008000;\">How do I book my appointment?</span></strong></h4>\r\nSimply <strong>call on 07568 455 809</strong> or <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">contact us.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do you offer a free initial consultation?</span></strong></h4>\r\nYes. We offer this consultation by phone, in person or video chat to assess the issue &amp; see what will help you.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\">Click here to arrange your free consultation.</span></a>\r\n<h4><span style=\"color: #008000;\"><strong>What do you charge for appointments?</strong></span></h4>\r\nMost appointments are charged at £79 for a 1 to 1.5-hour session.  Certain appointments may be less or more depending on the individual circumstances and always advised in advance of making your appointment.\r\n<h4><span style=\"color: #008000;\"><strong>How long do appointments take?</strong></span></h4>\r\nMost appointments take about an hour to an hour and a half although may vary depending on your circumstances.\r\n<h4><span style=\"color: #008000;\"><strong>How many appointments will be needed?</strong></span></h4>\r\nWe can advise of an estimate in advance. Some issues can be resolved in one or two sessions and others can take three or four sessions.\r\n<h4><strong><span style=\"color: #008000;\">Call us on 07568 455 809 to arrange your free 15-minute consultation.</span></strong></h4>\r\n&nbsp;','ABOUT US','','inherit','closed','closed','','43-revision-v1','','','2019-01-06 15:45:26','2019-01-06 15:45:26','',43,'https://www.newcastle-hypnotherapy.com/43-revision-v1/',0,'revision','',0),(2495,1,'2019-01-06 16:41:56','2019-01-06 16:41:56','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></span></h4>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2019-01-06 16:41:56','2019-01-06 16:41:56','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2485,1,'2019-01-06 15:49:43','2019-01-06 15:49:43','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\nYou can a<span style=\"color: #000000;\">rrange your<strong> <span style=\"color: #ff6600;\">Free 15 Minute Phone Session</span> - <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong>or <strong><span style=\"color: #ff6600;\">Book your first session to take control </span>- <a style=\"color: #000000;\" href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></span>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below along with reviews from clients.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></span></h4>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2019-01-06 15:49:43','2019-01-06 15:49:43','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2596,1,'2019-02-09 16:36:27','2019-02-09 16:36:27','EFT Tapping is a powerful technique that is most useful for many of our clients.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/aerxAsLVo0o?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EFT Tapping Made Simple & Easy','','inherit','closed','closed','','2592-revision-v1','','','2019-02-09 16:36:27','2019-02-09 16:36:27','',2592,'https://www.newcastle-hypnotherapy.com/2592-revision-v1/',0,'revision','',0),(2487,1,'2019-01-06 16:12:57','2019-01-06 16:12:57','','26219346_10215918480661430_8877811450273727224_n','','inherit','open','closed','','26219346_10215918480661430_8877811450273727224_n','','','2019-01-06 16:12:57','2019-01-06 16:12:57','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/26219346_10215918480661430_8877811450273727224_n.jpg',0,'attachment','image/jpeg',0),(2595,1,'2019-02-09 16:34:48','2019-02-09 16:34:48','EFT Tapping is a powerful technique that is most useful for many of our clients.\r\n\r\n<iframe src=\"https://www.youtube.com/watch?v=aerxAsLVo0o?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EFT Tapping Made Simple & Easy','','inherit','closed','closed','','2592-revision-v1','','','2019-02-09 16:34:48','2019-02-09 16:34:48','',2592,'https://www.newcastle-hypnotherapy.com/2592-revision-v1/',0,'revision','',0),(2489,1,'2019-01-06 16:16:32','2019-01-06 16:16:32','','Happy Customer Reviews','','inherit','open','closed','','18301132_10213555215381275_3679351157902333621_n','','','2019-01-06 16:17:04','2019-01-06 16:17:04','',200,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/18301132_10213555215381275_3679351157902333621_n.jpg',0,'attachment','image/jpeg',0),(2490,1,'2019-01-06 16:17:09','2019-01-06 16:17:09','<h4><span style=\"color: #008000;\"><strong><img class=\"alignleft size-medium wp-image-2489\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/18301132_10213555215381275_3679351157902333621_n-300x211.jpg\" alt=\"Happy Customer Reviews\" width=\"300\" height=\"211\" />Client Feedback. Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming.\r\n</strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback, Dr Andrew\'s feedback on Newcastle Hypnotherapy.</span></strong>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong><span style=\"color: #000000;\">\"<span class=\"Linkify\">Thankyou for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce\"</span></span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback  by Gary </span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by S F</span>.</strong>  \"<span style=\"color: #000000;\">I</span> Met Mark initially at an event at \'The Vault\' and found him to be a trustworthy genuine person, so I booked two Hypnotherapy sessions with him. I felt stuck with certain issues in my life and also had some trauma work to do. I had done a lot of work myself but the last little bit was still missing. With Mark\'s help I found that missing bit and can now work with the tools that Mark offered to me. He introduced me to tapping (EFT) and NLP (Neurolinguistic Programming) which are fantastic tools. Also I can always use the hypnotherapy session that Mark recorded for me. Thank you so much, Mark! \"\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />','Reviews','','inherit','closed','closed','','200-revision-v1','','','2019-01-06 16:17:09','2019-01-06 16:17:09','',200,'https://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(2491,1,'2019-01-06 16:18:30','2019-01-06 16:18:30','<h4><span style=\"color: #008000;\"><strong><img class=\"alignleft size-medium wp-image-2489\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/18301132_10213555215381275_3679351157902333621_n-300x211.jpg\" alt=\"Happy Customer Reviews\" width=\"300\" height=\"211\" />Client Feedback &amp; Reviews</strong></span></h4>\r\n<strong>Thank you to all of our customers &amp; clients who have sent us a review. We love your feedback, please keep them coming.</strong><span style=\"color: #008000;\"><strong>\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback, Dr Andrew\'s feedback on Newcastle Hypnotherapy.</span></strong>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong><span style=\"color: #000000;\">\"<span class=\"Linkify\">Thankyou for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce\"</span></span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback  by Gary </span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by S F</span>.</strong>  \"<span style=\"color: #000000;\">I</span> Met Mark initially at an event at \'The Vault\' and found him to be a trustworthy genuine person, so I booked two Hypnotherapy sessions with him. I felt stuck with certain issues in my life and also had some trauma work to do. I had done a lot of work myself but the last little bit was still missing. With Mark\'s help I found that missing bit and can now work with the tools that Mark offered to me. He introduced me to tapping (EFT) and NLP (Neurolinguistic Programming) which are fantastic tools. Also I can always use the hypnotherapy session that Mark recorded for me. Thank you so much, Mark! \"\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />','Reviews','','inherit','closed','closed','','200-revision-v1','','','2019-01-06 16:18:30','2019-01-06 16:18:30','',200,'https://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(2492,1,'2019-01-06 16:18:53','2019-01-06 16:18:53','<h4><span style=\"color: #008000;\"><strong><img class=\"alignleft size-medium wp-image-2489\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/18301132_10213555215381275_3679351157902333621_n-300x211.jpg\" alt=\"Happy Customer Reviews\" width=\"300\" height=\"211\" />Client Feedback &amp; Reviews</strong></span></h4>\r\n<strong>Thank you to all of our customers &amp; clients who have sent us a review.\r\nWe love your feedback, please keep it coming.</strong><span style=\"color: #008000;\"><strong>\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback, Dr Andrew\'s feedback on Newcastle Hypnotherapy.</span></strong>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong><span style=\"color: #000000;\">\"<span class=\"Linkify\">Thankyou for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce\"</span></span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback  by Gary </span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by S F</span>.</strong>  \"<span style=\"color: #000000;\">I</span> Met Mark initially at an event at \'The Vault\' and found him to be a trustworthy genuine person, so I booked two Hypnotherapy sessions with him. I felt stuck with certain issues in my life and also had some trauma work to do. I had done a lot of work myself but the last little bit was still missing. With Mark\'s help I found that missing bit and can now work with the tools that Mark offered to me. He introduced me to tapping (EFT) and NLP (Neurolinguistic Programming) which are fantastic tools. Also I can always use the hypnotherapy session that Mark recorded for me. Thank you so much, Mark! \"\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />','Reviews','','inherit','closed','closed','','200-revision-v1','','','2019-01-06 16:18:53','2019-01-06 16:18:53','',200,'https://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(2493,1,'2019-01-06 16:19:21','2019-01-06 16:19:21','<h4><span style=\"color: #008000;\"><strong><img class=\"alignleft size-medium wp-image-2489\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/18301132_10213555215381275_3679351157902333621_n-300x211.jpg\" alt=\"Happy Customer Reviews\" width=\"300\" height=\"211\" />Client Feedback &amp; Reviews</strong></span></h4>\r\n<strong>Thank you to all of our customers &amp; clients who have sent us a review.\r\nWe love your feedback, please keep it coming.</strong><span style=\"color: #008000;\"><strong>\r\n</strong></span>\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback, Dr Andrew\'s feedback on Newcastle Hypnotherapy.</span></strong>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Joyce </strong><span style=\"color: #000000;\">\"<span class=\"Linkify\">Thankyou for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and  l am more positive. Regards Joyce\"</span></span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback  by Gary </span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>were<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counseling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practiced, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by S F</span>.</strong>  \"<span style=\"color: #000000;\">I</span> Met Mark initially at an event at \'The Vault\' and found him to be a trustworthy genuine person, so I booked two Hypnotherapy sessions with him. I felt stuck with certain issues in my life and also had some trauma work to do. I had done a lot of work myself but the last little bit was still missing. With Mark\'s help I found that missing bit and can now work with the tools that Mark offered to me. He introduced me to tapping (EFT) and NLP (Neurolinguistic Programming) which are fantastic tools. Also I can always use the hypnotherapy session that Mark recorded for me. Thank you so much, Mark! \"\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Lean More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />','Reviews','','inherit','closed','closed','','200-revision-v1','','','2019-01-06 16:19:21','2019-01-06 16:19:21','',200,'https://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(2593,1,'2019-02-09 16:18:06','2019-02-09 16:18:06','EFT Tapping is','EFT Tapping Made Simple & Easy','','inherit','closed','closed','','2592-revision-v1','','','2019-02-09 16:18:06','2019-02-09 16:18:06','',2592,'https://www.newcastle-hypnotherapy.com/2592-revision-v1/',0,'revision','',0),(2594,1,'2019-06-30 19:08:28','2019-06-30 19:08:28','<iframe src=\"https://www.youtube.com/embed/-fJrfAYMPPE\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n<div class=\"_5w1r _3_om _5wdf\">\n<div class=\"_4gx_\">\n<h4><span style=\"color: #008000;\"><strong>Learn even more powerful tips &amp; techniques\n</strong></span></h4>\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\nYou can unsubscribe from the newsltter at any time.\n<h4 class=\"_1aa6\"><span style=\"color: #008000;\"><strong><span class=\"_5yl5\">EFT Tapping Made Simple &amp; Easy\n</span></strong></span></h4>\nTapping is a powerful technique that is most useful for many of our clients. However there are many types of tapping.\nHere is the most powerful, simple tapping routine that we have found.\n\n</div>\n</div>\nEFT or Emotional Freedom Technique can be used to help with many issues and problems.\nWe find it is extremely effective for pain, both physical pain or emotional pain, cravings, anxiety, stress and many other issues.\nUsing this technique we can usually reduce the issue from a 10 to a 1 or 0 in 10 minutes or less\n\n<strong><span style=\"color: #008000;\">Learning The Basics Of EFT Tapping</span></strong>\n<h4>Watch the short EFT video above and learn the tapping points to tap on.\nMake a list of any past and present issues that may be causing emotional distress, no matter how small.\nSpend 10 to 15 minutes per day working through all of these and the more you practice the easier it becomes.\n\nLet us know how you get on by commenting below.\n\n<span style=\"color: #008000;\"><strong>Would you like to work with us individually?</strong></span></h4>\nWe do work with a small number of clients on a private basis.\nCall <strong>07568 455 809</strong> today to get started or <span style=\"color: #ff6600;\"><strong>Click Here</strong></span> to book a free phone consultation.\nWe can then discuss your issues and look at the best way forward for you.\n<h4><span style=\"color: #008000;\"><strong>What did The NHS Dr say about our services?</strong></span></h4>\nhttps://www.youtube.com/watch?v=cudUGD_t74I\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','EFT Tapping Made Simple & Easy','','inherit','closed','closed','','2592-autosave-v1','','','2019-06-30 19:08:28','2019-06-30 19:08:28','',2592,'https://www.newcastle-hypnotherapy.com/2592-autosave-v1/',0,'revision','',0),(2497,1,'2019-01-06 16:43:27','2019-01-06 16:43:27','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below.</strong></span>\r\n&nbsp;\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></span></h4>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2019-01-06 16:43:27','2019-01-06 16:43:27','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2498,1,'2019-01-06 16:44:06','2019-01-06 16:44:06','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips are more information can be found below.</strong></span>\r\n\r\n<strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></span></h4>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2019-01-06 16:44:06','2019-01-06 16:44:06','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2499,1,'2019-01-06 16:44:41','2019-01-06 16:44:41','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n\r\n<strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></span></h4>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2019-01-06 16:44:41','2019-01-06 16:44:41','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2500,1,'2019-01-06 18:34:21','2019-01-06 18:34:21','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems effe</p>\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\n\n&nbsp;\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program - Newcastle Hypnotherapy</strong></span></h2>\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\n\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\n\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\n[wpforms id=\"35\"]\n\n&nbsp;\n<h2><strong><span style=\"color: #008000;\">The Hypnosis Pain Management Program</span>\nQuestions and Answers</strong></h2>\n&nbsp;\n<h2><strong><span style=\"color: #008000;\">How Long Does The Hypnosis Pain Management Program Take?</span></strong></h2>\nWe usually start with a program of 3 sessions over a period of 5 weeks.\nFor most people, this works really well with good results happening during the first session.\nWe do tailor the program to each client as each person\'s pain symptoms can be very different. We can assess this in more detail during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your free consultation</a>.</strong>\n<h2><span style=\"color: #008000;\"><strong>What Happens During The Hypnosis Pain Management Program?</strong></span></h2>\nFirstly we assess how high your pain levels are and explore the different types of pain you experience over time. We then teach you the powerful pain management techniques and show you how to reduce your pain, step by step.\nOver time we assess which self-help pain techniques work the best for you and work to make them more effective.\nWe do use hypnosis and self-hypnosis techniques along with NLP and EFT for best results to take control and manage your pain levels.\n<h2><strong><span style=\"color: #008000;\">Will These Pain Management Techniques Work For Chronic Pain?</span></strong></h2>\nYes, the hypnosis pain management program will work on all types of pain including back pain, chronic pain, migraine, stress pain and other types of pain.\n<h2><strong><span style=\"color: #008000;\">Where Do You Conduct The Pain Management Sessions?</span></strong></h2>\nNewcastle Hypnotherapy work from multiple therapy locations in the North East. Our main locations are The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval. We also work from Cramlington and Bedlington in Northumberland. We are flexible and can usually find a suitable location for you.\n<h2><strong><span style=\"color: #008000;\">Can You Help With Pain Management Online?</span>\n</strong></h2>\nYes, we do pain management and hypnotherapy work using Skype, Zoom and other video platforms. Clients do see excellent results using video and online sessions.\n<h2><strong><span style=\"color: #008000;\">Is It Safe To Switch Off Pain Signals?</span></strong></h2>\nPain signals are a very important part of our bodies natural health warning system as they tell us when things are wrong.\nWhen we start to work together we assess your pain issues and look at the best way forward for you.\nSome people are just overly sensitive to pain and this is fine to manage the pain down to a comfortable level.  In some cases, we will only work with you once your pain problem has been investigated by your doctor or other healthcare professional. We do work with other therapists and healthcare professionals to find the best way forward for each client.\nIt is wise to find out what can be causing pain and then decide how to proceed from there.\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis Help With Pain Management?\n</span></strong></h2>\nCertainly, Self-Hypnosis is a very powerful set of tools that can quickly control pain, emotions, feelings and mental states. We do teach self-hypnosis techniques through private sessions and group workshops as it can be very helpful with pain issues and many other problems.\nNewcastle Hypnotherapy runs a regular <strong><a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #008000;\">Wednesday Workshops and Events</span></a> </strong>in Newcastle where we teach <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong></span> along with many other self-improvement subjects.\n<h2><span style=\"color: #008000;\">Why Is Pain Medication Not Effective For Many People?</span></h2>\nEvery person is different, with a different health history and a different diet. Some pain medications can be beneficial for one person and not effective again pain for others.\nMany of our clients approach us as a last resort after finding pain medication has not helped them or that the side effect of medications is causing problems.\nSometimes pain can be caused by emotional issues as well as physical issues. Hypnosis can be very effective for pain relief along with many other health problems.\n<h2><strong><span style=\"color: #008000;\">Will The NHS Help With Hypnotherapy Pain Management?</span></strong></h2>\nSadly hypnotherapy is not available on the NHS. Our clients do arrange their hypnotherapy for pain management for themselves. We do believe hypnotherapy should be provided by the NHS as the benefits are very effective for our clients.\n<h2><strong><span style=\"color: #008000;\">Can Hypnotherapy Help With Surgery Pain?</span></strong></h2>\nYes. Learning pain management techniques can make surgery much more comfortable and also reduce the stress and anxiety out of medical procedures, dental appointments and giving birth.\n<h2><span style=\"color: #008000;\"><strong>What Is Pain?</strong></span></h2>\nDifferent health professionals use different terms or definitions to describe the pain. As a rough guide:\nAcute Pain is often short-term pain such as a sprained ankle.\nChronic Pain or Persistent Pain is longterm pain such as back pain or arthritis.\nRecurrent or Intermittent Pain comes and goes, such as a toothache.\n\nPain is a signal from a part of the body to let us know there is a problem, damage or injury.\nSometimes pain can be amplified or exaggerated when we are suffering from emotional issues, such as anxiety, stress and depression. Over time this can become a habit that is not always related to the cause of pain and sometimes there is not a cause of the pain. This is where pain management can be most useful to reset these pain signals or calm them down.\n<h2><strong><span style=\"color: #008000;\">Besides Pain Medication, What Else Can Help Pain Problems?</span></strong></h2>\nWe use a range of modern techniques to help manage pain including Meditation, Mindfulness, Self-Hypnosis, Hypnosis, Breathing Techniques, Diet, Nutrition, Excercise, Visualisation, Emotional Freedom Technique -EFT and NLP techniques.\nPart of the Hypnosis Pain Management Program is to find the right techniques that work well for you.\n<h2><span style=\"color: #008000;\"><strong>How Should We Move Forward?</strong></span></h2>\nWhen you are ready to take control of your pain you can call us on 07568 455 809 for your free consultation or complete the form below.\n[wpforms id=\"35\"]\n\nNewcastle Hypnotherapy is a member of <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\nYou can also find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a> and <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a>\n<div></div>\n<div></div>\n<div></div>\n&nbsp;\n\n&nbsp;','PAIN MANAGEMENT & RELIEF','','inherit','closed','closed','','1252-autosave-v1','','','2019-01-06 18:34:21','2019-01-06 18:34:21','',1252,'https://www.newcastle-hypnotherapy.com/1252-autosave-v1/',0,'revision','',0),(2501,1,'2019-01-06 18:34:28','2019-01-06 18:34:28','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-1257\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/freedom-2053281_1280-300x228.jpg\" alt=\"Hypnosis Pain Management Program\" width=\"300\" height=\"228\" /><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program</strong></span> gives you a selection of tools to control and relieve your pain problems effectively</p>\r\nOur clients find the latest pain management techniques can be very effective in dealing with many types of pain and chronic pain.\r\nOnce you learn these modern hypnosis techniques you can reduce your pain down to a level comfortable for you, quickly and effectively.\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>The Hypnosis Pain Management Program - Newcastle Hypnotherapy</strong></span></h2>\r\nPain can really make life uncomfortable, stopping us from doing the things we enjoy and love. Pain management medication is not always the answer as it can be ineffective and sadly there can be side effects.\r\nMany people can be oversensitive to pain signals or feel chronic pain for no real reason.\r\n\r\nUsing a tailored program of Modern Hypnotherapy, Emotional Freedom Technique - EFT and Neuro-Linguistic Programming - NLP we will show you how to turn your pain down to comfortable levels and even switch it off if suitable.\r\n<h2><span style=\"color: #008000;\"><strong>Your First Steps To Being Pain-Free</strong></span></h2>\r\nThe first thing we need to do is to assess the type of pain you are suffering from and look at the choices available to you.\r\nThe best way to do this is during your <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">initial free consultation</a></strong> which we will conduct over the phone.\r\nDuring this consultation, we can answer all of your questions and look at the best way forward for you.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you ready to take control of your pain?</strong></span> <em><strong>Call Mark today on 07568 455 809</strong></em> or complete the form below to arrange a call back at a time suitable for you.\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Hypnosis Pain Management Program</span>\r\nQuestions and Answers</strong></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Long Does The Hypnosis Pain Management Program Take?</span></strong></h2>\r\nWe usually start with a program of 3 sessions over a period of 5 weeks.\r\nFor most people, this works really well with good results happening during the first session.\r\nWe do tailor the program to each client as each person\'s pain symptoms can be very different. We can assess this in more detail during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">your free consultation</a>.</strong>\r\n<h2><span style=\"color: #008000;\"><strong>What Happens During The Hypnosis Pain Management Program?</strong></span></h2>\r\nFirstly we assess how high your pain levels are and explore the different types of pain you experience over time. We then teach you the powerful pain management techniques and show you how to reduce your pain, step by step.\r\nOver time we assess which self-help pain techniques work the best for you and work to make them more effective.\r\nWe do use hypnosis and self-hypnosis techniques along with NLP and EFT for best results to take control and manage your pain levels.\r\n<h2><strong><span style=\"color: #008000;\">Will These Pain Management Techniques Work For Chronic Pain?</span></strong></h2>\r\nYes, the hypnosis pain management program will work on all types of pain including back pain, chronic pain, migraine, stress pain and other types of pain.\r\n<h2><strong><span style=\"color: #008000;\">Where Do You Conduct The Pain Management Sessions?</span></strong></h2>\r\nNewcastle Hypnotherapy work from multiple therapy locations in the North East. Our main locations are The Vault in Newcastle upon Tyne and Food For Thought in Seaton Delaval. We also work from Cramlington and Bedlington in Northumberland. We are flexible and can usually find a suitable location for you.\r\n<h2><strong><span style=\"color: #008000;\">Can You Help With Pain Management Online?</span>\r\n</strong></h2>\r\nYes, we do pain management and hypnotherapy work using Skype, Zoom and other video platforms. Clients do see excellent results using video and online sessions.\r\n<h2><strong><span style=\"color: #008000;\">Is It Safe To Switch Off Pain Signals?</span></strong></h2>\r\nPain signals are a very important part of our bodies natural health warning system as they tell us when things are wrong.\r\nWhen we start to work together we assess your pain issues and look at the best way forward for you.\r\nSome people are just overly sensitive to pain and this is fine to manage the pain down to a comfortable level.  In some cases, we will only work with you once your pain problem has been investigated by your doctor or other healthcare professional. We do work with other therapists and healthcare professionals to find the best way forward for each client.\r\nIt is wise to find out what can be causing pain and then decide how to proceed from there.\r\n<h2><strong><span style=\"color: #008000;\">Can Self-Hypnosis Help With Pain Management?\r\n</span></strong></h2>\r\nCertainly, Self-Hypnosis is a very powerful set of tools that can quickly control pain, emotions, feelings and mental states. We do teach self-hypnosis techniques through private sessions and group workshops as it can be very helpful with pain issues and many other problems.\r\nNewcastle Hypnotherapy runs a regular <strong><a href=\"https://www.newcastle-hypnotherapy.com/events-workshops/\"><span style=\"color: #008000;\">Wednesday Workshops and Events</span></a> </strong>in Newcastle where we teach <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis Skills</a></strong></span> along with many other self-improvement subjects.\r\n<h2><span style=\"color: #008000;\">Why Is Pain Medication Not Effective For Many People?</span></h2>\r\nEvery person is different, with a different health history and a different diet. Some pain medications can be beneficial for one person and not effective again pain for others.\r\nMany of our clients approach us as a last resort after finding pain medication has not helped them or that the side effect of medications is causing problems.\r\nSometimes pain can be caused by emotional issues as well as physical issues. Hypnosis can be very effective for pain relief along with many other health problems.\r\n<h2><strong><span style=\"color: #008000;\">Will The NHS Help With Hypnotherapy Pain Management?</span></strong></h2>\r\nSadly hypnotherapy is not available on the NHS. Our clients do arrange their hypnotherapy for pain management for themselves. We do believe hypnotherapy should be provided by the NHS as the benefits are very effective for our clients.\r\n<h2><strong><span style=\"color: #008000;\">Can Hypnotherapy Help With Surgery Pain?</span></strong></h2>\r\nYes. Learning pain management techniques can make surgery much more comfortable and also reduce the stress and anxiety out of medical procedures, dental appointments and giving birth.\r\n<h2><span style=\"color: #008000;\"><strong>What Is Pain?</strong></span></h2>\r\nDifferent health professionals use different terms or definitions to describe the pain. As a rough guide:\r\nAcute Pain is often short-term pain such as a sprained ankle.\r\nChronic Pain or Persistent Pain is longterm pain such as back pain or arthritis.\r\nRecurrent or Intermittent Pain comes and goes, such as a toothache.\r\n\r\nPain is a signal from a part of the body to let us know there is a problem, damage or injury.\r\nSometimes pain can be amplified or exaggerated when we are suffering from emotional issues, such as anxiety, stress and depression. Over time this can become a habit that is not always related to the cause of pain and sometimes there is not a cause of the pain. This is where pain management can be most useful to reset these pain signals or calm them down.\r\n<h2><strong><span style=\"color: #008000;\">Besides Pain Medication, What Else Can Help Pain Problems?</span></strong></h2>\r\nWe use a range of modern techniques to help manage pain including Meditation, Mindfulness, Self-Hypnosis, Hypnosis, Breathing Techniques, Diet, Nutrition, Excercise, Visualisation, Emotional Freedom Technique -EFT and NLP techniques.\r\nPart of the Hypnosis Pain Management Program is to find the right techniques that work well for you.\r\n<h2><span style=\"color: #008000;\"><strong>How Should We Move Forward?</strong></span></h2>\r\nWhen you are ready to take control of your pain you can call us on 07568 455 809 for your free consultation or complete the form below.\r\n[wpforms id=\"35\"]\r\n\r\nNewcastle Hypnotherapy is a member of <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\nYou can also find Newcastle Hypnotherapy on <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook</strong></a> and <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a>\r\n<div></div>\r\n<div></div>\r\n<div></div>\r\n&nbsp;\r\n\r\n&nbsp;','PAIN MANAGEMENT & RELIEF','','inherit','closed','closed','','1252-revision-v1','','','2019-01-06 18:34:28','2019-01-06 18:34:28','',1252,'https://www.newcastle-hypnotherapy.com/1252-revision-v1/',0,'revision','',0),(2502,1,'2019-01-06 18:37:36','2019-01-06 18:37:36','<h4><img class=\"size-thumbnail wp-image-103 alignnone\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />  <span style=\"color: #008000;\"><strong>Is depression getting you down?</strong></span></h4>\r\n<h2><span style=\"color: #008000;\"><strong>We help people with depression to take control and make their lives better.\r\n</strong></span></h2>\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n<h2><strong><span style=\"color: #008000;\">The good news is,  we can help with your depression.</span></strong></h2>\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n<h2><span style=\"color: #008000;\"><strong>Jenny’s experience.</strong></span></h2>\r\n<em><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to make that call. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span></em>\r\n\r\n<em><span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span></em>\r\n<h2><strong><span style=\"color: #008000;\">Depression You Have The Choice &amp; We Have The Skills.</span></strong></h2>\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n<h2><strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?\r\n</span></strong></h2>\r\nWorking with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n<h2><span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How can Depression affect you &amp; What are the symptoms?\r\n</strong></span></h2>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms. Depression can give us a very distorted view of the world and our lives.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\nSome studies and research show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\nThe good news is that there are many techniques and therapies we use to help you with your depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','DEPRESSION','','inherit','closed','closed','','122-revision-v1','','','2019-01-06 18:37:36','2019-01-06 18:37:36','',122,'https://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(2504,1,'2019-01-06 18:38:49','2019-01-06 18:38:49','<h4><img class=\"alignnone wp-image-103 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-300x291.jpg\" alt=\"\" width=\"300\" height=\"291\" />\r\n<span style=\"color: #008000;\"><strong>We help people with depression to take control and make their lives better.\r\n</strong></span></h4>\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n<h2><strong><span style=\"color: #008000;\">The good news is,  we can help with your depression.</span></strong></h2>\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n<h2><span style=\"color: #008000;\"><strong>Jenny’s experience.</strong></span></h2>\r\n<em><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to make that call. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span></em>\r\n\r\n<em><span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span></em>\r\n<h2><strong><span style=\"color: #008000;\">Depression You Have The Choice &amp; We Have The Skills.</span></strong></h2>\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n<h2><strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?\r\n</span></strong></h2>\r\nWorking with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n<h2><span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How can Depression affect you &amp; What are the symptoms?\r\n</strong></span></h2>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms. Depression can give us a very distorted view of the world and our lives.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\nSome studies and research show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\nThe good news is that there are many techniques and therapies we use to help you with your depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','DEPRESSION','','inherit','closed','closed','','122-revision-v1','','','2019-01-06 18:38:49','2019-01-06 18:38:49','',122,'https://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(2505,1,'2019-01-06 18:39:11','2019-01-06 18:39:11','<h4><img class=\"alignnone wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" />\r\n<span style=\"color: #008000;\"><strong>We help people with depression to take control and make their lives better.\r\n</strong></span></h4>\r\nDepression makes life unpleasant for you and those around you. It literally drains the joy out of life, leaving you with low energy, feeling tired, miserable, stressed, with little interest in life and puts your relationships at risk. The longer it goes on the stronger it can become.\r\n<h2><strong><span style=\"color: #008000;\">The good news is,  we can help with your depression.</span></strong></h2>\r\nWe can show you easy, simple techniques that put back in control of your life.\r\nQuickly we can work to give you relief from your depression, bringing back the laughter, the fun, the energy, the joy and enjoyment of life.\r\n<h2><span style=\"color: #008000;\"><strong>Jenny’s experience.</strong></span></h2>\r\n<em><span style=\"font-weight: 400;\">\"I had been feeling depressed for many months and the number of bad days was slowly becoming more common. My energy levels were so low that some days I could barely get out of bed, I lost all interest in my hobbies, I was ignoring my friends and my family were also starting to suffer, especially my husband and children. There was no joy in my life anymore and crying was normal, 3 or 4 times a day.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">It was my husband who pushed me to do something about it. I really struggled to make that call. I was pleasantly surprised at how easy that first session was and how Mark really understood what I was going through. We practiced some easy exercises, he gave me a few tasks to do during the week and I started a journal. </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Things started to feel better within a few hours and I felt for the first time in ages, that I could make things better, I had some hope. Daily I would have ups and downs and now I knew, how to handle them and push those depression symptoms away.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">My husband was the first to point out I had started laughing again within a few days and my energy levels started to improve in the morning. I started to enjoy time with my the kids again and stopped putting things off. The change in a week was quite dramatic, for all of us.</span></em>\r\n\r\n<em><span style=\"font-weight: 400;\">My follow up appointment was fun and Mark showed me some more exercises that have really made a difference. It sounds silly now, I really don’t know what I was getting depressed about. Everything in my life was good but I was looking at things the wrong way.  </span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\">Today things are very different. I laugh, I sing, I dance &amp; I love again as I used to do. I really love my life again. I do have the odd blip for a minute or two but I know how to handle it and push them away.\"</span></em>\r\n<h2><strong><span style=\"color: #008000;\">Depression You Have The Choice &amp; We Have The Skills.</span></strong></h2>\r\nYou have the choice to take control of your depression. We have the skills, techniques &amp; experience to make that happen.\r\nThankfully NLP, Hypnosis &amp; Coaching can be very effective and fast in changing how we think and how we behave. These techniques can help us to recognise what sets off our negative thinking, makes us aware of how it starts and how to quickly replace it, with positive actions and thoughts.\r\n<h2><strong><span style=\"color: #008000;\">What can you expect in your sessions for depression help?\r\n</span></strong></h2>\r\nWorking with you, we discover what can be setting off your depression, negative thoughts or behaviors.\r\nThese can be everyday events, work, stress, family issues or even memories.\r\nOnce we are aware of these triggers we then explore how you can react to these in different ways, choosing better behaviors and thoughts in these situations.\r\nWe work to change your feelings and thoughts to these situations and replace them with good feelings on demand.\r\n\r\nUsually, we quickly see a return to normal energy, your positive interest in life and your reasons for enjoying life. We then strengthen these improvements for lasting change.\r\nOur aim is to help you find your direction in life, plan how this can be achieved and help you see the clear picture of your future.\r\nWithin just a session or two, we usually see major improvements with clients, as their life takes on an improved view and possibilities for the future.\r\n<h2><span style=\"color: #008000;\"><strong>Take action today to take control of your depression.\r\n</strong></span></h2>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 908 or complete the form at the bottom of this page to discuss how we can help you.\r\n[wpforms id=\"35\"]</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>How can Depression affect you &amp; What are the symptoms?\r\n</strong></span></h2>\r\nDepression can affect both the mind and the body. It can result in reduced energy, lack of interest in daily life, lack of appetite, low sex drive, poor focus or concentration, low self-worth, and many other symptoms. Depression can give us a very distorted view of the world and our lives.\r\nThere can be many reasons why we can feel depressed and some people have no idea why they are feeling depressed.\r\nSome studies and research show nutrient deficiencies, poor diet, food intolerances and lack of exercise can make symptoms worse.\r\n\r\nIn fact, there are many conflicting views on what causes depression and exactly what is the best treatment, as everyone is different.\r\nThe good news is that there are many techniques and therapies we use to help you with your depression.\r\nContact us today and see what can help you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','DEPRESSION','','inherit','closed','closed','','122-revision-v1','','','2019-01-06 18:39:11','2019-01-06 18:39:11','',122,'https://www.newcastle-hypnotherapy.com/122-revision-v1/',0,'revision','',0),(2508,1,'2019-01-06 18:42:15','2019-01-06 18:42:15','<img class=\"alignleft size-medium wp-image-971\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/stop-smoking-hypnosis-300x225.jpg\" alt=\"Stop Smoking Hypnosis Guaranteed\" width=\"300\" height=\"225\" />\n\nHave you decided to stop smoking? One of the most effective ways to quit smoking is to treble your chances with the Stop Smoking Hypnosis Guaranteed program.\nInterestingly, smoking cessation can be one of the hardest addictions to beat on your own. The latest Hypnotherapy techniques combined with Neuro-linguistic programming (NLP) will really increase your success rate and put you in control of your future.\n<h2></h2>\n&nbsp;\n\n&nbsp;\n<h2><span style=\"color: #008000;\"><b>Studies on the Effectiveness of Hypnosis for Smoking Cessation</b></span></h2>\n<div class=\"wpb_text_column wpb_content_element\">\n<div class=\"wpb_wrapper\">\n<ul>\n 	<li>\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Patients Twice As Likely To Remain Smoke-Free After Two Years</b></span></h3>\n</li>\n</ul>\nStudy of 71 smokers showed that after a two-year follow-up, patients that quit with hypnosis were twice as likely to remain smoke-free than those who quit on their own. Guided health imagery for smoking cessation and long-term abstinence.Wynd, CA. Journal of Nursing Scholarship, 2005; 37:3, pages 245-250.\n<div class=\"wpb_text_column wpb_content_element\">\n<div class=\"wpb_wrapper\">\n<ul>\n 	<li>\n<h3><span style=\"color: #ff6600;\"><b>90.6% Success Rate for Smoking Cessation Using Hypnosis</b></span></h3>\n</li>\n</ul>\nOf 43 consecutive patients undergoing this treatment protocol, 39 reported remaining abstinents from tobacco use at follow-up (6 months to 3 years post-treatment). This represents a 90.6% success rate using hypnosis. University of Washington School of Medicine, Depts. of Anesthesiology and Rehabilitation Medicine, Int J Clin Exp Hypn. 2001 Jul;49(3):257-66. Barber J.\n<div class=\"wpb_text_column wpb_content_element\">\n<div class=\"wpb_wrapper\">\n<ul>\n 	<li>\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis More Effective Than Drug Interventions For Smoking Cessation</b></span></h3>\n</li>\n</ul>\nGroup hypnosis sessions, evaluated at a less effective success rate (22% success) than individualized hypnosis sessions. However, group hypnosis sessions were still demonstrated here as being more effective than drug interventions. Ohio State University, College of Nursing, Columbus, OH 43210, USA Descriptive outcomes of the American Lung Association of Ohio hypnotherapy smoking cessation program. Ahijevych K, Yerardi R, Nedilsky N.\n\n</div>\n</div>\n<div class=\"wpb_text_column wpb_content_element\">\n<div class=\"wpb_wrapper\">\n<ul>\n 	<li>\n<h3><span style=\"color: #ff6600;\"><b>Hypnosis Most Effective Says Largest Study Ever: 3 Times as Effective as Patch and 15 Times as Effective as Willpower</b></span></h3>\n</li>\n</ul>\nHypnosis is the most effective way of giving up smoking, according to the largest ever scientific comparison of ways of breaking the habit. A meta-analysis, statistically combining results of more than 600 studies of 72,000 people from America and Europe to compare various methods of quitting. On average, hypnosis was over three times as effective as nicotine replacement methods and 15 times as effective as trying to quit alone. University of Iowa, Journal of Applied Psychology, How One in Five Give Up Smoking. October 1992. (Also New Scientist, October 10, 1992.) <i>Studies on the Effectiveness of Hypnosis for Smoking Cessation. (2009, April 8). Retrieved from <a href=\"http://johnmongiovi.com/\" rel=\"noopener noreferrer\">http://johnmongiovi.com</a></i>\n<div class=\"wpb_text_column wpb_content_element\">\n<div class=\"wpb_wrapper\">\n<ul>\n 	<li>\n<h3><span style=\"color: #ff6600;\"><b>87% Reported Abstinence From Tobacco Use With Hypnosis</b></span></h3>\n</li>\n</ul>\nA field study of 93 male and 93 female CMHC outpatients examined the facilitation of smoking cessation by using hypnosis. At 3-month follow-up, 86% of the men and 87% of the women reported continued abstinence from the use of tobacco using hypnosis. Performance by gender in a stop-smoking program combining hypnosis and aversion. Johnson DL, Karkut RT. Adkar Associates, Inc., Bloomington, Indiana. Psychol Rep. 1994 Oct;75(2):851-7. PMID: 7862796 [PubMed – indexed for MEDLINE]\n\n</div>\n</div>\n<div class=\"wpb_text_column wpb_content_element\">\n<div class=\"wpb_wrapper\">\n<ul>\n 	<li>\n<h3><span style=\"color: #ff6600;\"><b>81% Reported They Had Stopped Smoking After Hypnosis</b></span></h3>\n</li>\n</ul>\nThirty smokers enrolled in an HMO were referred by their primary physician for treatment. Twenty-one patients returned after an initial consultation and received hypnosis for smoking cessation. At the end of treatment, 81% of those patients reported that they had stopped smoking, and 48% reported abstinence at 12 months post-treatment. Texas A&amp;M University, System Health Science Center, College of Medicine, College Station, TX USA. Int J Clin Exp Hypn. 2004 Jan;52(1):73-81. Clinical hypnosis for smoking cessation: preliminary results of a three-session intervention. Elkins GR, Rajab MH.\n\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n</div>\n<h3 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Enter your email address here to\nReceive the FREE \"</strong></span><strong>Kick the Habit</strong><span style=\"color: #ff6600;\"><strong><span style=\"color: #008000;\">\"</span>\n<span style=\"color: #008000;\">Stop Smoking Report Today.</span>\n</strong></span></h3>\n[contact-form-7 id=\"960\" title=\"Kick The Habit - Stop Smoking Report\"]\nGDPR Compliant Form. Your details will only be used to send your information and keep you updated with news. You may unsubscribe at any time using the link in an email. Our <a href=\"http://www.newcastle-hypnotherapy.com/privacy-policy/\">Privacy Policy.</a>\n<h2><span style=\"color: #008000;\"><b>Stop Smoking Hypnosis</b><strong> - Your First Steps.</strong></span><b>\n</b></h2>\nYour first step is to arrange a free phone consultation to see if this stop smoking program is right for you.\nCall me today on 07568 455 809 or complete the form below to arrange your consultation and explore how Stop Smoking Guaranteed can work for you.\nDuring this relaxed consultation, I will explain how your stop smoking hypnosis sessions will work and evaluate exactly what you would like from this program. Hypnosis is a wonderful experience that will leave you feeling relaxed, calm and confident with the ability to take control.\n\nUsually, I work with clients from our locations in Newcastle upon Tyne, Northumberland and even Online.\n\n&nbsp;\n\nCall me today on 07568 455 809 or complete the form below and please let me know the best time to call you back.\n\n[wpforms id=\"35\"]\n\nNewcastle Hypnotherapy offer a range of Hypnsosis &amp; NLP services throughout the North East and can help with a wide range of issues, problems and challenges..\n\nWe are proud members of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>.','STOP SMOKING HYPNOSIS','','inherit','closed','closed','','948-autosave-v1','','','2019-01-06 18:42:15','2019-01-06 18:42:15','',948,'https://www.newcastle-hypnotherapy.com/948-autosave-v1/',0,'revision','',0),(2511,1,'2019-01-06 18:55:53','2019-01-06 18:55:53','<strong>Past Life Regression Hypnosis Sessions\r\n</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\n<strong>Past Life Regression Hypnosis is fascinating and we run sessions in different ways to suit different needs.</strong>\r\n<ul>\r\n 	<li><strong>Group sessions </strong></li>\r\n 	<li><strong>Individual sessions</strong></li>\r\n 	<li><strong>Private group sessions</strong></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>We use Past Life Regression for both therapy purposes or just for your curiosity.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.\r\n</strong>\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<h2><span style=\"color: #008000;\"><strong>Laura - Past Life Regression Hypnosis Session</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2>Dec 2018 The Wednesday Workshop @ The Vault</h2>\r\n<h2><span style=\"color: #008000;\">Eileen</span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/Xv67oDBxrK8?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Morgan</strong></span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/j864XFS5pLQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></h2>\r\n<h2><span style=\"color: #008000;\">Mark</span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/xjoHiK41pJY?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></h2>\r\nYou can learn more about our regular Wednesday Workshops and other events by Newcastle Hypnotherapy by simply joining the newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe with us. You can remove yourself at any time from the newsletter.','Past Life Regression Hypnosis Sessions','','inherit','closed','closed','','1568-revision-v1','','','2019-01-06 18:55:53','2019-01-06 18:55:53','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2512,1,'2019-01-06 18:56:14','2019-01-06 18:56:14','<strong>Past Life Regression Hypnosis Sessions\r\n</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-1186\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression Hypnosis\" width=\"300\" height=\"234\" />\r\n\r\n<strong>Past Life Regression Hypnosis is fascinating and we run sessions in different ways to suit different needs.</strong>\r\n<ul>\r\n 	<li><strong>Group sessions </strong></li>\r\n 	<li><strong>Individual sessions</strong></li>\r\n 	<li><strong>Private group sessions</strong></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>We use Past Life Regression for both therapy purposes or just for your curiosity.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us</a> for more information.\r\n</strong>\r\n\r\nIf you would like to learn more about our events and The Wednesday Workshop, simply add yourself to the newsletter at the end of this page.\r\n<h2><span style=\"color: #008000;\"><strong>Laura - Past Life Regression Hypnosis Session</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/PonVsMWu8-g?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Tracy - Past Life Regression Hypnosis Session</strong>\r\n<iframe src=\"https://www.youtube.com/embed/3aW9w-6x9zI?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><strong>Carmen - Past Life Regression Hypnosis Session</strong></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/OA8QNQez3jc?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<strong>Liz - Past Life Regression Hypnosis Session</strong></h2>\r\n<iframe src=\"https://www.youtube.com/embed/ojMQKQDdnPQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2>Dec 2018 The Wednesday Workshop @ The Vault</h2>\r\n<h2><span style=\"color: #008000;\">Eileen</span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/Xv67oDBxrK8?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h2>\r\n<h2><span style=\"color: #008000;\"><strong>Morgan</strong></span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/j864XFS5pLQ?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></h2>\r\n<h2><span style=\"color: #008000;\">Mark</span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/xjoHiK41pJY?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></h2>\r\nYou can learn more about our regular Wednesday Workshops and other events by Newcastle Hypnotherapy by simply joining the newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe with us. You can remove yourself at any time from the newsletter.','Past Life Regression Hypnosis Sessions','','inherit','closed','closed','','1568-revision-v1','','','2019-01-06 18:56:14','2019-01-06 18:56:14','',1568,'https://www.newcastle-hypnotherapy.com/1568-revision-v1/',0,'revision','',0),(2514,1,'2019-01-07 11:24:03','2019-01-07 11:24:03','','Order &ndash; January 7, 2019 @ 11:24 AM','','wc-processing','open','closed','order_5c3336d34d28a','order-jan-07-2019-1124-am','','','2019-01-07 11:24:55','2019-01-07 11:24:55','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2514',0,'shop_order','',3),(2515,1,'2019-01-07 16:43:09','2019-01-07 16:43:09','<h4><span style=\"color: #008000;\"><strong><img class=\"alignleft size-medium wp-image-2489\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/18301132_10213555215381275_3679351157902333621_n-300x211.jpg\" alt=\"Happy Customer Reviews\" width=\"300\" height=\"211\" />Client Feedback &amp; Reviews</strong></span></h4>\r\n<strong>Thank you to all of our customers &amp; clients who have sent us a review.\r\nWe love your feedback, please keep it coming because it really helps others.</strong><span style=\"color: #008000;\"><strong>\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback, Dr Andrew\'s feedback on Newcastle Hypnotherapy.</span></strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>\"I\'ve had an amazing Christmas. I\'ve been very relaxed compared to last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I\'m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.\"<span style=\"color: #008000;\"><span style=\"color: #000000;\">LN</span><strong>\r\n\r\nClient Feedback by Joyce</strong><span style=\"color: #000000;\">\"<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce\"</span></span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback by Gary </span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar-free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by S F</span>.</strong>  \"<span style=\"color: #000000;\">I</span> Met Mark initially at an event at \'The Vault\' and found him to be a trustworthy genuine person, so I booked two Hypnotherapy sessions with him. I felt stuck with certain issues in my life and also had some trauma work to do. I had done a lot of work myself but the last little bit was still missing. With Mark\'s help, I found that missing bit and can now work with the tools that Mark offered to me. He introduced me to tapping (EFT) and NLP (Neurolinguistic Programming) which are fantastic tools. Also, I can always use the hypnotherapy session that Mark recorded for me. Thank you so much, Mark! \"\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Learn More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />','Reviews','','inherit','closed','closed','','200-revision-v1','','','2019-01-07 16:43:09','2019-01-07 16:43:09','',200,'https://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(2517,1,'2019-01-07 16:45:08','2019-01-07 16:45:08','<h4><span style=\"color: #008000;\"><strong><img class=\"alignleft size-medium wp-image-2489\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/18301132_10213555215381275_3679351157902333621_n-300x211.jpg\" alt=\"Happy Customer Reviews\" width=\"300\" height=\"211\" />Client Feedback &amp; Reviews</strong></span></h4>\r\n<strong>Thank you to all of our customers &amp; clients who have sent us a review.\r\nWe love your feedback, please keep it coming because it really helps others.</strong><span style=\"color: #008000;\"><strong>\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Dr Andrew\'s feedback on Newcastle Hypnotherapy.</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>\"I\'ve had an amazing Christmas. I\'ve been very relaxed compared to last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I\'m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.\"<span style=\"color: #008000;\"><span style=\"color: #000000;\">LN</span></span>\r\n\r\nClient Feedback by Joyce<span style=\"color: #000000;\">\"<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce\"</span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback by Gary </span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar-free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by S F</span>.</strong>  \"<span style=\"color: #000000;\">I</span> Met Mark initially at an event at \'The Vault\' and found him to be a trustworthy genuine person, so I booked two Hypnotherapy sessions with him. I felt stuck with certain issues in my life and also had some trauma work to do. I had done a lot of work myself but the last little bit was still missing. With Mark\'s help, I found that missing bit and can now work with the tools that Mark offered to me. He introduced me to tapping (EFT) and NLP (Neurolinguistic Programming) which are fantastic tools. Also, I can always use the hypnotherapy session that Mark recorded for me. Thank you so much, Mark! \"\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Learn More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />','Reviews','','inherit','closed','closed','','200-revision-v1','','','2019-01-07 16:45:08','2019-01-07 16:45:08','',200,'https://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(2516,1,'2019-01-07 16:44:32','2019-01-07 16:44:32','<h4><span style=\"color: #008000;\"><strong><img class=\"alignleft size-medium wp-image-2489\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/18301132_10213555215381275_3679351157902333621_n-300x211.jpg\" alt=\"Happy Customer Reviews\" width=\"300\" height=\"211\" />Client Feedback &amp; Reviews</strong></span></h4>\r\n<strong>Thank you to all of our customers &amp; clients who have sent us a review.\r\nWe love your feedback, please keep it coming because it really helps others.</strong><span style=\"color: #008000;\"><strong>\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback, Dr Andrew\'s feedback on Newcastle Hypnotherapy.</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>\"I\'ve had an amazing Christmas. I\'ve been very relaxed compared to last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I\'m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.\"<span style=\"color: #008000;\"><span style=\"color: #000000;\">LN</span></span>\r\n\r\nClient Feedback by Joyce<span style=\"color: #000000;\">\"<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce\"</span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback by Gary </span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar-free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by S F</span>.</strong>  \"<span style=\"color: #000000;\">I</span> Met Mark initially at an event at \'The Vault\' and found him to be a trustworthy genuine person, so I booked two Hypnotherapy sessions with him. I felt stuck with certain issues in my life and also had some trauma work to do. I had done a lot of work myself but the last little bit was still missing. With Mark\'s help, I found that missing bit and can now work with the tools that Mark offered to me. He introduced me to tapping (EFT) and NLP (Neurolinguistic Programming) which are fantastic tools. Also, I can always use the hypnotherapy session that Mark recorded for me. Thank you so much, Mark! \"\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Learn More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />','Reviews','','inherit','closed','closed','','200-revision-v1','','','2019-01-07 16:44:32','2019-01-07 16:44:32','',200,'https://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(2518,1,'2019-01-07 16:48:04','2019-01-07 16:48:04','<h4><span style=\"color: #008000;\"><strong><img class=\"alignleft size-medium wp-image-2489\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/18301132_10213555215381275_3679351157902333621_n-300x211.jpg\" alt=\"Happy Customer Reviews\" width=\"300\" height=\"211\" />Client Feedback &amp; Reviews</strong></span></h4>\r\n<strong>Thank you to all of our customers &amp; clients who have sent us a review.\r\nWe love your feedback, please keep it coming because it really helps others.</strong><span style=\"color: #008000;\"><strong>\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Dr Andrew\'s feedback on Newcastle Hypnotherapy.</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>\"I\'ve had an amazing Christmas. I\'ve been very relaxed compared to last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I\'m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.\"<span style=\"color: #008000;\"><span style=\"color: #000000;\">LN</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Joyce</span></strong> <span style=\"color: #000000;\">\"<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce\"</span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback by Gary </span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar-free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by S F</span>.</strong>  \"<span style=\"color: #000000;\">I</span> Met Mark initially at an event at \'The Vault\' and found him to be a trustworthy genuine person, so I booked two Hypnotherapy sessions with him. I felt stuck with certain issues in my life and also had some trauma work to do. I had done a lot of work myself but the last little bit was still missing. With Mark\'s help, I found that missing bit and can now work with the tools that Mark offered to me. He introduced me to tapping (EFT) and NLP (Neurolinguistic Programming) which are fantastic tools. Also, I can always use the hypnotherapy session that Mark recorded for me. Thank you so much, Mark! \"\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Learn More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />','Reviews','','inherit','closed','closed','','200-revision-v1','','','2019-01-07 16:48:04','2019-01-07 16:48:04','',200,'https://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(2519,1,'2019-01-07 16:51:03','2019-01-07 16:51:03','<h4><span style=\"color: #008000;\"><strong><img class=\"alignleft size-medium wp-image-2489\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/18301132_10213555215381275_3679351157902333621_n-300x211.jpg\" alt=\"Happy Customer Reviews\" width=\"300\" height=\"211\" />Client Feedback &amp; Reviews</strong></span></h4>\r\n<strong>Thank you to all of our customers &amp; clients who have sent us a review.\r\nWe love your feedback, please keep it coming because it really helps others.</strong><span style=\"color: #008000;\"><strong>\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Dr Andrew\'s feedback on Newcastle Hypnotherapy.</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>\"I\'ve had an amazing Christmas. I\'ve been very relaxed compared to last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I\'m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.\"<span style=\"color: #008000;\"><span style=\"color: #000000;\">LN</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Joyce</span></strong> <span style=\"color: #000000;\">\"<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce\"</span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback by Gary </span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar-free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by S F</span>.</strong>  \"<span style=\"color: #000000;\">I</span> Met Mark initially at an event at \'The Vault\' and found him to be a trustworthy genuine person, so I booked two Hypnotherapy sessions with him. I felt stuck with certain issues in my life and also had some trauma work to do. I had done a lot of work myself but the last little bit was still missing. With Mark\'s help, I found that missing bit and can now work with the tools that Mark offered to me. He introduced me to tapping (EFT) and NLP (Neurolinguistic Programming) which are fantastic tools. Also, I can always use the hypnotherapy session that Mark recorded for me. Thank you so much, Mark! \"\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Learn More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />','Reviews','','inherit','closed','closed','','200-revision-v1','','','2019-01-07 16:51:03','2019-01-07 16:51:03','',200,'https://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(2520,1,'2019-01-07 16:53:21','2019-01-07 16:53:21','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n\r\n<strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety Services?</span></strong>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></span></h4>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2019-01-07 16:53:21','2019-01-07 16:53:21','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2521,1,'2019-01-09 08:01:47','2019-01-09 08:01:47','','Order &ndash; January 9, 2019 @ 08:01 AM','','wc-processing','open','closed','order_5c35aa6b966e3','order-jan-09-2019-0801-am','','','2019-01-09 08:02:35','2019-01-09 08:02:35','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2521',0,'shop_order','',3),(2524,1,'2019-01-15 06:58:22','2019-01-15 06:58:22','','Order &ndash; January 15, 2019 @ 06:58 AM','','wc-on-hold','open','closed','order_5c3d848e3d27b','order-jan-15-2019-0658-am','','','2019-01-15 06:58:22','2019-01-15 06:58:22','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2524',0,'shop_order','',1),(2525,1,'2019-01-15 07:12:30','2019-01-15 07:12:30','','Order &ndash; January 15, 2019 @ 07:12 AM','I would like to be chosen for the past life regression on 23rd please, not worked so far.','wc-processing','open','closed','order_5c3d87dec71e1','order-jan-15-2019-0712-am','','','2019-01-15 07:15:56','2019-01-15 07:15:56','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2525',0,'shop_order','',3),(2526,1,'2019-01-16 23:03:26','2019-01-16 23:03:26','The Wednesday Workshop - Getting The Best Out Of 2019\r\n<h2><span style=\"color: #008000;\">Those that achieve their goals use 2 powerful skills.</span></h2>\r\n<h2><iframe src=\"https://www.youtube.com/embed/hGFMkyt8U90?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n<span style=\"color: #ff6600;\"><strong>SORRY - NOW FULLY BOOKED</strong></span></h2>\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #008000;\">You can learn and practice these effective skills at your next workshop.\r\nMake your 2019 amazing.</span></strong>\r\n\r\n<strong>16th Jan, The Vault. 7.30 pm to 9.30 - </strong><strong>Book Below</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What do you want to achieve or</strong><strong> change for 2019?</strong></span><strong>\r\n</strong></h4>\r\n<ul>\r\n 	<li>REDUCE STRESS</li>\r\n 	<li>CONTROL ANXIETY</li>\r\n 	<li>CONQUER DEPRESSION</li>\r\n 	<li>IMPROVE SELF CONFIDENCE</li>\r\n 	<li>WEIGHT LOSS</li>\r\n 	<li>STOP SMOKING</li>\r\n 	<li>FEEL BETTER</li>\r\n 	<li>IMPROVE YOUR RELATIONSHIPS</li>\r\n 	<li>ENERGY LEVELS</li>\r\n 	<li>MOTIVATION</li>\r\n 	<li>IMPROVE YOUR PERFORMANCE</li>\r\n 	<li>CHANGE HABITS &amp; BEHAVIOURS</li>\r\n 	<li>BETTER TEMPER &amp; MOOD</li>\r\n 	<li>FEEL HAPPIER</li>\r\n 	<li>LEARN NEW SKILLS</li>\r\n 	<li>BE A BETTER PARENT OR PARTNER</li>\r\n 	<li>IMPROVE YOUR BUSINESS</li>\r\n 	<li>MAKE MORE MONEY</li>\r\n</ul>\r\n<h3><strong><span style=\"color: #008000;\">Did You Know, There Is A Secret?</span></strong></h3>\r\nEvery New Year many people make resolutions to simply fail. They start with great intentions and commitment and then the motivation slips away. This often results in unhappiness and low self-belief.\r\n\r\nHowever, there is a secret to achieving your resolutions and goals. It\'s simply all about copying what the successful people do.\r\nThere are two skills that successful people use to achieve their goals and they are simple to learn.\r\n<h2><span style=\"color: #008000;\"><strong>These two simple skills will help you to</strong></span></h2>\r\n<ul>\r\n 	<li>FOCUS YOUR MIND</li>\r\n 	<li>GIVE YOU ENERGY</li>\r\n 	<li>INCREASE YOUR WILLPOWER</li>\r\n 	<li>IMPROVE YOUR MOTIVATION</li>\r\n 	<li>CONDITION YOUR BODY</li>\r\n 	<li>SPEED UP YOUR RESULTS</li>\r\n 	<li>ACHIEVE YOUR GOALS</li>\r\n</ul>\r\nWhen you attend this Wednesday Workshop, you will learn these 2 simple skills by actually practising them in a fun, friendly atmosphere.\r\nThis helps you to learn these skills faster and to be able to use them as soon as you leave your workshop.\r\n\r\nYou will be ready to start making changes, achieving your goals and increase your happiness.\r\n\r\n<strong>This Wednesday Workshop is taking place on the 16th January at The Vault Wallsend, 7.30 pm to approx 9.30 pm.</strong>\r\nPlaces are just £10 per person and you do need to book in advance. There are just 20 places available.\r\nDrinks and snacks are included.\r\n\r\n<strong>Once you book your place below, you will receive instructions by email for this event.</strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/\"><img class=\"alignleft size-medium wp-image-1551\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events by simply joining our newsletter.</strong>\r\n<strong>[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]</strong>\r\n<strong>Your privacy is always important to us and we are GDPR compliant.</strong>\r\n<strong>You may leave the newsletter at any time.</strong>\r\n\r\nYou can also join our <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshop Facebook Group</a></span> for more information on events and take part in the discussions.\r\n\r\nIf you would like to work with us privately to help with any issue please visit the <a href=\"https://www.newcastle-hypnotherapy.com\"><strong><span style=\"color: #339966;\">Newcastle Hypnotherapy Main Page</span></strong></a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Getting The Best Out Of 2019','','inherit','closed','closed','','2283-revision-v1','','','2019-01-16 23:03:26','2019-01-16 23:03:26','',2283,'https://www.newcastle-hypnotherapy.com/2283-revision-v1/',0,'revision','',0),(2527,1,'2019-01-17 12:13:24','2019-01-17 12:13:24','','Order &ndash; January 17, 2019 @ 12:13 PM','','wc-processing','open','closed','order_5c407164cb381','order-jan-17-2019-1213-pm','','','2019-01-17 12:14:21','2019-01-17 12:14:21','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2527',0,'shop_order','',2),(2528,1,'2019-01-17 20:09:33','2019-01-17 20:09:33','','Order &ndash; January 17, 2019 @ 08:09 PM','','wc-on-hold','open','closed','order_5c40e0fd0569f','order-jan-17-2019-0809-pm','','','2019-01-17 20:09:33','2019-01-17 20:09:33','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2528',0,'shop_order','',1),(2530,1,'2019-01-19 14:00:25','2019-01-19 14:00:25','','Order &ndash; January 19, 2019 @ 02:00 PM','','wc-processing','open','closed','order_5c432d791b8e2','order-jan-19-2019-0200-pm','','','2019-01-19 14:01:03','2019-01-19 14:01:03','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2530',0,'shop_order','',2),(2531,1,'2019-01-20 13:07:53','2019-01-20 13:07:53','','Order &ndash; January 20, 2019 @ 01:07 PM','','wc-on-hold','open','closed','order_5c4472a9cdce8','order-jan-20-2019-0107-pm','','','2019-01-20 13:07:54','2019-01-20 13:07:54','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2531',0,'shop_order','',1),(2532,1,'2019-01-20 21:21:08','2019-01-20 21:21:08','','Order &ndash; January 20, 2019 @ 09:21 PM','','wc-processing','open','closed','order_5c44e64471251','order-jan-20-2019-0921-pm','','','2019-01-20 21:22:04','2019-01-20 21:22:04','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2532',0,'shop_order','',3),(2555,1,'2019-01-29 19:33:36','2019-01-29 19:33:36','','Order &ndash; January 29, 2019 @ 07:33 PM','','wc-processing','open','closed','order_5c50aa9022f5b','order-jan-29-2019-0733-pm','','','2019-01-29 19:39:34','2019-01-29 19:39:34','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2555',0,'shop_order','',2),(2534,1,'2019-01-21 19:00:07','2019-01-21 19:00:07','','Order &ndash; January 21, 2019 @ 07:00 PM','','wc-on-hold','open','closed','order_5c4616b7524c8','order-jan-21-2019-0700-pm','','','2019-01-21 19:00:07','2019-01-21 19:00:07','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2534',0,'shop_order','',2),(2535,1,'2019-01-21 19:05:28','2019-01-21 19:05:28','','Order &ndash; January 21, 2019 @ 07:05 PM','','wc-on-hold','open','closed','order_5c4617f89fba4','order-jan-21-2019-0705-pm','','','2019-01-21 19:05:28','2019-01-21 19:05:28','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2535',0,'shop_order','',2),(2536,1,'2019-01-21 19:16:40','2019-01-21 19:16:40','','Order &ndash; January 21, 2019 @ 07:16 PM','','wc-on-hold','open','closed','order_5c461a9828db6','order-jan-21-2019-0716-pm','','','2019-01-21 19:16:40','2019-01-21 19:16:40','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2536',0,'shop_order','',2),(2537,1,'2019-01-21 19:25:23','2019-01-21 19:25:23','','Order &ndash; January 21, 2019 @ 07:25 PM','','wc-on-hold','open','closed','order_5c461ca387a31','order-jan-21-2019-0725-pm','','','2019-01-21 19:25:23','2019-01-21 19:25:23','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2537',0,'shop_order','',2),(2538,1,'2019-01-21 19:40:23','2019-01-21 19:40:23','','Order &ndash; January 21, 2019 @ 07:40 PM','','wc-on-hold','open','closed','order_5c462027279c7','order-jan-21-2019-0740-pm','','','2019-01-21 19:40:23','2019-01-21 19:40:23','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2538',0,'shop_order','',2),(2539,1,'2019-01-23 12:22:32','2019-01-23 12:22:32','','Order &ndash; January 23, 2019 @ 12:22 PM','','wc-processing','open','closed','order_5c485c885f1ef','order-jan-23-2019-1222-pm','','','2019-01-23 12:24:07','2019-01-23 12:24:07','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2539',0,'shop_order','',3),(2540,1,'2019-01-28 08:15:25','2019-01-28 08:15:25','Here are some free tools you may find useful\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>Relaxing Music To Melt Your Anxiety Away.</strong></span></h4>\r\nSimply get comfortable, breathe deeply at a pace comfortable for you and relax while listening to this anxiety melting music\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/NBbm8fYLSjM?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply right click and save</strong>\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\nYou can download the <a href=\"http://www.newcastle-hypnotherapy.com/downloads/sleep.mp3\"><strong>Deep Sleep Hypnosis Audio Program Here</strong></a>. Simply Right Click &amp; Save\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','FREE TOOLS & RESOURCES','','inherit','closed','closed','','471-revision-v1','','','2019-01-28 08:15:25','2019-01-28 08:15:25','',471,'https://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(2541,1,'2019-01-28 08:23:22','2019-01-28 08:23:22','Here are some free tools you may find useful for anxiety, stress, relaxation, good mental heal and so much more. New resources are added on a regular basis.\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>Relaxing Music To Melt Your Anxiety Away.</strong></span></h4>\r\nSimply get comfortable, breathe deeply at a pace comfortable for you and relax while listening to this anxiety melting music. You can find more resources to help with Anxiety &amp; Stress here - <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-hypnosis-program/\"><strong>Anxiety &amp; Stress Help.</strong></a>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/NBbm8fYLSjM?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep </strong>Relaxation<strong> Hypnosis Program</strong> </span></h4>\r\nFind a comfortable place to relax, breath nicely and let you subconcious mind guide you to relax while listening to this calming audio track.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply right click and save</strong>\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep Sleep Hypnosis Program</strong></span></h4>\r\nA simple way to relax and move towards natural sleep. Follow this track with your mind allowing your concious mind to drift away naturally.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\nYou can download the <a href=\"http://www.newcastle-hypnotherapy.com/downloads/sleep.mp3\"><strong>Deep Sleep Hypnosis Audio Program Here</strong></a>. Simply Right Click &amp; Save\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','FREE TOOLS & RESOURCES','','inherit','closed','closed','','471-revision-v1','','','2019-01-28 08:23:22','2019-01-28 08:23:22','',471,'https://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(2542,1,'2019-01-28 08:29:42','2019-01-28 08:29:42','Here are some free tools you may find useful for anxiety, stress, relaxation, good mental health and so much more. New resources are added on a regular basis.\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>Relaxing Music To Melt Your Anxiety Away.</strong></span></h4>\r\nSimply get comfortable, breathe deeply at a pace comfortable for you and relax while listening to this anxiety melting music. You can find more resources to help with Anxiety &amp; Stress here - <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-hypnosis-program/\"><strong>Anxiety &amp; Stress Help.</strong></a>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/NBbm8fYLSjM?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep </strong>Relaxation<strong> Hypnosis Program</strong> </span></h4>\r\nFind a comfortable place to relax, breath nicely and let you subconcious mind guide you to relax while listening to this calming audio track.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply right click and save</strong>\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep Sleep Hypnosis Program</strong></span></h4>\r\nA simple way to relax and move towards natural sleep. Follow this track with your mind allowing your concious mind to drift away naturally.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\nYou can download the <a href=\"http://www.newcastle-hypnotherapy.com/downloads/sleep.mp3\"><strong>Deep Sleep Hypnosis Audio Program Here</strong></a>. Simply Right Click &amp; Save\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','FREE TOOLS & RESOURCES','','inherit','closed','closed','','471-revision-v1','','','2019-01-28 08:29:42','2019-01-28 08:29:42','',471,'https://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(2543,1,'2019-01-28 13:50:19','2019-01-28 13:50:19','Here are some free tools you may find useful for anxiety, stress, relaxation, good mental health and so much more. New resources are added on a regular basis.\r\n\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/g7FwQXxt7wU?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>Relaxing Music To Melt Your Anxiety Away.</strong></span></h4>\r\nSimply get comfortable, breathe deeply at a pace comfortable for you and relax while listening to this anxiety melting music. You can find more resources to help with Anxiety &amp; Stress here - <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-hypnosis-program/\"><strong>Anxiety &amp; Stress Help.</strong></a>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/NBbm8fYLSjM?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep </strong>Relaxation<strong> Hypnosis Program</strong> </span></h4>\r\nFind a comfortable place to relax, breath nicely and let you subconcious mind guide you to relax while listening to this calming audio track.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply right click and save</strong>\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep Sleep Hypnosis Program</strong></span></h4>\r\nA simple way to relax and move towards natural sleep. Follow this track with your mind allowing your concious mind to drift away naturally.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\nYou can download the <a href=\"http://www.newcastle-hypnotherapy.com/downloads/sleep.mp3\"><strong>Deep Sleep Hypnosis Audio Program Here</strong></a>. Simply Right Click &amp; Save\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','FREE TOOLS & RESOURCES','','inherit','closed','closed','','471-revision-v1','','','2019-01-28 13:50:19','2019-01-28 13:50:19','',471,'https://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(2545,1,'2019-01-28 13:53:06','2019-01-28 13:53:06','<h4>Here are some free tools you may find useful for anxiety, stress, relaxation, good mental health and so much more. New resources are added on a regular basis.</h4>\r\n<span style=\"color: #008000;\"><strong>The Visualisation Meditation Excercise.</strong></span>\r\n\r\nA simple little meditation exercise that helps the mind to visualise your day, getting the best results and controlling your emotions.\r\n<div class=\"embed-container\"></div>\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>Relaxing Music To Melt Your Anxiety Away.</strong></span></h4>\r\nSimply get comfortable, breathe deeply at a pace comfortable for you and relax while listening to this anxiety melting music. You can find more resources to help with Anxiety &amp; Stress here - <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-hypnosis-program/\"><strong>Anxiety &amp; Stress Help.</strong></a>\r\n<div class=\"embed-container\"></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep </strong>Relaxation<strong> Hypnosis Program</strong> </span></h4>\r\nFind a comfortable place to relax, breath nicely and let you subconscious mind guide you to relax while listening to this calming audio track.\r\n<div class=\"embed-container\"></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply right click and save</strong>\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep Sleep Hypnosis Program</strong></span></h4>\r\nA simple way to relax and move towards natural sleep. Follow this track with your mind allowing your conscious mind to drift away naturally.\r\n<div class=\"embed-container\"></div>\r\nYou can download the <a href=\"http://www.newcastle-hypnotherapy.com/downloads/sleep.mp3\"><strong>Deep Sleep Hypnosis Audio Program Here</strong></a>. Simply Right Click &amp; Save\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','FREE TOOLS & RESOURCES','','inherit','closed','closed','','471-revision-v1','','','2019-01-28 13:53:06','2019-01-28 13:53:06','',471,'https://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(2544,1,'2019-01-28 13:52:16','2019-01-28 13:52:16','<h4>Here are some free tools you may find useful for anxiety, stress, relaxation, good mental health and so much more. New resources are added on a regular basis.\r\n\r\n<span style=\"color: #008000;\"><strong>The Visualisation Meditation Excercise.</strong></span></h4>\r\nA simple little meditation excercise that helps the mind to visualise your day, getting the best results and controlingyour emotions.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/g7FwQXxt7wU?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>Relaxing Music To Melt Your Anxiety Away.</strong></span></h4>\r\nSimply get comfortable, breathe deeply at a pace comfortable for you and relax while listening to this anxiety melting music. You can find more resources to help with Anxiety &amp; Stress here - <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-hypnosis-program/\"><strong>Anxiety &amp; Stress Help.</strong></a>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/NBbm8fYLSjM?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep </strong>Relaxation<strong> Hypnosis Program</strong> </span></h4>\r\nFind a comfortable place to relax, breath nicely and let you subconcious mind guide you to relax while listening to this calming audio track.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply right click and save</strong>\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep Sleep Hypnosis Program</strong></span></h4>\r\nA simple way to relax and move towards natural sleep. Follow this track with your mind allowing your concious mind to drift away naturally.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\nYou can download the <a href=\"http://www.newcastle-hypnotherapy.com/downloads/sleep.mp3\"><strong>Deep Sleep Hypnosis Audio Program Here</strong></a>. Simply Right Click &amp; Save\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','FREE TOOLS & RESOURCES','','inherit','closed','closed','','471-revision-v1','','','2019-01-28 13:52:16','2019-01-28 13:52:16','',471,'https://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(2546,1,'2019-01-28 13:53:43','2019-01-28 13:53:43','Here are some free tools you may find useful for anxiety, stress, relaxation, good mental health and so much more. New resources are added on a regular basis.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>The Visualisation Meditation Excercise.</strong></span></h4>\r\nA simple little meditation exercise that helps the mind to visualise your day, getting the best results and controlling your emotions.\r\n<div class=\"embed-container\"></div>\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>Relaxing Music To Melt Your Anxiety Away.</strong></span></h4>\r\nSimply get comfortable, breathe deeply at a pace comfortable for you and relax while listening to this anxiety melting music. You can find more resources to help with Anxiety &amp; Stress here - <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-hypnosis-program/\"><strong>Anxiety &amp; Stress Help.</strong></a>\r\n<div class=\"embed-container\"></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep </strong>Relaxation<strong> Hypnosis Program</strong> </span></h4>\r\nFind a comfortable place to relax, breath nicely and let you subconscious mind guide you to relax while listening to this calming audio track.\r\n<div class=\"embed-container\"></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply right click and save</strong>\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep Sleep Hypnosis Program</strong></span></h4>\r\nA simple way to relax and move towards natural sleep. Follow this track with your mind allowing your conscious mind to drift away naturally.\r\n<div class=\"embed-container\"></div>\r\nYou can download the <a href=\"http://www.newcastle-hypnotherapy.com/downloads/sleep.mp3\"><strong>Deep Sleep Hypnosis Audio Program Here</strong></a>. Simply Right Click &amp; Save\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','FREE TOOLS & RESOURCES','','inherit','closed','closed','','471-revision-v1','','','2019-01-28 13:53:43','2019-01-28 13:53:43','',471,'https://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(2547,1,'2019-01-28 13:54:55','2019-01-28 13:54:55','<h4>Here are some free tools you may find useful for anxiety, stress, relaxation, good mental health and so much more. New resources are added on a regular basis.</h4>\r\n<span style=\"color: #008000;\"><strong>The Visualisation Meditation Excercise.</strong></span>\r\n\r\nA simple little meditation exercise that helps the mind to visualise your day, getting the best results and controlling your emotions.\r\n<div class=\"embed-container\"></div>\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>Relaxing Music To Melt Your Anxiety Away.</strong></span></h4>\r\nSimply get comfortable, breathe deeply at a pace comfortable for you and relax while listening to this anxiety melting music. You can find more resources to help with Anxiety &amp; Stress here - <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-hypnosis-program/\"><strong>Anxiety &amp; Stress Help.</strong></a>\r\n<div class=\"embed-container\"></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep </strong>Relaxation<strong> Hypnosis Program</strong> </span></h4>\r\nFind a comfortable place to relax, breath nicely and let you subconscious mind guide you to relax while listening to this calming audio track.\r\n<div class=\"embed-container\"></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply right click and save</strong>\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep Sleep Hypnosis Program</strong></span></h4>\r\nA simple way to relax and move towards natural sleep. Follow this track with your mind allowing your conscious mind to drift away naturally.\r\n<div class=\"embed-container\"></div>\r\nYou can download the <a href=\"http://www.newcastle-hypnotherapy.com/downloads/sleep.mp3\"><strong>Deep Sleep Hypnosis Audio Program Here</strong></a>. Simply Right Click &amp; Save\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','FREE TOOLS & RESOURCES','','inherit','closed','closed','','471-revision-v1','','','2019-01-28 13:54:55','2019-01-28 13:54:55','',471,'https://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(2548,1,'2019-01-28 13:56:08','2019-01-28 13:56:08','<h4>Here are some free tools you may find useful for anxiety, stress, relaxation, good mental health and so much more. New resources are added on a regular basis.\n\n<span style=\"color: #008000;\"><strong>The Visualisation Meditation Excercise.</strong></span></h4>\n&nbsp;\n\n&nbsp;\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/g7FwQXxt7wU?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\n&nbsp;\n\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\n<h4><span style=\"color: #008000;\"><strong>Relaxing Music To Melt Your Anxiety Away.</strong></span></h4>\nSimply get comfortable, breathe deeply at a pace comfortable for you and relax while listening to this anxiety melting music. You can find more resources to help with Anxiety &amp; Stress here - <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-hypnosis-program/\"><strong>Anxiety &amp; Stress Help.</strong></a>\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/NBbm8fYLSjM?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></div>\n&nbsp;\n\n&nbsp;\n\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\n<h4><span style=\"color: #008000;\"><strong>The Deep </strong>Relaxation<strong> Hypnosis Program</strong> </span></h4>\nFind a comfortable place to relax, breath nicely and let you subconcious mind guide you to relax while listening to this calming audio track.\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\n<strong>\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply right click and save</strong>\n\n&nbsp;\n\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\n<h4><span style=\"color: #008000;\"><strong>The Deep Sleep Hypnosis Program</strong></span></h4>\nA simple way to relax and move towards natural sleep. Follow this track with your mind allowing your concious mind to drift away naturally.\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\nYou can download the <a href=\"http://www.newcastle-hypnotherapy.com/downloads/sleep.mp3\"><strong>Deep Sleep Hypnosis Audio Program Here</strong></a>. Simply Right Click &amp; Save\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','FREE TOOLS & RESOURCES','','inherit','closed','closed','','471-revision-v1','','','2019-01-28 13:56:08','2019-01-28 13:56:08','',471,'https://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(2549,1,'2019-01-28 13:56:46','2019-01-28 13:56:46','Here are some free tools you may find useful for anxiety, stress, relaxation, good mental health and so much more. New resources are added on a regular basis.\r\n<h4><span style=\"color: #008000;\"><strong>The Visualisation Meditation Excercise.</strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/g7FwQXxt7wU?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>Relaxing Music To Melt Your Anxiety Away.</strong></span></h4>\r\nSimply get comfortable, breathe deeply at a pace comfortable for you and relax while listening to this anxiety melting music. You can find more resources to help with Anxiety &amp; Stress here - <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-hypnosis-program/\"><strong>Anxiety &amp; Stress Help.</strong></a>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/NBbm8fYLSjM?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep </strong>Relaxation<strong> Hypnosis Program</strong> </span></h4>\r\nFind a comfortable place to relax, breath nicely and let you subconcious mind guide you to relax while listening to this calming audio track.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply right click and save</strong>\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep Sleep Hypnosis Program</strong></span></h4>\r\nA simple way to relax and move towards natural sleep. Follow this track with your mind allowing your concious mind to drift away naturally.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\nYou can download the <a href=\"http://www.newcastle-hypnotherapy.com/downloads/sleep.mp3\"><strong>Deep Sleep Hypnosis Audio Program Here</strong></a>. Simply Right Click &amp; Save\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','FREE TOOLS & RESOURCES','','inherit','closed','closed','','471-revision-v1','','','2019-01-28 13:56:46','2019-01-28 13:56:46','',471,'https://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(2550,1,'2019-01-28 13:57:48','2019-01-28 13:57:48','Here are some free tools you may find useful for anxiety, stress, relaxation, good mental health and so much more. New resources are added on a regular basis.\r\n<h4><span style=\"color: #008000;\"><strong>The Visualisation Meditation Excercise.</strong></span></h4>\r\nA simple meditation excercise to train your mind to create your perfect day.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/g7FwQXxt7wU?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>Relaxing Music To Melt Your Anxiety Away.</strong></span></h4>\r\nSimply get comfortable, breathe deeply at a pace comfortable for you and relax while listening to this anxiety melting music. You can find more resources to help with Anxiety &amp; Stress here - <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-hypnosis-program/\"><strong>Anxiety &amp; Stress Help.</strong></a>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/NBbm8fYLSjM?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep </strong>Relaxation<strong> Hypnosis Program</strong> </span></h4>\r\nFind a comfortable place to relax, breath nicely and let you subconcious mind guide you to relax while listening to this calming audio track.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply right click and save</strong>\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep Sleep Hypnosis Program</strong></span></h4>\r\nA simple way to relax and move towards natural sleep. Follow this track with your mind allowing your concious mind to drift away naturally.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\nYou can download the <a href=\"http://www.newcastle-hypnotherapy.com/downloads/sleep.mp3\"><strong>Deep Sleep Hypnosis Audio Program Here</strong></a>. Simply Right Click &amp; Save\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','FREE TOOLS & RESOURCES','','inherit','closed','closed','','471-revision-v1','','','2019-01-28 13:57:48','2019-01-28 13:57:48','',471,'https://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(2551,1,'2019-01-28 17:13:41','2019-01-28 17:13:41','Here are some free tools you may find useful for anxiety, stress, relaxation, good mental health and so much more. New resources are added on a regular basis.\r\n<h4><span style=\"color: #008000;\"><strong>Relaxing Meditative Music To Aid Good Sleep.</strong></span></h4>\r\nRelax and enjoy this meditative music to give you a great nights sleep.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/qZ6xd25ADIM?rel=0\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></div>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>The Visualisation Meditation Excercise.</strong></span></h4>\r\nA simple meditation excercise to train your mind to create your perfect day.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/g7FwQXxt7wU?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>Relaxing Music To Melt Your Anxiety Away.</strong></span></h4>\r\nSimply get comfortable, breathe deeply at a pace comfortable for you and relax while listening to this anxiety melting music. You can find more resources to help with Anxiety &amp; Stress here - <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-hypnosis-program/\"><strong>Anxiety &amp; Stress Help.</strong></a>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/NBbm8fYLSjM?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep </strong>Relaxation<strong> Hypnosis Program</strong> </span></h4>\r\nFind a comfortable place to relax, breath nicely and let you subconcious mind guide you to relax while listening to this calming audio track.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply right click and save</strong>\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep Sleep Hypnosis Program</strong></span></h4>\r\nA simple way to relax and move towards natural sleep. Follow this track with your mind allowing your concious mind to drift away naturally.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\nYou can download the <a href=\"http://www.newcastle-hypnotherapy.com/downloads/sleep.mp3\"><strong>Deep Sleep Hypnosis Audio Program Here</strong></a>. Simply Right Click &amp; Save\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','FREE TOOLS & RESOURCES','','inherit','closed','closed','','471-revision-v1','','','2019-01-28 17:13:41','2019-01-28 17:13:41','',471,'https://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(2552,1,'2019-01-28 17:35:46','2019-01-28 17:35:46','Here are some free tools you may find useful for anxiety, stress, relaxation, good mental health and so much more. New resources are added on a regular basis.\r\n\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/JRxni5AZ4lk?rel=0\" frameborder=\"0\" \" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></div>\r\n&nbsp;\r\n\r\n<h4><span style=\"color: #008000;\"><strong>Relaxing Meditative Music To Aid Good Sleep.</strong></span></h4>\r\nRelax and enjoy this meditative music to give you a great nights sleep.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/qZ6xd25ADIM?rel=0\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></div>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>The Visualisation Meditation Excercise.</strong></span></h4>\r\nA simple meditation excercise to train your mind to create your perfect day.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/g7FwQXxt7wU?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>Relaxing Music To Melt Your Anxiety Away.</strong></span></h4>\r\nSimply get comfortable, breathe deeply at a pace comfortable for you and relax while listening to this anxiety melting music. You can find more resources to help with Anxiety &amp; Stress here - <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-hypnosis-program/\"><strong>Anxiety &amp; Stress Help.</strong></a>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/NBbm8fYLSjM?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep </strong>Relaxation<strong> Hypnosis Program</strong> </span></h4>\r\nFind a comfortable place to relax, breath nicely and let you subconcious mind guide you to relax while listening to this calming audio track.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply right click and save</strong>\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep Sleep Hypnosis Program</strong></span></h4>\r\nA simple way to relax and move towards natural sleep. Follow this track with your mind allowing your concious mind to drift away naturally.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\nYou can download the <a href=\"http://www.newcastle-hypnotherapy.com/downloads/sleep.mp3\"><strong>Deep Sleep Hypnosis Audio Program Here</strong></a>. Simply Right Click &amp; Save\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','FREE TOOLS & RESOURCES','','inherit','closed','closed','','471-revision-v1','','','2019-01-28 17:35:46','2019-01-28 17:35:46','',471,'https://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(2553,1,'2019-01-28 17:37:21','2019-01-28 17:37:21','<h4>Here are some free tools you may find useful for anxiety, stress, relaxation, good mental health and so much more. New resources are added on a regular basis.\r\n\r\n<span style=\"color: #008000;\"><strong>Soothing Music For Anxiety &amp; Stress</strong></span></h4>\r\nSimply take some time for yourself, relax and allow your mind to wander.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/JRxni5AZ4lk?rel=0\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></div>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Relaxing Meditative Music To Aid Good Sleep.</strong></span></h4>\r\nRelax and enjoy this meditative music to give you a great nights sleep.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/qZ6xd25ADIM?rel=0\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></div>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>The Visualisation Meditation Excercise.</strong></span></h4>\r\nA simple meditation excercise to train your mind to create your perfect day.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/g7FwQXxt7wU?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>Relaxing Music To Melt Your Anxiety Away.</strong></span></h4>\r\nSimply get comfortable, breathe deeply at a pace comfortable for you and relax while listening to this anxiety melting music. You can find more resources to help with Anxiety &amp; Stress here - <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-hypnosis-program/\"><strong>Anxiety &amp; Stress Help.</strong></a>\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/NBbm8fYLSjM?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep </strong>Relaxation<strong> Hypnosis Program</strong> </span></h4>\r\nFind a comfortable place to relax, breath nicely and let you subconcious mind guide you to relax while listening to this calming audio track.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/u5H27lt2uiI?rel=0&amp;showinfo=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\n<strong>\r\nYou can also <a href=\"http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3\">download just the audio here</a>.    Simply right click and save</strong>\r\n\r\n&nbsp;\r\n\r\n<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep Sleep Hypnosis Program</strong></span></h4>\r\nA simple way to relax and move towards natural sleep. Follow this track with your mind allowing your concious mind to drift away naturally.\r\n<div class=\"embed-container\"><iframe src=\"https://www.youtube.com/embed/n6p6yGpvc7M?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></div>\r\nYou can download the <a href=\"http://www.newcastle-hypnotherapy.com/downloads/sleep.mp3\"><strong>Deep Sleep Hypnosis Audio Program Here</strong></a>. Simply Right Click &amp; Save\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','FREE TOOLS & RESOURCES','','inherit','closed','closed','','471-revision-v1','','','2019-01-28 17:37:21','2019-01-28 17:37:21','',471,'https://www.newcastle-hypnotherapy.com/471-revision-v1/',0,'revision','',0),(2554,1,'2019-01-28 19:32:56','2019-01-28 19:32:56','<img class=\"alignleft size-medium wp-image-326\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/hypnosis-edit-300x169.jpg\" alt=\"Secrets Of Self Hypnosis\" width=\"300\" height=\"169\" />\r\n<h4><strong><span style=\"color: #008000;\">Self Hypnosis Introduction Workshop</span>\r\n</strong></h4>\r\n<strong>Wednesday 6th Feb 2019,</strong>\r\n<strong>7.30 to 10.00 pm,</strong>\r\n<strong>Newcastle Hypnotherapy - The Vault.</strong>\r\n<strong>Advance booking required.</strong>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Secrets Of Self-Hypnosis Workshop</span>\r\n</strong></h2>\r\nBack by popular request, the introduction to self-hypnosis evening.\r\nIn this practical, fun workshop you will learn a new set of skills around self-hypnosis.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>hypnotic language patterns and phrases</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\nPlaces are just £10 each and limited to just 12 participants. Handouts, tea, coffee and snacks are included.\r\nOnce you have booked your place, helpful info will be sent out just before the event.\r\nBooking is strictly by advance booking only and on a first come, first served basis.\r\n<img class=\"alignleft size-medium wp-image-2458\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/IMG_20180519_154141-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/secrets-of-self-hypnosis/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self-Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2019-01-28 19:32:56','2019-01-28 19:32:56','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(2556,1,'2019-01-30 10:04:35','2019-01-30 10:04:35','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Newcastle Hypnotherapy\" width=\"300\" height=\"198\" />Very simply, we help people to make positive changes using hypnosis and NLP.</strong> <strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; more.</strong></span></p>\r\n&nbsp;\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland &amp; South Shields</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-01-30 10:04:35','2019-01-30 10:04:35','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2592,1,'2019-02-09 16:18:06','2019-02-09 16:18:06','&nbsp;\r\n<div class=\"_5w1r _3_om _5wdf\">\r\n<div class=\"_4gx_\">\r\n<h4><span style=\"color: #008000;\"><strong>Learn even more powerful tips &amp; techniques\r\n</strong></span></h4>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYou can unsubscribe from the newsletter at any time.\r\n<h4 class=\"_1aa6\"><span style=\"color: #008000;\"><strong><span class=\"_5yl5\">EFT Tapping Made Simple &amp; Easy\r\n</span></strong></span></h4>\r\nTapping is a powerful technique that is most useful for many of our clients. However, there are many types of tapping.\r\nHere is the most powerful, simple tapping routine that we have found.\r\n\r\n</div>\r\n</div>\r\nEFT or Emotional Freedom Technique can be used to help with many issues and problems.\r\nWe find it is extremely effective for pain, both physical pain or emotional pain, cravings, anxiety, stress and many other issues.\r\nUsing this technique we can usually reduce the issue from a 10 to a 1 or 0 in 10 minutes or less\r\n<h4><strong><span style=\"color: #008000;\">Learning The Basics Of EFT Tapping</span></strong></h4>\r\nWatch the short EFT video above and learn the tapping points to tap on.\r\nMake a list of any past and present issues that may be causing emotional distress, no matter how small.\r\nSpend 10 to 15 minutes per day working through all of these and the more you practice the easier it becomes.\r\n\r\nLet us know how you get on by commenting below.\r\n<h4><span style=\"color: #008000;\"><strong>Would you like to work with us individually?</strong></span></h4>\r\nWe do work with a small number of clients on a private basis.\r\nCall <strong>07568 455 809</strong> today to get started or <span style=\"color: #ff6600;\"><strong>Click Here</strong></span> to book a free phone consultation.\r\nWe can then discuss your issues and look at the best way forward for you.\r\n<h4><span style=\"color: #008000;\"><strong>What did The NHS Dr say about our services?</strong></span></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n\r\nCall <strong>07568 455 809</strong> today to get started or <strong>Click Here</strong> to book a free phone consultation.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EFT Tapping Made Simple & Easy','','publish','open','open','','eft-tapping-made-simple-easy','','','2019-06-30 19:12:44','2019-06-30 19:12:44','',0,'https://www.newcastle-hypnotherapy.com/?p=2592',0,'post','',0),(2558,1,'2019-01-31 11:07:55','2019-01-31 11:07:55','https://www.youtube.com/watch?v=UnamAk-G42Y\r\n\r\n<strong> Freedom From Anxiety &amp; Stress Workshop</strong>\r\n<span style=\"color: #ff6600;\"><strong>Wednesday 23rd October</strong></span>\r\n7.30 pm to 10 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\n£15.00 Per Person\r\n<strong>Advance booking is required.\r\n</strong><strong>\r\n</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you suffer from Anxiety, Stress, Low Self-Confidence or Struggle with Worry?\r\n</span></strong><span style=\"color: #000000;\">Anxiety &amp; Stress are becoming a problem for more and more people, making life unhappy and damaging health<strong>.</strong></span>\r\n\r\nThankfully there are many things you can do to take control of anxiety and stress.\r\nSimple, powerful techniques are helping people to take charge of their lives and replace anxiety &amp; stress with feelings of confidence, strength and control.<strong><span style=\"color: #008000;\">\r\n</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">The Freedom From Anxiety &amp; Stress Workshop</span></strong></h2>\r\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, Reduce <span style=\"color: #ff6600;\">Stress</span> while building <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety &amp; stress in yourself and others</li>\r\n 	<li>recognise your triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make your anxiety, stress &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety, stress &amp; worry patterns</li>\r\n 	<li>use skills to reduce negative states as soon as they appear</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\n<strong>This Freedom From Anxiety &amp; Stress Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></span></strong>\r\n\r\n<strong>To learn these powerful skills to help with anxiety, stress &amp; self-confidence simply book your place below.</strong>\r\nPlaces are limited to just 20 people and accepted on a first come first served basis.\r\n<h4><strong><span style=\"color: #008000;\">You can read client reviews below, on this page</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Want To Conquer You Anxiety &amp; Stress Even Faster?</strong></span></h4>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark works with a number of clients on an individual basis each week and helps works with many other issues and challenges.\r\n<strong>To arrange your free consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”','Freedom From Anxiety & Stress Workshop','','publish','closed','closed','','anxiety-freedom-workshop','','','2019-09-13 13:53:31','2019-09-13 13:53:31','',0,'https://www.newcastle-hypnotherapy.com/?page_id=2558',0,'page','',0),(2559,1,'2019-01-31 09:40:10','2019-01-31 09:40:10','','anxiety freedom workshop','','inherit','open','closed','','anxiety-freedom-workshop','','','2019-01-31 09:40:10','2019-01-31 09:40:10','',2558,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/anxiety-freedom-workshop.jpg',0,'attachment','image/jpeg',0),(2560,1,'2019-01-31 10:51:10','2019-01-31 10:51:10','Anxiety Freedom Workshop\r\nWednesday 20th Feb. 7. 30 pm to 9.30 pm\r\nTaking Place at The Vault, Wallsend.\r\nHot drinks &amp; snacks included\r\nThis workshop is limited to just 20 participants\r\n\r\nDo you suffer with anxiety? Do you help someone with anxiety?\r\nThis Wednesday Workshop is an introduction to Anxiety Freedom Techniques that can successfully help to reduce or conquer anxiety.\r\n\r\nDuring this workshop you will learn Anxiety Freedom Techniques to,\r\n<ul>\r\n 	<li>gain awarness of anxiety in yourself and others</li>\r\n 	<li>recognise anxiety triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety on your body &amp; mind</li>\r\n 	<li>discover which foods make anxiety worse</li>\r\n</ul>\r\nYou will then move on to learn to\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety patterns</li>\r\n 	<li>use skills to reduce anxiety as soon as it appears</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activites and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n</ul>\r\nThis Anxiety Freedom Workshop will be conducted by Mark Morley, a specialist','Anxiety Freedom Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-01-31 10:51:10','2019-01-31 10:51:10','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2561,1,'2019-01-31 11:01:08','2019-01-31 11:01:08','Anxiety Freedom Workshop\r\nWednesday 20th Feb. 7. 30 pm to 9.30 pm\r\nTaking Place at The Vault, Wallsend.\r\nHot drinks &amp; snacks included\r\nThis workshop is limited to just 20 participants. £10 per person.\r\nAdvance booking is required.\r\n\r\nDo you suffer from anxiety? Do you help someone with anxiety?\r\nThis Wednesday Workshop is an introduction to Anxiety Freedom Techniques that can successfully help to reduce or conquer anxiety.\r\n\r\nDuring this workshop you will learn Anxiety Freedom Techniques to,\r\n<ul>\r\n 	<li>gain awareness of anxiety in yourself and others</li>\r\n 	<li>recognise anxiety triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety on your body &amp; mind</li>\r\n 	<li>discover which foods make anxiety worse</li>\r\n</ul>\r\nYou will then move on to learn to\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety patterns</li>\r\n 	<li>use skills to reduce anxiety as soon as it appears</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n</ul>\r\nThis Anxiety Freedom Workshop will be led by Mark Morley, a specialist in anxiety issues with <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></strong></span>\r\n\r\nThe Wednesday Workshops are non-profit events that share life-enhancing skills including Self-Hypnosis, Neuro-linguistic Programming and Emotional Freedom Technique.\r\n\r\nTo join and learn these powerful skills to help with anxiety simply book your place below.\r\nPlaces are limited and accepted on a first come first served basis.\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTo learn about the other events simply join the newsletter.\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />','Anxiety Freedom Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-01-31 11:01:08','2019-01-31 11:01:08','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2562,1,'2019-01-31 11:03:35','2019-01-31 11:03:35','<img class=\"alignleft size-medium wp-image-2559\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/anxiety-freedom-workshop-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" /><strong>Anxiety Freedom Workshop</strong>\r\nWednesday 20th Feb. 7. 30 pm to 9.30 pm\r\nTaking Place at The Vault, Wallsend.\r\nHot drinks &amp; snacks included\r\nThis workshop is limited to just 20 participants. £10 per person.\r\n<strong>Advance booking is required. </strong>See below<strong>\r\n</strong>\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Freedom Workshop</span></strong></h4>\r\n<strong>Do you suffer from anxiety? Do you help someone with anxiety?</strong>\r\nThis Wednesday Workshop is an introduction to Anxiety Freedom Techniques that can successfully help to reduce or conquer anxiety.\r\n\r\nDuring this workshop you will learn Anxiety Freedom Techniques to,\r\n<ul>\r\n 	<li>gain awareness of anxiety in yourself and others</li>\r\n 	<li>recognise anxiety triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety on your body &amp; mind</li>\r\n 	<li>discover which foods make anxiety worse</li>\r\n</ul>\r\nYou will then move on to learn to\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety patterns</li>\r\n 	<li>use skills to reduce anxiety as soon as it appears</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n</ul>\r\nThis Anxiety Freedom Workshop will be led by Mark Morley, a specialist in anxiety issues with <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></strong></span>\r\n\r\nThe Wednesday Workshops are non-profit events that share life-enhancing skills including Self-Hypnosis, Neuro-linguistic Programming and Emotional Freedom Technique.\r\n\r\nTo join and learn these powerful skills to help with anxiety simply book your place below.\r\nPlaces are limited and accepted on a first come first served basis.\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTo learn about the other events simply join the newsletter.\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />','Anxiety Freedom Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-01-31 11:03:35','2019-01-31 11:03:35','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2563,1,'2019-01-31 11:07:55','2019-01-31 11:07:55','<img class=\"alignleft size-medium wp-image-2559\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/anxiety-freedom-workshop-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" /><strong>Anxiety Freedom Workshop</strong>\r\nWednesday 20th Feb. 7. 30 pm to 9.30 pm\r\nTaking Place at The Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\nThis workshop is limited to just 20 participants. £10 per person.\r\n<strong>Advance booking is required. </strong>See below<strong>.\r\n</strong>\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Freedom Workshop</span></strong></h4>\r\n<strong>Do you suffer from anxiety? Do you help someone with anxiety?</strong>\r\nThis Wednesday Workshop is an introduction to Anxiety Freedom Techniques that can successfully help to reduce or conquer anxiety.\r\n\r\n<strong>During this workshop, you will learn Anxiety Freedom Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety in yourself and others</li>\r\n 	<li>recognise anxiety triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety on your body &amp; mind</li>\r\n 	<li>discover which foods make anxiety worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety patterns</li>\r\n 	<li>use skills to reduce anxiety as soon as it appears</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n</ul>\r\nThis Anxiety Freedom Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></strong></span>\r\n\r\nThe Wednesday Workshops are non-profit events that share life-enhancing skills including Self-Hypnosis, Neuro-linguistic Programming and Emotional Freedom Technique.\r\n\r\n<strong>To join and learn these powerful skills to help with anxiety simply book your place below.</strong>\r\nPlaces are limited and accepted on a first come first served basis.\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />','Anxiety Freedom Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-01-31 11:07:55','2019-01-31 11:07:55','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2564,1,'2019-01-31 11:30:30','2019-01-31 11:30:30','<ul>\r\n 	<li><strong> <img class=\"size-medium wp-image-2600 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety-300x199.jpg\" alt=\"Freedom From Anxiety &amp; Stress Workshop\" width=\"300\" height=\"199\" /></strong><!--more--></li>\r\n</ul>\r\n<strong>Terms &amp; Conditions Of Booking.</strong>\r\n\r\n<strong>Bookings.</strong> Bookings are taken strictly on a first come first served basis and your booking is only secured once payment is complete.\r\n<strong>Booking In Advance.</strong> We ask everyone to book and pay in advance please as this reduces admin work and allows us to focus on the workshop in progress.\r\n<strong>Cancellations &amp; Refunds.</strong> If you are unable to attend you can transfer your place to someone else and it is helpful if you email us to let us know who you have transferred your place.\r\nWe do not offer refunds if you are unable to attend.\r\n\r\nTo learn more about other events simply join the newsletter below.\r\nYour privacy is always safe and you can leave the newsletter at any time.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','Anxiety &amp; Stress Workshop Booking Page','<strong>Book your place for this workshop here.</strong>\r\nYou have the option to pay by Card, PayPal or Bank Transfer.\r\nBooking by bank transfer must be completed within 30 mins.\r\n\r\nAvailability - Spaces are limited to just 20 people and bookings are strictly taken on a 1st come first served basis.','publish','closed','closed','','anxiety-freedom-introduction-workshop','','','2019-09-13 21:16:00','2019-09-13 21:16:00','',0,'https://www.newcastle-hypnotherapy.com/?post_type=product&#038;p=2564',0,'product','',0),(2858,1,'2019-09-13 14:50:55','2019-09-13 14:50:55','<ul>\n 	<li><strong> <img class=\"size-medium wp-image-2600 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety-300x199.jpg\" alt=\"Freedom From Anxiety &amp; Stress Workshop\" width=\"300\" height=\"199\" /></strong><!--more--></li>\n</ul>\n<strong>Terms &amp; Conditions Of Booking.</strong>\n\n<strong>Bookings.</strong> Bookings are taken strictly on a first come first served basis and your booking is only secured once payment is complete.\n<strong>Booking In Advance.</strong> We ask everyone to book and pay in advance please as this reduces admin work and allows us to focus on the workshop in progress.\n<strong>Cancellations &amp; Refunds.</strong> If you are unable to attend you can transfer your place to someone else and it is helpful if you email us to let us know who you have transferred your place.\nWe do not offer refunds if you are unable to attend.\n\nTo learn more about other events simply join the newsletter below.\nYour privacy is always safe and you can leave the newsletter at any time.\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','Anxiety &amp; Stress Workshop Booking Page','<p><strong>Book your place for this workshop here.</strong><br>You have the option to pay by Card, PayPal or Bank Transfer.<br>Booking by bank transfer must be completed within 30 mins.</p><p>Availability - Spaces are limited to just 20 people and bookings are strictly taken on a 1st come first served basis.</p>','inherit','closed','closed','','2564-autosave-v1','','','2019-09-13 14:50:55','2019-09-13 14:50:55','',2564,'https://www.newcastle-hypnotherapy.com/2564-autosave-v1/',0,'revision','',0),(2565,1,'2019-06-02 13:30:39','2019-06-02 13:30:39','&nbsp;\n\n<strong> Freedom From Anxiety &amp; Stress Workshop</strong>\n<span style=\"color: #ff6600;\"><strong>Wednesday 5th June</strong></span>\n7.30 pm to 10 pm\nThe Vault, Wallsend.\nHot drinks &amp; snacks included.\n£39 per person (£29 Early Bird Price)\n<strong>Advance booking is required.\n</strong><strong>\n</strong>\n\n<strong><span style=\"color: #008000;\">Do you suffer from Anxiety, Stress, Low Self-Confidence or Struggle with Worry?\n</span></strong><span style=\"color: #000000;\">Anxiety &amp; Stress are becoming a problem for more and more people, making life unhappy and damaging health<strong>.</strong></span>\n\nThankfully there are many things you can do to take control of anxiety and stress.\nSimple, powerful techniques are helping people to take charge of their lives and replace anxiety &amp; stress with feelings of confidence, strength and control.<strong><span style=\"color: #008000;\">\n</span></strong>\n<h2><strong><span style=\"color: #008000;\">The Freedom From Anxiety &amp; Stress Workshop</span></strong></h2>\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, Reduce <span style=\"color: #ff6600;\">Stress</span> while building <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\n\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\n<ul>\n 	<li>gain awareness of anxiety &amp; stress in yourself and others</li>\n 	<li>recognise your triggers and anchors</li>\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\n 	<li>discover which foods can make your anxiety, stress &amp; moods worse</li>\n</ul>\n<strong>You will then move on to learn to</strong>\n<ul>\n 	<li>use powerful breathing techniques to reduce anxiety</li>\n 	<li>interrupt &amp; stop anxiety, stress &amp; worry patterns</li>\n 	<li>use skills to reduce negative states as soon as they appear</li>\n 	<li>relax on demand and stay calm in stressful situations</li>\n 	<li>use activities and recreation to keep anxiety away</li>\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\n 	<li>bring on feelings of self-confidence on demand.</li>\n</ul>\n<strong>This Freedom From Anxiety &amp; Stress Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></span></strong>\n\n<strong>To learn these powerful skills to help with anxiety, stress &amp; self-confidence simply book your place below.</strong>\nPlaces are limited to just 20 people and accepted on a first come first served basis.\n<h4><strong><span style=\"color: #008000;\">You can read client reviews below, on this page</span></strong>\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a></h4>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<strong>To learn about the other events simply join the newsletter.</strong>\nYour privacy is always safe and you can remove yourself at any time\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\n\n&nbsp;\n\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<h4><span style=\"color: #008000;\"><strong>Want To Conquer You Anxiety &amp; Stress Even Faster?</strong></span></h4>\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\nMark works with a number of clients on an individual basis each week and helps works with many other issues and challenges.\n<strong>To arrange your free consultation call 07568 455 809, leaving a message if required.</strong>\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\n\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\n\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\n\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\n<strong>\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”','Freedom From Anxiety & Stress Workshop','','inherit','closed','closed','','2558-autosave-v1','','','2019-06-02 13:30:39','2019-06-02 13:30:39','',2558,'https://www.newcastle-hypnotherapy.com/2558-autosave-v1/',0,'revision','',0),(2845,1,'2019-05-13 13:15:40','2019-05-13 13:15:40','<img class=\"alignleft size-medium wp-image-2600\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /><strong> Freedom From Anxiety &amp; Stress Workshop</strong>\r\nWednesday 5th June\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\n£20 per person (£15 Early Bird Price\r\n<strong>Advance booking is required.\r\n</strong><strong>\r\n</strong>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Freedom Workshop</span></strong></h2>\r\n<strong>Do you suffer from <span style=\"color: #ff6600;\">Anxiety? Low Self-Confidence? Struggle with Worry?\r\n</span></strong>\r\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, build <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety in yourself and others</li>\r\n 	<li>recognise anxiety triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make anxiety &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety &amp; worry patterns</li>\r\n 	<li>use skills to reduce anxiety as soon as it appears</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\nThis Anxiety Freedom Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></strong></span>\r\n\r\nThe Wednesday Workshops are non-profit events that share life-enhancing skills including Self-Hypnosis, Neuro-linguistic Programming and Emotional Freedom Technique.\r\n<h4><strong>To join and learn these powerful skills to help with anxiety simply book your place below.</strong>\r\nPlaces are limited and accepted on a first come first served basis.</h4>\r\n<strong><span style=\"color: #008000;\">You can read client reviews below.</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong></span>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”','Anxiety Freedom Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-05-13 13:15:40','2019-05-13 13:15:40','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2566,1,'2019-01-31 11:31:25','2019-01-31 11:31:25','<img class=\"alignleft size-medium wp-image-2559\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/anxiety-freedom-workshop-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" /><strong>Anxiety Freedom Workshop</strong>\r\nWednesday 20th Feb. 7. 30 pm to 9.30 pm\r\nTaking Place at The Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\nThis workshop is limited to just 20 participants. £10 per person.\r\n<strong>Advance booking is required. </strong>See below<strong>.\r\n</strong>\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Freedom Workshop</span></strong></h4>\r\n<strong>Do you suffer from anxiety? Do you help someone with anxiety?</strong>\r\nThis Wednesday Workshop is an introduction to Anxiety Freedom Techniques that can successfully help to reduce or conquer anxiety.\r\n\r\n<strong>During this workshop, you will learn Anxiety Freedom Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety in yourself and others</li>\r\n 	<li>recognise anxiety triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety on your body &amp; mind</li>\r\n 	<li>discover which foods make anxiety worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety patterns</li>\r\n 	<li>use skills to reduce anxiety as soon as it appears</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n</ul>\r\nThis Anxiety Freedom Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></strong></span>\r\n\r\nThe Wednesday Workshops are non-profit events that share life-enhancing skills including Self-Hypnosis, Neuro-linguistic Programming and Emotional Freedom Technique.\r\n\r\n<strong>To join and learn these powerful skills to help with anxiety simply book your place below.</strong>\r\nPlaces are limited and accepted on a first come first served basis.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>','Anxiety Freedom Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-01-31 11:31:25','2019-01-31 11:31:25','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2567,1,'2019-01-31 11:33:01','2019-01-31 11:33:01','<img class=\"alignleft size-medium wp-image-2559\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/anxiety-freedom-workshop-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" /><strong>Anxiety Freedom Workshop</strong>\r\nWednesday 20th Feb.\r\n7. 30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\nThis workshop is limited to just 20 participants. £10 per person.\r\n<strong>Advance booking is required. </strong>See below<strong>.\r\n</strong>\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Freedom Workshop</span></strong></h4>\r\n<strong>Do you suffer from anxiety? Do you help someone with anxiety?</strong>\r\nThis Wednesday Workshop is an introduction to Anxiety Freedom Techniques that can successfully help to reduce or conquer anxiety.\r\n\r\n<strong>During this workshop, you will learn Anxiety Freedom Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety in yourself and others</li>\r\n 	<li>recognise anxiety triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety on your body &amp; mind</li>\r\n 	<li>discover which foods make anxiety worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety patterns</li>\r\n 	<li>use skills to reduce anxiety as soon as it appears</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n</ul>\r\nThis Anxiety Freedom Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></strong></span>\r\n\r\nThe Wednesday Workshops are non-profit events that share life-enhancing skills including Self-Hypnosis, Neuro-linguistic Programming and Emotional Freedom Technique.\r\n\r\n<strong>To join and learn these powerful skills to help with anxiety simply book your place below.</strong>\r\nPlaces are limited and accepted on a first come first served basis.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>','Anxiety Freedom Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-01-31 11:33:01','2019-01-31 11:33:01','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2568,1,'2019-01-31 11:33:34','2019-01-31 11:33:34','<img class=\"alignleft size-medium wp-image-2559\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/anxiety-freedom-workshop-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" /><strong>Anxiety Freedom Workshop</strong>\r\nWednesday 20th Feb.\r\n7. 30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\nThis workshop is limited to just 20 participants. £10 per person.\r\n<strong>Advance booking is required.\r\n</strong>See below<strong>.\r\n</strong>\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Freedom Workshop</span></strong></h4>\r\n<strong>Do you suffer from anxiety? Do you help someone with anxiety?</strong>\r\nThis Wednesday Workshop is an introduction to Anxiety Freedom Techniques that can successfully help to reduce or conquer anxiety.\r\n\r\n<strong>During this workshop, you will learn Anxiety Freedom Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety in yourself and others</li>\r\n 	<li>recognise anxiety triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety on your body &amp; mind</li>\r\n 	<li>discover which foods make anxiety worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety patterns</li>\r\n 	<li>use skills to reduce anxiety as soon as it appears</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n</ul>\r\nThis Anxiety Freedom Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></strong></span>\r\n\r\nThe Wednesday Workshops are non-profit events that share life-enhancing skills including Self-Hypnosis, Neuro-linguistic Programming and Emotional Freedom Technique.\r\n\r\n<strong>To join and learn these powerful skills to help with anxiety simply book your place below.</strong>\r\nPlaces are limited and accepted on a first come first served basis.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>','Anxiety Freedom Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-01-31 11:33:34','2019-01-31 11:33:34','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2569,1,'2019-01-31 11:43:25','2019-01-31 11:43:25','<img class=\"alignleft size-medium wp-image-2559\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/anxiety-freedom-workshop-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" /><strong>Anxiety Freedom Workshop</strong>\r\nWednesday 20th Feb.\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\nThis workshop is limited to just 20 participants. £10 per person.\r\n<strong>Advance booking is required.\r\n</strong>See below<strong>.\r\n</strong>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Freedom Workshop</span></strong></h2>\r\n<strong>Do you suffer from anxiety? Do you help someone with anxiety?</strong>\r\nThis Wednesday Workshop is an introduction to Anxiety Freedom Techniques that can successfully help to reduce or conquer anxiety.\r\n\r\n<strong>During this workshop, you will learn Anxiety Freedom Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety in yourself and others</li>\r\n 	<li>recognise anxiety triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety on your body &amp; mind</li>\r\n 	<li>discover which foods make anxiety worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety patterns</li>\r\n 	<li>use skills to reduce anxiety as soon as it appears</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n</ul>\r\nThis Anxiety Freedom Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></strong></span>\r\n\r\nThe Wednesday Workshops are non-profit events that share life-enhancing skills including Self-Hypnosis, Neuro-linguistic Programming and Emotional Freedom Technique.\r\n\r\n<strong>To join and learn these powerful skills to help with anxiety simply book your place below.</strong>\r\nPlaces are limited and accepted on a first come first served basis.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nWould you like to work with Mark privately to conquer your anxiety and stress issues?\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\nTo arrange your consultation call 07568 455 809, leaving a message if required.\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n\r\n&nbsp;\r\n\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n&nbsp;','Anxiety Freedom Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-01-31 11:43:25','2019-01-31 11:43:25','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2570,1,'2019-01-31 11:44:07','2019-01-31 11:44:07','<img class=\"alignleft wp-image-2559 size-medium\" title=\"Anxiety Freedom Workshop\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/anxiety-freedom-workshop-300x169.jpg\" alt=\"Anxiety Freedom Workshop\" width=\"300\" height=\"169\" /><strong>Anxiety Freedom Workshop</strong>\r\nWednesday 20th Feb.\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\nThis workshop is limited to just 20 participants. £10 per person.\r\n<strong>Advance booking is required.\r\n</strong>See below<strong>.\r\n</strong>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Freedom Workshop</span></strong></h2>\r\n<strong>Do you suffer from anxiety? Do you help someone with anxiety?</strong>\r\nThis Wednesday Workshop is an introduction to Anxiety Freedom Techniques that can successfully help to reduce or conquer anxiety.\r\n\r\n<strong>During this workshop, you will learn Anxiety Freedom Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety in yourself and others</li>\r\n 	<li>recognise anxiety triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety on your body &amp; mind</li>\r\n 	<li>discover which foods make anxiety worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety patterns</li>\r\n 	<li>use skills to reduce anxiety as soon as it appears</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n</ul>\r\nThis Anxiety Freedom Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></strong></span>\r\n\r\nThe Wednesday Workshops are non-profit events that share life-enhancing skills including Self-Hypnosis, Neuro-linguistic Programming and Emotional Freedom Technique.\r\n\r\n<strong>To join and learn these powerful skills to help with anxiety simply book your place below.</strong>\r\nPlaces are limited and accepted on a first come first served basis.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nWould you like to work with Mark privately to conquer your anxiety and stress issues?\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\nTo arrange your consultation call 07568 455 809, leaving a message if required.\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n\r\n&nbsp;\r\n\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n&nbsp;','Anxiety Freedom Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-01-31 11:44:07','2019-01-31 11:44:07','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2600,1,'2019-02-10 19:47:02','2019-02-10 19:47:02','','Freedom From Anxiety & Stress Workshop','','inherit','open','closed','','anxiety-3','','','2019-05-13 13:38:01','2019-05-13 13:38:01','',2558,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety.jpg',0,'attachment','image/jpeg',0),(2572,1,'2019-01-31 20:27:28','2019-01-31 20:27:28','<img class=\"alignleft wp-image-2559 size-medium\" title=\"Anxiety Freedom Workshop\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/anxiety-freedom-workshop-300x169.jpg\" alt=\"Anxiety Freedom Workshop\" width=\"300\" height=\"169\" /><strong>Anxiety Freedom Workshop</strong>\r\nWednesday 20th Feb.\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\nThis workshop is limited to just 20 participants. £10 per person.\r\n<strong>Advance booking is required.\r\n</strong>See below<strong>.\r\n</strong>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Freedom Workshop</span></strong></h2>\r\n<strong>Do you suffer from anxiety? Do you help someone with anxiety?</strong>\r\nThis Wednesday Workshop is an introduction to Anxiety Freedom Techniques that can successfully help to reduce or conquer anxiety.\r\n\r\n<strong>During this workshop, you will learn Anxiety Freedom Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety in yourself and others</li>\r\n 	<li>recognise anxiety triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety on your body &amp; mind</li>\r\n 	<li>discover which foods make anxiety worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety patterns</li>\r\n 	<li>use skills to reduce anxiety as soon as it appears</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n</ul>\r\nThis Anxiety Freedom Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></strong></span>\r\n\r\nThe Wednesday Workshops are non-profit events that share life-enhancing skills including Self-Hypnosis, Neuro-linguistic Programming and Emotional Freedom Technique.\r\n\r\n<strong>To join and learn these powerful skills to help with anxiety simply book your place below.</strong>\r\nPlaces are limited and accepted on a first come first served basis.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Would you like to work with Mark privately to conquer your anxiety and stress issues?</strong></span>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n&nbsp;','Anxiety Freedom Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-01-31 20:27:28','2019-01-31 20:27:28','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2573,1,'2019-01-31 20:28:12','2019-01-31 20:28:12','<img class=\"alignleft wp-image-2559 size-medium\" title=\"Anxiety Freedom Workshop\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/anxiety-freedom-workshop-300x169.jpg\" alt=\"Anxiety Freedom Workshop\" width=\"300\" height=\"169\" /><strong>Anxiety Freedom Workshop</strong>\r\nWednesday 20th Feb.\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\nThis workshop is limited to just 20 participants. £10 per person.\r\n<strong>Advance booking is required.\r\n</strong>See below<strong>.\r\n</strong>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Freedom Workshop</span></strong></h2>\r\n<strong>Do you suffer from anxiety? Do you help someone with anxiety?</strong>\r\nThis Wednesday Workshop is an introduction to Anxiety Freedom Techniques that can successfully help to reduce or conquer anxiety.\r\n\r\n<strong>During this workshop, you will learn Anxiety Freedom Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety in yourself and others</li>\r\n 	<li>recognise anxiety triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety on your body &amp; mind</li>\r\n 	<li>discover which foods make anxiety worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety patterns</li>\r\n 	<li>use skills to reduce anxiety as soon as it appears</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n</ul>\r\nThis Anxiety Freedom Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></strong></span>\r\n\r\nThe Wednesday Workshops are non-profit events that share life-enhancing skills including Self-Hypnosis, Neuro-linguistic Programming and Emotional Freedom Technique.\r\n\r\n<strong>To join and learn these powerful skills to help with anxiety simply book your place below.</strong>\r\nPlaces are limited and accepted on a first come first served basis.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Would you like to work with Mark privately to conquer your anxiety and stress issues?</strong></span>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n&nbsp;','Anxiety Freedom Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-01-31 20:28:12','2019-01-31 20:28:12','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0);
INSERT INTO `wpqj_posts` VALUES (2574,1,'2019-01-31 22:47:02','2019-01-31 22:47:02','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes using hypnosis and NLP.</strong> <strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; more.</strong></span></p>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland &amp; South Shields</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-01-31 22:47:02','2019-01-31 22:47:02','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2575,1,'2019-01-31 22:48:18','2019-01-31 22:48:18','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy. </span></strong></span><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes using hypnosis and NLP.</strong> <strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; more.</strong></span></p>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland &amp; South Shields</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-01-31 22:48:18','2019-01-31 22:48:18','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2576,1,'2019-01-31 22:48:36','2019-01-31 22:48:36','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy. </span></strong></span><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes using hypnosis and NLP.</strong> <strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits, Behaviour &amp; more. </strong></span><iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n&nbsp;\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland &amp; South Shields</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-01-31 22:48:36','2019-01-31 22:48:36','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2577,1,'2019-01-31 22:49:20','2019-01-31 22:49:20','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy. </span></strong></span><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes using hypnosis and NLP.</strong> <strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.</strong></span><iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n&nbsp;\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland &amp; South Shields</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-01-31 22:49:20','2019-01-31 22:49:20','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2578,1,'2019-01-31 22:49:41','2019-01-31 22:49:41','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy. </span></strong></span><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes using hypnosis and NLP.</strong> <strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.</strong></span><iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland &amp; South Shields</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-01-31 22:49:41','2019-01-31 22:49:41','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2579,1,'2019-02-01 07:05:10','2019-02-01 07:05:10','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy.\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland &amp; South Shields</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-02-01 07:05:10','2019-02-01 07:05:10','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2580,1,'2019-02-01 07:06:20','2019-02-01 07:06:20','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist, &amp; Master NLP Practitioner at Newcastle Hypnotherapy.\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland &amp; South Shields</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-02-01 07:06:20','2019-02-01 07:06:20','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2585,1,'2019-02-01 10:30:44','2019-02-01 10:30:44','<iframe src=\"https://www.youtube.com/embed/_jgzp1iTuXs?rel=0&amp;controls=0&amp;showinfo=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h4><strong><span style=\"color: #008000;\">Self Hypnosis Introduction Workshop</span>\r\n</strong></h4>\r\n<strong>Wednesday 6th Feb 2019,</strong>\r\n<strong>7.30 to 10.00 pm,</strong>\r\n<strong>Newcastle Hypnotherapy - The Vault.</strong>\r\n<strong>Advance booking required.</strong>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Secrets Of Self-Hypnosis Workshop</span>\r\n</strong></h2>\r\nBack by popular request, the introduction to self-hypnosis evening.\r\nIn this practical, fun workshop you will learn a new set of skills around self-hypnosis.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>hypnotic language patterns and phrases</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\nPlaces are just £10 each and limited to just 12 participants. Handouts, tea, coffee and snacks are included.\r\nOnce you have booked your place, helpful info will be sent out just before the event.\r\nBooking is strictly by advance booking only and on a first come, first served basis.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/secrets-of-self-hypnosis/\"><img class=\"size-medium wp-image-1659 alignleft\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self-Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2019-02-01 10:30:44','2019-02-01 10:30:44','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(2583,1,'2019-02-01 10:29:35','2019-02-01 10:29:35','<iframe src=\"https://www.youtube.com/embed/_jgzp1iTuXs?rel=0&amp;controls=0&amp;showinfo=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h4><strong><span style=\"color: #008000;\">Self Hypnosis Introduction Workshop</span>\r\n</strong></h4>\r\n<strong>Wednesday 6th Feb 2019,</strong>\r\n<strong>7.30 to 10.00 pm,</strong>\r\n<strong>Newcastle Hypnotherapy - The Vault.</strong>\r\n<strong>Advance booking required.</strong>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Secrets Of Self-Hypnosis Workshop</span>\r\n</strong></h2>\r\nBack by popular request, the introduction to self-hypnosis evening.\r\nIn this practical, fun workshop you will learn a new set of skills around self-hypnosis.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>hypnotic language patterns and phrases</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\nPlaces are just £10 each and limited to just 12 participants. Handouts, tea, coffee and snacks are included.\r\nOnce you have booked your place, helpful info will be sent out just before the event.\r\nBooking is strictly by advance booking only and on a first come, first served basis.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/secrets-of-self-hypnosis/\"><img class=\"size-medium wp-image-1659 alignleft\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self-Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2019-02-01 10:29:35','2019-02-01 10:29:35','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(2581,1,'2019-02-01 09:52:04','2019-02-01 09:52:04','<iframe src=\"https://www.youtube.com/embed/_jgzp1iTuXs?rel=0&amp;controls=0&amp;showinfo=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h4><strong><span style=\"color: #008000;\">Self Hypnosis Introduction Workshop</span>\r\n</strong></h4>\r\n<strong>Wednesday 6th Feb 2019,</strong>\r\n<strong>7.30 to 10.00 pm,</strong>\r\n<strong>Newcastle Hypnotherapy - The Vault.</strong>\r\n<strong>Advance booking required.</strong>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Secrets Of Self-Hypnosis Workshop</span>\r\n</strong></h2>\r\nBack by popular request, the introduction to self-hypnosis evening.\r\nIn this practical, fun workshop you will learn a new set of skills around self-hypnosis.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>hypnotic language patterns and phrases</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\nPlaces are just £10 each and limited to just 12 participants. Handouts, tea, coffee and snacks are included.\r\nOnce you have booked your place, helpful info will be sent out just before the event.\r\nBooking is strictly by advance booking only and on a first come, first served basis.\r\n<img class=\"alignleft size-medium wp-image-2458\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/IMG_20180519_154141-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/secrets-of-self-hypnosis/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self-Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2019-02-01 09:52:04','2019-02-01 09:52:04','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(2582,1,'2019-02-01 09:58:24','2019-02-01 09:58:24','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist &amp; Master NLP Practitioner at Newcastle Hypnotherapy.\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland &amp; South Shields</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n&nbsp;\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n&nbsp;','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-02-01 09:58:24','2019-02-01 09:58:24','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2584,1,'2019-02-01 10:30:12','2019-02-01 10:30:12','<iframe src=\"https://www.youtube.com/embed/_jgzp1iTuXs?rel=0&amp;controls=0&amp;showinfo=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h4><strong><span style=\"color: #008000;\">Self Hypnosis Introduction Workshop</span>\r\n</strong></h4>\r\n<strong>Wednesday 6th Feb 2019,</strong>\r\n<strong>7.30 to 10.00 pm,</strong>\r\n<strong>Newcastle Hypnotherapy - The Vault.</strong>\r\n<strong>Advance booking required.</strong>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Secrets Of Self-Hypnosis Workshop</span>\r\n</strong></h2>\r\nBack by popular request, the introduction to self-hypnosis evening.\r\nIn this practical, fun workshop you will learn a new set of skills around self-hypnosis.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>hypnotic language patterns and phrases</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\nPlaces are just £10 each and limited to just 12 participants. Handouts, tea, coffee and snacks are included.\r\nOnce you have booked your place, helpful info will be sent out just before the event.\r\nBooking is strictly by advance booking only and on a first come, first served basis.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/secrets-of-self-hypnosis/\"><img class=\"size-medium wp-image-1659 alignleft\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self-Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2019-02-01 10:30:12','2019-02-01 10:30:12','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(2586,1,'2019-02-02 20:37:16','2019-02-02 20:37:16','','Order &ndash; February 2, 2019 @ 08:37 PM','','wc-processing','open','closed','order_5c55ff7c53a6b','order-feb-02-2019-0837-pm','','','2019-02-02 20:39:23','2019-02-02 20:39:23','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2586',0,'shop_order','',3),(2587,1,'2019-02-03 09:20:13','2019-02-03 09:20:13','<iframe src=\"https://www.youtube.com/embed/_jgzp1iTuXs?rel=0&amp;controls=0&amp;showinfo=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h4><strong><span style=\"color: #008000;\">Self Hypnosis Introduction Workshop</span>\r\n</strong></h4>\r\n<strong>Wednesday 6th Feb 2019,</strong>\r\n<strong>7.30 to 10.00 pm,</strong>\r\n<strong>Newcastle Hypnotherapy - The Vault.</strong>\r\n<strong>Advance booking required.\r\n<span style=\"color: #ff0000;\">Update - Only 4 places remaining - Book Now</span>\r\n</strong>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Secrets Of Self-Hypnosis Workshop</span>\r\n</strong></h2>\r\nBack by popular request, the introduction to self-hypnosis evening.\r\nIn this practical, fun workshop you will learn a new set of skills around self-hypnosis.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>hypnotic language patterns and phrases</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\nPlaces are just £10 each and limited to just 12 participants. Handouts, tea, coffee and snacks are included.\r\nOnce you have booked your place, helpful info will be sent out just before the event.\r\nBooking is strictly by advance booking only and on a first come, first served basis.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/secrets-of-self-hypnosis/\"><img class=\"size-medium wp-image-1659 alignleft\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self-Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2019-02-03 09:20:13','2019-02-03 09:20:13','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(2591,1,'2019-02-06 17:04:27','2019-02-06 17:04:27','<iframe src=\"https://www.youtube.com/embed/_jgzp1iTuXs?rel=0&amp;controls=0&amp;showinfo=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h4><strong><span style=\"color: #008000;\">Self Hypnosis Introduction Workshop</span>\r\n</strong></h4>\r\n<strong>Wednesday 6th Feb 2019,</strong>\r\n<strong>7.30 to 10.00 pm,</strong>\r\n<strong>Newcastle Hypnotherapy - The Vault.</strong>\r\n<strong>Advance booking required.\r\n<span style=\"color: #ff6600;\">Fully Booked</span>\r\n</strong>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Secrets Of Self-Hypnosis Workshop</span>\r\n</strong></h2>\r\nBack by popular request, the introduction to self-hypnosis evening.\r\nIn this practical, fun workshop you will learn a new set of skills around self-hypnosis.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>meditate deeper and faster with self-hypnosis</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>hypnotic language patterns and phrases</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\nPlaces are just £10 each and limited to just 12 participants. Handouts, tea, coffee and snacks are included.\r\nOnce you have booked your place, helpful info will be sent out just before the event.\r\nBooking is strictly by advance booking only and on a first come, first served basis.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self-Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2019-02-06 17:04:27','2019-02-06 17:04:27','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(2588,1,'2019-02-04 07:40:48','2019-02-04 07:40:48','<iframe src=\"https://www.youtube.com/embed/_jgzp1iTuXs?rel=0&amp;controls=0&amp;showinfo=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h4><strong><span style=\"color: #008000;\">Self Hypnosis Introduction Workshop</span>\r\n</strong></h4>\r\n<strong>Wednesday 6th Feb 2019,</strong>\r\n<strong>7.30 to 10.00 pm,</strong>\r\n<strong>Newcastle Hypnotherapy - The Vault.</strong>\r\n<strong>Advance booking required.\r\n<span style=\"color: #ff0000;\">Update - Only 4 places remaining - Book Now</span>\r\n</strong>\r\n<h2></h2>\r\n<h2></h2>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">The Secrets Of Self-Hypnosis Workshop</span>\r\n</strong></h2>\r\nBack by popular request, the introduction to self-hypnosis evening.\r\nIn this practical, fun workshop you will learn a new set of skills around self-hypnosis.\r\n\r\n<strong>In this workshop, you will learn:</strong>\r\n<ul>\r\n 	<li>methods for achieving hypnotic states.</li>\r\n 	<li>to improve your ability to relax deeply, anytime, anywhere.</li>\r\n 	<li>meditate deeper and faster with self-hypnosis</li>\r\n 	<li>how to direct your mind to ease pain, stress, anxiety, and tension.</li>\r\n 	<li>how to reduce bad habits and behaviour.</li>\r\n 	<li>how to program your unconscious to help you attain your goals.</li>\r\n 	<li>to improve your ability to concentrate &amp; focus.</li>\r\n 	<li>how hypnosis differs from mindfulness and meditation.</li>\r\n 	<li>how to build self-confidence.</li>\r\n 	<li>how to handle problems and challenges better.</li>\r\n 	<li>hypnotic language patterns and phrases</li>\r\n</ul>\r\nIn addition to all the personal benefits, this workshop will help you take the first steps towards learning how to use hypnosis with groups and individuals.\r\n\r\nPlaces are just £10 each and limited to just 12 participants. Handouts, tea, coffee and snacks are included.\r\nOnce you have booked your place, helpful info will be sent out just before the event.\r\nBooking is strictly by advance booking only and on a first come, first served basis.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/secrets-of-self-hypnosis/\"><img class=\"size-medium wp-image-1659 alignleft\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our events by joining the newsletter below\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can remove yourself at any time\r\n</strong>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>&nbsp;','Secrets Of Self-Hypnosis Workshop','','inherit','closed','closed','','347-revision-v1','','','2019-02-04 07:40:48','2019-02-04 07:40:48','',347,'https://www.newcastle-hypnotherapy.com/347-revision-v1/',0,'revision','',0),(2589,1,'2019-02-04 11:07:06','2019-02-04 11:07:06','','Order &ndash; February 4, 2019 @ 11:07 AM','','wc-processing','closed','closed','order_5c581cda9fe6c','order-feb-04-2019-1107-am','','','2019-02-05 16:39:01','2019-02-05 16:39:01','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2589',0,'shop_order','',2),(2590,1,'2019-02-04 18:36:01','2019-02-04 18:36:01','','Order &ndash; February 4, 2019 @ 06:36 PM','','wc-on-hold','open','closed','order_5c58861130b8c','order-feb-04-2019-0636-pm','','','2019-02-04 18:36:01','2019-02-04 18:36:01','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2590',0,'shop_order','',1),(2597,1,'2019-02-09 18:20:11','2019-02-09 18:20:11','EFT Tapping is a powerful technique that is most useful for many of our clients.\r\n\r\n<iframe src=\"https://www.youtube.com/embed/WnjOizlLUME?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EFT Tapping Made Simple & Easy','','inherit','closed','closed','','2592-revision-v1','','','2019-02-09 18:20:11','2019-02-09 18:20:11','',2592,'https://www.newcastle-hypnotherapy.com/2592-revision-v1/',0,'revision','',0),(2598,1,'2019-02-09 18:56:10','2019-02-09 18:56:10','EFT Tapping is a powerful technique that is most useful for many of our clients.\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">EFT - Emotional Freedom Technique</span></strong></h4>\r\n<h4>EFT or Emotional Freedom Technique can be used to help with many issues and problems.\r\nWe find it is extremely effective for pain, both physical pain or emotional pain and can quickly reduce both down in a few minutes.\r\n\r\n<strong><span style=\"color: #008000;\">Learning The Basics Of EFT Tapping</span></strong></h4>\r\nWatch the short EFT video above and learn the tapping points to tap on.\r\nMake a list of any past and present issues that may be causing emotional distress, no matter how small.\r\nSpend 10 to 15 minutes per day working through all of these and the more you practice the easier it becomes.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EFT Tapping Made Simple & Easy','','inherit','closed','closed','','2592-revision-v1','','','2019-02-09 18:56:10','2019-02-09 18:56:10','',2592,'https://www.newcastle-hypnotherapy.com/2592-revision-v1/',0,'revision','',0),(2599,1,'2019-02-09 18:57:38','2019-02-09 18:57:38','EFT Tapping is a powerful technique that is most useful for many of our clients.\r\n\r\n&nbsp;\r\n<iframe src=\"https://www.youtube.com/embed/WnjOizlLUME?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n<h4><strong><span style=\"color: #008000;\">EFT - Emotional Freedom Technique</span></strong></h4>\r\n&nbsp;\r\n\r\nEFT or Emotional Freedom Technique can be used to help with many issues and problems.\r\nWe find it is extremely effective for pain, both physical pain or emotional pain and can quickly reduce both down in a few minutes.\r\n\r\n<strong><span style=\"color: #008000;\">Learning The Basics Of EFT Tapping</span></strong>\r\n\r\nWatch the short EFT video above and learn the tapping points to tap on.\r\nMake a list of any past and present issues that may be causing emotional distress, no matter how small.\r\nSpend 10 to 15 minutes per day working through all of these and the more you practice the easier it becomes.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EFT Tapping Made Simple & Easy','','inherit','closed','closed','','2592-revision-v1','','','2019-02-09 18:57:38','2019-02-09 18:57:38','',2592,'https://www.newcastle-hypnotherapy.com/2592-revision-v1/',0,'revision','',0),(2601,1,'2019-02-10 19:54:30','2019-02-10 19:54:30','<img class=\"alignleft size-medium wp-image-2600\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /><strong>Anxiety Freedom Workshop</strong>\r\nWednesday 20th Feb.\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\nThis workshop is limited to just 20 participants. £10 per person.\r\n<strong>Advance booking is required.\r\n</strong>See below<strong>.\r\n</strong>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Freedom Workshop</span></strong></h2>\r\n<strong>Do you suffer from <span style=\"color: #ff6600;\">Anxiety? Low Self-Confidence? Struggle with Worry?</span></strong>\r\nThis Wednesday Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, build <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety in yourself and others</li>\r\n 	<li>recognise anxiety triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make anxiety &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety &amp; worry patterns</li>\r\n 	<li>use skills to reduce anxiety as soon as it appears</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\nThis Anxiety Freedom Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></strong></span>\r\n\r\nThe Wednesday Workshops are non-profit events that share life-enhancing skills including Self-Hypnosis, Neuro-linguistic Programming and Emotional Freedom Technique.\r\n<h4><strong>To join and learn these powerful skills to help with anxiety simply book your place below.</strong>\r\nPlaces are limited and accepted on a first come first served basis.\r\n\r\n<strong><span style=\"color: #008000;\">You can read client reviews below.</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Would you like to work with Mark privately to conquer your anxiety and stress issues?</strong></span>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n&nbsp;','Anxiety Freedom Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-02-10 19:54:30','2019-02-10 19:54:30','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2602,1,'2019-02-10 19:55:32','2019-02-10 19:55:32','<img class=\"alignleft size-medium wp-image-2600\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /><strong>Anxiety Freedom Workshop</strong>\r\nWednesday 20th Feb.\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\nThis workshop is limited to just 20 participants. £10 per person.\r\n<strong>Advance booking is required.\r\n</strong>See below<strong>.\r\n</strong>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Freedom Workshop</span></strong></h2>\r\n<strong>Do you suffer from <span style=\"color: #ff6600;\">Anxiety? Low Self-Confidence? Struggle with Worry?\r\n</span></strong>\r\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, build <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety in yourself and others</li>\r\n 	<li>recognise anxiety triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make anxiety &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety &amp; worry patterns</li>\r\n 	<li>use skills to reduce anxiety as soon as it appears</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\nThis Anxiety Freedom Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></strong></span>\r\n\r\nThe Wednesday Workshops are non-profit events that share life-enhancing skills including Self-Hypnosis, Neuro-linguistic Programming and Emotional Freedom Technique.\r\n<h4><strong>To join and learn these powerful skills to help with anxiety simply book your place below.</strong>\r\nPlaces are limited and accepted on a first come first served basis.</h4>\r\n<strong><span style=\"color: #008000;\">You can read client reviews below.</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Would you like to work with Mark privately to conquer your anxiety and stress issues?</strong></span>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n&nbsp;','Anxiety Freedom Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-02-10 19:55:32','2019-02-10 19:55:32','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2603,1,'2019-02-10 19:58:18','2019-02-10 19:58:18','<img class=\"alignleft size-medium wp-image-2600\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /><strong>Anxiety Freedom Workshop</strong>\r\nWednesday 20th Feb.\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\nThis workshop is limited to just 20 participants. £10 per person.\r\n<strong>Advance booking is required.\r\n</strong>See below<strong>.\r\n</strong>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Freedom Workshop</span></strong></h2>\r\n<strong>Do you suffer from <span style=\"color: #ff6600;\">Anxiety? Low Self-Confidence? Struggle with Worry?\r\n</span></strong>\r\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, build <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety in yourself and others</li>\r\n 	<li>recognise anxiety triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make anxiety &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety &amp; worry patterns</li>\r\n 	<li>use skills to reduce anxiety as soon as it appears</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\nThis Anxiety Freedom Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></strong></span>\r\n\r\nThe Wednesday Workshops are non-profit events that share life-enhancing skills including Self-Hypnosis, Neuro-linguistic Programming and Emotional Freedom Technique.\r\n<h4><strong>To join and learn these powerful skills to help with anxiety simply book your place below.</strong>\r\nPlaces are limited and accepted on a first come first served basis.</h4>\r\n<strong><span style=\"color: #008000;\">You can read client reviews below.</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong></span>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”','Anxiety Freedom Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-02-10 19:58:18','2019-02-10 19:58:18','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2604,1,'2019-02-13 18:30:18','2019-02-13 18:30:18','','Order &ndash; February 13, 2019 @ 06:30 PM','','wc-processing','open','closed','order_5c64623acb92b','order-feb-13-2019-0630-pm','','','2019-02-13 18:30:45','2019-02-13 18:30:45','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2604',0,'shop_order','',3),(2605,1,'2019-02-14 16:10:44','2019-02-14 16:10:44','','Order &ndash; February 14, 2019 @ 04:10 PM','','wc-processing','open','closed','order_5c659304b192a','order-feb-14-2019-0410-pm','','','2019-02-14 16:11:39','2019-02-14 16:11:39','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2605',0,'shop_order','',3),(2606,1,'2019-02-14 20:44:35','2019-02-14 20:44:35','','Order &ndash; February 14, 2019 @ 08:44 PM','','wc-processing','open','closed','order_5c65d3333550f','order-feb-14-2019-0844-pm','','','2019-02-14 20:46:03','2019-02-14 20:46:03','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2606',0,'shop_order','',3),(2607,1,'2019-02-17 22:36:07','2019-02-17 22:36:07','','Order &ndash; February 17, 2019 @ 10:36 PM','','wc-processing','open','closed','order_5c69e1d730666','order-feb-17-2019-1036-pm','','','2019-02-17 22:37:47','2019-02-17 22:37:47','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2607',0,'shop_order','',3),(2608,1,'2019-02-18 09:39:52','2019-02-18 09:39:52','','Order &ndash; February 18, 2019 @ 09:39 AM','','wc-processing','open','closed','order_5c6a7d68a2b10','order-feb-18-2019-0939-am','','','2019-02-18 09:40:38','2019-02-18 09:40:38','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2608',0,'shop_order','',3),(2610,1,'2019-02-19 12:07:33','2019-02-19 12:07:33','','Order &ndash; February 19, 2019 @ 12:07 PM','','wc-processing','open','closed','order_5c6bf185cfccc','order-feb-19-2019-1207-pm','','','2019-02-19 12:09:22','2019-02-19 12:09:22','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2610',0,'shop_order','',3),(2612,1,'2019-02-19 14:28:49','2019-02-19 14:28:49','<img class=\"alignleft size-medium wp-image-2613\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280-300x171.jpg\" alt=\"self-confidence-workshop\" width=\"300\" height=\"171\" />\r\n<strong>Wednesday the 11th December</strong>\r\n<strong>7.30 pm - 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£15 </strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below - Limited Spaces\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Improve Your Self-Confidence &amp; Feel Amazing.</strong></span></h4>\r\n<strong>Have you noticed that people with great self-confidence find life usually goes in their favour?</strong> Do you see them attracting good things, good people, less resistance in life and they smile much more?\r\n\r\n<strong>Self-confidence is a natural skill, a mindset, an attitude that gives people that extra edge in life. </strong>It makes life so much easier as though life bends the right way, for people with self-confidence.\r\n<h4><span style=\"color: #008000;\"><strong>Good News! - Everyone can learn self-confidence.</strong></span></h4>\r\n<strong>Daftly we are not taught self-confidence in school.</strong> Some people naturally pick it up while others miss it completely. <strong>The difference self-confidence can make to our lives is amazing. </strong>Your life can be so much better.\r\n\r\n<span style=\"color: #008000;\"><strong>During This Self-Confidence Workshop, you will learn</strong></span>\r\n<ul>\r\n 	<li>how to be self-confident</li>\r\n 	<li>to naturally increase your self-esteem</li>\r\n 	<li>NLP techniques to instantly switch on self-confidence</li>\r\n 	<li>how to be relaxed around others</li>\r\n 	<li>how to smile naturally</li>\r\n 	<li>to be self-confident in your own way</li>\r\n 	<li>a self-hypnosis technique to naturally see yourself as self-confident</li>\r\n</ul>\r\nThis self-confidence building workshop lasts for 2 hours starting at 7.30 pm.\r\nYou will learn easy to use skills and techniques that will quickly improve your self-confidence and self-esteem.\r\nWith practice, you can improve these levels to those of your choice.\r\n\r\n<strong>You can book your place here. <a href=\"https://www.newcastle-hypnotherapy.com/product/self-confidence-workshop-booking/\">Click now to book your place.</a></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-confidence-workshop-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <strong>your free consultation online here</strong>.\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\nYou can also join <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Secret Workshops Discussion Group Here</a></strong>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-confidence-workshop-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>','Self-Confidence Workshop','','publish','closed','closed','','self-confidence-workshop','','','2019-09-13 13:30:20','2019-09-13 13:30:20','',0,'https://www.newcastle-hypnotherapy.com/?page_id=2612',0,'page','',0),(2613,1,'2019-02-19 14:25:44','2019-02-19 14:25:44','','self-confidence-workshop','','inherit','open','closed','','self-confidence-2121159_1280','','','2019-02-19 14:26:05','2019-02-19 14:26:05','',2612,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280.jpg',0,'attachment','image/jpeg',0),(2614,1,'2019-02-19 14:26:24','2019-02-19 14:26:24','<img class=\"alignleft size-medium wp-image-2613\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280-300x171.jpg\" alt=\"self-confidence-workshop\" width=\"300\" height=\"171\" />\r\nWednesday the 6th March.\r\n7.30 pm - 9.30 pm\r\nThe Vault, Wallsend\r\n£10 Per person\r\nAdvance booking required','Self-Confidence Workshop','','inherit','closed','closed','','2612-revision-v1','','','2019-02-19 14:26:24','2019-02-19 14:26:24','',2612,'https://www.newcastle-hypnotherapy.com/2612-revision-v1/',0,'revision','',0),(2615,1,'2019-02-19 14:27:23','2019-02-19 14:27:23','<img class=\"alignleft size-medium wp-image-2613\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280-300x171.jpg\" alt=\"self-confidence-workshop\" width=\"300\" height=\"171\" />\r\n<strong>Wednesday the </strong>6th<strong> March.</strong>\r\n<strong>7.30 pm - 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£10 Per person</strong>\r\n<strong>Advance booking required</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Self-Confidence Workshop','','inherit','closed','closed','','2612-revision-v1','','','2019-02-19 14:27:23','2019-02-19 14:27:23','',2612,'https://www.newcastle-hypnotherapy.com/2612-revision-v1/',0,'revision','',0),(2616,1,'2019-02-19 14:28:09','2019-02-19 14:28:09','<img class=\"alignleft size-medium wp-image-2613\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280-300x171.jpg\" alt=\"self-confidence-workshop\" width=\"300\" height=\"171\" />\r\n<strong>Wednesday the 6th of March.</strong>\r\n<strong>7.30 pm - 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£10 Per person</strong>\r\n<strong>Advance booking required</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Self-Confidence Workshop','','inherit','closed','closed','','2612-revision-v1','','','2019-02-19 14:28:09','2019-02-19 14:28:09','',2612,'https://www.newcastle-hypnotherapy.com/2612-revision-v1/',0,'revision','',0),(2617,1,'2019-02-19 14:28:49','2019-02-19 14:28:49','<img class=\"alignleft size-medium wp-image-2613\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280-300x171.jpg\" alt=\"self-confidence-workshop\" width=\"300\" height=\"171\" />\r\n<strong>Wednesday the 6th of March.</strong>\r\n<strong>7.30 pm - 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£10 Per person</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Self-Confidence Workshop','','inherit','closed','closed','','2612-revision-v1','','','2019-02-19 14:28:49','2019-02-19 14:28:49','',2612,'https://www.newcastle-hypnotherapy.com/2612-revision-v1/',0,'revision','',0),(2618,1,'2019-02-19 15:56:28','2019-02-19 15:56:28','<img class=\"alignleft size-medium wp-image-2613\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280-300x171.jpg\" alt=\"self-confidence-workshop\" width=\"300\" height=\"171\" />\n<strong>Wednesday the 6th of March.</strong>\n<strong>7.30 pm - 9.30 pm</strong>\n<strong>The Vault, Wallsend</strong>\n<strong>£15 per person or £10 </strong>\n<span style=\"color: #ff6600;\"><strong>Advance booking required\nBook below - Limited Spaces\n</strong></span>\n\n&nbsp;\n<h4><span style=\"color: #008000;\"><strong>Improve Your Self-Confidence &amp; Feel Amazing.</strong></span></h4>\n<strong>Have you noticed that people with great self-confidence find life usually goes in their favour?</strong> Do you see them attracting good things, good people, less resistance in life and they smile much more?\n\n<strong>Self-confidence is a natural skill, a mindset, an attitude that gives people that extra edge in life. </strong>It makes life so much easier as though life bends the right way, for people with self-confidence.\n<h4><span style=\"color: #008000;\"><strong>Good News! - Everyone can learn self-confidence.</strong></span></h4>\n<strong>Daftly we are not taught self-confidence in school.</strong> Some people naturally pick it up while others miss it completely. <strong>The difference self-confidence can make to our lives is amazing. </strong>Your life can be so much better.\n\n<span style=\"color: #008000;\"><strong>During This Self-Confidence Workshop, you will learn</strong></span>\n<ul>\n 	<li>how to be self-confident</li>\n 	<li>to naturally increase your self-esteem</li>\n 	<li>NLP techniques to instantly switch on self-confidence</li>\n 	<li>how to be relaxed around others</li>\n 	<li>how to smile naturally</li>\n 	<li>to be self-confident in your own way</li>\n 	<li>a self-hypnosis technique to naturally see yourself as self-confident</li>\n</ul>\nThis self-confidence building workshop lasts for 2 hours starting at 7.30 pm.\nYou will learn easy to use skills and techniques that will quickly improve your self-confidence and self-esteem.\nWith practice, you can improve these levels to those of your choice.\n\n<strong>You can book your place here. Click now to book your place.</strong>\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-confidence-workshop-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong>\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\nMark also works with many other issues and challenges.\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\nYou can also book <strong>your free consultation online here</strong>.\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\n</strong></span>\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\nYou can also join <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Secret Workshops Discussion Group Here</a></strong>\n\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\n\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\n\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\n<strong>\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”\n\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-confidence-workshop-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>','Self-Confidence Workshop','','inherit','closed','closed','','2612-autosave-v1','','','2019-02-19 15:56:28','2019-02-19 15:56:28','',2612,'https://www.newcastle-hypnotherapy.com/2612-autosave-v1/',0,'revision','',0),(2619,1,'2019-02-19 14:35:47','2019-02-19 14:35:47','<img class=\"alignleft size-medium wp-image-2613\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280-300x171.jpg\" alt=\"self-confidence-workshop\" width=\"300\" height=\"171\" />\r\n<strong>Wednesday the 6th of March.</strong>\r\n<strong>7.30 pm - 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£10 Per person</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below - Limited Spaces\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Improve Your Self-Confidence &amp; Feel Amazing.</strong></span></h4>\r\nPeople with great self-confidence find life usually goes in their favour.\r\nThey attract good things, good people, attracting less resistance in life and are happier.\r\n\r\nSelf confidence is a skill, a mindset an attitude that becomes easier the more you pratice it\r\n\r\n&nbsp;','Self-Confidence Workshop','','inherit','closed','closed','','2612-revision-v1','','','2019-02-19 14:35:47','2019-02-19 14:35:47','',2612,'https://www.newcastle-hypnotherapy.com/2612-revision-v1/',0,'revision','',0),(2620,1,'2019-02-19 14:47:46','2019-02-19 14:47:46','<img class=\"alignleft size-medium wp-image-2613\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280-300x171.jpg\" alt=\"self-confidence-workshop\" width=\"300\" height=\"171\" />\r\n<strong>Wednesday the 6th of March.</strong>\r\n<strong>7.30 pm - 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£10 Per person</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below - Limited Spaces\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Improve Your Self-Confidence &amp; Feel Amazing.</strong></span></h4>\r\nHave you noticed that people with great self-confidence find life usually goes in their favour?\r\nYou see them attracting good things, good people, less resistance in life and they smile much more.\r\n\r\nSelf-confidence is a natural skill, a mindset, an attitude that gives people that extra edge in life.\r\nIt makes life so much easier as though life bends the right way for people with self-confidence.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Self-Confidence Workshop','','inherit','closed','closed','','2612-revision-v1','','','2019-02-19 14:47:46','2019-02-19 14:47:46','',2612,'https://www.newcastle-hypnotherapy.com/2612-revision-v1/',0,'revision','',0),(2621,1,'2019-02-19 15:02:15','2019-02-19 15:02:15','<img class=\"alignleft size-medium wp-image-2613\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280-300x171.jpg\" alt=\"self-confidence-workshop\" width=\"300\" height=\"171\" />\r\n<strong>Wednesday the 6th of March.</strong>\r\n<strong>7.30 pm - 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£10 Per person</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below - Limited Spaces\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Improve Your Self-Confidence &amp; Feel Amazing.</strong></span></h4>\r\nHave you noticed that people with great self-confidence find life usually goes in their favour?\r\nYou see them attracting good things, good people, less resistance in life and they smile much more.\r\n\r\nSelf-confidence is a natural skill, a mindset, an attitude that gives people that extra edge in life.\r\nIt makes life so much easier as though life bends the right way, for people with self-confidence.\r\n\r\n<strong><span style=\"color: #ff6600;\">Good News! - </span>Everyone can learn self-confidence.</strong>\r\nDaftly we are not taught self-confidence in school. Some people naturally pick it up while others miss is completely.\r\nThe difference self-confidece can make to our lives is amazing and life can be much better .\r\n\r\n&nbsp;\r\n\r\nD<strong>uring This Self-Confidence Workshop you will learn</strong>\r\n<ul>\r\n 	<li>to be self-confident</li>\r\n 	<li></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;','Self-Confidence Workshop','','inherit','closed','closed','','2612-revision-v1','','','2019-02-19 15:02:15','2019-02-19 15:02:15','',2612,'https://www.newcastle-hypnotherapy.com/2612-revision-v1/',0,'revision','',0),(2622,1,'2019-02-19 15:20:47','2019-02-19 15:20:47','<img class=\"alignleft size-medium wp-image-2613\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280-300x171.jpg\" alt=\"self-confidence-workshop\" width=\"300\" height=\"171\" />\r\n<strong>Wednesday the 6th of March.</strong>\r\n<strong>7.30 pm - 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£10 Per person</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below - Limited Spaces\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Improve Your Self-Confidence &amp; Feel Amazing.</strong></span></h4>\r\nHave you noticed that people with great self-confidence find life usually goes in their favour?\r\nYou see them attracting good things, good people, less resistance in life and they smile much more.\r\n\r\nSelf-confidence is a natural skill, a mindset, an attitude that gives people that extra edge in life.\r\nIt makes life so much easier as though life bends the right way, for people with self-confidence.\r\n\r\n<strong><span style=\"color: #ff6600;\">Good News! - </span>Everyone can learn self-confidence.</strong>\r\nDaftly we are not taught self-confidence in school. Some people naturally pick it up while others miss is completely.\r\nThe difference self-confidece can make to our lives is amazing and life can be much better.\r\n\r\n<span style=\"color: #008000;\"><strong>During This Self-Confidence Workshop you will learn</strong></span>\r\n<ul>\r\n 	<li>how to be self-confident</li>\r\n 	<li>to naturally increase your self esteem</li>\r\n 	<li>NLP techniques to instantly switich on self-confidence</li>\r\n 	<li>how to be realxed around others</li>\r\n 	<li>how to smile naturally</li>\r\n 	<li>to be self-confident in your own way</li>\r\n 	<li>a self-hypnosis technique to naturally see yourself as self-confident</li>\r\n</ul>\r\n&nbsp;\r\n\r\nThis self-confidence building workshop lasts for 2 hours starting at 7.30 pm.\r\nYou will learn easy to use skills and techniques that will quickly improve your self-confidence and self esteem.\r\nWith practice you can imporve these levels to those of your choice.\r\n\r\nYou can book you place here. Click now to book your place.\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <strong>your free consultation online here</strong>.\r\n<h4><strong>What did Dr Andrew say about our services?</strong>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n&nbsp;\r\n\r\nYou can also join <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Secret Workshops Discussion Group Here</a></strong>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”\r\n\r\n&nbsp;','Self-Confidence Workshop','','inherit','closed','closed','','2612-revision-v1','','','2019-02-19 15:20:47','2019-02-19 15:20:47','',2612,'https://www.newcastle-hypnotherapy.com/2612-revision-v1/',0,'revision','',0),(2623,1,'2019-02-19 15:22:52','2019-02-19 15:22:52','<img class=\"alignleft size-medium wp-image-2613\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280-300x171.jpg\" alt=\"self-confidence-workshop\" width=\"300\" height=\"171\" />\r\n<strong>Wednesday the 6th of March.</strong>\r\n<strong>7.30 pm - 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£10 Per person</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below - Limited Spaces\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Improve Your Self-Confidence &amp; Feel Amazing.</strong></span></h4>\r\nHave you noticed that people with great self-confidence find life usually goes in their favour?\r\nYou see them attracting good things, good people, less resistance in life and they smile much more.\r\n\r\nSelf-confidence is a natural skill, a mindset, an attitude that gives people that extra edge in life.\r\nIt makes life so much easier as though life bends the right way, for people with self-confidence.\r\n<h4><span style=\"color: #008000;\"><strong>Good News! - Everyone can learn self-confidence.</strong></span></h4>\r\nDaftly we are not taught self-confidence in school. Some people naturally pick it up while others miss is completely.\r\nThe difference self-confidece can make to our lives is amazing and life can be much better.\r\n\r\n<span style=\"color: #008000;\"><strong>During This Self-Confidence Workshop you will learn</strong></span>\r\n<ul>\r\n 	<li>how to be self-confident</li>\r\n 	<li>to naturally increase your self esteem</li>\r\n 	<li>NLP techniques to instantly switich on self-confidence</li>\r\n 	<li>how to be realxed around others</li>\r\n 	<li>how to smile naturally</li>\r\n 	<li>to be self-confident in your own way</li>\r\n 	<li>a self-hypnosis technique to naturally see yourself as self-confident</li>\r\n</ul>\r\n&nbsp;\r\n\r\nThis self-confidence building workshop lasts for 2 hours starting at 7.30 pm.\r\nYou will learn easy to use skills and techniques that will quickly improve your self-confidence and self esteem.\r\nWith practice you can imporve these levels to those of your choice.\r\n\r\nYou can book you place here. Click now to book your place.\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <strong>your free consultation online here</strong>.\r\n<h4><strong>What did Dr Andrew say about our services?</strong>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n&nbsp;\r\n\r\nYou can also join <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Secret Workshops Discussion Group Here</a></strong>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”\r\n\r\n&nbsp;','Self-Confidence Workshop','','inherit','closed','closed','','2612-revision-v1','','','2019-02-19 15:22:52','2019-02-19 15:22:52','',2612,'https://www.newcastle-hypnotherapy.com/2612-revision-v1/',0,'revision','',0),(2624,1,'2019-02-19 15:23:59','2019-02-19 15:23:59','<img class=\"alignleft size-medium wp-image-2613\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280-300x171.jpg\" alt=\"self-confidence-workshop\" width=\"300\" height=\"171\" />\r\n<strong>Wednesday the 6th of March.</strong>\r\n<strong>7.30 pm - 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£10 Per person</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below - Limited Spaces\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Improve Your Self-Confidence &amp; Feel Amazing.</strong></span></h4>\r\n<strong>Have you noticed that people with great self-confidence find life usually goes in their favour?</strong> Do you see them attracting good things, good people, less resistance in life and they smile much more?\r\n\r\n<strong>Self-confidence is a natural skill, a mindset, an attitude that gives people that extra edge in life. </strong>It makes life so much easier as though life bends the right way, for people with self-confidence.\r\n<h4><span style=\"color: #008000;\"><strong>Good News! - Everyone can learn self-confidence.</strong></span></h4>\r\nDaftly we are not taught self-confidence in school. Some people naturally pick it up while others miss is completely.\r\nThe difference self-confidece can make to our lives is amazing and life can be much better.\r\n\r\n<span style=\"color: #008000;\"><strong>During This Self-Confidence Workshop you will learn</strong></span>\r\n<ul>\r\n 	<li>how to be self-confident</li>\r\n 	<li>to naturally increase your self esteem</li>\r\n 	<li>NLP techniques to instantly switich on self-confidence</li>\r\n 	<li>how to be realxed around others</li>\r\n 	<li>how to smile naturally</li>\r\n 	<li>to be self-confident in your own way</li>\r\n 	<li>a self-hypnosis technique to naturally see yourself as self-confident</li>\r\n</ul>\r\n&nbsp;\r\n\r\nThis self-confidence building workshop lasts for 2 hours starting at 7.30 pm.\r\nYou will learn easy to use skills and techniques that will quickly improve your self-confidence and self esteem.\r\nWith practice you can imporve these levels to those of your choice.\r\n\r\nYou can book you place here. Click now to book your place.\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <strong>your free consultation online here</strong>.\r\n<h4><strong>What did Dr Andrew say about our services?</strong>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n&nbsp;\r\n\r\nYou can also join <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Secret Workshops Discussion Group Here</a></strong>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”\r\n\r\n&nbsp;','Self-Confidence Workshop','','inherit','closed','closed','','2612-revision-v1','','','2019-02-19 15:23:59','2019-02-19 15:23:59','',2612,'https://www.newcastle-hypnotherapy.com/2612-revision-v1/',0,'revision','',0),(2626,1,'2019-02-19 15:27:28','2019-02-19 15:27:28','<img class=\"alignleft size-medium wp-image-2613\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280-300x171.jpg\" alt=\"self-confidence-workshop\" width=\"300\" height=\"171\" />\r\n<strong>Wednesday the 6th of March.</strong>\r\n<strong>7.30 pm - 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£10 Per person</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below - Limited Spaces\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Improve Your Self-Confidence &amp; Feel Amazing.</strong></span></h4>\r\n<strong>Have you noticed that people with great self-confidence find life usually goes in their favour?</strong> Do you see them attracting good things, good people, less resistance in life and they smile much more?\r\n\r\n<strong>Self-confidence is a natural skill, a mindset, an attitude that gives people that extra edge in life. </strong>It makes life so much easier as though life bends the right way, for people with self-confidence.\r\n<h4><span style=\"color: #008000;\"><strong>Good News! - Everyone can learn self-confidence.</strong></span></h4>\r\n<strong>Daftly we are not taught self-confidence in school.</strong> Some people naturally pick it up while others miss it completely. <strong>The difference self-confidence can make to our lives is amazing. </strong>Your life can be so much better.\r\n\r\n<span style=\"color: #008000;\"><strong>During This Self-Confidence Workshop, you will learn</strong></span>\r\n<ul>\r\n 	<li>how to be self-confident</li>\r\n 	<li>to naturally increase your self-esteem</li>\r\n 	<li>NLP techniques to instantly switch on self-confidence</li>\r\n 	<li>how to be relaxed around others</li>\r\n 	<li>how to smile naturally</li>\r\n 	<li>to be self-confident in your own way</li>\r\n 	<li>a self-hypnosis technique to naturally see yourself as self-confident</li>\r\n</ul>\r\n&nbsp;\r\n\r\nThis self-confidence building workshop lasts for 2 hours starting at 7.30 pm.\r\nYou will learn easy to use skills and techniques that will quickly improve your self-confidence and self-esteem.\r\nWith practice, you can improve these levels to those of your choice.\r\n\r\nYou can book your place here. Click now to book your place.\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <strong>your free consultation online here</strong>.\r\n<h4><strong>What did Dr Andrew say about our services?</strong></h4>\r\n&nbsp;\r\n\r\nYou can also join <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Secret Workshops Discussion Group Here</a></strong>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary </strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”\r\n\r\n&nbsp;','Self-Confidence Workshop','','inherit','closed','closed','','2612-revision-v1','','','2019-02-19 15:27:28','2019-02-19 15:27:28','',2612,'https://www.newcastle-hypnotherapy.com/2612-revision-v1/',0,'revision','',0),(2625,1,'2019-02-19 15:25:40','2019-02-19 15:25:40','<img class=\"alignleft size-medium wp-image-2613\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280-300x171.jpg\" alt=\"self-confidence-workshop\" width=\"300\" height=\"171\" />\r\n<strong>Wednesday the 6th of March.</strong>\r\n<strong>7.30 pm - 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£10 Per person</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below - Limited Spaces\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Improve Your Self-Confidence &amp; Feel Amazing.</strong></span></h4>\r\n<strong>Have you noticed that people with great self-confidence find life usually goes in their favour?</strong> Do you see them attracting good things, good people, less resistance in life and they smile much more?\r\n\r\n<strong>Self-confidence is a natural skill, a mindset, an attitude that gives people that extra edge in life. </strong>It makes life so much easier as though life bends the right way, for people with self-confidence.\r\n<h4><span style=\"color: #008000;\"><strong>Good News! - Everyone can learn self-confidence.</strong></span></h4>\r\n<strong>Daftly we are not taught self-confidence in school.</strong> Some people naturally pick it up while others miss is completely. <strong>The difference self-confidence can make to our lives is amazing. </strong>Your life can be so much better.\r\n\r\n<span style=\"color: #008000;\"><strong>During This Self-Confidence Workshop you will learn</strong></span>\r\n<ul>\r\n 	<li>how to be self-confident</li>\r\n 	<li>to naturally increase your self esteem</li>\r\n 	<li>NLP techniques to instantly switich on self-confidence</li>\r\n 	<li>how to be realxed around others</li>\r\n 	<li>how to smile naturally</li>\r\n 	<li>to be self-confident in your own way</li>\r\n 	<li>a self-hypnosis technique to naturally see yourself as self-confident</li>\r\n</ul>\r\n&nbsp;\r\n\r\nThis self-confidence building workshop lasts for 2 hours starting at 7.30 pm.\r\nYou will learn easy to use skills and techniques that will quickly improve your self-confidence and self esteem.\r\nWith practice you can imporve these levels to those of your choice.\r\n\r\nYou can book you place here. Click now to book your place.\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <strong>your free consultation online here</strong>.\r\n<h4><strong>What did Dr Andrew say about our services?</strong>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n&nbsp;\r\n\r\nYou can also join <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Secret Workshops Discussion Group Here</a></strong>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”\r\n\r\n&nbsp;','Self-Confidence Workshop','','inherit','closed','closed','','2612-revision-v1','','','2019-02-19 15:25:40','2019-02-19 15:25:40','',2612,'https://www.newcastle-hypnotherapy.com/2612-revision-v1/',0,'revision','',0),(2627,1,'2019-02-19 15:28:25','2019-02-19 15:28:25','<img class=\"alignleft size-medium wp-image-2613\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280-300x171.jpg\" alt=\"self-confidence-workshop\" width=\"300\" height=\"171\" />\r\n<strong>Wednesday the 6th of March.</strong>\r\n<strong>7.30 pm - 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£10 Per person</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below - Limited Spaces\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Improve Your Self-Confidence &amp; Feel Amazing.</strong></span></h4>\r\n<strong>Have you noticed that people with great self-confidence find life usually goes in their favour?</strong> Do you see them attracting good things, good people, less resistance in life and they smile much more?\r\n\r\n<strong>Self-confidence is a natural skill, a mindset, an attitude that gives people that extra edge in life. </strong>It makes life so much easier as though life bends the right way, for people with self-confidence.\r\n<h4><span style=\"color: #008000;\"><strong>Good News! - Everyone can learn self-confidence.</strong></span></h4>\r\n<strong>Daftly we are not taught self-confidence in school.</strong> Some people naturally pick it up while others miss it completely. <strong>The difference self-confidence can make to our lives is amazing. </strong>Your life can be so much better.\r\n\r\n<span style=\"color: #008000;\"><strong>During This Self-Confidence Workshop, you will learn</strong></span>\r\n<ul>\r\n 	<li>how to be self-confident</li>\r\n 	<li>to naturally increase your self-esteem</li>\r\n 	<li>NLP techniques to instantly switch on self-confidence</li>\r\n 	<li>how to be relaxed around others</li>\r\n 	<li>how to smile naturally</li>\r\n 	<li>to be self-confident in your own way</li>\r\n 	<li>a self-hypnosis technique to naturally see yourself as self-confident</li>\r\n</ul>\r\nThis self-confidence building workshop lasts for 2 hours starting at 7.30 pm.\r\nYou will learn easy to use skills and techniques that will quickly improve your self-confidence and self-esteem.\r\nWith practice, you can improve these levels to those of your choice.\r\n\r\n<strong>You can book your place here. Click now to book your place.</strong>\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <strong>your free consultation online here</strong>.\r\n<h4><strong>What did Dr Andrew say about our services?</strong></h4>\r\n&nbsp;\r\n\r\nYou can also join <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Secret Workshops Discussion Group Here</a></strong>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”\r\n\r\n&nbsp;','Self-Confidence Workshop','','inherit','closed','closed','','2612-revision-v1','','','2019-02-19 15:28:25','2019-02-19 15:28:25','',2612,'https://www.newcastle-hypnotherapy.com/2612-revision-v1/',0,'revision','',0),(2628,1,'2019-02-19 15:36:20','2019-02-19 15:36:20','<strong>Terms &amp; Conditions Of Booking.</strong>\r\nThe Secret Workshops are a non-profit set of events to share life-enhancing skills.\r\n<strong>Bookings.</strong> Bookings are taken strictly on a first come first served basis and your booking is only secured once payment is complete.\r\n<strong>Booking In Advance.</strong> We ask everyone to book and pay in advance please as this reduces admin work and allows us to focus on the workshop in progress.\r\n<strong>Cancellations &amp; Refunds.</strong> If you are unable to attend you can transfer your place to someone else and it is helpful if you email us to let us know who you have transferred your place too.\r\nWe do not offer refunds if you are unable to attend.\r\n\r\n&nbsp;','Self-Confidence Workshop','Book your place for this workshop here. 11th December\r\nYou have the option to pay by Card, PayPal or Bank Transfer.\r\nBooking by bank transfer must be completed within 30 mins, please.\r\nAvailability – Spaces are limited to just 20 people and bookings are strictly taken on a 1st come first served basis.','publish','closed','closed','','self-confidence-workshop-booking','','','2019-09-13 21:16:00','2019-09-13 21:16:00','',0,'https://www.newcastle-hypnotherapy.com/?post_type=product&#038;p=2628',0,'product','',0),(2667,1,'2019-03-04 19:43:41','2019-03-04 19:43:41','','Order &ndash; March 4, 2019 @ 07:43 PM','','wc-processing','open','closed','order_5c7d7fed8e2a0','order-mar-04-2019-0743-pm','','','2019-03-04 19:46:03','2019-03-04 19:46:03','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2667',0,'shop_order','',3),(2629,1,'2019-02-19 15:52:03','2019-02-19 15:52:03','<img class=\"alignleft size-medium wp-image-2613\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280-300x171.jpg\" alt=\"self-confidence-workshop\" width=\"300\" height=\"171\" />\r\n<strong>Wednesday the 6th of March.</strong>\r\n<strong>7.30 pm - 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£10 Per person</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below - Limited Spaces\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Improve Your Self-Confidence &amp; Feel Amazing.</strong></span></h4>\r\n<strong>Have you noticed that people with great self-confidence find life usually goes in their favour?</strong> Do you see them attracting good things, good people, less resistance in life and they smile much more?\r\n\r\n<strong>Self-confidence is a natural skill, a mindset, an attitude that gives people that extra edge in life. </strong>It makes life so much easier as though life bends the right way, for people with self-confidence.\r\n<h4><span style=\"color: #008000;\"><strong>Good News! - Everyone can learn self-confidence.</strong></span></h4>\r\n<strong>Daftly we are not taught self-confidence in school.</strong> Some people naturally pick it up while others miss it completely. <strong>The difference self-confidence can make to our lives is amazing. </strong>Your life can be so much better.\r\n\r\n<span style=\"color: #008000;\"><strong>During This Self-Confidence Workshop, you will learn</strong></span>\r\n<ul>\r\n 	<li>how to be self-confident</li>\r\n 	<li>to naturally increase your self-esteem</li>\r\n 	<li>NLP techniques to instantly switch on self-confidence</li>\r\n 	<li>how to be relaxed around others</li>\r\n 	<li>how to smile naturally</li>\r\n 	<li>to be self-confident in your own way</li>\r\n 	<li>a self-hypnosis technique to naturally see yourself as self-confident</li>\r\n</ul>\r\nThis self-confidence building workshop lasts for 2 hours starting at 7.30 pm.\r\nYou will learn easy to use skills and techniques that will quickly improve your self-confidence and self-esteem.\r\nWith practice, you can improve these levels to those of your choice.\r\n\r\n<strong>You can book your place here. Click now to book your place.</strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-confidence-workshop-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <strong>your free consultation online here</strong>.\r\n<h4><strong>What did Dr Andrew say about our services?</strong></h4>\r\n&nbsp;\r\n\r\nYou can also join <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Secret Workshops Discussion Group Here</a></strong>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”\r\n\r\n&nbsp;','Self-Confidence Workshop','','inherit','closed','closed','','2612-revision-v1','','','2019-02-19 15:52:03','2019-02-19 15:52:03','',2612,'https://www.newcastle-hypnotherapy.com/2612-revision-v1/',0,'revision','',0),(2630,1,'2019-02-19 15:53:52','2019-02-19 15:53:52','<img class=\"alignleft size-medium wp-image-2613\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280-300x171.jpg\" alt=\"self-confidence-workshop\" width=\"300\" height=\"171\" />\r\n<strong>Wednesday the 6th of March.</strong>\r\n<strong>7.30 pm - 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£10 Per person</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below - Limited Spaces\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Improve Your Self-Confidence &amp; Feel Amazing.</strong></span></h4>\r\n<strong>Have you noticed that people with great self-confidence find life usually goes in their favour?</strong> Do you see them attracting good things, good people, less resistance in life and they smile much more?\r\n\r\n<strong>Self-confidence is a natural skill, a mindset, an attitude that gives people that extra edge in life. </strong>It makes life so much easier as though life bends the right way, for people with self-confidence.\r\n<h4><span style=\"color: #008000;\"><strong>Good News! - Everyone can learn self-confidence.</strong></span></h4>\r\n<strong>Daftly we are not taught self-confidence in school.</strong> Some people naturally pick it up while others miss it completely. <strong>The difference self-confidence can make to our lives is amazing. </strong>Your life can be so much better.\r\n\r\n<span style=\"color: #008000;\"><strong>During This Self-Confidence Workshop, you will learn</strong></span>\r\n<ul>\r\n 	<li>how to be self-confident</li>\r\n 	<li>to naturally increase your self-esteem</li>\r\n 	<li>NLP techniques to instantly switch on self-confidence</li>\r\n 	<li>how to be relaxed around others</li>\r\n 	<li>how to smile naturally</li>\r\n 	<li>to be self-confident in your own way</li>\r\n 	<li>a self-hypnosis technique to naturally see yourself as self-confident</li>\r\n</ul>\r\nThis self-confidence building workshop lasts for 2 hours starting at 7.30 pm.\r\nYou will learn easy to use skills and techniques that will quickly improve your self-confidence and self-esteem.\r\nWith practice, you can improve these levels to those of your choice.\r\n\r\n<strong>You can book your place here. Click now to book your place.</strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-confidence-workshop-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <strong>your free consultation online here</strong>.\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n\r\nYou can also join <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Secret Workshops Discussion Group Here</a></strong>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”\r\n\r\n&nbsp;','Self-Confidence Workshop','','inherit','closed','closed','','2612-revision-v1','','','2019-02-19 15:53:52','2019-02-19 15:53:52','',2612,'https://www.newcastle-hypnotherapy.com/2612-revision-v1/',0,'revision','',0),(2631,1,'2019-02-19 15:55:15','2019-02-19 15:55:15','<img class=\"alignleft size-medium wp-image-2613\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280-300x171.jpg\" alt=\"self-confidence-workshop\" width=\"300\" height=\"171\" />\r\n<strong>Wednesday the 6th of March.</strong>\r\n<strong>7.30 pm - 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£10 Per person</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below - Limited Spaces\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Improve Your Self-Confidence &amp; Feel Amazing.</strong></span></h4>\r\n<strong>Have you noticed that people with great self-confidence find life usually goes in their favour?</strong> Do you see them attracting good things, good people, less resistance in life and they smile much more?\r\n\r\n<strong>Self-confidence is a natural skill, a mindset, an attitude that gives people that extra edge in life. </strong>It makes life so much easier as though life bends the right way, for people with self-confidence.\r\n<h4><span style=\"color: #008000;\"><strong>Good News! - Everyone can learn self-confidence.</strong></span></h4>\r\n<strong>Daftly we are not taught self-confidence in school.</strong> Some people naturally pick it up while others miss it completely. <strong>The difference self-confidence can make to our lives is amazing. </strong>Your life can be so much better.\r\n\r\n<span style=\"color: #008000;\"><strong>During This Self-Confidence Workshop, you will learn</strong></span>\r\n<ul>\r\n 	<li>how to be self-confident</li>\r\n 	<li>to naturally increase your self-esteem</li>\r\n 	<li>NLP techniques to instantly switch on self-confidence</li>\r\n 	<li>how to be relaxed around others</li>\r\n 	<li>how to smile naturally</li>\r\n 	<li>to be self-confident in your own way</li>\r\n 	<li>a self-hypnosis technique to naturally see yourself as self-confident</li>\r\n</ul>\r\nThis self-confidence building workshop lasts for 2 hours starting at 7.30 pm.\r\nYou will learn easy to use skills and techniques that will quickly improve your self-confidence and self-esteem.\r\nWith practice, you can improve these levels to those of your choice.\r\n\r\n<strong>You can book your place here. Click now to book your place.</strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-confidence-workshop-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <strong>your free consultation online here</strong>.\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\nYou can also join <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Secret Workshops Discussion Group Here</a></strong>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary </strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-confidence-workshop-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>','Self-Confidence Workshop','','inherit','closed','closed','','2612-revision-v1','','','2019-02-19 15:55:15','2019-02-19 15:55:15','',2612,'https://www.newcastle-hypnotherapy.com/2612-revision-v1/',0,'revision','',0),(2632,1,'2019-02-19 15:57:02','2019-02-19 15:57:02','<img class=\"alignleft size-medium wp-image-2613\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280-300x171.jpg\" alt=\"self-confidence-workshop\" width=\"300\" height=\"171\" />\r\n<strong>Wednesday the 6th of March.</strong>\r\n<strong>7.30 pm - 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£15 per person or £10 Early Bird Booking</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below - Limited Spaces\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Improve Your Self-Confidence &amp; Feel Amazing.</strong></span></h4>\r\n<strong>Have you noticed that people with great self-confidence find life usually goes in their favour?</strong> Do you see them attracting good things, good people, less resistance in life and they smile much more?\r\n\r\n<strong>Self-confidence is a natural skill, a mindset, an attitude that gives people that extra edge in life. </strong>It makes life so much easier as though life bends the right way, for people with self-confidence.\r\n<h4><span style=\"color: #008000;\"><strong>Good News! - Everyone can learn self-confidence.</strong></span></h4>\r\n<strong>Daftly we are not taught self-confidence in school.</strong> Some people naturally pick it up while others miss it completely. <strong>The difference self-confidence can make to our lives is amazing. </strong>Your life can be so much better.\r\n\r\n<span style=\"color: #008000;\"><strong>During This Self-Confidence Workshop, you will learn</strong></span>\r\n<ul>\r\n 	<li>how to be self-confident</li>\r\n 	<li>to naturally increase your self-esteem</li>\r\n 	<li>NLP techniques to instantly switch on self-confidence</li>\r\n 	<li>how to be relaxed around others</li>\r\n 	<li>how to smile naturally</li>\r\n 	<li>to be self-confident in your own way</li>\r\n 	<li>a self-hypnosis technique to naturally see yourself as self-confident</li>\r\n</ul>\r\nThis self-confidence building workshop lasts for 2 hours starting at 7.30 pm.\r\nYou will learn easy to use skills and techniques that will quickly improve your self-confidence and self-esteem.\r\nWith practice, you can improve these levels to those of your choice.\r\n\r\n<strong>You can book your place here. Click now to book your place.</strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-confidence-workshop-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <strong>your free consultation online here</strong>.\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\nYou can also join <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Secret Workshops Discussion Group Here</a></strong>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-confidence-workshop-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>','Self-Confidence Workshop','','inherit','closed','closed','','2612-revision-v1','','','2019-02-19 15:57:02','2019-02-19 15:57:02','',2612,'https://www.newcastle-hypnotherapy.com/2612-revision-v1/',0,'revision','',0),(2633,1,'2019-02-19 15:57:45','2019-02-19 15:57:45','<img class=\"alignleft size-medium wp-image-2613\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280-300x171.jpg\" alt=\"self-confidence-workshop\" width=\"300\" height=\"171\" />\r\n<strong>Wednesday the 6th of March.</strong>\r\n<strong>7.30 pm - 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£15 (£10 Early Bird)</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below - Limited Spaces\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Improve Your Self-Confidence &amp; Feel Amazing.</strong></span></h4>\r\n<strong>Have you noticed that people with great self-confidence find life usually goes in their favour?</strong> Do you see them attracting good things, good people, less resistance in life and they smile much more?\r\n\r\n<strong>Self-confidence is a natural skill, a mindset, an attitude that gives people that extra edge in life. </strong>It makes life so much easier as though life bends the right way, for people with self-confidence.\r\n<h4><span style=\"color: #008000;\"><strong>Good News! - Everyone can learn self-confidence.</strong></span></h4>\r\n<strong>Daftly we are not taught self-confidence in school.</strong> Some people naturally pick it up while others miss it completely. <strong>The difference self-confidence can make to our lives is amazing. </strong>Your life can be so much better.\r\n\r\n<span style=\"color: #008000;\"><strong>During This Self-Confidence Workshop, you will learn</strong></span>\r\n<ul>\r\n 	<li>how to be self-confident</li>\r\n 	<li>to naturally increase your self-esteem</li>\r\n 	<li>NLP techniques to instantly switch on self-confidence</li>\r\n 	<li>how to be relaxed around others</li>\r\n 	<li>how to smile naturally</li>\r\n 	<li>to be self-confident in your own way</li>\r\n 	<li>a self-hypnosis technique to naturally see yourself as self-confident</li>\r\n</ul>\r\nThis self-confidence building workshop lasts for 2 hours starting at 7.30 pm.\r\nYou will learn easy to use skills and techniques that will quickly improve your self-confidence and self-esteem.\r\nWith practice, you can improve these levels to those of your choice.\r\n\r\n<strong>You can book your place here. Click now to book your place.</strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-confidence-workshop-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <strong>your free consultation online here</strong>.\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\nYou can also join <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Secret Workshops Discussion Group Here</a></strong>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-confidence-workshop-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>','Self-Confidence Workshop','','inherit','closed','closed','','2612-revision-v1','','','2019-02-19 15:57:45','2019-02-19 15:57:45','',2612,'https://www.newcastle-hypnotherapy.com/2612-revision-v1/',0,'revision','',0),(2634,1,'2019-02-19 15:58:40','2019-02-19 15:58:40','<img class=\"alignleft size-medium wp-image-2613\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280-300x171.jpg\" alt=\"self-confidence-workshop\" width=\"300\" height=\"171\" />\r\n<strong>Wednesday the 6th of March.</strong>\r\n<strong>7.30 pm - 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£15 (£10 Early Bird)</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below - Limited Spaces\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Improve Your Self-Confidence &amp; Feel Amazing.</strong></span></h4>\r\n<strong>Have you noticed that people with great self-confidence find life usually goes in their favour?</strong> Do you see them attracting good things, good people, less resistance in life and they smile much more?\r\n\r\n<strong>Self-confidence is a natural skill, a mindset, an attitude that gives people that extra edge in life. </strong>It makes life so much easier as though life bends the right way, for people with self-confidence.\r\n<h4><span style=\"color: #008000;\"><strong>Good News! - Everyone can learn self-confidence.</strong></span></h4>\r\n<strong>Daftly we are not taught self-confidence in school.</strong> Some people naturally pick it up while others miss it completely. <strong>The difference self-confidence can make to our lives is amazing. </strong>Your life can be so much better.\r\n\r\n<span style=\"color: #008000;\"><strong>During This Self-Confidence Workshop, you will learn</strong></span>\r\n<ul>\r\n 	<li>how to be self-confident</li>\r\n 	<li>to naturally increase your self-esteem</li>\r\n 	<li>NLP techniques to instantly switch on self-confidence</li>\r\n 	<li>how to be relaxed around others</li>\r\n 	<li>how to smile naturally</li>\r\n 	<li>to be self-confident in your own way</li>\r\n 	<li>a self-hypnosis technique to naturally see yourself as self-confident</li>\r\n</ul>\r\nThis self-confidence building workshop lasts for 2 hours starting at 7.30 pm.\r\nYou will learn easy to use skills and techniques that will quickly improve your self-confidence and self-esteem.\r\nWith practice, you can improve these levels to those of your choice.\r\n\r\n<strong>You can book your place here. <a href=\"https://www.newcastle-hypnotherapy.com/product/self-confidence-workshop-booking/\">Click now to book your place.</a></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-confidence-workshop-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <strong>your free consultation online here</strong>.\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\nYou can also join <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Secret Workshops Discussion Group Here</a></strong>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-confidence-workshop-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>','Self-Confidence Workshop','','inherit','closed','closed','','2612-revision-v1','','','2019-02-19 15:58:40','2019-02-19 15:58:40','',2612,'https://www.newcastle-hypnotherapy.com/2612-revision-v1/',0,'revision','',0),(2635,1,'2019-02-19 17:22:44','2019-02-19 17:22:44','','The Secrets Of Self-Confidence Workshop - 11th December','','publish','closed','closed','','2635','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=2635',23,'nav_menu_item','',0),(2636,1,'2019-02-20 10:23:17','2019-02-20 10:23:17','','Order &ndash; February 20, 2019 @ 10:23 AM','','wc-processing','open','closed','order_5c6d2a9581d31','order-feb-20-2019-1023-am','','','2019-02-20 10:26:08','2019-02-20 10:26:08','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2636',0,'shop_order','',3),(2637,1,'2019-02-22 10:48:06','2019-02-22 10:48:06','','Order &ndash; February 22, 2019 @ 10:48 AM','','wc-processing','open','closed','order_5c6fd36693da1','order-feb-22-2019-1048-am','','','2019-02-22 10:48:54','2019-02-22 10:48:54','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2637',0,'shop_order','',3),(2641,1,'2019-02-24 16:52:04','2019-02-24 16:52:04','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong><span style=\"color: #000000;\">Join us for another enjoyable evening of Past Life Regression.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\n\r\n<strong>The Vault, Wallsend.\r\n20th March from 7.30 pm to 9.30 pm.\r\n£15 (£10 Early Bird)</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\nWe will record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\nWho were your family?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Secret Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nYou can come along and just watch others being regressed or if you would like to be regressed yourself, simply let us know when making your booking. We will work through as many people as we can and can\'t promise to fit everyone in.\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out to you before the workshop.\r\nYou will need to book your place in advance by clicking the button below.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>&nbsp;\r\n\r\n&nbsp;\r\n\r\nTo learn more about The Secret Workshops and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Secret Workshops <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>','Past Life Regression Workshop - 20th March','','inherit','closed','closed','','1185-revision-v1','','','2019-02-24 16:52:04','2019-02-24 16:52:04','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(2638,1,'2019-02-24 16:42:49','2019-02-24 16:42:49','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong>Join us for another enjoyable evening of Past Life <span style=\"color: #000000;\">Regression.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\n\r\n&nbsp;\r\n\r\n<strong>White Feather House, South Shields.\r\nWednesday 23rd January, from 7 pm to 9.30 pm.</strong>\r\n£10 per person. <strong>Booking required. Limited Spaces</strong>.\r\nIncludes tea, coffee &amp; snacks.\r\n\r\n<span style=\"color: #ff6600;\"><strong>We do expect this to sell out fast so please book early to avoid disappointment.</strong></span>\r\nWe will record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\nWho were your family?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nYou can come along and just watch others being regressed or if you would like to be regressed yourself, simply let us know when making your booking. We will work through as many people as we can and can\'t promise to fit everyone in.\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out to you before the workshop.\r\nYou will need to book your place in advance by clicking the button below.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>&nbsp;\r\n\r\n&nbsp;\r\n\r\nTo learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop - 20th March','','inherit','closed','closed','','1185-revision-v1','','','2019-02-24 16:42:49','2019-02-24 16:42:49','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(2640,1,'2019-02-24 16:44:08','2019-02-24 16:44:08','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong><span style=\"color: #000000;\">Join us for another enjoyable evening of Past Life Regression.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\n\r\n&nbsp;\r\n\r\n<strong>White Feather House, South Shields.\r\nWednesday 23rd January, from 7 pm to 9.30 pm.</strong>\r\n£10 per person. <strong>Booking required. Limited Spaces</strong>.\r\nIncludes tea, coffee &amp; snacks.\r\n\r\n<span style=\"color: #ff6600;\"><strong>We do expect this to sell out fast so please book early to avoid disappointment.</strong></span>\r\nWe will record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\nWho were your family?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nYou can come along and just watch others being regressed or if you would like to be regressed yourself, simply let us know when making your booking. We will work through as many people as we can and can\'t promise to fit everyone in.\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out to you before the workshop.\r\nYou will need to book your place in advance by clicking the button below.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>&nbsp;\r\n\r\n&nbsp;\r\n\r\nTo learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop - 20th March','','inherit','closed','closed','','1185-revision-v1','','','2019-02-24 16:44:08','2019-02-24 16:44:08','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(2639,1,'2019-02-24 16:43:30','2019-02-24 16:43:30','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong>Join us for another enjoyable evening of Past Life <span style=\"color: #000000;\">Regression.</span><span style=\"color: #000000;\">\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\n\r\n&nbsp;\r\n\r\n<strong>White Feather House, South Shields.\r\nWednesday 23rd January, from 7 pm to 9.30 pm.</strong>\r\n£10 per person. <strong>Booking required. Limited Spaces</strong>.\r\nIncludes tea, coffee &amp; snacks.\r\n\r\n<span style=\"color: #ff6600;\"><strong>We do expect this to sell out fast so please book early to avoid disappointment.</strong></span>\r\nWe will record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\nWho were your family?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Wednesday Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nYou can come along and just watch others being regressed or if you would like to be regressed yourself, simply let us know when making your booking. We will work through as many people as we can and can\'t promise to fit everyone in.\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out to you before the workshop.\r\nYou will need to book your place in advance by clicking the button below.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>&nbsp;\r\n\r\n&nbsp;\r\n\r\nTo learn more about the Wednesday Workshop and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Wednesday Workshop is a non-profit event. Once you have booked your place you can move your place to someone else by contacting us and we do not offer refunds. Attendance is strictly by advance booking. Please arrive on time, as directed in the confirmation email.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>','Past Life Regression Workshop - 20th March','','inherit','closed','closed','','1185-revision-v1','','','2019-02-24 16:43:30','2019-02-24 16:43:30','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(2643,1,'2019-02-24 17:18:59','2019-02-24 17:18:59','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">Newcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #ff6600;\"><strong>Our next event is coming soon. Sign up for the newsletter below for full info of next events.\r\n</strong></span>\r\n\r\nIn this relaxed, enjoyable workshop you will learn:\r\n<ul>\r\n 	<li><strong> </strong>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>You can book your place below today.</strong>\r\n</span></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis Practice Group 27th March','','inherit','closed','closed','','560-revision-v1','','','2019-02-24 17:18:59','2019-02-24 17:18:59','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2642,1,'2019-02-24 17:16:59','2019-02-24 17:16:59','<h2><strong><span style=\"color: #008000;\">Look Great For The Summer\r\n</span></strong></h2>\r\n<img class=\"wp-image-939 size-full aligncenter\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1.jpg\" alt=\"\" width=\"552\" height=\"369\" />\r\n<h2><strong><span style=\"color: #008000;\">Self Hypnosis for Weight Loss Workshop - Saturday 9th June.</span></strong></h2>\r\n<span style=\"color: #ff6600;\"><strong>Our next event is coming soon. Sign up for the newsletter below for full info of next events.\r\n</strong></span>\r\n\r\nIn this relaxed, enjoyable workshop you will learn:\r\n<ul>\r\n 	<li><strong> </strong>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>You can book your place below today.</strong>\r\n</span></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis Practice Group 27th March','','inherit','closed','closed','','560-revision-v1','','','2019-02-24 17:16:59','2019-02-24 17:16:59','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2644,1,'2019-02-24 17:19:37','2019-02-24 17:19:37','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">Newcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #ff6600;\"><strong>Our next event is coming soon. Sign up for the newsletter below for full info of next events.\r\n</strong></span>\r\n\r\nIn this relaxed, enjoyable workshop you will learn:\r\n<ul>\r\n 	<li><strong> </strong>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>You can book your place below today.</strong>\r\n</span></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis Practice Group - Newcastle','','inherit','closed','closed','','560-revision-v1','','','2019-02-24 17:19:37','2019-02-24 17:19:37','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2645,1,'2019-02-24 17:19:57','2019-02-24 17:19:57','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">Newcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #ff6600;\"><strong>Our next event is coming soon. Sign up for the newsletter below for full info of next events.\r\n</strong></span>\r\n\r\nIn this relaxed, enjoyable workshop you will learn:\r\n<ul>\r\n 	<li><strong> </strong>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>You can book your place below today.</strong>\r\n</span></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-02-24 17:19:57','2019-02-24 17:19:57','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2647,1,'2019-02-24 17:46:57','2019-02-24 17:46:57','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n27th March. 7.30 pm to 9.3o\r\nThe Vault, Wallsend.\r\n£15 each (£10 Early Bird)\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Practice Group - March\r\n</strong></span></h4>\r\nSelf-Hypnosis is always one of our most poplular workshops and gives us a great skill set for a better life.\r\nSuitable for both beginners and those who have attended a self-hypnosis workshop before.\r\n<ul>\r\n 	<li>learn self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions and behaviour</li>\r\n 	<li>take control of cravings and reaction</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</form>','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-02-24 17:46:57','2019-02-24 17:46:57','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2646,1,'2019-02-24 17:23:11','2019-02-24 17:23:11','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">Newcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n27th March. 7.30 pm to 9.3o\r\nThe Vault, Wallsend.\r\n£15 each (£10 Early Bird)\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #ff6600;\"><strong>Our next event is coming soon. Sign up for the newsletter below for full info of next events.\r\n</strong></span>\r\n\r\nIn this relaxed, enjoyable workshop you will learn:\r\n<ul>\r\n 	<li><strong> </strong>to help you control your <strong>Food Cravings</strong></li>\r\n 	<li>to make <strong>Better Food Choices</strong></li>\r\n 	<li>to control <strong>Stress &amp; Anxiety</strong> related to food</li>\r\n 	<li>to help you <strong>Control Your Appetite</strong></li>\r\n 	<li>to use the power of <strong>Mindfulness &amp; </strong>Mediatation over food</li>\r\n 	<li>to use you <strong>Mind to Enjoy Excercise</strong></li>\r\n 	<li>to explore and add a <strong>Variety Of New Foods</strong> to your diet</li>\r\n 	<li>to develope a <strong>Healthy Mindset</strong></li>\r\n 	<li>to control <strong>Emotional Eating</strong></li>\r\n 	<li>to Develop <strong>Your Reason Why and Motivation\r\n</strong></li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>You will also learn:</strong></span></h2>\r\n<ul>\r\n 	<li>why <strong>Calorie Counting</strong> will often not work</li>\r\n 	<li>the surprising <strong>Foods That Cause The Biggest Weight Gain</strong></li>\r\n 	<li>the <strong>Foods That Increase Cravings</strong></li>\r\n 	<li>about the many <strong>Myths Of Weight Loss</strong></li>\r\n 	<li>why most <strong>Diets Do Not Work</strong></li>\r\n 	<li>how to <strong>Save Money</strong> while losing weight</li>\r\n</ul>\r\n<h2><span style=\"color: #008000;\"><strong>Also included are:</strong></span></h2>\r\n<ul>\r\n 	<li>the Self-Hypnosis For Weight Loss<strong> Workshop Handouts</strong></li>\r\n 	<li>a <strong>Hypnotic Audio Program</strong> \"Self-Hypnosis For Weight Loss\" for home use</li>\r\n 	<li>access to our <strong>Private Facebook Support Group</strong> to help you achieve your goal</li>\r\n</ul>\r\n<strong>Booking in advance is required for this event and spaces are limited.\r\n</strong>\r\n<h2><span style=\"color: #008000;\"><strong>You can book your place below today.</strong>\r\n</span></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<h2><span style=\"color: #008000;\"><strong>Your Free Resources &amp; Future Events\r\nJoin the Weight Loss Newsletter Today</strong></span></h2>\r\n[contact-form-7 id=\"644\" title=\"Weight Loss Events Newsletter\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">Self-Hypnosis For Weight Loss\r\n</span></strong></h2>\r\nYou can also book a one to one session for help with weight loss and many other issues.\r\nCall 07568 455 809 to discuss which options are best for you.\r\n\r\nProud member of the <a href=\"https://www.ukguild.com/member/mark-morley\">UK Guild of Hypnosis Practitioners</a>\r\n\r\nFind details of other <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Self-hypnosis events here</a>\r\n\r\nTerms &amp; Conditions.\r\nPlaces are limited for this workshop. If you are unable to attend the workshop once you have booked you place, please let us know as soon as possible. We will offer you an alternative date or workshop place in the future or to use your payment towards a single session.\r\nWe do not offer a refund once you have booked your place.\r\nResults will vary for each individul and will depend on the effort you put into using the skills you learn.\r\nOngoing support is available in the private facebook group for this event.\r\n\r\n</form>','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-02-24 17:23:11','2019-02-24 17:23:11','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2649,1,'2019-02-24 17:57:48','2019-02-24 17:57:48','The Vault, Wallsend. 7.30 pm to 9.30 pm\n\n<strong>Terms &amp; Conditions.</strong>\nAttendance is strictly by advance booking on a first come first served basis.\n\nOnce you have booked your place, the website will send you a confirmation.\nUseful notes regarding each workshop are sent out a few days in advance.\n\n<strong>Refund Policy.</strong> Please note we do not offer refunds if you are unable to attend.\nYou may transfer your place to someone else.\n\n&nbsp;','Self-Hypnosis Practice Group - Newcastle','<strong>Book your place for this workshop here.</strong>\nYou can pay by Card, Paypal or Bank Transfer.\n<em>Paying by bank transfer helps us to keep costs down.</em>\nPayments need to be made within 30 mins of your booking if paying by BACS.\nPlaces are limited and taken on a first come first served basis','inherit','closed','closed','','2454-autosave-v1','','','2019-02-24 17:57:48','2019-02-24 17:57:48','',2454,'https://www.newcastle-hypnotherapy.com/2454-autosave-v1/',0,'revision','',0),(2659,1,'2019-02-24 18:21:07','2019-02-24 18:21:07','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n27th March. 7.30 pm to 9.3o\r\nThe Vault, Wallsend.\r\n£15 each (£10 Early Bird)\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - March\r\n</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\nSuitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practising and strengthening your skills.\r\n<ul>\r\n 	<li>learn self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions and behaviour</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\nThis self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\n<strong>Join us by <a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\">booking your place below, now.</a></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n&nbsp;\r\n\r\n\r\n\r\n','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-02-24 18:21:07','2019-02-24 18:21:07','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2650,1,'2019-02-24 18:06:11','2019-02-24 18:06:11','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n27th March. 7.30 pm to 9.3o\r\nThe Vault, Wallsend.\r\n£15 each (£10 Early Bird)\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - March\r\n</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\nSuitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practising and strengthening your skills.\r\n<ul>\r\n 	<li>learn self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions and behaviour</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\nThis self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\nJoin us by booking your place below now.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\nYou can also learn about our regular events by joining our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</form>','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-02-24 18:06:11','2019-02-24 18:06:11','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2651,1,'2019-02-24 18:08:57','2019-02-24 18:08:57','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n27th March. 7.30 pm to 9.3o\r\nThe Vault, Wallsend.\r\n£15 each (£10 Early Bird)\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - March\r\n</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\nSuitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practising and strengthening your skills.\r\n<ul>\r\n 	<li>learn self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions and behaviour</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\nThis self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\nJoin us by booking your place below now.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />You can also learn about our regular events by joining our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</form>','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-02-24 18:08:57','2019-02-24 18:08:57','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2652,1,'2019-02-24 18:10:23','2019-02-24 18:10:23','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n27th March. 7.30 pm to 9.3o\r\nThe Vault, Wallsend.\r\n£15 each (£10 Early Bird)\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - March\r\n</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\nSuitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practising and strengthening your skills.\r\n<ul>\r\n 	<li>learn self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions and behaviour</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\nThis self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\nJoin us by booking your place below now.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />You can also learn about our regular events by joining our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</form>','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-02-24 18:10:23','2019-02-24 18:10:23','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2653,1,'2019-02-24 18:10:44','2019-02-24 18:10:44','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n27th March. 7.30 pm to 9.3o\r\nThe Vault, Wallsend.\r\n£15 each (£10 Early Bird)\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - March\r\n</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\nSuitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practising and strengthening your skills.\r\n<ul>\r\n 	<li>learn self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions and behaviour</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\nThis self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\n<strong>Join us by booking your place below now.</strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />You can also learn about our regular events by joining our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</form>','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-02-24 18:10:44','2019-02-24 18:10:44','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2654,1,'2019-02-24 18:12:20','2019-02-24 18:12:20','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n27th March. 7.30 pm to 9.3o\r\nThe Vault, Wallsend.\r\n£15 each (£10 Early Bird)\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - March\r\n</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\nSuitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practising and strengthening your skills.\r\n<ul>\r\n 	<li>learn self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions and behaviour</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\nThis self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\n<strong>Join us by <a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\">booking your place below, now.</a></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />You can also learn about our regular events by joining our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</form>','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-02-24 18:12:20','2019-02-24 18:12:20','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2655,1,'2019-02-24 18:14:31','2019-02-24 18:14:31','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n27th March. 7.30 pm to 9.3o\r\nThe Vault, Wallsend.\r\n£15 each (£10 Early Bird)\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - March\r\n</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\nSuitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practising and strengthening your skills.\r\n<ul>\r\n 	<li>learn self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions and behaviour</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\nThis self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\n<strong>Join us by <a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\">booking your place below, now.</a></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n<img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />You can also learn about our regular events by joining our newsletter.\r\n\r\n&nbsp;\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</form>','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-02-24 18:14:31','2019-02-24 18:14:31','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2656,1,'2019-02-24 18:16:55','2019-02-24 18:16:55','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n27th March. 7.30 pm to 9.3o\r\nThe Vault, Wallsend.\r\n£15 each (£10 Early Bird)\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - March\r\n</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\nSuitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practising and strengthening your skills.\r\n<ul>\r\n 	<li>learn self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions and behaviour</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\nThis self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\n<strong>Join us by <a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\">booking your place below, now.</a></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n\r\n<strong>Learn more about our regular events.</strong>\r\nSubscribe to the events newsletter below.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. Your details are always kept private. You can unsubscribe from this newsletter at any time.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</form>','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-02-24 18:16:55','2019-02-24 18:16:55','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2658,1,'2019-02-24 18:19:52','2019-02-24 18:19:52','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n27th March. 7.30 pm to 9.3o\r\nThe Vault, Wallsend.\r\n£15 each (£10 Early Bird)\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - March\r\n</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\nSuitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practising and strengthening your skills.\r\n<ul>\r\n 	<li>learn self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions and behaviour</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\nThis self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\n<strong>Join us by <a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\">booking your place below, now.</a></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</form>','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-02-24 18:19:52','2019-02-24 18:19:52','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2657,1,'2019-02-24 18:17:37','2019-02-24 18:17:37','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n27th March. 7.30 pm to 9.3o\r\nThe Vault, Wallsend.\r\n£15 each (£10 Early Bird)\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - March\r\n</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\nSuitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practising and strengthening your skills.\r\n<ul>\r\n 	<li>learn self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions and behaviour</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\nThis self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\n<strong>Join us by <a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\">booking your place below, now.</a></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"TUJ89RSD8DBDQ\" />\r\n\r\n<strong>Learn more about our regular events.</strong>\r\nSubscribe to the events newsletter below.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. Your details are always kept private. You can unsubscribe from this newsletter at any time.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</form>','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-02-24 18:17:37','2019-02-24 18:17:37','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2660,1,'2019-02-24 18:21:33','2019-02-24 18:21:33','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n27th March. 7.30 pm to 9.3o\r\nThe Vault, Wallsend.\r\n£15 each (£10 Early Bird)\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - March\r\n</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\nSuitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practising and strengthening your skills.\r\n<ul>\r\n 	<li>learn self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions and behaviour</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\nThis self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\n<strong>Join us by <a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\">booking your place below, now.</a></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-02-24 18:21:33','2019-02-24 18:21:33','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2661,1,'2019-02-24 18:23:31','2019-02-24 18:23:31','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n27th March. 7.30 pm to 9.3o\r\nThe Vault, Wallsend.\r\n£15 each (£10 Early Bird)\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - March\r\n</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\nSuitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practising and strengthening your skills.\r\n<ul>\r\n 	<li>learn self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions and behaviour</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\nThis self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\n<strong>Join us by <a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\">booking your place below, now.</a></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can learn about our other events by joining the newsletter\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYou can unsubscribe from the newsletter at any time using the link in every email.','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-02-24 18:23:31','2019-02-24 18:23:31','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2663,1,'2019-02-25 09:34:19','2019-02-25 09:34:19','','Order &ndash; February 25, 2019 @ 09:34 AM','Bringing a friend, Carlie Taylor.','wc-on-hold','open','closed','order_5c73b69b72399','order-feb-25-2019-0934-am','','','2019-02-25 09:34:19','2019-02-25 09:34:19','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2663',0,'shop_order','',2),(2665,1,'2019-03-01 11:27:37','2019-03-01 11:27:37','<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist &amp; Master NLP Practitioner at Newcastle Hypnotherapy.\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland &amp; South Shields</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-03-01 11:27:37','2019-03-01 11:27:37','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2666,1,'2019-03-01 13:06:56','2019-03-01 13:06:56','','Order &ndash; March 1, 2019 @ 01:06 PM','','wc-processing','open','closed','order_5c792e703579e','order-mar-01-2019-0106-pm','','','2019-03-01 13:08:39','2019-03-01 13:08:39','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2666',0,'shop_order','',3),(2668,1,'2019-03-04 22:23:55','2019-03-04 22:23:55','','Order &ndash; March 4, 2019 @ 10:23 PM','','wc-processing','open','closed','order_5c7da57ba2656','order-mar-04-2019-1023-pm','','','2019-03-04 22:25:26','2019-03-04 22:25:26','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2668',0,'shop_order','',3),(2669,1,'2019-03-05 13:51:55','2019-03-05 13:51:55','','Order &ndash; March 5, 2019 @ 01:51 PM','','wc-on-hold','open','closed','order_5c7e7efb43843','order-mar-05-2019-0151-pm','','','2019-03-05 13:51:55','2019-03-05 13:51:55','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2669',0,'shop_order','',2),(2704,1,'2019-04-02 14:21:00','2019-04-02 14:21:00','','Order &ndash; April 2, 2019 @ 02:21 PM','','wc-processing','open','closed','order_5ca36fccd2669','order-apr-02-2019-0221-pm','','','2019-04-02 14:21:54','2019-04-02 14:21:54','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2704',0,'shop_order','',3),(2671,1,'2019-03-17 19:48:18','2019-03-17 19:48:18','','Order &ndash; March 17, 2019 @ 07:48 PM','','wc-on-hold','open','closed','order_5c8ea4829b8c2','order-mar-17-2019-0748-pm','','','2019-03-17 19:48:18','2019-03-17 19:48:18','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2671',0,'shop_order','',2),(2672,1,'2019-03-19 16:35:53','2019-03-19 16:35:53','','Order &ndash; March 19, 2019 @ 04:35 PM','','wc-on-hold','open','closed','order_5c911a691cf9c','order-mar-19-2019-0435-pm','','','2019-03-19 16:35:53','2019-03-19 16:35:53','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2672',0,'shop_order','',2),(2674,1,'2019-03-24 19:31:03','2019-03-24 19:31:03','','JacquiVanAlstyne','','inherit','open','closed','','jacquivanalstyne','','','2019-03-24 19:31:03','2019-03-24 19:31:03','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/JacquiVanAlstyne.jpg',0,'attachment','image/jpeg',0),(2675,1,'2019-03-24 21:30:28','2019-03-24 21:30:28','','Newcastle Hypnotherapy Workshops & Events','','inherit','open','closed','','the-secrets-of-being-happy-2','','','2019-06-30 14:40:30','2019-06-30 14:40:30','',2681,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy.jpg',0,'attachment','image/jpeg',0),(2676,1,'2019-03-25 09:05:39','2019-03-25 09:05:39','','FB_IMG_1553291092849','','inherit','open','closed','','fb_img_1553291092849','','','2019-03-25 09:05:39','2019-03-25 09:05:39','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/FB_IMG_1553291092849.jpg',0,'attachment','image/jpeg',0),(2736,1,'2019-04-20 16:35:50','2019-04-20 16:35:50','<blockquote>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne &amp; Northumberland.\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n</blockquote>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland &amp; South Shields</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-04-20 16:35:50','2019-04-20 16:35:50','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2677,1,'2019-03-25 19:10:09','2019-03-25 19:10:09','<blockquote>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist &amp; Master NLP Practitioner at Newcastle Hypnotherapy.\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n</blockquote>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland &amp; South Shields</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>','Newcastle Hypnotherapy 1','','inherit','closed','closed','','1437-revision-v1','','','2019-03-25 19:10:09','2019-03-25 19:10:09','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2678,1,'2019-03-25 20:21:18','2019-03-25 20:21:18','<blockquote>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Mark Morley - Clinical Hypnotherapist &amp; Master NLP Practitioner at Newcastle Hypnotherapy.\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n</blockquote>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland &amp; South Shields</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-03-25 20:21:18','2019-03-25 20:21:18','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2679,1,'2019-03-26 18:08:57','2019-03-26 18:08:57','','Order &ndash; March 26, 2019 @ 06:08 PM','','wc-on-hold','open','closed','order_5c9a6ab9ed876','order-mar-26-2019-0608-pm','','','2019-03-26 18:08:58','2019-03-26 18:08:58','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2679',0,'shop_order','',2),(2681,1,'2019-04-01 12:05:22','2019-04-01 12:05:22','<img class=\"alignleft wp-image-2675 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\n<strong>Wednesday 6th November.</strong>\r\n<strong>7.30 pm to 9.30 pm.</strong>\r\n<strong>@ The Vault, Wallsend.</strong>\r\n<strong>£15 </strong>\r\n<strong>Advance booking required.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/the-secrets-of-being-happy-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','publish','closed','closed','','the-secrets-of-being-happy','','','2019-09-13 12:57:13','2019-09-13 12:57:13','',0,'https://www.newcastle-hypnotherapy.com/?page_id=2681',0,'page','',0),(2682,1,'2019-04-01 12:01:34','2019-04-01 12:01:34','<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\nWednesday 3rd April.\r\n7.30 pm to 9.30 pm.\r\n@ The Vault, Wallsend.\r\n£15 (£10 Early Bird Booking).\r\nAdvance booking required.\r\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','','','inherit','closed','closed','','2681-revision-v1','','','2019-04-01 12:01:34','2019-04-01 12:01:34','',2681,'https://www.newcastle-hypnotherapy.com/2681-revision-v1/',0,'revision','',0),(2683,1,'2019-04-01 12:01:53','2019-04-01 12:01:53','<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\nWednesday 3rd April.\r\n7.30 pm to 9.30 pm.\r\n@ The Vault, Wallsend.\r\n£15 (£10 Early Bird Booking).\r\nAdvance booking required.\r\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','inherit','closed','closed','','2681-revision-v1','','','2019-04-01 12:01:53','2019-04-01 12:01:53','',2681,'https://www.newcastle-hypnotherapy.com/2681-revision-v1/',0,'revision','',0),(2684,1,'2019-04-01 12:02:45','2019-04-01 12:02:45','<img class=\"alignleft wp-image-2675 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\n<strong>Wednesday 3rd April.</strong>\r\n<strong>7.30 pm to 9.30 pm.</strong>\r\n<strong>@ The Vault, Wallsend.</strong>\r\n<strong>£15 (£10 Early Bird Booking).</strong>\r\n<strong>Advance booking required.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','inherit','closed','closed','','2681-revision-v1','','','2019-04-01 12:02:45','2019-04-01 12:02:45','',2681,'https://www.newcastle-hypnotherapy.com/2681-revision-v1/',0,'revision','',0),(2685,1,'2019-04-01 12:03:05','2019-04-01 12:03:05','<img class=\"alignleft wp-image-2675 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\n<strong>Wednesday 3rd April.</strong>\r\n<strong>7.30 pm to 9.30 pm.</strong>\r\n<strong>@ The Vault, Wallsend.</strong>\r\n<strong>£15 (£10 Early Bird Booking).</strong>\r\n<strong>Advance booking required.</strong>\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','inherit','closed','closed','','2681-revision-v1','','','2019-04-01 12:03:05','2019-04-01 12:03:05','',2681,'https://www.newcastle-hypnotherapy.com/2681-revision-v1/',0,'revision','',0),(2686,1,'2019-04-01 12:04:53','2019-04-01 12:04:53','<img class=\"alignleft wp-image-2675 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\n<strong>Wednesday 3rd April.</strong>\r\n<strong>7.30 pm to 9.30 pm.</strong>\r\n<strong>@ The Vault, Wallsend.</strong>\r\n<strong>£15 (£10 Early Bird Booking).</strong>\r\n<strong>Advance booking required.\r\n<span style=\"color: #ff6600;\">Book Your Place Below</span>\r\n</strong>\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','inherit','closed','closed','','2681-revision-v1','','','2019-04-01 12:04:53','2019-04-01 12:04:53','',2681,'https://www.newcastle-hypnotherapy.com/2681-revision-v1/',0,'revision','',0),(2687,1,'2019-04-01 12:05:22','2019-04-01 12:05:22','<img class=\"alignleft wp-image-2675 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\n<strong>Wednesday 3rd April.</strong>\r\n<strong>7.30 pm to 9.30 pm.</strong>\r\n<strong>@ The Vault, Wallsend.</strong>\r\n<strong>£15 (£10 Early Bird Booking).</strong>\r\n<strong>Advance booking required.\r\n<span style=\"color: #ff6600;\">Book Your Place Below</span>\r\n</strong>\r\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','inherit','closed','closed','','2681-revision-v1','','','2019-04-01 12:05:22','2019-04-01 12:05:22','',2681,'https://www.newcastle-hypnotherapy.com/2681-revision-v1/',0,'revision','',0),(2690,1,'2019-04-01 12:07:35','2019-04-01 12:07:35','<img class=\"alignleft wp-image-2675 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\n<strong>Wednesday 3rd April.</strong>\r\n<strong>7.30 pm to 9.30 pm.</strong>\r\n<strong>@ The Vault, Wallsend.</strong>\r\n<strong>£15 (£10 Early Bird Booking).</strong>\r\n<strong>Advance booking required.\r\n<span style=\"color: #ff6600;\">Book Your Place Below</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','inherit','closed','closed','','2681-revision-v1','','','2019-04-01 12:07:35','2019-04-01 12:07:35','',2681,'https://www.newcastle-hypnotherapy.com/2681-revision-v1/',0,'revision','',0),(2688,1,'2019-04-01 12:06:53','2019-04-01 12:06:53','<img class=\"alignleft wp-image-2675 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\n<strong>Wednesday 3rd April.</strong>\r\n<strong>7.30 pm to 9.30 pm.</strong>\r\n<strong>@ The Vault, Wallsend.</strong>\r\n<strong>£15 (£10 Early Bird Booking).</strong>\r\n<strong>Advance booking required.\r\n<span style=\"color: #ff6600;\">Book Your Place Below</span></strong>\r\n&nbsp;\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','inherit','closed','closed','','2681-revision-v1','','','2019-04-01 12:06:53','2019-04-01 12:06:53','',2681,'https://www.newcastle-hypnotherapy.com/2681-revision-v1/',0,'revision','',0),(2689,1,'2019-04-01 12:07:10','2019-04-01 12:07:10','<img class=\"alignleft wp-image-2675 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\n<strong>Wednesday 3rd April.</strong>\r\n<strong>7.30 pm to 9.30 pm.</strong>\r\n<strong>@ The Vault, Wallsend.</strong>\r\n<strong>£15 (£10 Early Bird Booking).</strong>\r\n<strong>Advance booking required.\r\n<span style=\"color: #ff6600;\">Book Your Place Below</span></strong>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','inherit','closed','closed','','2681-revision-v1','','','2019-04-01 12:07:10','2019-04-01 12:07:10','',2681,'https://www.newcastle-hypnotherapy.com/2681-revision-v1/',0,'revision','',0),(2693,1,'2019-04-01 12:13:23','2019-04-01 12:13:23','<img class=\"alignleft wp-image-2675 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\n<strong>Wednesday 10th April.</strong>\r\n<strong>7.30 pm to 9.30 pm.</strong>\r\n<strong>@ The Vault, Wallsend.</strong>\r\n<strong>£15 (£10 Early Bird Booking).</strong>\r\n<strong>Advance booking required.\r\n<span style=\"color: #ff6600;\">Book Your Place Below</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','inherit','closed','closed','','2681-revision-v1','','','2019-04-01 12:13:23','2019-04-01 12:13:23','',2681,'https://www.newcastle-hypnotherapy.com/2681-revision-v1/',0,'revision','',0),(2691,1,'2019-04-01 12:08:12','2019-04-01 12:08:12','<img class=\"alignleft wp-image-2675 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\n<strong>Wednesday 3rd April.</strong>\r\n<strong>7.30 pm to 9.30 pm.</strong>\r\n<strong>@ The Vault, Wallsend.</strong>\r\n<strong>£15 (£10 Early Bird Booking).</strong>\r\n<strong>Advance booking required.\r\n<span style=\"color: #ff6600;\">Book Your Place Below</span></strong>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','inherit','closed','closed','','2681-revision-v1','','','2019-04-01 12:08:12','2019-04-01 12:08:12','',2681,'https://www.newcastle-hypnotherapy.com/2681-revision-v1/',0,'revision','',0),(2692,1,'2019-04-01 12:12:47','2019-04-01 12:12:47','<img class=\"alignleft wp-image-2675 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\n<strong>Wednesday 3rd April.</strong>\n<strong>7.30 pm to 9.30 pm.</strong>\n<strong>@ The Vault, Wallsend.</strong>\n<strong>£15 (£10 Early Bird Booking).</strong>\n<strong>Advance booking required.\n<span style=\"color: #ff6600;\">Book Your Place Below</span></strong>\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\n\n<strong>Happy people tend to</strong>\n<ul>\n 	<li>be more relaxed</li>\n 	<li>suffer less stress &amp; anxiety</li>\n 	<li>live longer &amp; healthier lives</li>\n 	<li>enjoy better health</li>\n 	<li>attract friends &amp; partners easier</li>\n 	<li>suffer less mental health issues</li>\n 	<li>smile more</li>\n 	<li>enjoy better relationships</li>\n 	<li>age slower</li>\n 	<li>learn faster</li>\n 	<li>experience fewer problems and challenges</li>\n 	<li>handle problems better</li>\n 	<li>enjoy life more</li>\n</ul>\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\nHappiness is just a good habit that happy people do automatically.\nThese natural skills are easy to learn and practice until they become a natural habit.\nThey make life better, easier and more enjoyable.\n\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\n\nYou can join us for this fun workshop by booking your place here -\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\nYou can also learn more about the many regular events by joining our newsletter here.\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\n\nYour privacy is always safe with us and you can unsubscribe at any time.\n\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\n\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\n\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','inherit','closed','closed','','2681-autosave-v1','','','2019-04-01 12:12:47','2019-04-01 12:12:47','',2681,'https://www.newcastle-hypnotherapy.com/2681-autosave-v1/',0,'revision','',0),(2694,1,'2019-04-01 12:13:58','2019-04-01 12:13:58','<img class=\"alignleft wp-image-2675 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\n<strong>Wednesday 10th April.</strong>\r\n<strong>7.30 pm to 9.30 pm.</strong>\r\n<strong>@ The Vault, Wallsend.</strong>\r\n<strong>£15 (£10 Early Bird Booking).</strong>\r\n<strong>Advance booking required.\r\n<span style=\"color: #ff6600;\">Book Your Place Below\r\n\r\n</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','inherit','closed','closed','','2681-revision-v1','','','2019-04-01 12:13:58','2019-04-01 12:13:58','',2681,'https://www.newcastle-hypnotherapy.com/2681-revision-v1/',0,'revision','',0),(2696,1,'2019-04-01 12:15:10','2019-04-01 12:15:10','<h4><img class=\"alignleft wp-image-2675 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\n<strong>Wednesday 10th April.</strong>\r\n<strong>7.30 pm to 9.30 pm.</strong>\r\n<strong>@ The Vault, Wallsend.</strong>\r\n<strong>£15 (£10 Early Bird Booking).</strong>\r\n<strong>Advance booking required.\r\n<span style=\"color: #ff6600;\">Book Your Place Below</span></strong>\r\n\r\n\r\n<strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','inherit','closed','closed','','2681-revision-v1','','','2019-04-01 12:15:10','2019-04-01 12:15:10','',2681,'https://www.newcastle-hypnotherapy.com/2681-revision-v1/',0,'revision','',0),(2695,1,'2019-04-01 12:14:18','2019-04-01 12:14:18','<img class=\"alignleft wp-image-2675 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\n<strong>Wednesday 10th April.</strong>\r\n<strong>7.30 pm to 9.30 pm.</strong>\r\n<strong>@ The Vault, Wallsend.</strong>\r\n<strong>£15 (£10 Early Bird Booking).</strong>\r\n<strong>Advance booking required.\r\n<span style=\"color: #ff6600;\">Book Your Place Below</span></strong>\r\n&nbsp;\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','inherit','closed','closed','','2681-revision-v1','','','2019-04-01 12:14:18','2019-04-01 12:14:18','',2681,'https://www.newcastle-hypnotherapy.com/2681-revision-v1/',0,'revision','',0),(2697,1,'2019-04-01 12:16:09','2019-04-01 12:16:09','<img class=\"alignleft wp-image-2675 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\n<strong>Wednesday 10th April.</strong>\r\n<strong>7.30 pm to 9.30 pm.</strong>\r\n<strong>@ The Vault, Wallsend.</strong>\r\n<strong>£15 (£10 Early Bird Booking).</strong>\r\n<strong>Advance booking required.\r\n<span style=\"color: #008000;\">Book Your Place Below\r\n\r\n</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','inherit','closed','closed','','2681-revision-v1','','','2019-04-01 12:16:09','2019-04-01 12:16:09','',2681,'https://www.newcastle-hypnotherapy.com/2681-revision-v1/',0,'revision','',0),(2700,1,'2019-04-01 12:17:58','2019-04-01 12:17:58','<img class=\"alignleft wp-image-2675 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\n<strong>Wednesday 10th April.</strong>\r\n<strong>7.30 pm to 9.30 pm.</strong>\r\n<strong>@ The Vault, Wallsend.</strong>\r\n<strong>£15 (£10 Early Bird Booking).</strong>\r\n<strong>Advance booking required.\r\n<span style=\"color: #008000;\">Book Your Place Below</span></strong>\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','inherit','closed','closed','','2681-revision-v1','','','2019-04-01 12:17:58','2019-04-01 12:17:58','',2681,'https://www.newcastle-hypnotherapy.com/2681-revision-v1/',0,'revision','',0),(2698,1,'2019-04-01 12:16:29','2019-04-01 12:16:29','<img class=\"alignleft wp-image-2675 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\n<strong>Wednesday 10th April.</strong>\r\n<strong>7.30 pm to 9.30 pm.</strong>\r\n<strong>@ The Vault, Wallsend.</strong>\r\n<strong>£15 (£10 Early Bird Booking).</strong>\r\n<strong>Advance booking required.\r\n<span style=\"color: #008000;\">Book Your Place Below\r\n\r\n</span></strong>\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','inherit','closed','closed','','2681-revision-v1','','','2019-04-01 12:16:29','2019-04-01 12:16:29','',2681,'https://www.newcastle-hypnotherapy.com/2681-revision-v1/',0,'revision','',0),(2699,1,'2019-04-01 12:17:05','2019-04-01 12:17:05','<img class=\"alignleft wp-image-2675 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\n<strong>Wednesday 10th April.</strong>\r\n<strong>7.30 pm to 9.30 pm.</strong>\r\n<strong>@ The Vault, Wallsend.</strong>\r\n<strong>£15 (£10 Early Bird Booking).</strong>\r\n<strong>Advance booking required.\r\n<span style=\"color: #008000;\">Book Your Place Below</span></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','inherit','closed','closed','','2681-revision-v1','','','2019-04-01 12:17:05','2019-04-01 12:17:05','',2681,'https://www.newcastle-hypnotherapy.com/2681-revision-v1/',0,'revision','',0),(2701,1,'2019-04-01 12:44:01','2019-04-01 12:44:01','Once you have booked your place, a confirmation email will be sent to you.\r\nFurther information will be sent to you a few days before this event.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Secret Workshops are a set of non-profit events, sharing life-enhancing skills.\r\nBookings are taken strictly on a first come first served basis and your booking is only secured once payment is complete.\r\n<strong>Booking In Advance.</strong>\r\nWe ask everyone to book and pay in advance please as this reduces admin work and allow us to focus on the workshop in progress.\r\n<strong>Cancellations and refunds.</strong>\r\nIf you are unable to attend you can transfer your place to someone else and it is helpful if you could email us with this information.\r\nWe do not offer refunds if you are unable to attend.','The Secrets Of Being Happy Workshop','Book your place here for Wed the 6th November\r\nYou can pay by Card, Paypal or Bank Transfer.\r\nSpaces are limited to 20 people. First come first served.\r\n<span style=\"color: #ff6600;\"><strong>\r\n</strong></span>','publish','closed','closed','','the-secrets-of-being-happy-workshop','','','2019-09-13 12:59:52','2019-09-13 12:59:52','',0,'https://www.newcastle-hypnotherapy.com/?post_type=product&#038;p=2701',0,'product','',0),(2702,1,'2019-04-01 12:48:36','2019-04-01 12:48:36','<img class=\"alignleft wp-image-2675 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\n<strong>Wednesday 10th April.</strong>\r\n<strong>7.30 pm to 9.30 pm.</strong>\r\n<strong>@ The Vault, Wallsend.</strong>\r\n<strong>£15 (£10 Early Bird Booking).</strong>\r\n<strong>Advance booking required.\r\n<span style=\"color: #008000;\">Book Your Place Below</span></strong>\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/the-secrets-of-being-happy-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','inherit','closed','closed','','2681-revision-v1','','','2019-04-01 12:48:36','2019-04-01 12:48:36','',2681,'https://www.newcastle-hypnotherapy.com/2681-revision-v1/',0,'revision','',0),(2703,1,'2019-04-01 12:55:18','2019-04-01 12:55:18','','The Secrets Of Being Happy - 6th November','','publish','closed','closed','','2703','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=2703',21,'nav_menu_item','',0),(2705,1,'2019-04-05 09:28:19','2019-04-05 09:28:19','','Order &ndash; April 5, 2019 @ 09:28 AM','','wc-on-hold','open','closed','order_5ca71fb3514ef','order-apr-05-2019-0928-am','','','2019-04-05 09:28:19','2019-04-05 09:28:19','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2705',0,'shop_order','',2),(2706,1,'2019-04-06 20:52:17','2019-04-06 20:52:17','','Order &ndash; April 6, 2019 @ 08:52 PM','','wc-processing','open','closed','order_5ca91182006de','order-apr-06-2019-0852-pm','','','2019-04-06 20:53:15','2019-04-06 20:53:15','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2706',0,'shop_order','',3),(2708,1,'2019-04-09 20:15:52','2019-04-09 20:15:52','','Order &ndash; April 9, 2019 @ 08:15 PM','','wc-on-hold','open','closed','order_5cacfd78661a1','order-apr-09-2019-0815-pm','','','2019-04-09 20:15:52','2019-04-09 20:15:52','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2708',0,'shop_order','',1),(2709,1,'2019-04-09 20:57:31','2019-04-09 20:57:31','','Order &ndash; April 9, 2019 @ 08:57 PM','','wc-processing','open','closed','order_5cad073b02460','order-apr-09-2019-0857-pm','','','2019-04-09 20:58:55','2019-04-09 20:58:55','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2709',0,'shop_order','',2),(2710,1,'2019-04-09 21:39:49','2019-04-09 21:39:49','','Order &ndash; April 9, 2019 @ 09:39 PM','','wc-processing','open','closed','order_5cad112583529','order-apr-09-2019-0939-pm','','','2019-04-09 21:40:27','2019-04-09 21:40:27','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2710',0,'shop_order','',2),(3184,1,'2019-09-13 12:56:49','2019-09-13 12:56:49','<img class=\"alignleft wp-image-2675 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\n<strong>Wednesday 6th November.</strong>\r\n<strong>7.30 pm to 9.30 pm.</strong>\r\n<strong>@ The Vault, Wallsend.</strong>\r\n<strong>£15 </strong>\r\n<strong>Advance booking required.\r\n\r\n</strong>\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/the-secrets-of-being-happy-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','inherit','closed','closed','','2681-revision-v1','','','2019-09-13 12:56:49','2019-09-13 12:56:49','',2681,'https://www.newcastle-hypnotherapy.com/2681-revision-v1/',0,'revision','',0),(2711,1,'2019-04-10 14:52:12','2019-04-10 14:52:12','<img class=\"alignleft wp-image-2675 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\n<strong>Wednesday 10th April.</strong>\r\n<strong>7.30 pm to 9.30 pm.</strong>\r\n<strong>@ The Vault, Wallsend.</strong>\r\n<strong>£15 (£10 Early Bird Booking).</strong>\r\n<strong>Advance booking required.\r\n<span style=\"color: #ff6600;\">SORRY - FULLY BOOKED</span>\r\n</strong>\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/the-secrets-of-being-happy-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','inherit','closed','closed','','2681-revision-v1','','','2019-04-10 14:52:12','2019-04-10 14:52:12','',2681,'https://www.newcastle-hypnotherapy.com/2681-revision-v1/',0,'revision','',0),(2712,1,'2019-04-11 17:13:13','2019-04-11 17:13:13','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n24th April. 7.30 pm to 9.3o\r\nThe Vault, Wallsend.\r\n£10 Early Bird.\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - April\r\n</strong></span></h4>\r\nDuring this months practice group we will focus on the stairstep self-hypnosis induction.\r\nThis is easy to learn for fast, self-relaxation and creating calm, stress free states.\r\nWe will take you through this step by step and then to practice this, ensuring you can use this induction well.\r\n\r\n<strong>Suitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practicing and strengthening your skills</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Why Learn Self-Hypnosis Skills?</strong></span>\r\n\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.</h4>\r\n<h4>As part of this workshop you will</h4>\r\n<ul>\r\n 	<li>learn what is self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions and behaviour</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\n<strong>This self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.</strong>\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can learn about our other events by joining the newsletter\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYou can unsubscribe from the newsletter at any time using the link in every email.','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-04-11 17:13:13','2019-04-11 17:13:13','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2713,1,'2019-04-11 17:21:31','2019-04-11 17:21:31','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n24th April. 7.30 pm to 9.3o\r\nThe Vault, Wallsend.\r\n£10 Early Bird.\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - April\r\n</strong></span></h4>\r\nDuring this months practice group we will focus on the stairstep self-hypnosis induction &amp; add in a fun extra.\r\nThis is easy to learn for fast, self-relaxation and creating calm, stress free states.\r\nWe will take you through this step by step and then to practice this, ensuring you can use this induction well.\r\n\r\n<strong>Suitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practicing and strengthening your skills</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Why Learn Self-Hypnosis Skills?</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\n<h4>As part of this workshop you will</h4>\r\n<ul>\r\n 	<li>learn what is self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions and behaviour</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\n<strong>This self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.</strong>\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can learn about our other events by joining the newsletter\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYou can unsubscribe from the newsletter at any time using the link in every email.','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-04-11 17:21:31','2019-04-11 17:21:31','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2714,1,'2019-04-11 18:00:24','2019-04-11 18:00:24','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n17th April. 7.30 pm to 9.3o pm\r\nThe Vault, Wallsend.\r\n£10 Early Bird.\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - April\r\n</strong></span></h4>\r\nDuring this months practice group, we will focus on the stairstep self-hypnosis induction &amp; add in a fun extra.\r\nThis is easy to learn for fast, self-relaxation and creating calm, stress-free states.\r\nWe will take you through this step by step and then practice this, ensuring you can use this induction well.\r\n\r\n<strong>Suitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practicing and strengthening your skills</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Why Learn Self-Hypnosis Skills?</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\n<h4>As part of this workshop, you will</h4>\r\n<ul>\r\n 	<li>learn what is self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions, and behavior</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\n<strong>This self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.</strong>\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can learn about our other events by joining the newsletter\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYou can unsubscribe from the newsletter at any time using the link in every email.','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-04-11 18:00:24','2019-04-11 18:00:24','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2715,1,'2019-04-11 18:03:58','2019-04-11 18:03:58','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n17th April. 7.30 pm to 9.3o pm\r\nThe Vault, Wallsend.\r\n£10 per person.\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - April\r\n</strong></span></h4>\r\nDuring this months practice group, we will focus on the stairstep self-hypnosis induction &amp; add in a fun extra.\r\nThis is easy to learn for fast, self-relaxation and creating calm, stress-free states.\r\nWe will take you through this step by step and then practice this, ensuring you can use this induction well.\r\n\r\n<strong>Suitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practicing and strengthening your skills</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Why Learn Self-Hypnosis Skills?</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\n<h4>As part of this workshop, you will</h4>\r\n<ul>\r\n 	<li>learn what is self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions, and behavior</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\n<strong>This self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.</strong>\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can learn about our other events by joining the newsletter\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYou can unsubscribe from the newsletter at any time using the link in every email.','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-04-11 18:03:58','2019-04-11 18:03:58','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2716,1,'2019-04-11 18:04:23','2019-04-11 18:04:23','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n17th April. 7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\n£10 per person.\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - April\r\n</strong></span></h4>\r\nDuring this months practice group, we will focus on the stairstep self-hypnosis induction &amp; add in a fun extra.\r\nThis is easy to learn for fast, self-relaxation and creating calm, stress-free states.\r\nWe will take you through this step by step and then practice this, ensuring you can use this induction well.\r\n\r\n<strong>Suitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practicing and strengthening your skills</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Why Learn Self-Hypnosis Skills?</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\n<h4>As part of this workshop, you will</h4>\r\n<ul>\r\n 	<li>learn what is self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions, and behavior</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\n<strong>This self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.</strong>\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can learn about our other events by joining the newsletter\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYou can unsubscribe from the newsletter at any time using the link in every email.','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-04-11 18:04:23','2019-04-11 18:04:23','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2717,1,'2019-04-11 18:05:25','2019-04-11 18:05:25','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n17th April. 7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\n£10 per person.\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - April\r\n</strong></span></h4>\r\nDuring this months practice group, we will focus on the stairstep self-hypnosis induction &amp; add in a fun extra.\r\nThis is easy to learn for fast, self-relaxation and creating calm, stress-free states.\r\nWe will take you through this step by step and then practice this, ensuring you can use this induction well.\r\n\r\n<strong>Suitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practicing and strengthening your skills</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Why Learn Self-Hypnosis Skills?</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\n<h4>As part of this workshop, you will</h4>\r\n<ul>\r\n 	<li>learn what is self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions, and behavior</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\n<strong>This self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.</strong>\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can learn about our other events by joining the newsletter\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYou can unsubscribe from the newsletter at any time using the link in every email.','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-04-11 18:05:25','2019-04-11 18:05:25','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2718,1,'2019-04-11 19:26:37','2019-04-11 19:26:37','<img class=\"alignleft size-medium wp-image-2719\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/dealing-with-difficult-people-and-children-300x200.jpg\" alt=\"dealing with difficult people and children\" width=\"300\" height=\"200\" /><strong>\r\n<span style=\"color: #008000;\">Deal with difficult people and children better.</span></strong>\r\n\r\nWed 20th November\r\n7.30 pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person\r\nAdvance booking required\r\n<strong><span style=\"color: #ff6600;\">Book your place below.</span></strong>\r\n\r\n&nbsp;\r\n\r\nDealing with difficult people and children can be frustrating and stressful.\r\nDuring this Secret Workshop, you will learn advanced NLP &amp; Psychology Skills to improve your outcomes.\r\n\r\n<span style=\"color: #008000;\"><strong>Learn how to</strong></span>\r\n<ul>\r\n 	<li>listen better for great results</li>\r\n 	<li>discover hidden messages &amp; needs</li>\r\n 	<li>notice important body language signs</li>\r\n 	<li>keep your composure and stay calm</li>\r\n 	<li>use options to move forward</li>\r\n 	<li>avoid becoming defensive</li>\r\n 	<li>move away from arguments</li>\r\n 	<li>set limits and boundaries</li>\r\n 	<li>protect yourself from negative, energy drainers</li>\r\n 	<li>put your point across nicely</li>\r\n 	<li>obtain a win for everyone</li>\r\n 	<li>improve your communication skills</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Dealing With Difficult People &amp; Children</strong></span></h4>\r\nLearning modern NLP and Psychological methods can really improve your communication skills, making relationships more enjoyable.\r\nThere are many hidden communication signals and messages in every conversation. Learning to recognize these signals opens up vital information that can help with difficult people and children.\r\n\r\nJoin us for this fun Secret Workshop and improve your relationships and communication skills.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/?post_type=product&amp;p=2732&amp;preview=true\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about future events by joining the newsletter below.</strong>\r\n<strong>You can unsubscribe at </strong>any time<strong>. Your privacy is always safe.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<strong>You can also learn more in <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">The Secret Workshop Group</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Dealing With Difficult People & Children','','publish','closed','closed','','dealing-with-difficult-people-children','','','2019-09-13 13:10:32','2019-09-13 13:10:32','',0,'https://www.newcastle-hypnotherapy.com/?page_id=2718',0,'page','',0),(2719,1,'2019-04-11 18:46:54','2019-04-11 18:46:54','','dealing with difficult people and children','','inherit','open','closed','','dealing-with-difficult-people-and-children','','','2019-04-11 18:47:03','2019-04-11 18:47:03','',2718,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/dealing-with-difficult-people-and-children.jpg',0,'attachment','image/jpeg',0),(2720,1,'2019-04-11 18:50:27','2019-04-11 18:50:27','Deal with difficult people and children better.\r\n\r\nWed 8th May 7.30 pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\nBook below','Dealing With Difficult People & Children','','inherit','closed','closed','','2718-revision-v1','','','2019-04-11 18:50:27','2019-04-11 18:50:27','',2718,'https://www.newcastle-hypnotherapy.com/2718-revision-v1/',0,'revision','',0),(2721,1,'2019-04-11 18:51:09','2019-04-11 18:51:09','Deal with difficult people and children better.\r\n\r\nWed 8th May 7.30 pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\nBook your place below.','Dealing With Difficult People & Children','','inherit','closed','closed','','2718-revision-v1','','','2019-04-11 18:51:09','2019-04-11 18:51:09','',2718,'https://www.newcastle-hypnotherapy.com/2718-revision-v1/',0,'revision','',0),(2722,1,'2019-04-11 18:51:47','2019-04-11 18:51:47','<img class=\"alignleft size-medium wp-image-2719\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/dealing-with-difficult-people-and-children-300x200.jpg\" alt=\"dealing with difficult people and children\" width=\"300\" height=\"200\" /><strong>\r\nDeal with difficult people and children better.</strong>\r\n\r\nWed 8th May 7.30 pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\nBook your place below.','Dealing With Difficult People & Children','','inherit','closed','closed','','2718-revision-v1','','','2019-04-11 18:51:47','2019-04-11 18:51:47','',2718,'https://www.newcastle-hypnotherapy.com/2718-revision-v1/',0,'revision','',0),(2723,1,'2019-04-11 19:19:37','2019-04-11 19:19:37','<img class=\"alignleft size-medium wp-image-2719\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/dealing-with-difficult-people-and-children-300x200.jpg\" alt=\"dealing with difficult people and children\" width=\"300\" height=\"200\" /><strong>\r\nDeal with difficult people and children better.</strong>\r\n\r\nWed 8th May 7.30 pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\nBook your place below.\r\n\r\n&nbsp;\r\n\r\nDealing with difficult people and children can be frustrating and stressful.\r\nDuring this Secret Workshop you will learn advanced NLP &amp; Psychology Skills to improve your outcomes.\r\n\r\n<strong>Learn how to</strong>\r\n<ul>\r\n 	<li>listen better for great results</li>\r\n 	<li>discover hidden messages &amp; needs</li>\r\n 	<li>notice important body langauge signs</li>\r\n 	<li>keep your composure and stay calm</li>\r\n 	<li>use options to move forward</li>\r\n 	<li>avoid becoming defensive</li>\r\n 	<li>move away from arguments</li>\r\n 	<li>set limits and boundaries</li>\r\n 	<li>protect yourself from negative, energy drainers</li>\r\n 	<li>put your point across nicely</li>\r\n 	<li>obtain a win for everyone</li>\r\n 	<li>improve your comminication skills</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Dealing With Difficult People &amp; Children</strong></span></h4>\r\nLearning modern NLP and Psychological methods can really improve your communication skills, making relationships more enjoyable.\r\nThere are many hidden communication signals and messages in every conversation. Learning to recognise these signals opens up vital infomration that can help with difficult people and children.\r\n\r\nJoin us for this fun Secret Workshop and improve your relationships and communication skills.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLearn more about futuer events by joining the newsletter below.\r\nYou can unsubscribe at anytime. Your privacy is always safe.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Dealing With Difficult People & Children','','inherit','closed','closed','','2718-revision-v1','','','2019-04-11 19:19:37','2019-04-11 19:19:37','',2718,'https://www.newcastle-hypnotherapy.com/2718-revision-v1/',0,'revision','',0),(2724,1,'2019-04-11 19:20:07','2019-04-11 19:20:07','<img class=\"alignleft size-medium wp-image-2719\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/dealing-with-difficult-people-and-children-300x200.jpg\" alt=\"dealing with difficult people and children\" width=\"300\" height=\"200\" /><strong>\r\nDeal with difficult people and children better.</strong>\r\n\r\nWed 8th May 7.30 pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<strong><span style=\"color: #ff6600;\">Book your place below.</span></strong>\r\n\r\n&nbsp;\r\n\r\nDealing with difficult people and children can be frustrating and stressful.\r\nDuring this Secret Workshop you will learn advanced NLP &amp; Psychology Skills to improve your outcomes.\r\n\r\n<strong>Learn how to</strong>\r\n<ul>\r\n 	<li>listen better for great results</li>\r\n 	<li>discover hidden messages &amp; needs</li>\r\n 	<li>notice important body langauge signs</li>\r\n 	<li>keep your composure and stay calm</li>\r\n 	<li>use options to move forward</li>\r\n 	<li>avoid becoming defensive</li>\r\n 	<li>move away from arguments</li>\r\n 	<li>set limits and boundaries</li>\r\n 	<li>protect yourself from negative, energy drainers</li>\r\n 	<li>put your point across nicely</li>\r\n 	<li>obtain a win for everyone</li>\r\n 	<li>improve your comminication skills</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Dealing With Difficult People &amp; Children</strong></span></h4>\r\nLearning modern NLP and Psychological methods can really improve your communication skills, making relationships more enjoyable.\r\nThere are many hidden communication signals and messages in every conversation. Learning to recognise these signals opens up vital infomration that can help with difficult people and children.\r\n\r\nJoin us for this fun Secret Workshop and improve your relationships and communication skills.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLearn more about futuer events by joining the newsletter below.\r\nYou can unsubscribe at anytime. Your privacy is always safe.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Dealing With Difficult People & Children','','inherit','closed','closed','','2718-revision-v1','','','2019-04-11 19:20:07','2019-04-11 19:20:07','',2718,'https://www.newcastle-hypnotherapy.com/2718-revision-v1/',0,'revision','',0),(2725,1,'2019-04-11 19:20:31','2019-04-11 19:20:31','<img class=\"alignleft size-medium wp-image-2719\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/dealing-with-difficult-people-and-children-300x200.jpg\" alt=\"dealing with difficult people and children\" width=\"300\" height=\"200\" /><strong>\r\n<span style=\"color: #008000;\">Deal with difficult people and children better.</span></strong>\r\n\r\nWed 8th May 7.30 pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<strong><span style=\"color: #ff6600;\">Book your place below.</span></strong>\r\n\r\n&nbsp;\r\n\r\nDealing with difficult people and children can be frustrating and stressful.\r\nDuring this Secret Workshop you will learn advanced NLP &amp; Psychology Skills to improve your outcomes.\r\n\r\n<strong>Learn how to</strong>\r\n<ul>\r\n 	<li>listen better for great results</li>\r\n 	<li>discover hidden messages &amp; needs</li>\r\n 	<li>notice important body langauge signs</li>\r\n 	<li>keep your composure and stay calm</li>\r\n 	<li>use options to move forward</li>\r\n 	<li>avoid becoming defensive</li>\r\n 	<li>move away from arguments</li>\r\n 	<li>set limits and boundaries</li>\r\n 	<li>protect yourself from negative, energy drainers</li>\r\n 	<li>put your point across nicely</li>\r\n 	<li>obtain a win for everyone</li>\r\n 	<li>improve your comminication skills</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Dealing With Difficult People &amp; Children</strong></span></h4>\r\nLearning modern NLP and Psychological methods can really improve your communication skills, making relationships more enjoyable.\r\nThere are many hidden communication signals and messages in every conversation. Learning to recognise these signals opens up vital infomration that can help with difficult people and children.\r\n\r\nJoin us for this fun Secret Workshop and improve your relationships and communication skills.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLearn more about futuer events by joining the newsletter below.\r\nYou can unsubscribe at anytime. Your privacy is always safe.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Dealing With Difficult People & Children','','inherit','closed','closed','','2718-revision-v1','','','2019-04-11 19:20:31','2019-04-11 19:20:31','',2718,'https://www.newcastle-hypnotherapy.com/2718-revision-v1/',0,'revision','',0),(2726,1,'2019-04-11 19:20:56','2019-04-11 19:20:56','<img class=\"alignleft size-medium wp-image-2719\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/dealing-with-difficult-people-and-children-300x200.jpg\" alt=\"dealing with difficult people and children\" width=\"300\" height=\"200\" /><strong>\r\n<span style=\"color: #008000;\">Deal with difficult people and children better.</span></strong>\r\n\r\nWed 8th May 7.30 pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<strong><span style=\"color: #ff6600;\">Book your place below.</span></strong>\r\n\r\n&nbsp;\r\n\r\nDealing with difficult people and children can be frustrating and stressful.\r\nDuring this Secret Workshop you will learn advanced NLP &amp; Psychology Skills to improve your outcomes.\r\n\r\n<span style=\"color: #008000;\"><strong>Learn how to</strong></span>\r\n<ul>\r\n 	<li>listen better for great results</li>\r\n 	<li>discover hidden messages &amp; needs</li>\r\n 	<li>notice important body langauge signs</li>\r\n 	<li>keep your composure and stay calm</li>\r\n 	<li>use options to move forward</li>\r\n 	<li>avoid becoming defensive</li>\r\n 	<li>move away from arguments</li>\r\n 	<li>set limits and boundaries</li>\r\n 	<li>protect yourself from negative, energy drainers</li>\r\n 	<li>put your point across nicely</li>\r\n 	<li>obtain a win for everyone</li>\r\n 	<li>improve your comminication skills</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Dealing With Difficult People &amp; Children</strong></span></h4>\r\nLearning modern NLP and Psychological methods can really improve your communication skills, making relationships more enjoyable.\r\nThere are many hidden communication signals and messages in every conversation. Learning to recognise these signals opens up vital infomration that can help with difficult people and children.\r\n\r\nJoin us for this fun Secret Workshop and improve your relationships and communication skills.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLearn more about futuer events by joining the newsletter below.\r\nYou can unsubscribe at anytime. Your privacy is always safe.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Dealing With Difficult People & Children','','inherit','closed','closed','','2718-revision-v1','','','2019-04-11 19:20:56','2019-04-11 19:20:56','',2718,'https://www.newcastle-hypnotherapy.com/2718-revision-v1/',0,'revision','',0),(2727,1,'2019-04-11 19:21:39','2019-04-11 19:21:39','<img class=\"alignleft size-medium wp-image-2719\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/dealing-with-difficult-people-and-children-300x200.jpg\" alt=\"dealing with difficult people and children\" width=\"300\" height=\"200\" /><strong>\r\n<span style=\"color: #008000;\">Deal with difficult people and children better.</span></strong>\r\n\r\nWed 8th May 7.30 pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<strong><span style=\"color: #ff6600;\">Book your place below.</span></strong>\r\n\r\n&nbsp;\r\n\r\nDealing with difficult people and children can be frustrating and stressful.\r\nDuring this Secret Workshop you will learn advanced NLP &amp; Psychology Skills to improve your outcomes.\r\n\r\n<span style=\"color: #008000;\"><strong>Learn how to</strong></span>\r\n<ul>\r\n 	<li>listen better for great results</li>\r\n 	<li>discover hidden messages &amp; needs</li>\r\n 	<li>notice important body langauge signs</li>\r\n 	<li>keep your composure and stay calm</li>\r\n 	<li>use options to move forward</li>\r\n 	<li>avoid becoming defensive</li>\r\n 	<li>move away from arguments</li>\r\n 	<li>set limits and boundaries</li>\r\n 	<li>protect yourself from negative, energy drainers</li>\r\n 	<li>put your point across nicely</li>\r\n 	<li>obtain a win for everyone</li>\r\n 	<li>improve your comminication skills</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Dealing With Difficult People &amp; Children</strong></span></h4>\r\nLearning modern NLP and Psychological methods can really improve your communication skills, making relationships more enjoyable.\r\nThere are many hidden communication signals and messages in every conversation. Learning to recognise these signals opens up vital infomration that can help with difficult people and children.\r\n\r\nJoin us for this fun Secret Workshop and improve your relationships and communication skills.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about </strong>futuer<strong> events by joining the newsletter below.</strong>\r\n<strong>You can unsubscribe at </strong>anytime<strong>. Your privacy is always safe.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Dealing With Difficult People & Children','','inherit','closed','closed','','2718-revision-v1','','','2019-04-11 19:21:39','2019-04-11 19:21:39','',2718,'https://www.newcastle-hypnotherapy.com/2718-revision-v1/',0,'revision','',0),(2728,1,'2019-04-11 19:26:37','2019-04-11 19:26:37','<img class=\"alignleft size-medium wp-image-2719\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/dealing-with-difficult-people-and-children-300x200.jpg\" alt=\"dealing with difficult people and children\" width=\"300\" height=\"200\" /><strong>\r\n<span style=\"color: #008000;\">Deal with difficult people and children better.</span></strong>\r\n\r\nWed 8th May 7.30 pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<strong><span style=\"color: #ff6600;\">Book your place below.</span></strong>\r\n\r\n&nbsp;\r\n\r\nDealing with difficult people and children can be frustrating and stressful.\r\nDuring this Secret Workshop you will learn advanced NLP &amp; Psychology Skills to improve your outcomes.\r\n\r\n<span style=\"color: #008000;\"><strong>Learn how to</strong></span>\r\n<ul>\r\n 	<li>listen better for great results</li>\r\n 	<li>discover hidden messages &amp; needs</li>\r\n 	<li>notice important body langauge signs</li>\r\n 	<li>keep your composure and stay calm</li>\r\n 	<li>use options to move forward</li>\r\n 	<li>avoid becoming defensive</li>\r\n 	<li>move away from arguments</li>\r\n 	<li>set limits and boundaries</li>\r\n 	<li>protect yourself from negative, energy drainers</li>\r\n 	<li>put your point across nicely</li>\r\n 	<li>obtain a win for everyone</li>\r\n 	<li>improve your comminication skills</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Dealing With Difficult People &amp; Children</strong></span></h4>\r\nLearning modern NLP and Psychological methods can really improve your communication skills, making relationships more enjoyable.\r\nThere are many hidden communication signals and messages in every conversation. Learning to recognise these signals opens up vital infomration that can help with difficult people and children.\r\n\r\nJoin us for this fun Secret Workshop and improve your relationships and communication skills.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about </strong>futuer<strong> events by joining the newsletter below.</strong>\r\n<strong>You can unsubscribe at </strong>anytime<strong>. Your privacy is always safe.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<strong>You can also learn more in <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">The Secret Workshop Group</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Dealing With Difficult People & Children','','inherit','closed','closed','','2718-revision-v1','','','2019-04-11 19:26:37','2019-04-11 19:26:37','',2718,'https://www.newcastle-hypnotherapy.com/2718-revision-v1/',0,'revision','',0),(2730,1,'2019-04-11 19:28:16','2019-04-11 19:28:16','<img class=\"alignleft size-medium wp-image-2719\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/dealing-with-difficult-people-and-children-300x200.jpg\" alt=\"dealing with difficult people and children\" width=\"300\" height=\"200\" /><strong>\r\n<span style=\"color: #008000;\">Deal with difficult people and children better.</span></strong>\r\n\r\nWed 8th May 7.30 pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<strong><span style=\"color: #ff6600;\">Book your place below.</span></strong>\r\n\r\n&nbsp;\r\n\r\nDealing with difficult people and children can be frustrating and stressful.\r\nDuring this Secret Workshop, you will learn advanced NLP &amp; Psychology Skills to improve your outcomes.\r\n\r\n<span style=\"color: #008000;\"><strong>Learn how to</strong></span>\r\n<ul>\r\n 	<li>listen better for great results</li>\r\n 	<li>discover hidden messages &amp; needs</li>\r\n 	<li>notice important body language signs</li>\r\n 	<li>keep your composure and stay calm</li>\r\n 	<li>use options to move forward</li>\r\n 	<li>avoid becoming defensive</li>\r\n 	<li>move away from arguments</li>\r\n 	<li>set limits and boundaries</li>\r\n 	<li>protect yourself from negative, energy drainers</li>\r\n 	<li>put your point across nicely</li>\r\n 	<li>obtain a win for everyone</li>\r\n 	<li>improve your communication skills</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Dealing With Difficult People &amp; Children</strong></span></h4>\r\nLearning modern NLP and Psychological methods can really improve your communication skills, making relationships more enjoyable.\r\nThere are many hidden communication signals and messages in every conversation. Learning to recognize these signals opens up vital information that can help with difficult people and children.\r\n\r\nJoin us for this fun Secret Workshop and improve your relationships and communication skills.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about future events by joining the newsletter below.</strong>\r\n<strong>You can unsubscribe at </strong>any time<strong>. Your privacy is always safe.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<strong>You can also learn more in <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">The Secret Workshop Group</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Dealing With Difficult People & Children','','inherit','closed','closed','','2718-revision-v1','','','2019-04-11 19:28:16','2019-04-11 19:28:16','',2718,'https://www.newcastle-hypnotherapy.com/2718-revision-v1/',0,'revision','',0),(2729,1,'2019-04-11 19:27:47','2019-04-11 19:27:47','<img class=\"alignleft size-medium wp-image-2719\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/dealing-with-difficult-people-and-children-300x200.jpg\" alt=\"dealing with difficult people and children\" width=\"300\" height=\"200\" /><strong>\r\n<span style=\"color: #008000;\">Deal with difficult people and children better.</span></strong>\r\n\r\nWed 8th May 7.30 pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<strong><span style=\"color: #ff6600;\">Book your place below.</span></strong>\r\n\r\n&nbsp;\r\n\r\nDealing with difficult people and children can be frustrating and stressful.\r\nDuring this Secret Workshop, you will learn advanced NLP &amp; Psychology Skills to improve your outcomes.\r\n\r\n<span style=\"color: #008000;\"><strong>Learn how to</strong></span>\r\n<ul>\r\n 	<li>listen better for great results</li>\r\n 	<li>discover hidden messages &amp; needs</li>\r\n 	<li>notice important body language signs</li>\r\n 	<li>keep your composure and stay calm</li>\r\n 	<li>use options to move forward</li>\r\n 	<li>avoid becoming defensive</li>\r\n 	<li>move away from arguments</li>\r\n 	<li>set limits and boundaries</li>\r\n 	<li>protect yourself from negative, energy drainers</li>\r\n 	<li>put your point across nicely</li>\r\n 	<li>obtain a win for everyone</li>\r\n 	<li>improve your communication skills</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Dealing With Difficult People &amp; Children</strong></span></h4>\r\nLearning modern NLP and Psychological methods can really improve your communication skills, making relationships more enjoyable.\r\nThere are many hidden communication signals and messages in every conversation. Learning to recognize these signals opens up vital information that can help with difficult people and children.\r\n\r\nJoin us for this fun Secret Workshop and improve your relationships and communication skills.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about </strong>future<strong> events by joining the newsletter below.</strong>\r\n<strong>You can unsubscribe at </strong>any time<strong>. Your privacy is always safe.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<strong>You can also learn more in <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">The Secret Workshop Group</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Dealing With Difficult People & Children','','inherit','closed','closed','','2718-revision-v1','','','2019-04-11 19:27:47','2019-04-11 19:27:47','',2718,'https://www.newcastle-hypnotherapy.com/2718-revision-v1/',0,'revision','',0),(2731,1,'2019-04-11 19:29:08','2019-04-11 19:29:08','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\n17th April. 7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\n£10 per person.\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - April\r\n</strong></span></h4>\r\nDuring this months practice group, we will focus on the stairstep self-hypnosis induction &amp; add in a fun extra.\r\nThis is easy to learn for fast, self-relaxation and creating calm, stress-free states.\r\nWe will take you through this step by step and then practice this, ensuring you can use this induction well.\r\n\r\n<strong>Suitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practicing and strengthening your skills</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Why Learn Self-Hypnosis Skills?</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\n<h4>As part of this workshop, you will</h4>\r\n<ul>\r\n 	<li>learn what is self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions, and behavior</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\n<strong>This self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.</strong>\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can learn about our other events by joining the newsletter</strong>\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n<strong>You can unsubscribe from the newsletter at any time using the link in every email.</strong>','Self-Hypnosis Practice Group','','inherit','closed','closed','','560-revision-v1','','','2019-04-11 19:29:08','2019-04-11 19:29:08','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(2732,1,'2019-04-22 11:37:17','2019-04-22 11:37:17','The Vault, Wallsend. 20th November 7.30 pm to 9.30 pm\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nAttendance is strictly by advance booking on a first come first served basis.\r\n\r\nOnce you have booked your place, the website will send you a confirmation.\r\nUseful notes regarding each workshop are sent out a few days in advance.\r\n\r\n<strong>Refund Policy.</strong> Please note we do not offer refunds if you are unable to attend.\r\nYou may transfer your place to someone else.','Dealing With Difficult People & Children Workshop','<div class=\"woocommerce-product-details__short-description\">\r\n\r\n<strong>Book your place for this workshop\r\n</strong>You can pay by Card, Paypal or Bank Transfer.\r\n<em>Paying by bank transfer helps us to keep costs down.</em>\r\nPayments need to be made within 30 mins of your booking if paying by BACS.\r\nPlaces are limited and taken on a first come first served basis.\r\n\r\n</div>\r\n<form class=\"cart\" enctype=\"multipart/form-data\" method=\"post\"></form>\r\n<div id=\"content-outer\">\r\n<div id=\"content-woocommerce\" class=\"grid col-620\">\r\n<div id=\"product-2454\" class=\"post-2454 product type-product status-publish has-post-thumbnail product_cat-the-secret-workshops first instock purchasable product-type-simple\">\r\n<div class=\"summary entry-summary\">\r\n<div class=\"product_meta\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','publish','closed','closed','','dealing-with-difficult-people-children-workshop','','','2019-09-13 13:12:56','2019-09-13 13:12:56','',0,'https://www.newcastle-hypnotherapy.com/?post_type=product&#038;p=2732',0,'product','',0),(2733,1,'2019-04-11 19:44:16','2019-04-11 19:44:16','','Dealing With Difficult People & Children -20th November','','publish','closed','closed','','dealing-with-difficult-people-children-8th-may','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=2733',22,'nav_menu_item','',0),(2734,1,'2019-04-13 08:00:44','2019-04-13 08:00:44','<img class=\"alignleft size-medium wp-image-2719\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/dealing-with-difficult-people-and-children-300x200.jpg\" alt=\"dealing with difficult people and children\" width=\"300\" height=\"200\" /><strong>\r\n<span style=\"color: #008000;\">Deal with difficult people and children better.</span></strong>\r\n\r\nWed 8th May 7.30 pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<strong><span style=\"color: #ff6600;\">Book your place below.</span></strong>\r\n\r\n&nbsp;\r\n\r\nDealing with difficult people and children can be frustrating and stressful.\r\nDuring this Secret Workshop, you will learn advanced NLP &amp; Psychology Skills to improve your outcomes.\r\n\r\n<span style=\"color: #008000;\"><strong>Learn how to</strong></span>\r\n<ul>\r\n 	<li>listen better for great results</li>\r\n 	<li>discover hidden messages &amp; needs</li>\r\n 	<li>notice important body language signs</li>\r\n 	<li>keep your composure and stay calm</li>\r\n 	<li>use options to move forward</li>\r\n 	<li>avoid becoming defensive</li>\r\n 	<li>move away from arguments</li>\r\n 	<li>set limits and boundaries</li>\r\n 	<li>protect yourself from negative, energy drainers</li>\r\n 	<li>put your point across nicely</li>\r\n 	<li>obtain a win for everyone</li>\r\n 	<li>improve your communication skills</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Dealing With Difficult People &amp; Children</strong></span></h4>\r\nLearning modern NLP and Psychological methods can really improve your communication skills, making relationships more enjoyable.\r\nThere are many hidden communication signals and messages in every conversation. Learning to recognize these signals opens up vital information that can help with difficult people and children.\r\n\r\nJoin us for this fun Secret Workshop and improve your relationships and communication skills.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/?post_type=product&amp;p=2732&amp;preview=true\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about future events by joining the newsletter below.</strong>\r\n<strong>You can unsubscribe at </strong>any time<strong>. Your privacy is always safe.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<strong>You can also learn more in <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">The Secret Workshop Group</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Dealing With Difficult People & Children','','inherit','closed','closed','','2718-revision-v1','','','2019-04-13 08:00:44','2019-04-13 08:00:44','',2718,'https://www.newcastle-hypnotherapy.com/2718-revision-v1/',0,'revision','',0),(2735,1,'2019-04-15 10:33:56','2019-04-15 10:33:56','','Order &ndash; April 15, 2019 @ 10:33 AM','','wc-processing','open','closed','order_5cb45e14a64dc','order-apr-15-2019-1033-am','','','2019-04-15 10:35:28','2019-04-15 10:35:28','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2735',0,'shop_order','',2),(2739,1,'2019-04-20 16:42:41','2019-04-20 16:42:41','<p style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne &amp; Northumberland.</span></strong></span></p>\r\n<span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span>\r\n\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.</strong>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-04-20 16:42:41','2019-04-20 16:42:41','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2737,1,'2019-04-20 16:38:56','2019-04-20 16:38:56','<blockquote>\r\n<p style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne &amp; Northumberland.\r\n</span></strong></span><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n</blockquote>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland &amp; South Shields</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-04-20 16:38:56','2019-04-20 16:38:56','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2738,1,'2019-04-20 16:40:05','2019-04-20 16:40:05','<blockquote>\r\n<p style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne &amp; Northumberland.</span></strong></span></p>\r\n<span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong>\r\n\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></blockquote>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland &amp; South Shields</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-04-20 16:40:05','2019-04-20 16:40:05','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2740,1,'2019-04-20 16:43:44','2019-04-20 16:43:44','<p style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></p>\r\n<span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span>\r\n\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.</strong>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-04-20 16:43:44','2019-04-20 16:43:44','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2741,1,'2019-04-20 16:47:29','2019-04-20 16:47:29','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></h4>\r\n<span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span>\r\n\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.</strong>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-04-20 16:47:29','2019-04-20 16:47:29','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2742,1,'2019-04-20 16:48:06','2019-04-20 16:48:06','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></h4>\r\n<p style=\"text-align: center;\"><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span></p>\r\n<strong>People generally ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.</strong>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-04-20 16:48:06','2019-04-20 16:48:06','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2743,1,'2019-04-20 16:48:42','2019-04-20 16:48:42','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></h4>\r\n<p style=\"text-align: center;\"><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span></p>\r\n<p style=\"text-align: center;\"><strong>People ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.</strong>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-04-20 16:48:42','2019-04-20 16:48:42','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2744,1,'2019-04-20 16:49:58','2019-04-20 16:49:58','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></h4>\r\n<p style=\"text-align: center;\"><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span></p>\r\n<p style=\"text-align: center;\"><strong>People ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.\r\n<span style=\"color: #008000;\">Read the  5 star client feedback below</span></strong>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-04-20 16:49:58','2019-04-20 16:49:58','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2745,1,'2019-04-20 16:51:47','2019-04-20 16:51:47','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></h4>\r\n<p style=\"text-align: center;\"><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span></p>\r\n<p style=\"text-align: center;\"><strong>People ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.\r\n<span style=\"color: #008000;\">Read our 5 star client feedback reviews below</span></strong>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this and to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our Wallsend Hypnotherapy Practice as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-04-20 16:51:47','2019-04-20 16:51:47','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2746,1,'2019-04-20 17:16:28','2019-04-20 17:16:28','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></h4>\r\n<p style=\"text-align: center;\"><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span></p>\r\n<p style=\"text-align: center;\"><strong>People ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.\r\n<span style=\"color: #008000;\">Read our 5 star client feedback reviews below</span></strong>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nWe offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation</strong></span></a> to do exactly this, to explore your issues and look at the best way forward to you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Call <strong>07568 455</strong> <strong>809</strong></span></a>. to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our <strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend Hypnotherapy Practice</a></strong> as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-04-20 17:16:28','2019-04-20 17:16:28','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0);
INSERT INTO `wpqj_posts` VALUES (2748,1,'2019-04-20 17:30:10','2019-04-20 17:30:10','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></h4>\r\n<p style=\"text-align: center;\"><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span></p>\r\n<p style=\"text-align: center;\"><strong>People ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.\r\n<span style=\"color: #008000;\">Read our 5 star client feedback reviews below</span></strong>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nTo help you with this we offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation.</strong></span></a> This helps us to explore your issues and look at the best way forward for you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Simply call <strong>07568 455</strong> <strong>809</strong></span></a> to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nThis means we will look at all of the factors that may be causing you an issue. We often look at your diet, your lifestyle, your relationships, habits and more. We can then evaluate the areas that may be causing or adding to your problem and then suggest the best ways forward for the best results.<strong><em>\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our <strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend Hypnotherapy Practice</a></strong> as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-04-20 17:30:10','2019-04-20 17:30:10','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2747,1,'2019-04-20 17:23:16','2019-04-20 17:23:16','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></h4>\r\n<p style=\"text-align: center;\"><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span></p>\r\n<p style=\"text-align: center;\"><strong>People ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.\r\n<span style=\"color: #008000;\">Read our 5 star client feedback reviews below</span></strong>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nTo help you with this we offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation.</strong></span></a> This helps us to explore your issues and look at the best way forward for you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Simply call <strong>07568 455</strong> <strong>809</strong></span></a> to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nWe also offer a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><em><strong>Free Initial Hypnotherapy Consultation</strong></em></a> to everyone. This gives you the chance to discuss your issue and ask any questions you may have. <strong><em>Simply <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange yours now or call 07568 455 809 today.\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our <strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend Hypnotherapy Practice</a></strong> as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-04-20 17:23:16','2019-04-20 17:23:16','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2749,1,'2019-04-20 17:36:45','2019-04-20 17:36:45','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></h4>\r\n<p style=\"text-align: center;\"><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span></p>\r\n<p style=\"text-align: center;\"><strong>People ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.\r\n<span style=\"color: #008000;\">Read our 5 star client feedback reviews below</span></strong>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nTo help you with this we offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation.</strong></span></a> This helps us to explore your issues and look at the best way forward for you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Simply call <strong>07568 455</strong> <strong>809</strong></span></a> to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nThis means we will look at all of the factors that may be causing you an issue. We often look at your diet, your lifestyle, your relationships, habits and more. We can then evaluate the areas that may be causing or adding to your problem and then suggest the best ways forward for the best results.<strong><em>\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our <strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend Hypnotherapy Practice</a></strong> as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Learn more about The Secret Workshops.</span></strong></h4>\r\nNewcastle Hypnotherapy organise regular events known as The Secret Workshops across the  North East and in Newcastle upon Tyne. You can join The Secret Workshops Newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-04-20 17:36:45','2019-04-20 17:36:45','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2750,1,'2019-04-20 17:38:03','2019-04-20 17:38:03','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></h4>\r\n<p style=\"text-align: center;\"><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span></p>\r\n<p style=\"text-align: center;\"><strong>People ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.\r\n<span style=\"color: #008000;\">Read our 5 star client feedback reviews below</span></strong>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nTo help you with this we offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation.</strong></span></a> This helps us to explore your issues and look at the best way forward for you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Simply call <strong>07568 455</strong> <strong>809</strong></span></a> to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nThis means we will look at all of the factors that may be causing you an issue. We often look at your diet, your lifestyle, your relationships, habits and more. We can then evaluate the areas that may be causing or adding to your problem and then suggest the best ways forward for the best results.<strong><em>\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our <strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend Hypnotherapy Practice</a></strong> as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Learn more about The Secret Workshops.</span></strong></h4>\r\nNewcastle Hypnotherapy organise regular events known as The Secret Workshops across the  North East and in Newcastle upon Tyne. You can join The Secret Workshops Newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time using the link in the email.\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-04-20 17:38:03','2019-04-20 17:38:03','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2751,1,'2019-04-20 17:39:04','2019-04-20 17:39:04','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></h4>\r\n<p style=\"text-align: center;\"><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span></p>\r\n<p style=\"text-align: center;\"><strong>People ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.\r\n<span style=\"color: #008000;\">Read our 5 star client feedback reviews below</span></strong>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nTo help you with this we offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation.</strong></span></a> This helps us to explore your issues and look at the best way forward for you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Simply call <strong>07568 455</strong> <strong>809</strong></span></a> to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nThis means we will look at all of the factors that may be causing you an issue. We often look at your diet, your lifestyle, your relationships, habits and more. We can then evaluate the areas that may be causing or adding to your problem and then suggest the best ways forward for the best results.<strong><em>\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our <strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend Hypnotherapy Practice</a></strong> as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Learn more about The Secret Workshops.</span></strong></h4>\r\nNewcastle Hypnotherapy organise regular events known as The Secret Workshops across the  North East and in Newcastle upon Tyne. You can join The Secret Workshops Newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time using the link in the email.\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy and NLP sessions online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-04-20 17:39:04','2019-04-20 17:39:04','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2753,1,'2019-04-20 17:57:08','2019-04-20 17:57:08','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></h4>\r\n<p style=\"text-align: center;\"><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span></p>\r\n<p style=\"text-align: center;\"><strong>People ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.\r\n<span style=\"color: #008000;\">Read our 5 star client feedback reviews below</span></strong>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nTo help you with this we offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation.</strong></span></a> This helps us to explore your issues and look at the best way forward for you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Simply call <strong>07568 455</strong> <strong>809</strong></span></a> to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nThis means we will look at all of the factors that may be causing you an issue. We often look at your diet, your lifestyle, your relationships, habits and more. We can then evaluate the areas that may be causing or adding to your problem and then suggest the best ways forward for the best results.<strong><em>\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our <strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend Hypnotherapy Practice</a></strong> as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Learn more about The Secret Workshops.</span></strong></h4>\r\nNewcastle Hypnotherapy organise regular events known as The Secret Workshops across the  North East and in Newcastle upon Tyne. You can join The Secret Workshops Newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time using the link in the email.\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy and NLP sessions online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis?</strong></span></h4>\r\nHypnosis is a natural mental state that we all experience every day.\r\nImagine being totally focused on a good film, TV programme, driving a car or listining to your favourite music. These are all a form of hypnosis.\r\nA hypnotherapist or hypnotist will guide you into a hypnotict trance using a hypnotic induction. While enjoying this relaxed and focused state, we work together to make the changes in your mind to modify behaviours and habits for the better.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Hypnosis or NLP Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Secret Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-04-20 17:57:08','2019-04-20 17:57:08','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2752,1,'2019-04-20 17:52:38','2019-04-20 17:52:38','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></h4>\r\n<p style=\"text-align: center;\"><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span></p>\r\n<p style=\"text-align: center;\"><strong>People ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.\r\n<span style=\"color: #008000;\">Read our 5 star client feedback reviews below</span></strong>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nTo help you with this we offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation.</strong></span></a> This helps us to explore your issues and look at the best way forward for you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Simply call <strong>07568 455</strong> <strong>809</strong></span></a> to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nThis means we will look at all of the factors that may be causing you an issue. We often look at your diet, your lifestyle, your relationships, habits and more. We can then evaluate the areas that may be causing or adding to your problem and then suggest the best ways forward for the best results.<strong><em>\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our <strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend Hypnotherapy Practice</a></strong> as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"><iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Learn more about The Secret Workshops.</span></strong></h4>\r\nNewcastle Hypnotherapy organise regular events known as The Secret Workshops across the  North East and in Newcastle upon Tyne. You can join The Secret Workshops Newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time using the link in the email.\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smart phone and you can also enjoy hypnotherapy and NLP sessions online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/8YjphVtQB78\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis?</strong></span></h4>\r\nHypnosis is a natural mental state that we all experience every day.\r\nImagine being totally focused on a good film, TV programme, driving a car or listining to your favourite music. These are all a form of hypnosis.\r\nA hypnotherapist or hypnotist will guide you into a hypnotict trance using a hypnotic induction. While enjoying this relaxed and focused state, we work together to make the changes in your mind to modify behaviours and habits for the better.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Hypnosis or NLP Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Wednesday Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div>Newcastle Hypnotherapy is a proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-04-20 17:52:38','2019-04-20 17:52:38','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2867,1,'2019-05-17 11:11:00','2019-05-17 11:11:00','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-17 11:11:00','2019-05-17 11:11:00','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2866,1,'2019-05-17 11:08:04','2019-05-17 11:08:04','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-17 11:08:04','2019-05-17 11:08:04','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2754,1,'2019-04-21 13:21:52','2019-04-21 13:21:52','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n\r\n<strong><span style=\"color: #008000;\">Watch This Video To See What NHS Dr. Andrew Said About Newcastle Hypnotherapy\'s Hypnosis For Anxiety ?</span></strong>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></span></h4>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2019-04-21 13:21:52','2019-04-21 13:21:52','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2756,1,'2019-04-21 13:23:32','2019-04-21 13:23:32','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy\'s Hypnosis For Anxiety ?</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></span></h4>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2019-04-21 13:23:32','2019-04-21 13:23:32','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2755,1,'2019-04-21 13:22:32','2019-04-21 13:22:32','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Watch This Video To See What NHS Dr. Andrew Said About Newcastle Hypnotherapy\'s Hypnosis For Anxiety ?</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></span></h4>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2019-04-21 13:22:32','2019-04-21 13:22:32','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2757,1,'2019-04-21 13:23:55','2019-04-21 13:23:55','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy\'s Hypnosis For Anxiety ?</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></span></h4>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2019-04-21 13:23:55','2019-04-21 13:23:55','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2758,1,'2019-04-21 13:24:44','2019-04-21 13:24:44','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></span></h4>\r\nWherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong>Cramlington</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>South Shields, Tyne &amp; Wear</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2019-04-21 13:24:44','2019-04-21 13:24:44','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2760,1,'2019-04-21 13:48:32','2019-04-21 13:48:32','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2019-04-21 13:48:32','2019-04-21 13:48:32','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2759,1,'2019-04-21 13:36:20','2019-04-21 13:36:20','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe are not just hypnotherapists and look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including hypnotherapy, self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, meditation, mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your symptoms should decrease as we replace them with feelings of well-being and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.\r\n\r\n</em></strong>\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2019-04-21 13:36:20','2019-04-21 13:36:20','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2761,1,'2019-04-21 13:52:46','2019-04-21 13:52:46','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy for Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2019-04-21 13:52:46','2019-04-21 13:52:46','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2762,1,'2019-04-21 13:56:49','2019-04-21 13:56:49','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, put you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2019-04-21 13:56:49','2019-04-21 13:56:49','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2764,1,'2019-04-21 14:22:07','2019-04-21 14:22:07','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2019-04-21 14:22:07','2019-04-21 14:22:07','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2763,1,'2019-04-21 13:59:37','2019-04-21 13:59:37','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety and even severe anxiety symptoms. We find just a few small changes in your behaviour can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Will The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviours and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n<iframe src=\"https://www.youtube.com/embed/DpEAd-xOV_k?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" data-mce-type=\"bookmark\" class=\"mce_SELRES_start\">﻿</span></iframe>\r\n\r\nNewcastle Hypnotherapy is a  proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Itemid=\">UK Guild of Hypnosis Practitioners</a>\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2019-04-21 13:59:37','2019-04-21 13:59:37','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2765,1,'2019-04-21 14:23:32','2019-04-21 14:23:32','<strong><img class=\"alignleft size-medium wp-image-1818\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/head2-300x198.jpg\" alt=\"Anxiety Relief Newcastle Hypnotherapy\" width=\"300\" height=\"198\" /><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY RELIEF HYPNOSIS PROGRAM','','inherit','closed','closed','','68-revision-v1','','','2019-04-21 14:23:32','2019-04-21 14:23:32','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2813,1,'2019-05-06 13:52:10','2019-05-06 13:52:10','<span style=\"color: #008000;\"><strong><img class=\"alignleft wp-image-3145 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/09/deep-relaxation-300x188.jpg\" alt=\"deep relaxation\" width=\"300\" height=\"188\" />Learn Simple Deep Relaxation Mind &amp; Body Techniques To Improve Your Happiness, Health, Meditation &amp; Sleep\r\n</strong></span>\r\n\r\n<strong>Wednesday 18th September 7.30pm to 9.30 pm</strong>\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person\r\n<strong>Advance booking required</strong>\r\n<span style=\"color: #ff6600;\"><strong>Book your places below.</strong></span>\r\n\r\n<strong><span style=\"color: #ff0000;\">SPECIAL OFFER - Bring a friend for free!</span></strong>\r\nSimply book your place below and bring a friend who has not been to one of these workshops before.\r\n\r\n<strong>Learning to relax properly is a wonderful way to improve your health and quality of life.</strong>\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress, anxiety, tension and improves sleep.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Deep Relaxation Workshop</strong></span></h4>\r\n<strong>During this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid natural relaxation and happiness.</strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Learn how to</strong></span>\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>improve your meditation &amp; mindfulness practice</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n<strong>The Secrets Of Deep Relaxation Workshop</strong> takes place on Wednesday the 18th of September at The Vault, Wallsend.\r\nThis Secret Workshop runs from 7.30 pm to 9.30 pm and includes refreshments &amp; snacks.\r\nThe price is just £15 per person, advance booking is required and we are limited to just 20 people.\r\n\r\n<strong>Learn how to relax deeply by booking your place here now.</strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/deep-relaxation-mind-body-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about future Secret Workshops and events by joining the newsletter here.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.\r\n\r\n<strong><span style=\"color: #008000;\">The Newcastle Hypnotherapy</span></strong> <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #ff6600;\"><strong>Facebook Group for The Secret Workshops is here</strong></span></a>\r\n\r\nThe Deep Relaxation Mind &amp; Body Technique Workshop is just one of the many regular events that we organise on a monthly basis to help people feel better and improve life.\r\n\r\nMany people like to work with us by individual sessions to work on issues such as anxiety, stress, depression, self-confidence or to change habits or behaviour. Contact us to arrange your free phone consultation to examine your issue and to establish the best way forward for you.\r\n\r\n<strong>You can read some of the <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">feedback from our many happy clients here.</a></span></strong>\r\n\r\n&nbsp;','The Secrets Of Deep Relaxation Workshop','','publish','closed','closed','','the-secrets-of-deep-relaxation-workshop','','','2019-09-13 12:28:23','2019-09-13 12:28:23','',0,'https://www.newcastle-hypnotherapy.com/?page_id=2813',0,'page','',0),(2766,1,'2019-04-22 16:11:26','2019-04-22 16:11:26','','Order &ndash; April 22, 2019 @ 04:11 PM','','wc-on-hold','open','closed','order_5cbde7ae59bac','order-apr-22-2019-0411-pm','','','2019-04-22 16:11:26','2019-04-22 16:11:26','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2766',0,'shop_order','',1),(2768,1,'2019-04-22 17:05:44','2019-04-22 17:05:44','&nbsp;\r\n<h3><span style=\"color: #008000;\"><strong>Is stress causing you problems?\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h3>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:05:44','2019-04-22 17:05:44','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2769,1,'2019-04-22 17:08:18','2019-04-22 17:08:18','','newcastle hypnotherapy for stress management','','inherit','open','closed','','newcastle-hypnotherapy-for-stress-management','','','2019-04-22 17:08:48','2019-04-22 17:08:48','',106,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/newcastle-hypnotherapy-for-stress-management.jpg',0,'attachment','image/jpeg',0),(2771,1,'2019-04-22 17:12:49','2019-04-22 17:12:49','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be vert effective, very quickly.</strong></span></h4>\r\n&nbsp;\r\n<h4 style=\"text-align: center;\">We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h4>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:12:49','2019-04-22 17:12:49','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2770,1,'2019-04-22 17:12:19','2019-04-22 17:12:19','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong><img class=\"alignleft size-medium wp-image-2769\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/newcastle-hypnotherapy-for-stress-management-300x224.jpg\" alt=\"newcastle hypnotherapy for stress management\" width=\"300\" height=\"224\" />Clinical Hypnotherapy For Stress Management can be vert effective, very quickly.\r\n\r\n</strong></span>We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h4>\r\n&nbsp;\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:12:19','2019-04-22 17:12:19','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2772,1,'2019-04-22 17:14:02','2019-04-22 17:14:02','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<img class=\"alignleft size-medium wp-image-2769\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/newcastle-hypnotherapy-for-stress-management-300x224.jpg\" alt=\"newcastle hypnotherapy for stress management\" width=\"300\" height=\"224\" />\r\n<h4 style=\"text-align: center;\">We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h4>\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:14:02','2019-04-22 17:14:02','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2773,1,'2019-04-22 17:14:25','2019-04-22 17:14:25','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<img class=\"size-medium wp-image-2769 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/newcastle-hypnotherapy-for-stress-management-300x224.jpg\" alt=\"newcastle hypnotherapy for stress management\" width=\"300\" height=\"224\" />\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4 style=\"text-align: center;\">We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h4>\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:14:25','2019-04-22 17:14:25','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2774,1,'2019-04-22 17:14:54','2019-04-22 17:14:54','&nbsp;\r\n<h2 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h2>\r\n<img class=\"size-medium wp-image-2769 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/newcastle-hypnotherapy-for-stress-management-300x224.jpg\" alt=\"newcastle hypnotherapy for stress management\" width=\"300\" height=\"224\" />\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4 style=\"text-align: center;\">We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h4>\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:14:54','2019-04-22 17:14:54','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2775,1,'2019-04-22 17:15:15','2019-04-22 17:15:15','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<img class=\"size-medium wp-image-2769 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/newcastle-hypnotherapy-for-stress-management-300x224.jpg\" alt=\"newcastle hypnotherapy for stress management\" width=\"300\" height=\"224\" />\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4 style=\"text-align: center;\">We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h4>\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:15:15','2019-04-22 17:15:15','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2776,1,'2019-04-22 17:17:04','2019-04-22 17:17:04','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<img class=\"size-medium wp-image-2769 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/newcastle-hypnotherapy-for-stress-management-300x224.jpg\" alt=\"newcastle hypnotherapy for stress management\" width=\"300\" height=\"224\" />\r\n<h4>Newcastle Hypnotherapy can give you the choice of being relaxed</h4>\r\n<h4 style=\"text-align: center;\">We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</h4>\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:17:04','2019-04-22 17:17:04','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2777,1,'2019-04-22 17:19:37','2019-04-22 17:19:37','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<img class=\"size-medium wp-image-2769 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/newcastle-hypnotherapy-for-stress-management-300x224.jpg\" alt=\"newcastle hypnotherapy for stress management\" width=\"300\" height=\"224\" />\r\n\r\nVery simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem\r\n<p style=\"text-align: center;\">We can help with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.</p>\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:19:37','2019-04-22 17:19:37','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2778,1,'2019-04-22 17:24:16','2019-04-22 17:24:16','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<img class=\"size-medium wp-image-2769 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/newcastle-hypnotherapy-for-stress-management-300x224.jpg\" alt=\"newcastle hypnotherapy for stress management\" width=\"300\" height=\"224\" />\r\n\r\nVery simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.\r\nWe can help you with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.\r\n\r\nTo get started simply get in touch today, to arrange a free phone consultation. We can explore your stress problem and learn how hypnotherapy for stress management can quickly help you.\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:24:16','2019-04-22 17:24:16','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2779,1,'2019-04-22 17:28:38','2019-04-22 17:28:38','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<img class=\"size-medium wp-image-2769 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/newcastle-hypnotherapy-for-stress-management-300x224.jpg\" alt=\"newcastle hypnotherapy for stress management\" width=\"300\" height=\"224\" />\r\n\r\nVery simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.\r\nWe can help you with fast, powerful Stress Management techniques to relieve your stress and put <strong>you</strong> back in control.\r\n\r\nImagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away.\r\n\r\nTo get started simply get in touch today, to arrange a free phone consultation. We can explore your stress problem and learn how hypnotherapy for stress management can quickly help you.\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:28:38','2019-04-22 17:28:38','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2781,1,'2019-04-22 17:38:01','2019-04-22 17:38:01','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<img class=\"size-medium wp-image-2769 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/newcastle-hypnotherapy-for-stress-management-300x224.jpg\" alt=\"newcastle hypnotherapy for stress management\" width=\"300\" height=\"224\" />\r\n\r\nVery simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.\r\nPowerful Stress Management techniques will give you the choice of how you feel in almost any situation.\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> \"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\" David - Newcastle upon Tyne.</strong>\r\n\r\nImagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away.\r\n\r\nTo get started simply get in touch today, to arrange a free phone consultation. We can explore your stress problem and learn how hypnotherapy for stress management can quickly help you.\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:38:01','2019-04-22 17:38:01','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2780,1,'2019-04-22 17:36:54','2019-04-22 17:36:54','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<img class=\"size-medium wp-image-2769 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/newcastle-hypnotherapy-for-stress-management-300x224.jpg\" alt=\"newcastle hypnotherapy for stress management\" width=\"300\" height=\"224\" />\r\n\r\nVery simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.\r\nPowerful Stress Management techniques will give you the choice of how you feel in almost any situation.\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> \"Mark taught me how to </strong>recognise<strong> when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer </strong>with<strong> stress problems.\" </strong>B A<strong> - Newcastle upon Tyne.</strong>\r\n\r\nImagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away.\r\n\r\nTo get started simply get in touch today, to arrange a free phone consultation. We can explore your stress problem and learn how hypnotherapy for stress management can quickly help you.\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:36:54','2019-04-22 17:36:54','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2782,1,'2019-04-22 17:38:36','2019-04-22 17:38:36','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<img class=\"size-medium wp-image-2769 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/newcastle-hypnotherapy-for-stress-management-300x224.jpg\" alt=\"newcastle hypnotherapy for stress management\" width=\"300\" height=\"224\" />\r\n\r\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em>\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\" David - Newcastle upon Tyne.</em></strong>\r\n\r\nImagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away.\r\n\r\nTo get started simply get in touch today, to arrange a free phone consultation. We can explore your stress problem and learn how hypnotherapy for stress management can quickly help you.\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:38:36','2019-04-22 17:38:36','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2784,1,'2019-04-22 17:45:26','2019-04-22 17:45:26','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\nImagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away.\r\n\r\nTo get started simply get in touch today, to arrange a free phone consultation. We can explore your stress problem and learn how hypnotherapy for stress management can quickly help you.\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:45:26','2019-04-22 17:45:26','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2783,1,'2019-04-22 17:39:16','2019-04-22 17:39:16','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<img class=\"size-medium wp-image-2769 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/newcastle-hypnotherapy-for-stress-management-300x224.jpg\" alt=\"newcastle hypnotherapy for stress management\" width=\"300\" height=\"224\" />\r\n\r\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\nImagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away.\r\n\r\nTo get started simply get in touch today, to arrange a free phone consultation. We can explore your stress problem and learn how hypnotherapy for stress management can quickly help you.\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:39:16','2019-04-22 17:39:16','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2785,1,'2019-04-22 17:48:17','2019-04-22 17:48:17','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\nImagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away.\r\nThis is how hypnotherapy for stress management can help you.\r\n<p style=\"text-align: center;\">To get started simply get in touch today, to arrange a free phone consultation.\r\nWe can explore your stress problem and learn how hypnotherapy for stress management can quickly help you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a></p>\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:48:17','2019-04-22 17:48:17','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2787,1,'2019-04-22 17:50:05','2019-04-22 17:50:05','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\n<strong>Imagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away. This is how hypnotherapy for stress management helps people just like you.\r\n</strong>\r\n<h4 style=\"text-align: center;\">To get started simply get in touch today, to arrange a free phone consultation.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a></h4>\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:50:05','2019-04-22 17:50:05','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2786,1,'2019-04-22 17:48:56','2019-04-22 17:48:56','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\n<strong>Imagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away. This is how hypnotherapy for stress management can help you.</strong>\r\n<p style=\"text-align: center;\">To get started simply get in touch today, to arrange a free phone consultation.\r\nWe can explore your stress problem and learn how hypnotherapy for stress management can quickly help you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a></p>\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:48:56','2019-04-22 17:48:56','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2788,1,'2019-04-22 17:50:28','2019-04-22 17:50:28','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\n<strong>Imagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away. This is how hypnotherapy for stress management helps people just like you.\r\n</strong>\r\n<h4 style=\"text-align: center;\">To get started simply get in touch today, to arrange a free phone consultation. <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a></h4>\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:50:28','2019-04-22 17:50:28','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2789,1,'2019-04-22 17:50:51','2019-04-22 17:50:51','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\n<strong>Imagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away. This is how hypnotherapy for stress management helps people just like you.\r\n</strong>\r\n<h4 style=\"text-align: center;\">To get started simply get in touch today, to arrange a free phone consultation.  Call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809.</strong></span></a></h4>\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:50:51','2019-04-22 17:50:51','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2790,1,'2019-04-22 17:51:13','2019-04-22 17:51:13','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\n<strong>Imagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away. This is how hypnotherapy for stress management helps people just like you.\r\n</strong>\r\n<h4 style=\"text-align: center;\">To get started simply get in touch today, to arrange a free phone consultation. Call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809.</strong></span></a></h4>\r\n&nbsp;\r\n<h2></h2>\r\n<h2></h2>\r\n<h2></h2>\r\n<h2><strong><span style=\"color: #008000;\">How Can Stress Management Help Me?</span></strong></h2>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:51:13','2019-04-22 17:51:13','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2791,1,'2019-04-22 17:52:27','2019-04-22 17:52:27','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\n<strong>Imagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away. This is how hypnotherapy for stress management helps people just like you.\r\n</strong>\r\n<h4 style=\"text-align: center;\">To get started simply get in touch today, to arrange a free phone consultation. Call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809.</strong></span></a></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">How Can Hypnotherapy For Stress Management Help Me?</span></strong></h4>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:52:27','2019-04-22 17:52:27','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2792,1,'2019-04-22 17:58:03','2019-04-22 17:58:03','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\n<strong>Imagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away. This is how hypnotherapy for stress management helps people just like you.\r\n</strong>\r\n<h4 style=\"text-align: center;\">To get started simply get in touch today, to arrange a free phone consultation. Call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809.</strong></span></a></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">How Can Hypnotherapy For Stress Management Help Me?</span></strong></h4>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Changing your response from Stressed to Relaxed</strong>.</span></h4>\r\nPeople who suffer with stress issues find that certain stress triggers make them respond in the wrong way.\r\nThere are times when we do need to feel stressed but when we react to these things too often, it becomes a habit and damages our health.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 17:58:03','2019-04-22 17:58:03','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2793,1,'2019-04-22 18:00:49','2019-04-22 18:00:49','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\n<strong>Imagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away. This is how hypnotherapy for stress management helps people just like you.\r\n</strong>\r\n<h4 style=\"text-align: center;\">To get started simply get in touch today, to arrange a free phone consultation. Call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809.</strong></span></a></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">How Can Hypnotherapy For Stress Management Help Me?</span></strong></h4>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Changing your response from Stressed to Relaxed</strong>.</span></h4>\r\nPeople who suffer with stress issues find that certain stress triggers make them respond in the wrong way. There are times when we do need to feel stressed but when we react to these things too often, it becomes a habit and damages our health.\r\n\r\nHypnosis and Self-Hypnosis are very powerful methods to help you to relax and stay relaxed, rather than feeling stressed.\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 18:00:49','2019-04-22 18:00:49','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2794,1,'2019-04-22 18:04:46','2019-04-22 18:04:46','','Order &ndash; April 22, 2019 @ 06:04 PM','','wc-processing','open','closed','order_5cbe023eb0e2e','order-apr-22-2019-0604-pm','','','2019-04-22 18:05:47','2019-04-22 18:05:47','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2794',0,'shop_order','',2),(2796,1,'2019-04-22 18:31:17','2019-04-22 18:31:17','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n&nbsp;\r\n\r\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\n<strong>Imagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away. This is how hypnotherapy for stress management helps people just like you.\r\n</strong>\r\n<h4 style=\"text-align: center;\">To get started simply get in touch today, to arrange a free phone consultation. Call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809.</strong></span></a></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">How Can Hypnotherapy For Stress Management Help Me?</span></strong></h4>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference in how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Changing your response from Stressed to Relaxed</strong>.</span></h4>\r\nPeople who suffer from stress issues find that certain stress triggers make them respond in the wrong way. There are times when we do need to feel stressed but when we react to these things too often, it becomes a habit and damages our health.\r\n\r\n<strong>Hypnosis and Self-Hypnosis are very powerful methods to help you to relax and stay relaxed, rather than feeling stressed.</strong>\r\n<strong>Are you ready to take the first step? <em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us today</a></span></em> to learn how hypnotherapy for stress management can help you.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span></h4>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Self Help For Stress Management?</strong></span></h4>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n<h4><span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span></h4>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n<h4><strong><span style=\"color: #008000;\">Your FREE Stress Management Consultation. </span></strong></h4>\r\nMany of our clients love the free consultation as it gives you the chance to explain your stress issues and get answers to all of your questions. We can look at the issues and then let you know the best way forward to change that feeling of being stressed to feeling relaxed and calm.\r\n<h4><span style=\"color: #008000;\"><strong>Mark\'s Journey With Stress &amp; Stress Management.</strong></span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practising these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress management techniques.\r\n<h4><strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong></h4>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n<h4><span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span></h4>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 18:31:17','2019-04-22 18:31:17','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2795,1,'2019-04-22 18:20:30','2019-04-22 18:20:30','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\n<strong>Imagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away. This is how hypnotherapy for stress management helps people just like you.\r\n</strong>\r\n<h4 style=\"text-align: center;\">To get started simply get in touch today, to arrange a free phone consultation. Call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809.</strong></span></a></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">How Can Hypnotherapy For Stress Management Help Me?</span></strong></h4>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference about how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Changing your response from Stressed to Relaxed</strong>.</span></h4>\r\nPeople who suffer with stress issues find that certain stress triggers make them respond in the wrong way. There are times when we do need to feel stressed but when we react to these things too often, it becomes a habit and damages our health.\r\n\r\n<strong>Hypnosis and Self-Hypnosis are very powerful methods to help you to relax and stay relaxed, rather than feeling stressed.</strong>\r\n<strong>Are you ready to take the first step? <em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us today</a></span></em> to learn how hypnotherapy for stress management can help you.</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Stress Reduction Techniques &amp; Stress Relief Methods,</strong>\r\n</span>can quickly and effectively reduce the negative effects of stress and the many stress-related health issues.\r\nOur clients love the wonderful feeling of being in control again, as soon as they start coping with stress and relieving those stressful symptoms.\r\n<strong>Life can quickly return to normal once you start taking control over stress.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n\r\n<strong><span style=\"color: #008000;\">Self Help For Stress Management?</span></strong>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n\r\n<span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n\r\n<strong><span style=\"color: #008000;\">To take control of your stress today, call us on </span>07568 455 809<span style=\"color: #008000;\"> or fill in the form at the bottom of this page. </span></strong><strong><em>Remember to ask about your FREE Stress Management Consultation. </em>This can be done by phone, in person or online.</strong>\r\n\r\n<span style=\"color: #008000;\"><strong>My Journey With Stress &amp; Stress Management.</strong></span>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practicing these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress managment techniques.\r\n\r\n<strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n\r\n<span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 18:20:30','2019-04-22 18:20:30','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2799,1,'2019-04-22 18:35:00','2019-04-22 18:35:00','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\n<strong>Imagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away. This is how hypnotherapy for stress management helps people just like you.\r\n</strong>\r\n<h4 style=\"text-align: center;\">To get started simply get in touch today, to arrange a free phone consultation. Call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809.</strong></span></a></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">How Can Hypnotherapy For Stress Management Help Me?</span></strong></h4>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference in how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Changing your response from Stressed to Relaxed</strong>.</span></h4>\r\nPeople who suffer from stress issues find that certain stress triggers make them respond in the wrong way. There are times when we do need to feel stressed but when we react to these things too often, it becomes a habit and damages our health.\r\n\r\n<strong>Hypnosis and Self-Hypnosis are very powerful methods to help you to relax and stay relaxed, rather than feeling stressed.</strong>\r\n<strong>Are you ready to take the first step? <em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us today</a></span></em> to learn how hypnotherapy for stress management can help you.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span></h4>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Self Help For Stress Management?</strong></span></h4>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n<h4><span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span></h4>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n<h4><strong><span style=\"color: #008000;\">Your FREE Stress Management Consultation. </span></strong></h4>\r\nMany of our clients love the free consultation as it gives you the chance to explain your stress issues and get answers to all of your questions. We can look at the issues and then let you know the best way forward to change that feeling of being stressed to feeling relaxed and calm.\r\n<h4><span style=\"color: #008000;\"><strong>Mark\'s Journey With Stress &amp; Stress Management.</strong></span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practising these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress management techniques.\r\n<h4><strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong></h4>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n<h4><span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span></h4>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span>\r\n<h4>[wpforms id=\"35\"]</h4>\r\n<h4><strong>Clinical Hypnotherapy For Stress Management in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></h4>','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 18:35:00','2019-04-22 18:35:00','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2797,1,'2019-04-22 18:32:47','2019-04-22 18:32:47','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\n<strong>Imagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away. This is how hypnotherapy for stress management helps people just like you.\r\n</strong>\r\n<h4 style=\"text-align: center;\">To get started simply get in touch today, to arrange a free phone consultation. Call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809.</strong></span></a></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">How Can Hypnotherapy For Stress Management Help Me?</span></strong></h4>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference in how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Changing your response from Stressed to Relaxed</strong>.</span></h4>\r\nPeople who suffer from stress issues find that certain stress triggers make them respond in the wrong way. There are times when we do need to feel stressed but when we react to these things too often, it becomes a habit and damages our health.\r\n\r\n<strong>Hypnosis and Self-Hypnosis are very powerful methods to help you to relax and stay relaxed, rather than feeling stressed.</strong>\r\n<strong>Are you ready to take the first step? <em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us today</a></span></em> to learn how hypnotherapy for stress management can help you.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span></h4>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Self Help For Stress Management?</strong></span></h4>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n<h4><span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span></h4>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n<h4><strong><span style=\"color: #008000;\">Your FREE Stress Management Consultation. </span></strong></h4>\r\nMany of our clients love the free consultation as it gives you the chance to explain your stress issues and get answers to all of your questions. We can look at the issues and then let you know the best way forward to change that feeling of being stressed to feeling relaxed and calm.\r\n<h4><span style=\"color: #008000;\"><strong>Mark\'s Journey With Stress &amp; Stress Management.</strong></span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practising these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress management techniques.\r\n<h4><strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong></h4>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n<h4><span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span></h4>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span></h4>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 18:32:47','2019-04-22 18:32:47','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2798,1,'2019-04-22 18:33:27','2019-04-22 18:33:27','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\n<strong>Imagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away. This is how hypnotherapy for stress management helps people just like you.\r\n</strong>\r\n<h4 style=\"text-align: center;\">To get started simply get in touch today, to arrange a free phone consultation. Call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809.</strong></span></a></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">How Can Hypnotherapy For Stress Management Help Me?</span></strong></h4>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference in how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Changing your response from Stressed to Relaxed</strong>.</span></h4>\r\nPeople who suffer from stress issues find that certain stress triggers make them respond in the wrong way. There are times when we do need to feel stressed but when we react to these things too often, it becomes a habit and damages our health.\r\n\r\n<strong>Hypnosis and Self-Hypnosis are very powerful methods to help you to relax and stay relaxed, rather than feeling stressed.</strong>\r\n<strong>Are you ready to take the first step? <em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us today</a></span></em> to learn how hypnotherapy for stress management can help you.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span></h4>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Self Help For Stress Management?</strong></span></h4>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n<h4><span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span></h4>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n<h4><strong><span style=\"color: #008000;\">Your FREE Stress Management Consultation. </span></strong></h4>\r\nMany of our clients love the free consultation as it gives you the chance to explain your stress issues and get answers to all of your questions. We can look at the issues and then let you know the best way forward to change that feeling of being stressed to feeling relaxed and calm.\r\n<h4><span style=\"color: #008000;\"><strong>Mark\'s Journey With Stress &amp; Stress Management.</strong></span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practising these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress management techniques.\r\n<h4><strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong></h4>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n<h4><span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span></h4>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span>\r\n<h4>[wpforms id=\"35\"]</h4>\r\nStress Management is very important as we all experience stress on a daily basis. A growing number of people are being affected by stress in a negative way. Learning to master Stress Management can really make a difference in our lives, those around us and our long-term health.','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 18:33:27','2019-04-22 18:33:27','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2800,1,'2019-04-22 18:35:31','2019-04-22 18:35:31','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\n<strong>Imagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away. This is how hypnotherapy for stress management helps people just like you.\r\n</strong>\r\n<h4 style=\"text-align: center;\">To get started simply get in touch today, to arrange a free phone consultation. Call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809.</strong></span></a></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">How Can Hypnotherapy For Stress Management Help Me?</span></strong></h4>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference in how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Changing your response from Stressed to Relaxed</strong>.</span></h4>\r\nPeople who suffer from stress issues find that certain stress triggers make them respond in the wrong way. There are times when we do need to feel stressed but when we react to these things too often, it becomes a habit and damages our health.\r\n\r\n<strong>Hypnosis and Self-Hypnosis are very powerful methods to help you to relax and stay relaxed, rather than feeling stressed.</strong>\r\n<strong>Are you ready to take the first step? <em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us today</a></span></em> to learn how hypnotherapy for stress management can help you.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span></h4>\r\nThere are many ways to reduce stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Self Help For Stress Management?</strong></span></h4>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n<h4><span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span></h4>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n<h4><strong><span style=\"color: #008000;\">Your FREE Stress Management Consultation. </span></strong></h4>\r\nMany of our clients love the free consultation as it gives you the chance to explain your stress issues and get answers to all of your questions. We can look at the issues and then let you know the best way forward to change that feeling of being stressed to feeling relaxed and calm.\r\n<h4><span style=\"color: #008000;\"><strong>Mark\'s Journey With Stress &amp; Stress Management.</strong></span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practising these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress management techniques.\r\n<h4><strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong></h4>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n<h4><span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span></h4>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span>\r\n<h4>[wpforms id=\"35\"]</h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\n&nbsp;','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 18:35:31','2019-04-22 18:35:31','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2801,1,'2019-04-22 18:48:52','2019-04-22 18:48:52','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\n<strong>Imagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away. This is how hypnotherapy for stress management helps people just like you.\r\n</strong>\r\n<h4 style=\"text-align: center;\">To get started simply get in touch today, to arrange a free phone consultation. Call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809.</strong></span></a></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">How Can Hypnotherapy For Stress Management Help Me?</span></strong></h4>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference in how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Changing your response from Stressed to Relaxed</strong>.</span></h4>\r\nPeople who suffer from stress issues find that certain stress triggers make them respond in the wrong way. There are times when we do need to feel stressed but when we react to these things too often, it becomes a habit and damages our health.\r\n\r\n<strong>Hypnosis and Self-Hypnosis are very powerful methods to help you to relax and stay relaxed, rather than feeling stressed.</strong>\r\n<strong>Are you ready to take the first step? <em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us today</a></span></em> to learn how hypnotherapy for stress management can help you.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span></h4>\r\nThere are effective ways to remove stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Self Help For Stress Management?</strong></span></h4>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n<h4><span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span></h4>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n<h4><strong><span style=\"color: #008000;\">Your FREE Stress Management Consultation. </span></strong></h4>\r\nMany of our clients love the free consultation as it gives you the chance to explain your stress issues and get answers to all of your questions. We can look at the issues and then let you know the best way forward to change that feeling of being stressed to feeling relaxed and calm.\r\n\r\n<span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Stress Management Client feedback from Steve</strong></span><em><span class=\"r-irHasJMkQBec\" tabindex=\"0\">. “I Would like to thank Mark for the great help he has given with<strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.”</strong></span></em>\r\n<h4><span style=\"color: #008000;\"><strong>Mark\'s Journey With Stress &amp; Stress Management.</strong></span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practising these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress management techniques.\r\n<h4><strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong></h4>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n<h4><span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span></h4>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span>\r\n<h4>[wpforms id=\"35\"]</h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy helps people with stress and many other issues from a number of locations in the North East of England.\r\nYou can find our hypnotherapy &amp; NLP services at the following locations.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n 	<li>Online via video link - ask for details.</li>\r\n</ul>\r\n&nbsp;','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 18:48:52','2019-04-22 18:48:52','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2802,1,'2019-04-22 18:53:56','2019-04-22 18:53:56','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\n<strong>Imagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away. This is how hypnotherapy for stress management helps people just like you.\r\n</strong>\r\n<h4 style=\"text-align: center;\">To get started simply get in touch today, to arrange a free phone consultation. Call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809.</strong></span></a></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">How Can Hypnotherapy For Stress Management Help Me?</span></strong></h4>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference in how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Changing your response from Stressed to Relaxed</strong>.</span></h4>\r\nPeople who suffer from stress issues find that certain stress triggers make them respond in the wrong way. There are times when we do need to feel stressed but when we react to these things too often, it becomes a habit and damages our health.\r\n\r\n<strong>Hypnosis and Self-Hypnosis are very powerful methods to help you to relax and stay relaxed, rather than feeling stressed.</strong>\r\n<strong>Are you ready to take the first step? <em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us today</a></span></em> to learn how hypnotherapy for stress management can help you.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span></h4>\r\nThere are effective ways to remove stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Self Help For Stress Management?</strong></span></h4>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n<h4><strong><span style=\"color: #008000;\">Free Tips &amp; Advice For Stress Management.</span></strong></h4>\r\n<strong>Join the Stress Management Newsletter today.</strong>\r\nYour privacy is safe and you can unsubscribe at any time.\r\n[contact-form-7 id=\"2017\" title=\"Stress Tips Newsletter\"]\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span></h4>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n<h4><strong><span style=\"color: #008000;\">Your FREE Stress Management Consultation. </span></strong></h4>\r\nMany of our clients love the free consultation as it gives you the chance to explain your stress issues and get answers to all of your questions. We can look at the issues and then let you know the best way forward to change that feeling of being stressed to feeling relaxed and calm.\r\n\r\n<span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Stress Management Client feedback from Steve</strong></span><em><span class=\"r-irHasJMkQBec\" tabindex=\"0\">. “I Would like to thank Mark for the great help he has given with<strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.”</strong></span></em>\r\n<h4><span style=\"color: #008000;\"><strong>Mark\'s Journey With Stress &amp; Stress Management.</strong></span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practising these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress management techniques.\r\n<h4><strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong></h4>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n<h4><span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span></h4>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span>\r\n<h4>[wpforms id=\"35\"]</h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy helps people with stress and many other issues from a number of locations in the North East of England.\r\nYou can find our hypnotherapy &amp; NLP services at the following locations.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n 	<li>Online via video link - ask for details.</li>\r\n</ul>\r\n&nbsp;','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 18:53:56','2019-04-22 18:53:56','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2803,1,'2019-04-22 19:09:04','2019-04-22 19:09:04','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n&nbsp;\r\n\r\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\n<strong>Imagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away. This is how hypnotherapy for stress management helps people just like you.\r\n</strong>\r\n<h4 style=\"text-align: center;\">To get started simply get in touch today, to arrange a free phone consultation. Call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809.</strong></span></a></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">How Can Hypnotherapy For Stress Management Help Me?</span></strong></h4>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference in how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Changing your response from Stressed to Relaxed</strong>.</span></h4>\r\nPeople who suffer from stress issues find that certain stress triggers make them respond in the wrong way. There are times when we do need to feel stressed but when we react to these things too often, it becomes a habit and damages our health.\r\n\r\n<strong>Hypnosis and Self-Hypnosis are very powerful methods to help you to relax and stay relaxed, rather than feeling stressed.</strong>\r\n<strong>Are you ready to take the first step? <em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us today</a></span></em> to learn how hypnotherapy for stress management can help you.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span></h4>\r\nThere are effective ways to remove stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Self Help For Stress Management?</strong></span></h4>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n<h4><strong><span style=\"color: #008000;\">Free Tips &amp; Advice For Stress Management.</span></strong></h4>\r\n<strong>Join the Stress Management Newsletter today.</strong>\r\nYour privacy is safe and you can unsubscribe at any time.\r\n[contact-form-7 id=\"2017\" title=\"Stress Tips Newsletter\"]\r\n<h4><strong><span style=\"color: #008000;\">Living With Stress Problems.</span></strong></h4>\r\nIf you are suffering from stress issues you will be aware that it can make life very miserable.\r\nStress can affect you in many ways including\r\n<ul>\r\n 	<li>mood</li>\r\n 	<li>work performance</li>\r\n 	<li>sex life &amp; sex drive</li>\r\n 	<li>panic attacks</li>\r\n 	<li>self-esteem</li>\r\n 	<li>self-confidence</li>\r\n 	<li>excess worry</li>\r\n 	<li>uncomfortable breathing</li>\r\n 	<li>general health</li>\r\n 	<li>energy levels</li>\r\n 	<li>disturbed sleep</li>\r\n 	<li>feeling overwhelmed</li>\r\n 	<li>upsetting the people around you</li>\r\n</ul>\r\nStress can really take the fun out of life and interestingly it is one of the easiest problems to rectify.\r\nStress is not really the problem but the way you react to things is.\r\nAre you ready to take control and live a better life?\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Can Hypnotherapy Help Stress Issues?</span></strong></h4>\r\nMost clients find their stress levels drop quite quickly after their first session of hypnotherapy for stress management.\r\nAs you practice your exercises and gain control over your stress, you will enjoy your stress levels dropping even further.\r\nEvery stress client is different and results will vary for each person.\r\n<h4><span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span></h4>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n<h4><strong><span style=\"color: #008000;\">Your FREE Stress Management Consultation. </span></strong></h4>\r\nMany of our clients love the free consultation as it gives you the chance to explain your stress issues and get answers to all of your questions. We can look at the issues and then let you know the best way forward to change that feeling of being stressed to feeling relaxed and calm.\r\n\r\n<span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Stress Management Client feedback from Steve</strong></span><em><span class=\"r-irHasJMkQBec\" tabindex=\"0\">. “I Would like to thank Mark for the great help he has given with<strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.”</strong></span></em>\r\n<h4><span style=\"color: #008000;\"><strong>Mark\'s Journey With Stress &amp; Stress Management.</strong></span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practising these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress management techniques.\r\n<h4><strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong></h4>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n<h4><span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span></h4>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span>\r\n<h4>[wpforms id=\"35\"]</h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy helps people with stress and many other issues from a number of locations in the North East of England.\r\nYou can find our hypnotherapy &amp; NLP services at the following locations.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n 	<li>Online via video link - ask for details.</li>\r\n</ul>\r\n&nbsp;','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 19:09:04','2019-04-22 19:09:04','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2804,1,'2019-04-22 19:11:02','2019-04-22 19:11:02','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<strong>Very simply, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\n<strong>Imagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away. This is how hypnotherapy for stress management helps people just like you.\r\n</strong>\r\n<h4 style=\"text-align: center;\">To get started simply get in touch today, to arrange a free phone consultation. Call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809.</strong></span></a></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">How Can Hypnotherapy For Stress Management Help Me?</span></strong></h4>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference in how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Changing your response from Stressed to Relaxed</strong>.</span></h4>\r\nPeople who suffer from stress issues find that certain stress triggers make them respond in the wrong way. There are times when we do need to feel stressed but when we react to these things too often, it becomes a habit and damages our health.\r\n\r\n<strong>Hypnosis and Self-Hypnosis are very powerful methods to help you to relax and stay relaxed, rather than feeling stressed.</strong>\r\n<strong>Are you ready to take the first step? <em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us today</a></span></em> to learn how hypnotherapy for stress management can help you.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span></h4>\r\nThere are effective ways to remove stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Self Help For Stress Management?</strong></span></h4>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n<h4><strong><span style=\"color: #008000;\">Free Tips &amp; Advice For Stress Management.</span></strong></h4>\r\n<strong>Join the Stress Management Newsletter today.</strong>\r\nYour privacy is safe and you can unsubscribe at any time.\r\n[contact-form-7 id=\"2017\" title=\"Stress Tips Newsletter\"]\r\n<h4><strong><span style=\"color: #008000;\">Living With Stress Problems.</span></strong></h4>\r\nIf you are suffering from stress issues you will be aware that it can make life very miserable.\r\nStress can affect you in many ways including\r\n<ul>\r\n 	<li>mood</li>\r\n 	<li>work performance</li>\r\n 	<li>sex life &amp; sex drive</li>\r\n 	<li>panic attacks</li>\r\n 	<li>self-esteem</li>\r\n 	<li>self-confidence</li>\r\n 	<li>excess worry</li>\r\n 	<li>uncomfortable breathing</li>\r\n 	<li>general health</li>\r\n 	<li>energy levels</li>\r\n 	<li>disturbed sleep</li>\r\n 	<li>feeling overwhelmed</li>\r\n 	<li>upsetting the people around you</li>\r\n</ul>\r\nStress can really take the fun out of life and interestingly it is one of the easiest problems to rectify.\r\nStress is not really the problem but the way you react to things is.\r\nAre you ready to take control and live a better life?\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Can Hypnotherapy Help Stress Issues?</span></strong></h4>\r\nMost clients find their stress levels drop quite quickly after their first session of hypnotherapy for stress management.\r\nAs you practice your exercises and gain control over your stress, you will enjoy your stress levels dropping even further.\r\nEvery stress client is different and results will vary for each person.\r\n<h4><span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span></h4>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n<h4><strong><span style=\"color: #008000;\">Your FREE Stress Management Consultation. </span></strong></h4>\r\nMany of our clients love the free consultation as it gives you the chance to explain your stress issues and get answers to all of your questions. We can look at the issues and then let you know the best way forward to change that feeling of being stressed to feeling relaxed and calm.\r\n\r\n<span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Stress Management Client feedback from Steve</strong></span><em><span class=\"r-irHasJMkQBec\" tabindex=\"0\">. “I Would like to thank Mark for the great help he has given with<strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.”</strong></span></em>\r\n<h4><span style=\"color: #008000;\"><strong>Mark\'s Journey With Stress &amp; Stress Management.</strong></span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practising these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress management techniques.\r\n<h4><strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong></h4>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n<h4><span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span></h4>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span>\r\n<h4>[wpforms id=\"35\"]</h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy helps people with stress and many other issues from a number of locations in the North East of England.\r\nYou can find our hypnotherapy &amp; NLP services at the following locations.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n 	<li>Online via video link - ask for details.</li>\r\n</ul>\r\n&nbsp;','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 19:11:02','2019-04-22 19:11:02','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2805,1,'2019-04-22 19:11:57','2019-04-22 19:11:57','&nbsp;\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management can be very effective, very quickly.</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<strong>Just like NHS Dr. Andrew, Newcastle Hypnotherapy can teach you how to feel relaxed and in control when stress would normally be causing you a problem.</strong>\r\n<strong>Powerful Stress Management techniques will give you the choice of how you feel in almost any situation.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Stress Management Client Feedback.</span> <em><span style=\"color: #008000;\">\"Mark taught me how to recognise when I was starting to feel stressed and how to stop it getting stronger. I love the fast relaxation techniques as they help me to replace the old stress feeling with relaxation and calm. My life is very different now and I don\'t suffer from stress problems.\"</span> David - Newcastle upon Tyne.</em></strong>\r\n\r\n<strong>Imagine the ability to relax anytime, anywhere, on demand and let that stress gently drift away. This is how hypnotherapy for stress management helps people just like you.\r\n</strong>\r\n<h4 style=\"text-align: center;\">To get started simply get in touch today, to arrange a free phone consultation. Call <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809.</strong></span></a></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">How Can Hypnotherapy For Stress Management Help Me?</span></strong></h4>\r\nStress is all around us and can appear in many different forms. What may be a stressful situation for one person, may not be stressful for others. Stress is interesting in that for some people it can really make them unwell or unhappy, while others thrive on it or use it to push themselves forward in life.\r\nLearning good Stress Management skills can make all the difference in how we naturally deal with stress and stressful situations, on a day to day basis.\r\n<strong>It is often our response to stress that is the problem, not the stress itself.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Changing your response from Stressed to Relaxed</strong>.</span></h4>\r\nPeople who suffer from stress issues find that certain stress triggers make them respond in the wrong way. There are times when we do need to feel stressed but when we react to these things too often, it becomes a habit and damages our health.\r\n\r\n<strong>Hypnosis and Self-Hypnosis are very powerful methods to help you to relax and stay relaxed, rather than feeling stressed.</strong>\r\n<strong>Are you ready to take the first step? <em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact us today</a></span></em> to learn how hypnotherapy for stress management can help you.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which Therapies Are Effective With Stress Problems &amp; Disorders?</strong></span></h4>\r\nThere are effective ways to remove stress issues and research shows that <strong>Neuro-Linguistic Programming (NLP),</strong> <strong>Clinical Hypnotherapy</strong> <strong>&amp;</strong> <strong>Emotional Freedom Technique (EFT)</strong> are very effective in reducing the effects and symptoms of stress.\r\n<strong>Our approach is to evaluate the problems stress is causing you to find the best stress reduction &amp; stress management methods suitable for you</strong>.\r\n<h4><span style=\"color: #008000;\"><strong>Self Help For Stress Management?</strong></span></h4>\r\nMany of our clients love that we show YOU how to manage your stress yourself. Once you learn the techniques yourself, this puts you in control to work on and manage your stress as you wish and of course, we are here to help and improve the way you do this for yourself.\r\n<h4><strong><span style=\"color: #008000;\">Free Tips &amp; Advice For Stress Management.</span></strong></h4>\r\n<strong>Join the Stress Management Newsletter today.</strong>\r\nYour privacy is safe and you can unsubscribe at any time.\r\n[contact-form-7 id=\"2017\" title=\"Stress Tips Newsletter\"]\r\n<h4><strong><span style=\"color: #008000;\">Living With Stress Problems.</span></strong></h4>\r\nIf you are suffering from stress issues you will be aware that it can make life very miserable.\r\nStress can affect you in many ways including\r\n<ul>\r\n 	<li>mood</li>\r\n 	<li>work performance</li>\r\n 	<li>sex life &amp; sex drive</li>\r\n 	<li>panic attacks</li>\r\n 	<li>self-esteem</li>\r\n 	<li>self-confidence</li>\r\n 	<li>excess worry</li>\r\n 	<li>uncomfortable breathing</li>\r\n 	<li>general health</li>\r\n 	<li>energy levels</li>\r\n 	<li>disturbed sleep</li>\r\n 	<li>feeling overwhelmed</li>\r\n 	<li>upsetting the people around you</li>\r\n</ul>\r\nStress can really take the fun out of life and interestingly it is one of the easiest problems to rectify.\r\nStress is not really the problem but the way you react to things is.\r\nAre you ready to take control and live a better life?\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Can Hypnotherapy Help Stress Issues?</span></strong></h4>\r\nMost clients find their stress levels drop quite quickly after their first session of hypnotherapy for stress management.\r\nAs you practice your exercises and gain control over your stress, you will enjoy your stress levels dropping even further.\r\nEvery stress client is different and results will vary for each person.\r\n<h4><span style=\"color: #008000;\"><strong>Workplace Stress &amp; Stress Management At Work.</strong></span></h4>\r\nStress symptoms and issues can appear anywhere &amp; everywhere and it is very common that stress problems are related to or happen while at work or around your workplace. Work-related stress is on the increase and can cause problems for everyone involved. Thankfully we can put together sessions and programs for individuals and groups of people at every level of an organisation, to deal with workplace stress, effectively.\r\n<h4><strong><span style=\"color: #008000;\">Your FREE Stress Management Consultation. </span></strong></h4>\r\nMany of our clients love the free consultation as it gives you the chance to explain your stress issues and get answers to all of your questions. We can look at the issues and then let you know the best way forward to change that feeling of being stressed to feeling relaxed and calm.\r\n\r\n<span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Stress Management Client feedback from Steve</strong></span><em><span class=\"r-irHasJMkQBec\" tabindex=\"0\">. “I Would like to thank Mark for the great help he has given with<strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.”</strong></span></em>\r\n<h4><span style=\"color: #008000;\"><strong>Mark\'s Journey With Stress &amp; Stress Management.</strong></span></h4>\r\nPersonally, stress caused me issues from a young age. As a teenager, it made exams a struggle and caused severe digestive symptoms. As I got older it interfered with my work, my business, relationships and social time. This resulted in physical symptoms, such as pain, headaches, tension, muscle clenching and many other problems.\r\nThankfully, this led me on a path to study personal development, meditation, relaxation techniques, emotional freedom technique, self-hypnosis, hypnosis, neuro-linguistic programming, mindfulness, stress management and many other useful techniques. This has been an interesting and enjoyable journey.\r\nOn studying and practising these many interesting techniques, I discovered which were most effective for me and for other people. I learned over time, how to reduce the symptoms of stress, manage stress better, effective relaxation and eventually turn stress to my advantage. I discovered that dealing with stress was no longer difficult, once I learned the simple skills and stress management techniques.\r\n<h4><strong><span style=\"color: #008000;\">The Many Symptoms  Of Stress.</span></strong></h4>\r\nThe effects of stress can appear in many ways including, Headaches, Low Energy, Digestive Disorders, IBS - Irritable Bowel Syndrome, Poor Immune Function, Regular Coughs &amp; Colds, Stomach Issues, Insomnia, Lack Of Focus, Pain, Jaw Clenching or Grinding, Chest Pain, Rapid Heart Beat, High Blood Pressure and can make other health issues worse.\r\n<h4><span style=\"color: #008000;\"><strong>When Should I Take Control Of My Stress Problem?</strong></span></h4>\r\n<em><strong>Stress issues should not be left to get worse, without treatment. We know stress problems can cause or complicate other health issues, causing further risk. Stress disorders, big or small should be dealt with as quickly as possible.</strong></em>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #008000;\">To take control of your stress today, complete this form below or call us now on</span></strong></span><span style=\"color: #000000;\"><strong> 07568 455 809.\r\n<em><span style=\"color: #008000;\">Remember</span> to ask about your <span style=\"color: #008000;\">FREE Stress Management Consultation.</span> </em>This can be done by phone, in person or online.\r\n</strong></span>\r\n<h4>[wpforms id=\"35\"]</h4>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy For Stress Management in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy helps people with stress and many other issues from a number of locations in the North East of England.\r\nYou can find our hypnotherapy &amp; NLP services at the following locations.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n 	<li>Online via video link - ask for details.</li>\r\n</ul>\r\n&nbsp;','Hypnotherapy For Stress Management','','inherit','closed','closed','','106-revision-v1','','','2019-04-22 19:11:57','2019-04-22 19:11:57','',106,'https://www.newcastle-hypnotherapy.com/106-revision-v1/',0,'revision','',0),(2806,1,'2019-04-24 20:26:46','2019-04-24 20:26:46','','Order &ndash; April 24, 2019 @ 08:26 PM','','wc-processing','open','closed','order_5cc0c68635859','order-apr-24-2019-0826-pm','','','2019-04-24 20:27:39','2019-04-24 20:27:39','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2806',0,'shop_order','',2),(2807,1,'2019-04-25 12:50:09','2019-04-25 12:50:09','','Order &ndash; April 25, 2019 @ 12:50 PM','','wc-on-hold','open','closed','order_5cc1ad013a6e7','order-apr-25-2019-1250-pm','','','2019-04-25 12:50:09','2019-04-25 12:50:09','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2807',0,'shop_order','',1),(2808,1,'2019-04-28 19:59:05','2019-04-28 19:59:05','','Order &ndash; April 28, 2019 @ 07:59 PM','','wc-on-hold','open','closed','order_5cc60609ca1fc','order-apr-28-2019-0759-pm','','','2019-04-28 19:59:06','2019-04-28 19:59:06','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2808',0,'shop_order','',1),(2809,1,'2019-04-29 22:33:22','2019-04-29 22:33:22','','Order &ndash; April 29, 2019 @ 10:33 PM','','wc-cancelled','open','closed','order_5cc77bb206567','order-apr-29-2019-1033-pm','','','2019-04-30 00:37:31','2019-04-30 00:37:31','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2809',0,'shop_order','',1),(2810,1,'2019-04-29 22:36:16','2019-04-29 22:36:16','','Order &ndash; April 29, 2019 @ 10:36 PM','','wc-cancelled','open','closed','order_5cc77c60bf9a5','order-apr-29-2019-1036-pm','','','2019-04-30 00:37:31','2019-04-30 00:37:31','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2810',0,'shop_order','',1),(2811,1,'2019-04-29 22:38:25','2019-04-29 22:38:25','','Order &ndash; April 29, 2019 @ 10:38 PM','','wc-processing','open','closed','order_5cc77ce1518ae','order-apr-29-2019-1038-pm','','','2019-04-29 22:39:06','2019-04-29 22:39:06','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2811',0,'shop_order','',2),(2812,1,'2019-04-30 15:09:18','2019-04-30 15:09:18','','Order &ndash; April 30, 2019 @ 03:09 PM','booking for myself and Alison Vaulkhard','wc-on-hold','open','closed','order_5cc8651e286cf','order-apr-30-2019-0309-pm','','','2019-04-30 15:09:18','2019-04-30 15:09:18','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2812',0,'shop_order','',1),(2814,1,'2019-05-06 12:38:38','2019-05-06 12:38:38','Learn To Relax Deeply &amp; Quickly Using Self-Hypnosis.\r\n\r\nWednesday 22nd May 7.30pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<strong>Book your places below.\r\n\r\n</strong>\r\n\r\n&nbsp;','Deep Relaxation Workshop - Self Hypnosis','','inherit','closed','closed','','2813-revision-v1','','','2019-05-06 12:38:38','2019-05-06 12:38:38','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(2815,1,'2019-05-06 12:46:00','2019-05-06 12:46:00','Learn To Relax Deeply &amp; Quickly Using Self-Hypnosis.\r\n\r\nWednesday 22nd May 7.30pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<strong>Book your places below.</strong>\r\n\r\nLearning to relax properly is a wonderful way to improve your health and your quality of life.\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress and anxiety.\r\n\r\n\r\n\r\n&nbsp;','Deep Relaxation Workshop - Self Hypnosis & NLP Skills','','inherit','closed','closed','','2813-revision-v1','','','2019-05-06 12:46:00','2019-05-06 12:46:00','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(2816,1,'2019-05-06 12:55:53','2019-05-06 12:55:53','Learn To Relax Deeply &amp; Quickly Using Self-Hypnosis.\r\n\r\nWednesday 22nd May 7.30pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<strong>Book your places below.</strong>\r\n\r\nLearning to relax properly is a wonderful way to improve your health and quality of life.\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress and anxiety.\r\nDeep Relaxation is a wonderful feeling, deeper and faster than meditation.\r\n\r\nDuring this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid relaxation and happiness.\r\n\r\nLearn how to\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n</ul>','Deep Relaxation Workshop - Self Hypnosis & NLP Skills','','inherit','closed','closed','','2813-revision-v1','','','2019-05-06 12:55:53','2019-05-06 12:55:53','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(2817,1,'2019-05-06 13:17:41','2019-05-06 13:17:41','Learn To Relax Deeply &amp; Quickly Using Self-Hypnosis.\r\n\r\nWednesday 22nd May 7.30pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<strong>Book your places below.</strong>\r\n\r\nLearning to relax properly is a wonderful way to improve your health and quality of life.\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress and anxiety.\r\nDeep Relaxation is a wonderful feeling, deeper and faster than meditation.\r\n\r\nDuring this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid relaxation and happiness.\r\n\r\nLearn how to\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n&nbsp;\r\n\r\nThe Deep Relaxation Mind &amp; Body Technique Workshop\r\n\r\nLearning modern self-hypnosis and NLP skills for deep relaxation has many benefits.\r\nWe know relaxed people suffer less stress, anxiety, illness and enjoy better, healthier lives.\r\n\r\nLearn how to relax deeply by booking your place here.\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n\r\n\r\n\r\n\r\n\r\n&nbsp;\r\n\r\nLearn more about future Secret Workshops and events by joining the newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.','Deep Relaxation Mind & Body Techniques','','inherit','closed','closed','','2813-revision-v1','','','2019-05-06 13:17:41','2019-05-06 13:17:41','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(2818,1,'2019-05-06 13:18:16','2019-05-06 13:18:16','Learn To Relax Deeply &amp; Quickly Using Self-Hypnosis.\r\n\r\nWednesday 22nd May 7.30pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<strong>Book your places below.</strong>\r\n\r\nLearning to relax properly is a wonderful way to improve your health and quality of life.\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress and anxiety.\r\nDeep Relaxation is a wonderful feeling, deeper and faster than meditation.\r\n\r\nDuring this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid relaxation and happiness.\r\n\r\nLearn how to\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n&nbsp;\r\n\r\nThe Deep Relaxation Mind &amp; Body Technique Workshop\r\n\r\nLearning modern self-hypnosis and NLP skills for deep relaxation has many benefits.\r\nWe know relaxed people suffer less stress, anxiety, illness and enjoy better, healthier lives.\r\n\r\nLearn how to relax deeply by booking your place here.\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLearn more about future Secret Workshops and events by joining the newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.','Deep Relaxation Mind & Body Techniques','','inherit','closed','closed','','2813-revision-v1','','','2019-05-06 13:18:16','2019-05-06 13:18:16','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(2819,1,'2019-05-06 13:24:11','2019-05-06 13:24:11','','deep relaxation mind & body techniques','','inherit','open','closed','','deep-relaxation-mind-body-techniques','','','2019-05-06 13:24:22','2019-05-06 13:24:22','',2813,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/05/deep-relaxation-mind-body-techniques.jpg',0,'attachment','image/jpeg',0),(2820,1,'2019-05-06 13:24:27','2019-05-06 13:24:27','<img class=\"alignleft size-medium wp-image-2819\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/05/deep-relaxation-mind-body-techniques-300x199.jpg\" alt=\"deep relaxation mind &amp; body techniques\" width=\"300\" height=\"199\" />Learn To Relax Deeply &amp; Quickly Using Self-Hypnosis.\r\n\r\nWednesday 22nd May 7.30pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<strong>Book your places below.</strong>\r\n\r\nLearning to relax properly is a wonderful way to improve your health and quality of life.\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress and anxiety.\r\nDeep Relaxation is a wonderful feeling, deeper and faster than meditation.\r\n\r\nDuring this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid relaxation and happiness.\r\n\r\nLearn how to\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>improve your meditation &amp; mindfulness practice</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n&nbsp;\r\n\r\nThe Deep Relaxation Mind &amp; Body Technique Workshop\r\n\r\nLearning modern self-hypnosis and NLP skills for deep relaxation has many benefits.\r\nWe know relaxed people suffer less stress, anxiety, illness and enjoy better, healthier lives.\r\n\r\nLearn how to relax deeply by booking your place here.\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLearn more about future Secret Workshops and events by joining the newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.','Deep Relaxation Mind & Body Techniques','','inherit','closed','closed','','2813-revision-v1','','','2019-05-06 13:24:27','2019-05-06 13:24:27','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(2821,1,'2019-05-06 13:25:52','2019-05-06 13:25:52','<img class=\"alignleft size-medium wp-image-2819\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/05/deep-relaxation-mind-body-techniques-300x199.jpg\" alt=\"deep relaxation mind &amp; body techniques\" width=\"300\" height=\"199\" /><span style=\"color: #008000;\"><strong>Learn Deep Relaxation Mind &amp; Body Techniques</strong></span>\r\n\r\nWednesday 22nd May 7.30pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<strong>Book your places below.</strong>\r\n\r\nLearning to relax properly is a wonderful way to improve your health and quality of life.\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress and anxiety.\r\nDeep Relaxation is a wonderful feeling, deeper and faster than meditation.\r\n\r\nDuring this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid relaxation and happiness.\r\n\r\nLearn how to\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>improve your meditation &amp; mindfulness practice</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n&nbsp;\r\n\r\nThe Deep Relaxation Mind &amp; Body Technique Workshop\r\n\r\nLearning modern self-hypnosis and NLP skills for deep relaxation has many benefits.\r\nWe know relaxed people suffer less stress, anxiety, illness and enjoy better, healthier lives.\r\n\r\nLearn how to relax deeply by booking your place here.\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLearn more about future Secret Workshops and events by joining the newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.','Deep Relaxation Mind & Body Techniques','','inherit','closed','closed','','2813-revision-v1','','','2019-05-06 13:25:52','2019-05-06 13:25:52','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(2822,1,'2019-05-06 13:26:51','2019-05-06 13:26:51','<img class=\"alignleft size-medium wp-image-2819\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/05/deep-relaxation-mind-body-techniques-300x199.jpg\" alt=\"deep relaxation mind &amp; body techniques\" width=\"300\" height=\"199\" /><span style=\"color: #008000;\"><strong>Learn Simple Deep Relaxation Mind &amp; Body Techniques To Improve Your Happiness &amp; Health.\r\n</strong></span>\r\n\r\nWednesday 22nd May 7.30pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<strong>Book your places below.</strong>\r\n\r\nLearning to relax properly is a wonderful way to improve your health and quality of life.\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress and anxiety.\r\nDeep Relaxation is a wonderful feeling, deeper and faster than meditation.\r\n\r\nDuring this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid relaxation and happiness.\r\n\r\nLearn how to\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>improve your meditation &amp; mindfulness practice</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n&nbsp;\r\n\r\nThe Deep Relaxation Mind &amp; Body Technique Workshop\r\n\r\nLearning modern self-hypnosis and NLP skills for deep relaxation has many benefits.\r\nWe know relaxed people suffer less stress, anxiety, illness and enjoy better, healthier lives.\r\n\r\nLearn how to relax deeply by booking your place here.\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLearn more about future Secret Workshops and events by joining the newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.','Deep Relaxation Mind & Body Techniques','','inherit','closed','closed','','2813-revision-v1','','','2019-05-06 13:26:51','2019-05-06 13:26:51','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(2823,1,'2019-05-06 13:27:23','2019-05-06 13:27:23','<img class=\"alignleft size-medium wp-image-2819\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/05/deep-relaxation-mind-body-techniques-300x199.jpg\" alt=\"deep relaxation mind &amp; body techniques\" width=\"300\" height=\"199\" /><span style=\"color: #008000;\"><strong>Learn Simple Deep Relaxation Mind &amp; Body Techniques To Improve Your Happiness &amp; Health.\r\n</strong></span>\r\n\r\nWednesday 22nd May 7.30pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n\r\n<span style=\"color: #ff6600;\"><strong>Book your places below.</strong></span>\r\n\r\nLearning to relax properly is a wonderful way to improve your health and quality of life.\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress and anxiety.\r\nDeep Relaxation is a wonderful feeling, deeper and faster than meditation.\r\n\r\nDuring this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid relaxation and happiness.\r\n\r\nLearn how to\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>improve your meditation &amp; mindfulness practice</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n&nbsp;\r\n\r\nThe Deep Relaxation Mind &amp; Body Technique Workshop\r\n\r\nLearning modern self-hypnosis and NLP skills for deep relaxation has many benefits.\r\nWe know relaxed people suffer less stress, anxiety, illness and enjoy better, healthier lives.\r\n\r\nLearn how to relax deeply by booking your place here.\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLearn more about future Secret Workshops and events by joining the newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.','Deep Relaxation Mind & Body Techniques','','inherit','closed','closed','','2813-revision-v1','','','2019-05-06 13:27:23','2019-05-06 13:27:23','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(2824,1,'2019-05-06 13:27:43','2019-05-06 13:27:43','<img class=\"alignleft size-medium wp-image-2819\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/05/deep-relaxation-mind-body-techniques-300x199.jpg\" alt=\"deep relaxation mind &amp; body techniques\" width=\"300\" height=\"199\" /><span style=\"color: #008000;\"><strong>Learn Simple Deep Relaxation Mind &amp; Body Techniques To Improve Your Happiness &amp; Health.\r\n</strong></span>\r\n\r\nWednesday 22nd May 7.30pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<span style=\"color: #ff6600;\"><strong>Book your places below.\r\n\r\n</strong></span>\r\n\r\nLearning to relax properly is a wonderful way to improve your health and quality of life.\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress and anxiety.\r\nDeep Relaxation is a wonderful feeling, deeper and faster than meditation.\r\n\r\nDuring this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid relaxation and happiness.\r\n\r\nLearn how to\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>improve your meditation &amp; mindfulness practice</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n&nbsp;\r\n\r\nThe Deep Relaxation Mind &amp; Body Technique Workshop\r\n\r\nLearning modern self-hypnosis and NLP skills for deep relaxation has many benefits.\r\nWe know relaxed people suffer less stress, anxiety, illness and enjoy better, healthier lives.\r\n\r\nLearn how to relax deeply by booking your place here.\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLearn more about future Secret Workshops and events by joining the newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.','Deep Relaxation Mind & Body Techniques','','inherit','closed','closed','','2813-revision-v1','','','2019-05-06 13:27:43','2019-05-06 13:27:43','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(2825,1,'2019-05-06 13:28:08','2019-05-06 13:28:08','<img class=\"alignleft size-medium wp-image-2819\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/05/deep-relaxation-mind-body-techniques-300x199.jpg\" alt=\"deep relaxation mind &amp; body techniques\" width=\"300\" height=\"199\" /><span style=\"color: #008000;\"><strong>Learn Simple Deep Relaxation Mind &amp; Body Techniques To Improve Your Happiness &amp; Health.\r\n</strong></span>\r\n\r\nWednesday 22nd May 7.30pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<span style=\"color: #ff6600;\"><strong>Book your places below.</strong></span>\r\n\r\n&nbsp;\r\n\r\n\r\nLearning to relax properly is a wonderful way to improve your health and quality of life.\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress and anxiety.\r\nDeep Relaxation is a wonderful feeling, deeper and faster than meditation.\r\n\r\nDuring this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid relaxation and happiness.\r\n\r\nLearn how to\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>improve your meditation &amp; mindfulness practice</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n&nbsp;\r\n\r\nThe Deep Relaxation Mind &amp; Body Technique Workshop\r\n\r\nLearning modern self-hypnosis and NLP skills for deep relaxation has many benefits.\r\nWe know relaxed people suffer less stress, anxiety, illness and enjoy better, healthier lives.\r\n\r\nLearn how to relax deeply by booking your place here.\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLearn more about future Secret Workshops and events by joining the newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.','Deep Relaxation Mind & Body Techniques','','inherit','closed','closed','','2813-revision-v1','','','2019-05-06 13:28:08','2019-05-06 13:28:08','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(2826,1,'2019-05-06 13:30:43','2019-05-06 13:30:43','<img class=\"alignleft size-medium wp-image-2819\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/05/deep-relaxation-mind-body-techniques-300x199.jpg\" alt=\"deep relaxation mind &amp; body techniques\" width=\"300\" height=\"199\" /><span style=\"color: #008000;\"><strong>Learn Simple Deep Relaxation Mind &amp; Body Techniques To Improve Your Happiness &amp; Health.\r\n</strong></span>\r\n\r\nWednesday 22nd May 7.30pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<span style=\"color: #ff6600;\"><strong>Book your places below.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Learning to relax properly is a wonderful way to improve your health and quality of life.</strong>\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress and anxiety.\r\nDeep Relaxation is a wonderful feeling, deeper and faster than meditation.\r\n\r\n<strong>During this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid relaxation and happiness.</strong>\r\n\r\nLearn how to\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>improve your meditation &amp; mindfulness practice</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n&nbsp;\r\n\r\nThe Deep Relaxation Mind &amp; Body Technique Workshop\r\n\r\nLearning modern self-hypnosis and NLP skills for deep relaxation has many benefits.\r\nWe know relaxed people suffer less stress, anxiety, illness and enjoy better, healthier lives.\r\n\r\nLearn how to relax deeply by booking your place here.\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLearn more about future Secret Workshops and events by joining the newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.','Deep Relaxation Mind & Body Techniques','','inherit','closed','closed','','2813-revision-v1','','','2019-05-06 13:30:43','2019-05-06 13:30:43','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(2827,1,'2019-05-06 13:31:13','2019-05-06 13:31:13','<img class=\"alignleft size-medium wp-image-2819\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/05/deep-relaxation-mind-body-techniques-300x199.jpg\" alt=\"deep relaxation mind &amp; body techniques\" width=\"300\" height=\"199\" /><span style=\"color: #008000;\"><strong>Learn Simple Deep Relaxation Mind &amp; Body Techniques To Improve Your Happiness &amp; Health.\r\n</strong></span>\r\n\r\nWednesday 22nd May 7.30pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<span style=\"color: #ff6600;\"><strong>Book your places below.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Learning to relax properly is a wonderful way to improve your health and quality of life.</strong>\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress and anxiety.\r\nDeep Relaxation is a wonderful feeling, deeper and faster than meditation.\r\n\r\n<strong>During this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid relaxation and happiness.</strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Learn how to</strong></span>\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>improve your meditation &amp; mindfulness practice</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n&nbsp;\r\n\r\nThe Deep Relaxation Mind &amp; Body Technique Workshop\r\n\r\nLearning modern self-hypnosis and NLP skills for deep relaxation has many benefits.\r\nWe know relaxed people suffer less stress, anxiety, illness and enjoy better, healthier lives.\r\n\r\nLearn how to relax deeply by booking your place here.\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLearn more about future Secret Workshops and events by joining the newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.','Deep Relaxation Mind & Body Techniques','','inherit','closed','closed','','2813-revision-v1','','','2019-05-06 13:31:13','2019-05-06 13:31:13','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(2828,1,'2019-05-06 13:31:58','2019-05-06 13:31:58','<img class=\"alignleft size-medium wp-image-2819\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/05/deep-relaxation-mind-body-techniques-300x199.jpg\" alt=\"deep relaxation mind &amp; body techniques\" width=\"300\" height=\"199\" /><span style=\"color: #008000;\"><strong>Learn Simple Deep Relaxation Mind &amp; Body Techniques To Improve Your Happiness &amp; Health.\r\n</strong></span>\r\n\r\nWednesday 22nd May 7.30pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<span style=\"color: #ff6600;\"><strong>Book your places below.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Learning to relax properly is a wonderful way to improve your health and quality of life.</strong>\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress and anxiety.\r\nDeep Relaxation is a wonderful feeling, deeper and faster than meditation.\r\n\r\n<strong>During this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid relaxation and happiness.</strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Learn how to</strong></span>\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>improve your meditation &amp; mindfulness practice</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep Relaxation Mind &amp; Body Technique Workshop</strong></span></h4>\r\nLearning modern self-hypnosis and NLP skills for deep relaxation has many benefits.\r\nWe know relaxed people suffer less stress, anxiety, illness and enjoy better, healthier lives.\r\n\r\nLearn how to relax deeply by booking your place here.\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLearn more about future Secret Workshops and events by joining the newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.','Deep Relaxation Mind & Body Techniques','','inherit','closed','closed','','2813-revision-v1','','','2019-05-06 13:31:58','2019-05-06 13:31:58','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(2829,1,'2019-05-06 13:35:04','2019-05-06 13:35:04','<img class=\"alignleft size-medium wp-image-2819\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/05/deep-relaxation-mind-body-techniques-300x199.jpg\" alt=\"deep relaxation mind &amp; body techniques\" width=\"300\" height=\"199\" /><span style=\"color: #008000;\"><strong>Learn Simple Deep Relaxation Mind &amp; Body Techniques To Improve Your Happiness &amp; Health.\r\n</strong></span>\r\n\r\nWednesday 22nd May 7.30pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<span style=\"color: #ff6600;\"><strong>Book your places below.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Learning to relax properly is a wonderful way to improve your health and quality of life.</strong>\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress and anxiety.\r\nDeep Relaxation is a wonderful feeling, deeper and faster than meditation.\r\n\r\n<strong>During this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid relaxation and happiness.</strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Learn how to</strong></span>\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>improve your meditation &amp; mindfulness practice</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep Relaxation Mind &amp; Body Technique Workshop</strong></span></h4>\r\nLearning modern self-hypnosis and NLP skills for deep relaxation has many benefits.\r\nWe know relaxed people suffer less stress, anxiety, illness and enjoy better, healthier lives.\r\n\r\n<strong>Learn how to relax deeply by booking your place here.</strong>\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPlease note that places are limited and bookings are taken on a first come first served basis.\r\nEarly Bird discount prices are available when booking by the date advised on the booking page.\r\nClick the image above to book your place and learn about Early Bird prices.\r\n\r\n&nbsp;\r\n\r\nLearn more about future Secret Workshops and events by joining the newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.','Deep Relaxation Mind & Body Techniques','','inherit','closed','closed','','2813-revision-v1','','','2019-05-06 13:35:04','2019-05-06 13:35:04','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(2830,1,'2019-05-06 13:37:56','2019-05-06 13:37:56','<img class=\"alignleft size-medium wp-image-2819\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/05/deep-relaxation-mind-body-techniques-300x199.jpg\" alt=\"deep relaxation mind &amp; body techniques\" width=\"300\" height=\"199\" /><span style=\"color: #008000;\"><strong>Learn Simple Deep Relaxation Mind &amp; Body Techniques To Improve Your Happiness &amp; Health.\r\n</strong></span>\r\n\r\nWednesday 22nd May 7.30pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<span style=\"color: #ff6600;\"><strong>Book your places below.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Learning to relax properly is a wonderful way to improve your health and quality of life.</strong>\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress and anxiety.\r\nDeep Relaxation is a wonderful feeling, deeper and faster than meditation.\r\n\r\n<strong>During this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid relaxation and happiness.</strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Learn how to</strong></span>\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>improve your meditation &amp; mindfulness practice</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep Relaxation Mind &amp; Body Technique Workshop</strong></span></h4>\r\nLearning modern self-hypnosis and NLP skills for deep relaxation has many benefits.\r\nWe know relaxed people suffer less stress, anxiety, illness and enjoy better, healthier lives.\r\n\r\n<strong>Learn how to relax deeply by booking your place here.</strong>\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPlease note that places are limited and bookings are taken on a first come first served basis.\r\nEarly Bird discount prices are available when booking by the date advised on the booking page.\r\nClick the image above to book your place and learn about Early Bird prices.\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about future Secret Workshops and events by joining the newsletter here.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.\r\n\r\n<strong><span style=\"color: #008000;\">The Newcastle Hypnotherapy</span></strong> <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #ff6600;\"><strong>Facebook Group for The Secret Workshops is here</strong></span></a>','Deep Relaxation Mind & Body Techniques','','inherit','closed','closed','','2813-revision-v1','','','2019-05-06 13:37:56','2019-05-06 13:37:56','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(2831,1,'2019-05-06 13:50:23','2019-05-06 13:50:23','<img class=\"alignleft size-medium wp-image-2819\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/05/deep-relaxation-mind-body-techniques-300x199.jpg\" alt=\"deep relaxation mind &amp; body techniques\" width=\"300\" height=\"199\" /><span style=\"color: #008000;\"><strong>Learn Simple Deep Relaxation Mind &amp; Body Techniques To Improve Your Happiness &amp; Health.\r\n</strong></span>\r\n\r\nWednesday 22nd May 7.30pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<span style=\"color: #ff6600;\"><strong>Book your places below.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Learning to relax properly is a wonderful way to improve your health and quality of life.</strong>\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress and anxiety.\r\nDeep Relaxation is a wonderful feeling, deeper and faster than meditation.\r\n\r\n<strong>During this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid relaxation and happiness.</strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Learn how to</strong></span>\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>improve your meditation &amp; mindfulness practice</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep Relaxation Mind &amp; Body Technique Workshop</strong></span></h4>\r\nLearning modern self-hypnosis and NLP skills for deep relaxation has many benefits.\r\nWe know relaxed people suffer less stress, anxiety, illness and enjoy better, healthier lives.\r\n\r\n<strong>Learn how to relax deeply by booking your place here.</strong>\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPlease note that places are limited and bookings are taken on a first come first served basis.\r\nEarly Bird discount prices are available when booking by the date advised on the booking page.\r\nClick the image above to book your place and learn about Early Bird prices.\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about future Secret Workshops and events by joining the newsletter here.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.\r\n\r\n<strong><span style=\"color: #008000;\">The Newcastle Hypnotherapy</span></strong> <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #ff6600;\"><strong>Facebook Group for The Secret Workshops is here</strong></span></a>\r\n\r\nThe Deep Relaxation Mind &amp; Body Technique Workshop is just one of the many regular events that we organise on a monthly basis to help people feel better and improve life.\r\n\r\nMany people like to work with us by individual sessions to work on issues such as anxiety, stress, depression, self-confidence or to change habits or behaviour. Contact us to arrange your free phone consultation to examine your issue and to establish the best way forward for you.','Deep Relaxation Mind & Body Techniques','','inherit','closed','closed','','2813-revision-v1','','','2019-05-06 13:50:23','2019-05-06 13:50:23','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(2832,1,'2019-05-06 13:52:10','2019-05-06 13:52:10','<img class=\"alignleft size-medium wp-image-2819\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/05/deep-relaxation-mind-body-techniques-300x199.jpg\" alt=\"deep relaxation mind &amp; body techniques\" width=\"300\" height=\"199\" /><span style=\"color: #008000;\"><strong>Learn Simple Deep Relaxation Mind &amp; Body Techniques To Improve Your Happiness &amp; Health.\r\n</strong></span>\r\n\r\nWednesday 22nd May 7.30pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<span style=\"color: #ff6600;\"><strong>Book your places below.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Learning to relax properly is a wonderful way to improve your health and quality of life.</strong>\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress and anxiety.\r\nDeep Relaxation is a wonderful feeling, deeper and faster than meditation.\r\n\r\n<strong>During this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid relaxation and happiness.</strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Learn how to</strong></span>\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>improve your meditation &amp; mindfulness practice</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep Relaxation Mind &amp; Body Technique Workshop</strong></span></h4>\r\nLearning modern self-hypnosis and NLP skills for deep relaxation has many benefits.\r\nWe know relaxed people suffer less stress, anxiety, illness and enjoy better, healthier lives.\r\n\r\n<strong>Learn how to relax deeply by booking your place here.</strong>\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPlease note that places are limited and bookings are taken on a first come first served basis.\r\nEarly Bird discount prices are available when booking by the date advised on the booking page.\r\nClick the image above to book your place and learn about Early Bird prices.\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about future Secret Workshops and events by joining the newsletter here.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.\r\n\r\n<strong><span style=\"color: #008000;\">The Newcastle Hypnotherapy</span></strong> <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #ff6600;\"><strong>Facebook Group for The Secret Workshops is here</strong></span></a>\r\n\r\nThe Deep Relaxation Mind &amp; Body Technique Workshop is just one of the many regular events that we organise on a monthly basis to help people feel better and improve life.\r\n\r\nMany people like to work with us by individual sessions to work on issues such as anxiety, stress, depression, self-confidence or to change habits or behaviour. Contact us to arrange your free phone consultation to examine your issue and to establish the best way forward for you.\r\n\r\n<strong>You can read some of the <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">feedback from our many happy clients here.</a></span></strong>\r\n\r\n&nbsp;','Deep Relaxation Mind & Body Techniques','','inherit','closed','closed','','2813-revision-v1','','','2019-05-06 13:52:10','2019-05-06 13:52:10','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(3034,1,'2019-06-29 11:44:35','2019-06-29 11:44:35','','The Secrets Of Emotional Strength -10th July','','publish','closed','closed','','3034','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=3034',25,'nav_menu_item','',0),(2836,1,'2019-05-06 14:49:40','2019-05-06 14:49:40','Once you have booked your place, a confirmation email will be sent to you.\r\nFurther information will be sent to you a few days before this event.\r\n\r\n<strong>Terms &amp; Conditions.</strong>\r\nThe Secret Workshops are a set of events, sharing life-enhancing skills.\r\nBookings are taken strictly on a first come first served basis and your booking is only secured once payment is complete.\r\n<strong>Booking In Advance.</strong>\r\nWe ask everyone to book and pay in advance please as this reduces admin work and allow us to focus on the workshop in progress.\r\n<strong>Cancellations and refunds.</strong>\r\nIf you are unable to attend you can transfer your place to someone else and it is helpful if you could email us with this information.\r\nWe do not offer refunds if you are unable to attend.','The Secrets Of Deep Relaxation Workshop','Book your place here for Wednesday 18th September\r\nYou can pay by Card, Paypal or Bank Transfer.\r\nSpaces are limited to 20 people. First come first served.\r\n<span style=\"color: #ff6600;\"><strong>\r\n</strong></span>','publish','closed','closed','','deep-relaxation-mind-body-workshop','','','2019-09-08 09:48:54','2019-09-08 09:48:54','',0,'https://www.newcastle-hypnotherapy.com/?post_type=product&#038;p=2836',0,'product','',0),(2835,1,'2019-05-06 14:46:06','2019-05-06 14:46:06','','The Secrets Of Deep Relaxation Workshop - 18th September','','publish','closed','closed','','2835','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=2835',18,'nav_menu_item','',0),(2837,1,'2019-05-06 14:54:38','2019-05-06 14:54:38','<img class=\"alignleft size-medium wp-image-2819\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/05/deep-relaxation-mind-body-techniques-300x199.jpg\" alt=\"deep relaxation mind &amp; body techniques\" width=\"300\" height=\"199\" /><span style=\"color: #008000;\"><strong>Learn Simple Deep Relaxation Mind &amp; Body Techniques To Improve Your Happiness &amp; Health.\r\n</strong></span>\r\n\r\nWednesday 22nd May 7.30pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person or £10 early bird\r\nAdvance booking required\r\n<span style=\"color: #ff6600;\"><strong>Book your places below.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Learning to relax properly is a wonderful way to improve your health and quality of life.</strong>\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress and anxiety.\r\nDeep Relaxation is a wonderful feeling, deeper and faster than meditation.\r\n\r\n<strong>During this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid relaxation and happiness.</strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Learn how to</strong></span>\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>improve your meditation &amp; mindfulness practice</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep Relaxation Mind &amp; Body Technique Workshop</strong></span></h4>\r\nLearning modern self-hypnosis and NLP skills for deep relaxation has many benefits.\r\nWe know relaxed people suffer less stress, anxiety, illness and enjoy better, healthier lives.\r\n\r\n<strong>Learn how to relax deeply by booking your place here.</strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/deep-relaxation-mind-body-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPlease note that places are limited and bookings are taken on a first come first served basis.\r\nEarly Bird discount prices are available when booking by the date advised on the booking page.\r\nClick the image above to book your place and learn about Early Bird prices.\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about future Secret Workshops and events by joining the newsletter here.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.\r\n\r\n<strong><span style=\"color: #008000;\">The Newcastle Hypnotherapy</span></strong> <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #ff6600;\"><strong>Facebook Group for The Secret Workshops is here</strong></span></a>\r\n\r\nThe Deep Relaxation Mind &amp; Body Technique Workshop is just one of the many regular events that we organise on a monthly basis to help people feel better and improve life.\r\n\r\nMany people like to work with us by individual sessions to work on issues such as anxiety, stress, depression, self-confidence or to change habits or behaviour. Contact us to arrange your free phone consultation to examine your issue and to establish the best way forward for you.\r\n\r\n<strong>You can read some of the <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">feedback from our many happy clients here.</a></span></strong>\r\n\r\n&nbsp;','Deep Relaxation Mind & Body Techniques','','inherit','closed','closed','','2813-revision-v1','','','2019-05-06 14:54:38','2019-05-06 14:54:38','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(2838,1,'2019-05-06 16:56:50','2019-05-06 16:56:50','','Order &ndash; May 6, 2019 @ 04:56 PM','','wc-processing','open','closed','order_5cd06752331b4','order-may-06-2019-0456-pm','','','2019-05-06 16:57:46','2019-05-06 16:57:46','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2838',0,'shop_order','',2),(2840,1,'2019-05-06 19:59:40','2019-05-06 19:59:40','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></h4>\r\n<p style=\"text-align: center;\"><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span></p>\r\n<p style=\"text-align: center;\"><strong>People ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.\r\n<span style=\"color: #008000;\">Read our 5-star client feedback reviews below</span></strong></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nTo help you with this we offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation.</strong></span></a> This helps us to explore your issues and look at the best way forward for you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Simply call <strong>07568 455</strong> <strong>809</strong></span></a> to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nThis means we will look at all of the factors that may be causing you an issue. We often look at your diet, your lifestyle, your relationships, habits and more. We can then evaluate the areas that may be causing or adding to your problem and then suggest the best ways forward for the best results.<strong><em>\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our <strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend Hypnotherapy Practice</a></strong> as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Learn more about The Secret Workshops.</span></strong></h4>\r\nNewcastle Hypnotherapy organise regular events known as The Secret Workshops across the  North East and in Newcastle upon Tyne. You can join The Secret Workshops Newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time using the link in the email.\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smartphone and you can also enjoy hypnotherapy and NLP sessions online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n&nbsp;\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis?</strong></span></h4>\r\nHypnosis is a natural mental state that we all experience every day.\r\nImagine being totally focused on a good film, TV programme, driving a car or listening to your favourite music. These are all a form of hypnosis.\r\nA hypnotherapist or hypnotist will guide you into a hypnotic trance using a hypnotic induction. While enjoying this relaxed and focused state, we work together to make the changes in your mind to modify behaviours and habits for the better.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Hypnosis or NLP Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Secret Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Opening Times</strong></span></h4>\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-05-06 19:59:40','2019-05-06 19:59:40','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2839,1,'2019-05-06 19:56:38','2019-05-06 19:56:38','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></h4>\r\n<p style=\"text-align: center;\"><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span></p>\r\n<p style=\"text-align: center;\"><strong>People ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.\r\n<span style=\"color: #008000;\">Read our 5-star client feedback reviews below</span></strong></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nTo help you with this we offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation.</strong></span></a> This helps us to explore your issues and look at the best way forward for you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Simply call <strong>07568 455</strong> <strong>809</strong></span></a> to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nThis means we will look at all of the factors that may be causing you an issue. We often look at your diet, your lifestyle, your relationships, habits and more. We can then evaluate the areas that may be causing or adding to your problem and then suggest the best ways forward for the best results.<strong><em>\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our <strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend Hypnotherapy Practice</a></strong> as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Learn more about The Secret Workshops.</span></strong></h4>\r\nNewcastle Hypnotherapy organise regular events known as The Secret Workshops across the  North East and in Newcastle upon Tyne. You can join The Secret Workshops Newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time using the link in the email.\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smartphone and you can also enjoy hypnotherapy and NLP sessions online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n&nbsp;\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis?</strong></span></h4>\r\nHypnosis is a natural mental state that we all experience every day.\r\nImagine being totally focused on a good film, TV programme, driving a car or listening to your favourite music. These are all a form of hypnosis.\r\nA hypnotherapist or hypnotist will guide you into a hypnotic trance using a hypnotic induction. While enjoying this relaxed and focused state, we work together to make the changes in your mind to modify behaviours and habits for the better.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Hypnosis or NLP Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Secret Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Opening Times</strong></span></h4>\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-05-06 19:56:38','2019-05-06 19:56:38','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2935,1,'2019-05-29 16:49:53','2019-05-29 16:49:53','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></h4>\r\n<p style=\"text-align: center;\"><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span></p>\r\n<p style=\"text-align: center;\"><strong>People ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.\r\n<span style=\"color: #008000;\">Read our 5-star client feedback reviews below</span></strong></p>\r\nhttps://www.youtube.com/watch?v=QaMdJmT0Ibw\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nTo help you with this we offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation.</strong></span></a> This helps us to explore your issues and look at the best way forward for you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Simply call <strong>07568 455</strong> <strong>809</strong></span></a> to arrange your phone consultation or book online -<strong> <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nThis means we will look at all of the factors that may be causing you an issue. We often look at your diet, your lifestyle, your relationships, habits and more. We can then evaluate the areas that may be causing or adding to your problem and then suggest the best ways forward for the best results.<strong><em>\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our <strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend Hypnotherapy Practice</a></strong> as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Learn more about The Secret Workshops.</span></strong></h4>\r\nNewcastle Hypnotherapy organise regular events known as The Secret Workshops across the  North East and in Newcastle upon Tyne. You can join The Secret Workshops Newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time using the link in the email.\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smartphone and you can also enjoy hypnotherapy and NLP sessions online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n&nbsp;\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis?</strong></span></h4>\r\nHypnosis is a natural mental state that we all experience every day.\r\nImagine being totally focused on a good film, TV programme, driving a car or listening to your favourite music. These are all a form of hypnosis.\r\nA hypnotherapist or hypnotist will guide you into a hypnotic trance using a hypnotic induction. While enjoying this relaxed and focused state, we work together to make the changes in your mind to modify behaviours and habits for the better.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Hypnosis or NLP Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Secret Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Opening Times</strong></span></h4>\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-05-29 16:49:53','2019-05-29 16:49:53','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2841,1,'2019-05-06 20:05:17','2019-05-06 20:05:17','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></h4>\r\n<p style=\"text-align: center;\"><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span></p>\r\n<p style=\"text-align: center;\"><strong>People ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.\r\n<span style=\"color: #008000;\">Read our 5-star client feedback reviews below</span></strong></p>\r\n<iframe src=\"https://https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nTo help you with this we offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation.</strong></span></a> This helps us to explore your issues and look at the best way forward for you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Simply call <strong>07568 455</strong> <strong>809</strong></span></a> to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nThis means we will look at all of the factors that may be causing you an issue. We often look at your diet, your lifestyle, your relationships, habits and more. We can then evaluate the areas that may be causing or adding to your problem and then suggest the best ways forward for the best results.<strong><em>\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our <strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend Hypnotherapy Practice</a></strong> as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Learn more about The Secret Workshops.</span></strong></h4>\r\nNewcastle Hypnotherapy organise regular events known as The Secret Workshops across the  North East and in Newcastle upon Tyne. You can join The Secret Workshops Newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time using the link in the email.\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smartphone and you can also enjoy hypnotherapy and NLP sessions online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n&nbsp;\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis?</strong></span></h4>\r\nHypnosis is a natural mental state that we all experience every day.\r\nImagine being totally focused on a good film, TV programme, driving a car or listening to your favourite music. These are all a form of hypnosis.\r\nA hypnotherapist or hypnotist will guide you into a hypnotic trance using a hypnotic induction. While enjoying this relaxed and focused state, we work together to make the changes in your mind to modify behaviours and habits for the better.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Hypnosis or NLP Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Secret Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Opening Times</strong></span></h4>\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-05-06 20:05:17','2019-05-06 20:05:17','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2842,1,'2019-05-06 20:08:50','2019-05-06 20:08:50','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></h4>\r\n<p style=\"text-align: center;\"><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span></p>\r\n<p style=\"text-align: center;\"><strong>People ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.\r\n<span style=\"color: #008000;\">Read our 5-star client feedback reviews below</span></strong></p>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nTo help you with this we offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation.</strong></span></a> This helps us to explore your issues and look at the best way forward for you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Simply call <strong>07568 455</strong> <strong>809</strong></span></a> to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nThis means we will look at all of the factors that may be causing you an issue. We often look at your diet, your lifestyle, your relationships, habits and more. We can then evaluate the areas that may be causing or adding to your problem and then suggest the best ways forward for the best results.<strong><em>\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our <strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend Hypnotherapy Practice</a></strong> as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"></div>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Learn more about The Secret Workshops.</span></strong></h4>\r\nNewcastle Hypnotherapy organise regular events known as The Secret Workshops across the  North East and in Newcastle upon Tyne. You can join The Secret Workshops Newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time using the link in the email.\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smartphone and you can also enjoy hypnotherapy and NLP sessions online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n&nbsp;\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis?</strong></span></h4>\r\nHypnosis is a natural mental state that we all experience every day.\r\nImagine being totally focused on a good film, TV programme, driving a car or listening to your favourite music. These are all a form of hypnosis.\r\nA hypnotherapist or hypnotist will guide you into a hypnotic trance using a hypnotic induction. While enjoying this relaxed and focused state, we work together to make the changes in your mind to modify behaviours and habits for the better.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Hypnosis or NLP Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Secret Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Opening Times</strong></span></h4>\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-05-06 20:08:50','2019-05-06 20:08:50','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2843,1,'2019-05-08 10:09:17','2019-05-08 10:09:17','','Order &ndash; May 8, 2019 @ 10:09 AM','','wc-processing','open','closed','order_5cd2aacd1c6c2','order-may-08-2019-1009-am','','','2019-05-08 10:11:25','2019-05-08 10:11:25','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2843',0,'shop_order','',2),(2844,1,'2019-05-09 21:54:21','2019-05-09 21:54:21','','Order &ndash; May 9, 2019 @ 09:54 PM','','wc-processing','open','closed','order_5cd4a18deb722','order-may-09-2019-0954-pm','','','2019-05-09 21:56:30','2019-05-09 21:56:30','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2844',0,'shop_order','',2),(2846,1,'2019-05-13 13:16:25','2019-05-13 13:16:25','<img class=\"alignleft size-medium wp-image-2600\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /><strong> Freedom From Anxiety &amp; Stress Workshop</strong>\r\nWednesday 5th June\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\n£20 per person (£15 Early Bird Price\r\n<strong>Advance booking is required.\r\n</strong><strong>\r\n</strong>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Freedom Workshop</span></strong></h2>\r\n<strong>Do you suffer from <span style=\"color: #ff6600;\">Anxiety? Low Self-Confidence? Struggle with Worry?\r\n</span></strong>\r\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, build <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety in yourself and others</li>\r\n 	<li>recognise anxiety triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make anxiety &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety &amp; worry patterns</li>\r\n 	<li>use skills to reduce anxiety as soon as it appears</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\nThis Anxiety Freedom Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></strong></span>\r\n\r\nThe Wednesday Workshops are non-profit events that share life-enhancing skills including Self-Hypnosis, Neuro-linguistic Programming and Emotional Freedom Technique.\r\n<h4><strong>To join and learn these powerful skills to help with anxiety simply book your place below.</strong>\r\nPlaces are limited and accepted on a first come first served basis.</h4>\r\n<strong><span style=\"color: #008000;\">You can read client reviews below.</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong></span>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”','Freedom From Anxiety & Stress Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-05-13 13:16:25','2019-05-13 13:16:25','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2847,1,'2019-05-13 13:16:50','2019-05-13 13:16:50','<img class=\"alignleft size-medium wp-image-2600\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /><strong> Freedom From Anxiety &amp; Stress Workshop</strong>\r\nWednesday 5th June\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\n£20 per person (£15 Early Bird Price)\r\n<strong>Advance booking is required.\r\n</strong><strong>\r\n</strong>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Freedom Workshop</span></strong></h2>\r\n<strong>Do you suffer from <span style=\"color: #ff6600;\">Anxiety? Low Self-Confidence? Struggle with Worry?\r\n</span></strong>\r\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, build <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety in yourself and others</li>\r\n 	<li>recognise anxiety triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make anxiety &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety &amp; worry patterns</li>\r\n 	<li>use skills to reduce anxiety as soon as it appears</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\nThis Anxiety Freedom Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></strong></span>\r\n\r\nThe Wednesday Workshops are non-profit events that share life-enhancing skills including Self-Hypnosis, Neuro-linguistic Programming and Emotional Freedom Technique.\r\n<h4><strong>To join and learn these powerful skills to help with anxiety simply book your place below.</strong>\r\nPlaces are limited and accepted on a first come first served basis.</h4>\r\n<strong><span style=\"color: #008000;\">You can read client reviews below.</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong></span>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”','Freedom From Anxiety & Stress Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-05-13 13:16:50','2019-05-13 13:16:50','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2848,1,'2019-05-13 13:18:03','2019-05-13 13:18:03','<img class=\"alignleft size-medium wp-image-2600\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /><strong> Freedom From Anxiety &amp; Stress Workshop</strong>\r\n<span style=\"color: #ff6600;\"><strong>Wednesday 5th June</strong></span>\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\n£20 per person (£15 Early Bird Price)\r\n<strong>Advance booking is required.\r\n</strong><strong>\r\n</strong>\r\n<h2><strong><span style=\"color: #008000;\">The Anxiety Freedom Workshop</span></strong></h2>\r\n<strong>Do you suffer from <span style=\"color: #ff6600;\">Anxiety? Low Self-Confidence? Struggle with Worry?\r\n</span></strong>\r\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, build <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety in yourself and others</li>\r\n 	<li>recognise anxiety triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make anxiety &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety &amp; worry patterns</li>\r\n 	<li>use skills to reduce anxiety as soon as it appears</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\nThis Anxiety Freedom Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></strong></span>\r\n\r\nThe Wednesday Workshops are non-profit events that share life-enhancing skills including Self-Hypnosis, Neuro-linguistic Programming and Emotional Freedom Technique.\r\n<h4><strong>To join and learn these powerful skills to help with anxiety simply book your place below.</strong>\r\nPlaces are limited and accepted on a first come first served basis.</h4>\r\n<strong><span style=\"color: #008000;\">You can read client reviews below.</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong></span>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”','Freedom From Anxiety & Stress Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-05-13 13:18:03','2019-05-13 13:18:03','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2975,1,'2019-06-02 13:30:47','2019-06-02 13:30:47','https://www.youtube.com/watch?v=UnamAk-G42Y\r\n\r\n<strong> Freedom From Anxiety &amp; Stress Workshop</strong>\r\n<span style=\"color: #ff6600;\"><strong>Wednesday 5th June</strong></span>\r\n7.30 pm to 10 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\n£39 per person (£29 Early Bird Price)\r\n<strong>Advance booking is required.\r\n</strong><strong>\r\n</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you suffer from Anxiety, Stress, Low Self-Confidence or Struggle with Worry?\r\n</span></strong><span style=\"color: #000000;\">Anxiety &amp; Stress are becoming a problem for more and more people, making life unhappy and damaging health<strong>.</strong></span>\r\n\r\nThankfully there are many things you can do to take control of anxiety and stress.\r\nSimple, powerful techniques are helping people to take charge of their lives and replace anxiety &amp; stress with feelings of confidence, strength and control.<strong><span style=\"color: #008000;\">\r\n</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">The Freedom From Anxiety &amp; Stress Workshop</span></strong></h2>\r\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, Reduce <span style=\"color: #ff6600;\">Stress</span> while building <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety &amp; stress in yourself and others</li>\r\n 	<li>recognise your triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make your anxiety, stress &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety, stress &amp; worry patterns</li>\r\n 	<li>use skills to reduce negative states as soon as they appear</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\n<strong>This Freedom From Anxiety &amp; Stress Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></span></strong>\r\n\r\n<strong>To learn these powerful skills to help with anxiety, stress &amp; self-confidence simply book your place below.</strong>\r\nPlaces are limited to just 20 people and accepted on a first come first served basis.\r\n<h4><strong><span style=\"color: #008000;\">You can read client reviews below, on this page</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Want To Conquer You Anxiety &amp; Stress Even Faster?</strong></span></h4>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark works with a number of clients on an individual basis each week and helps works with many other issues and challenges.\r\n<strong>To arrange your free consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”','Freedom From Anxiety & Stress Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-06-02 13:30:47','2019-06-02 13:30:47','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2849,1,'2019-05-13 13:28:29','2019-05-13 13:28:29','<img class=\"alignleft size-medium wp-image-2600\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /><strong> Freedom From Anxiety &amp; Stress Workshop</strong>\r\n<span style=\"color: #ff6600;\"><strong>Wednesday 5th June</strong></span>\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\n£20 per person (£15 Early Bird Price)\r\n<strong>Advance booking is required.\r\n</strong><strong>\r\n</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you suffer from Anxiety, Stress, Low Self-Confidence or Struggle with Worry?\r\n</span></strong><span style=\"color: #000000;\">Anxiety &amp; Stress are becoming a problem for more and more people, making life unhappy and damaging health<strong>.\r\n\r\n</strong>Thankfully there are many things you can do to take control of anxiety and stress.\r\nSimple, powerful techniques are helping people to takecharge of thier lives and replace anxiety &amp; stress with feelings of confidence, strength and control.</span><strong><span style=\"color: #008000;\">\r\n</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">The Freedom From Anxiety &amp; Stress Workshop</span></strong></h2>\r\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, Reduce <span style=\"color: #ff6600;\">Stress</span> while building <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety &amp; stress in yourself and others</li>\r\n 	<li>recognise your triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make your anxiety, stress &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety, stress &amp; worry patterns</li>\r\n 	<li>use skills to reduce negative states as soon as they appear</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\n<strong>This Freedom From Anxiety &amp; Stress Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></span></strong>\r\n\r\n&nbsp;\r\n<h4><strong>To join and learn these powerful skills to help with anxiety, stress &amp; self-confidence simply book your place below.</strong>\r\nPlaces are limited to just 20 people and accepted on a first come first served basis.</h4>\r\n<strong><span style=\"color: #008000;\">You can read client reviews below.</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong></span>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”','Freedom From Anxiety & Stress Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-05-13 13:28:29','2019-05-13 13:28:29','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2850,1,'2019-05-13 13:29:04','2019-05-13 13:29:04','<img class=\"alignleft size-medium wp-image-2600\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /><strong> Freedom From Anxiety &amp; Stress Workshop</strong>\r\n<span style=\"color: #ff6600;\"><strong>Wednesday 5th June</strong></span>\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\n£20 per person (£15 Early Bird Price)\r\n<strong>Advance booking is required.\r\n</strong><strong>\r\n</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you suffer from Anxiety, Stress, Low Self-Confidence or Struggle with Worry?\r\n</span></strong><span style=\"color: #000000;\">Anxiety &amp; Stress are becoming a problem for more and more people, making life unhappy and damaging health<strong>.</strong></span>\r\n\r\nThankfully there are many things you can do to take control of anxiety and stress.\r\nSimple, powerful techniques are helping people to take charge of thier lives and replace anxiety &amp; stress with feelings of confidence, strength and control.<strong><span style=\"color: #008000;\">\r\n</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">The Freedom From Anxiety &amp; Stress Workshop</span></strong></h2>\r\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, Reduce <span style=\"color: #ff6600;\">Stress</span> while building <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety &amp; stress in yourself and others</li>\r\n 	<li>recognise your triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make your anxiety, stress &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety, stress &amp; worry patterns</li>\r\n 	<li>use skills to reduce negative states as soon as they appear</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\n<strong>This Freedom From Anxiety &amp; Stress Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></span></strong>\r\n\r\n&nbsp;\r\n<h4><strong>To join and learn these powerful skills to help with anxiety, stress &amp; self-confidence simply book your place below.</strong>\r\nPlaces are limited to just 20 people and accepted on a first come first served basis.</h4>\r\n<strong><span style=\"color: #008000;\">You can read client reviews below.</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong></span>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”','Freedom From Anxiety & Stress Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-05-13 13:29:04','2019-05-13 13:29:04','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2851,1,'2019-05-13 13:29:34','2019-05-13 13:29:34','<img class=\"alignleft size-medium wp-image-2600\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /><strong> Freedom From Anxiety &amp; Stress Workshop</strong>\r\n<span style=\"color: #ff6600;\"><strong>Wednesday 5th June</strong></span>\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\n£20 per person (£15 Early Bird Price)\r\n<strong>Advance booking is required.\r\n</strong><strong>\r\n</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you suffer from Anxiety, Stress, Low Self-Confidence or Struggle with Worry?\r\n</span></strong><span style=\"color: #000000;\">Anxiety &amp; Stress are becoming a problem for more and more people, making life unhappy and damaging health<strong>.</strong></span>\r\n\r\nThankfully there are many things you can do to take control of anxiety and stress.\r\nSimple, powerful techniques are helping people to take charge of thier lives and replace anxiety &amp; stress with feelings of confidence, strength and control.<strong><span style=\"color: #008000;\">\r\n</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">The Freedom From Anxiety &amp; Stress Workshop</span></strong></h2>\r\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, Reduce <span style=\"color: #ff6600;\">Stress</span> while building <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety &amp; stress in yourself and others</li>\r\n 	<li>recognise your triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make your anxiety, stress &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety, stress &amp; worry patterns</li>\r\n 	<li>use skills to reduce negative states as soon as they appear</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\n<strong>This Freedom From Anxiety &amp; Stress Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></span></strong>\r\n\r\n&nbsp;\r\n\r\n<strong>To join and learn these powerful skills to help with anxiety, stress &amp; self-confidence simply book your place below.</strong>\r\nPlaces are limited to just 20 people and accepted on a first come first served basis.\r\n\r\n<strong><span style=\"color: #008000;\">You can read client reviews below.</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong></span>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”','Freedom From Anxiety & Stress Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-05-13 13:29:34','2019-05-13 13:29:34','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0);
INSERT INTO `wpqj_posts` VALUES (2852,1,'2019-05-13 13:30:11','2019-05-13 13:30:11','<img class=\"alignleft size-medium wp-image-2600\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /><strong> Freedom From Anxiety &amp; Stress Workshop</strong>\r\n<span style=\"color: #ff6600;\"><strong>Wednesday 5th June</strong></span>\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\n£20 per person (£15 Early Bird Price)\r\n<strong>Advance booking is required.\r\n</strong><strong>\r\n</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you suffer from Anxiety, Stress, Low Self-Confidence or Struggle with Worry?\r\n</span></strong><span style=\"color: #000000;\">Anxiety &amp; Stress are becoming a problem for more and more people, making life unhappy and damaging health<strong>.</strong></span>\r\n\r\nThankfully there are many things you can do to take control of anxiety and stress.\r\nSimple, powerful techniques are helping people to take charge of thier lives and replace anxiety &amp; stress with feelings of confidence, strength and control.<strong><span style=\"color: #008000;\">\r\n</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">The Freedom From Anxiety &amp; Stress Workshop</span></strong></h2>\r\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, Reduce <span style=\"color: #ff6600;\">Stress</span> while building <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety &amp; stress in yourself and others</li>\r\n 	<li>recognise your triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make your anxiety, stress &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety, stress &amp; worry patterns</li>\r\n 	<li>use skills to reduce negative states as soon as they appear</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\n<strong>This Freedom From Anxiety &amp; Stress Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></span></strong>\r\n\r\n<strong>To  learn these powerful skills to help with anxiety, stress &amp; self-confidence simply book your place below.</strong>\r\nPlaces are limited to just 20 people and accepted on a first come first served basis.\r\n\r\n<strong><span style=\"color: #008000;\">You can read client reviews below.</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong></span>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”','Freedom From Anxiety & Stress Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-05-13 13:30:11','2019-05-13 13:30:11','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2937,1,'2019-05-31 09:47:28','2019-05-31 09:47:28','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<strong>Simply we help people to take control of anxiety treatment and counselling. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension. </strong><strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<iframe src=\"https://www.youtube.com/embed/Tg4ij_bPGxs\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr for\r\nAnxiety Treatment &amp; Counselling\r\n</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\r\nThis client had suffered from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often become stronger.\r\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\r\n\r\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety, symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\r\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\r\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\r\n\r\nAnxiety symptoms included digestive issues, muscle pains, tension headaches, worry and fear.\r\n\r\nWithin 2 weeks of starting the program the client was amused that she was now fascinated by wasps and bees.\r\nShe was now keen to watch TV programs about insects and had bought books on the subject.\r\nIn the final session, she reported she now enjoyed life and work and her husband was amazed at the changes.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\r\n</strong></h4>\r\nThis client was experiencing severe worry when a journey in the car or bus were expected.\r\nAnxiety drugs had resulted in side effects and did not help with the issue.\r\nAnxiety symptoms included several repeated visits to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occasions if a car journey was needed.\r\n\r\nThe client reported major improvements the following morning after her first session.\r\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\r\nWithin weeks she had enjoyed long car journeys for weekends away and was looking forward to longer trips for holidays.\r\n\r\n<span style=\"color: #008000;\"><strong>Contact us today to arrange your free phone anxiety consultation.</strong></span>\r\n<strong><span style=\"color: #ff6600;\"><em>Call 07568 455 809 now</em></span></strong> or <strong><em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Book Your Consultation Online Here</a>.</span></em></strong>\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy has a <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">Facebook Group here with details of Anxiety Workshops and Events</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-31 09:47:28','2019-05-31 09:47:28','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2862,1,'2019-05-13 14:31:58','2019-05-13 14:31:58','<img src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /><strong> Freedom From Anxiety &amp; Stress Workshop</strong>\r\n<span style=\"color: #ff6600;\"><strong>Wednesday 5th June</strong></span>\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\n£39 per person (£29 Early Bird Price)\r\n<strong>Advance booking is required.\r\n</strong><strong>\r\n</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you suffer from Anxiety, Stress, Low Self-Confidence or Struggle with Worry?\r\n</span></strong><span style=\"color: #000000;\">Anxiety &amp; Stress are becoming a problem for more and more people, making life unhappy and damaging health<strong>.</strong></span>\r\n\r\nThankfully there are many things you can do to take control of anxiety and stress.\r\nSimple, powerful techniques are helping people to take charge of their lives and replace anxiety &amp; stress with feelings of confidence, strength and control.<strong><span style=\"color: #008000;\">\r\n</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">The Freedom From Anxiety &amp; Stress Workshop</span></strong></h2>\r\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, Reduce <span style=\"color: #ff6600;\">Stress</span> while building <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety &amp; stress in yourself and others</li>\r\n 	<li>recognise your triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make your anxiety, stress &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety, stress &amp; worry patterns</li>\r\n 	<li>use skills to reduce negative states as soon as they appear</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\n<strong>This Freedom From Anxiety &amp; Stress Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></span></strong>\r\n\r\n<strong>To learn these powerful skills to help with anxiety, stress &amp; self-confidence simply book your place below.</strong>\r\nPlaces are limited to just 20 people and accepted on a first come first served basis.\r\n<h4><strong><span style=\"color: #008000;\">You can read client reviews below, on this page</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Want To Conquer You Anxiety &amp; Stress Even Faster?</strong></span></h4>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark works with a number of clients on an individual basis each week and helps works with many other issues and challenges.\r\n<strong>To arrange your free consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”','Freedom From Anxiety & Stress Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-05-13 14:31:58','2019-05-13 14:31:58','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2854,1,'2019-05-13 13:32:17','2019-05-13 13:32:17','<img class=\"alignleft size-medium wp-image-2600\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /><strong> Freedom From Anxiety &amp; Stress Workshop</strong>\r\n<span style=\"color: #ff6600;\"><strong>Wednesday 5th June</strong></span>\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\n£20 per person (£15 Early Bird Price)\r\n<strong>Advance booking is required.\r\n</strong><strong>\r\n</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you suffer from Anxiety, Stress, Low Self-Confidence or Struggle with Worry?\r\n</span></strong><span style=\"color: #000000;\">Anxiety &amp; Stress are becoming a problem for more and more people, making life unhappy and damaging health<strong>.</strong></span>\r\n\r\nThankfully there are many things you can do to take control of anxiety and stress.\r\nSimple, powerful techniques are helping people to take charge of thier lives and replace anxiety &amp; stress with feelings of confidence, strength and control.<strong><span style=\"color: #008000;\">\r\n</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">The Freedom From Anxiety &amp; Stress Workshop</span></strong></h2>\r\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, Reduce <span style=\"color: #ff6600;\">Stress</span> while building <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety &amp; stress in yourself and others</li>\r\n 	<li>recognise your triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make your anxiety, stress &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety, stress &amp; worry patterns</li>\r\n 	<li>use skills to reduce negative states as soon as they appear</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\n<strong>This Freedom From Anxiety &amp; Stress Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></span></strong>\r\n\r\n<strong>To  learn these powerful skills to help with anxiety, stress &amp; self-confidence simply book your place below.</strong>\r\nPlaces are limited to just 20 people and accepted on a first come first served basis.\r\n\r\n<strong><span style=\"color: #008000;\">You can read client reviews below.</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong></span>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n&nbsp;\r\n\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”','Freedom From Anxiety & Stress Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-05-13 13:32:17','2019-05-13 13:32:17','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2855,1,'2019-05-13 13:33:42','2019-05-13 13:33:42','<img class=\"alignleft size-medium wp-image-2600\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /><strong> Freedom From Anxiety &amp; Stress Workshop</strong>\r\n<span style=\"color: #ff6600;\"><strong>Wednesday 5th June</strong></span>\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\n£20 per person (£15 Early Bird Price)\r\n<strong>Advance booking is required.\r\n</strong><strong>\r\n</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you suffer from Anxiety, Stress, Low Self-Confidence or Struggle with Worry?\r\n</span></strong><span style=\"color: #000000;\">Anxiety &amp; Stress are becoming a problem for more and more people, making life unhappy and damaging health<strong>.</strong></span>\r\n\r\nThankfully there are many things you can do to take control of anxiety and stress.\r\nSimple, powerful techniques are helping people to take charge of thier lives and replace anxiety &amp; stress with feelings of confidence, strength and control.<strong><span style=\"color: #008000;\">\r\n</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">The Freedom From Anxiety &amp; Stress Workshop</span></strong></h2>\r\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, Reduce <span style=\"color: #ff6600;\">Stress</span> while building <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety &amp; stress in yourself and others</li>\r\n 	<li>recognise your triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make your anxiety, stress &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety, stress &amp; worry patterns</li>\r\n 	<li>use skills to reduce negative states as soon as they appear</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\n<strong>This Freedom From Anxiety &amp; Stress Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></span></strong>\r\n\r\n<strong>To  learn these powerful skills to help with anxiety, stress &amp; self-confidence simply book your place below.</strong>\r\nPlaces are limited to just 20 people and accepted on a first come first served basis.\r\n<h4><strong><span style=\"color: #008000;\">You can read client reviews below, on this page</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong></span>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”','Freedom From Anxiety & Stress Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-05-13 13:33:42','2019-05-13 13:33:42','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2860,1,'2019-05-13 13:56:49','2019-05-13 13:56:49','<img class=\"alignleft size-medium wp-image-2600\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /><strong> Freedom From Anxiety &amp; Stress Workshop</strong>\r\n<span style=\"color: #ff6600;\"><strong>Wednesday 5th June</strong></span>\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\n£35 per person (£25 Early Bird Price)\r\n<strong>Advance booking is required.\r\n</strong><strong>\r\n</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you suffer from Anxiety, Stress, Low Self-Confidence or Struggle with Worry?\r\n</span></strong><span style=\"color: #000000;\">Anxiety &amp; Stress are becoming a problem for more and more people, making life unhappy and damaging health<strong>.</strong></span>\r\n\r\nThankfully there are many things you can do to take control of anxiety and stress.\r\nSimple, powerful techniques are helping people to take charge of their lives and replace anxiety &amp; stress with feelings of confidence, strength and control.<strong><span style=\"color: #008000;\">\r\n</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">The Freedom From Anxiety &amp; Stress Workshop</span></strong></h2>\r\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, Reduce <span style=\"color: #ff6600;\">Stress</span> while building <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety &amp; stress in yourself and others</li>\r\n 	<li>recognise your triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make your anxiety, stress &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety, stress &amp; worry patterns</li>\r\n 	<li>use skills to reduce negative states as soon as they appear</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\n<strong>This Freedom From Anxiety &amp; Stress Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></span></strong>\r\n\r\n<strong>To learn these powerful skills to help with anxiety, stress &amp; self-confidence simply book your place below.</strong>\r\nPlaces are limited to just 20 people and accepted on a first come first served basis.\r\n<h4><strong><span style=\"color: #008000;\">You can read client reviews below, on this page</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Want To Conquer You Anxiety &amp; Stress Even Faster?</strong></span></h4>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark works with a number of clients on an individual basis each week and helps works with many other issues and challenges.\r\n<strong>To arrange your free consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”','Freedom From Anxiety & Stress Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-05-13 13:56:49','2019-05-13 13:56:49','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2856,1,'2019-05-13 13:34:53','2019-05-13 13:34:53','<img class=\"alignleft size-medium wp-image-2600\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /><strong> Freedom From Anxiety &amp; Stress Workshop</strong>\r\n<span style=\"color: #ff6600;\"><strong>Wednesday 5th June</strong></span>\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\n£20 per person (£15 Early Bird Price)\r\n<strong>Advance booking is required.\r\n</strong><strong>\r\n</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you suffer from Anxiety, Stress, Low Self-Confidence or Struggle with Worry?\r\n</span></strong><span style=\"color: #000000;\">Anxiety &amp; Stress are becoming a problem for more and more people, making life unhappy and damaging health<strong>.</strong></span>\r\n\r\nThankfully there are many things you can do to take control of anxiety and stress.\r\nSimple, powerful techniques are helping people to take charge of thier lives and replace anxiety &amp; stress with feelings of confidence, strength and control.<strong><span style=\"color: #008000;\">\r\n</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">The Freedom From Anxiety &amp; Stress Workshop</span></strong></h2>\r\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, Reduce <span style=\"color: #ff6600;\">Stress</span> while building <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety &amp; stress in yourself and others</li>\r\n 	<li>recognise your triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make your anxiety, stress &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety, stress &amp; worry patterns</li>\r\n 	<li>use skills to reduce negative states as soon as they appear</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\n<strong>This Freedom From Anxiety &amp; Stress Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></span></strong>\r\n\r\n<strong>To  learn these powerful skills to help with anxiety, stress &amp; self-confidence simply book your place below.</strong>\r\nPlaces are limited to just 20 people and accepted on a first come first served basis.\r\n<h4><strong><span style=\"color: #008000;\">You can read client reviews below, on this page</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Want To Conquer You Anxiety &amp; Stress Faster?</strong></span><span style=\"color: #008000;\"><strong>\r\n</strong></span>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.</h4>\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”','Freedom From Anxiety & Stress Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-05-13 13:34:53','2019-05-13 13:34:53','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2857,1,'2019-05-13 13:36:36','2019-05-13 13:36:36','<img class=\"alignleft size-medium wp-image-2600\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /><strong> Freedom From Anxiety &amp; Stress Workshop</strong>\r\n<span style=\"color: #ff6600;\"><strong>Wednesday 5th June</strong></span>\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\n£20 per person (£15 Early Bird Price)\r\n<strong>Advance booking is required.\r\n</strong><strong>\r\n</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you suffer from Anxiety, Stress, Low Self-Confidence or Struggle with Worry?\r\n</span></strong><span style=\"color: #000000;\">Anxiety &amp; Stress are becoming a problem for more and more people, making life unhappy and damaging health<strong>.</strong></span>\r\n\r\nThankfully there are many things you can do to take control of anxiety and stress.\r\nSimple, powerful techniques are helping people to take charge of thier lives and replace anxiety &amp; stress with feelings of confidence, strength and control.<strong><span style=\"color: #008000;\">\r\n</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">The Freedom From Anxiety &amp; Stress Workshop</span></strong></h2>\r\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, Reduce <span style=\"color: #ff6600;\">Stress</span> while building <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety &amp; stress in yourself and others</li>\r\n 	<li>recognise your triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make your anxiety, stress &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety, stress &amp; worry patterns</li>\r\n 	<li>use skills to reduce negative states as soon as they appear</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\n<strong>This Freedom From Anxiety &amp; Stress Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></span></strong>\r\n\r\n<strong>To  learn these powerful skills to help with anxiety, stress &amp; self-confidence simply book your place below.</strong>\r\nPlaces are limited to just 20 people and accepted on a first come first served basis.\r\n<h4><strong><span style=\"color: #008000;\">You can read client reviews below, on this page</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Want To Conquer You Anxiety &amp; Stress Even Faster?</strong></span></h4>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark works with a number of clients on an individual basis each week and helps works with many other issues and challenges.\r\n<strong>To arrange your free consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”','Freedom From Anxiety & Stress Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-05-13 13:36:36','2019-05-13 13:36:36','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(3197,1,'2019-09-13 14:09:13','2019-09-13 14:09:13','','Order &ndash; September 13, 2019 @ 02:09 PM','','wc-on-hold','open','closed','wc_order_AZ7IPfp5VQ6ho','order-sep-13-2019-0209-pm','','','2019-09-13 14:09:13','2019-09-13 14:09:13','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=3197',0,'shop_order','',1),(2859,1,'2019-05-13 13:52:15','2019-05-13 13:52:15','<img class=\"alignleft size-medium wp-image-2600\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /><strong> Freedom From Anxiety &amp; Stress Workshop</strong>\r\n<span style=\"color: #ff6600;\"><strong>Wednesday 5th June</strong></span>\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\n£35 per person (£25 Early Bird Price)\r\n<strong>Advance booking is required.\r\n</strong><strong>\r\n</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you suffer from Anxiety, Stress, Low Self-Confidence or Struggle with Worry?\r\n</span></strong><span style=\"color: #000000;\">Anxiety &amp; Stress are becoming a problem for more and more people, making life unhappy and damaging health<strong>.</strong></span>\r\n\r\nThankfully there are many things you can do to take control of anxiety and stress.\r\nSimple, powerful techniques are helping people to take charge of thier lives and replace anxiety &amp; stress with feelings of confidence, strength and control.<strong><span style=\"color: #008000;\">\r\n</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">The Freedom From Anxiety &amp; Stress Workshop</span></strong></h2>\r\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, Reduce <span style=\"color: #ff6600;\">Stress</span> while building <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety &amp; stress in yourself and others</li>\r\n 	<li>recognise your triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make your anxiety, stress &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety, stress &amp; worry patterns</li>\r\n 	<li>use skills to reduce negative states as soon as they appear</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\n<strong>This Freedom From Anxiety &amp; Stress Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></span></strong>\r\n\r\n<strong>To  learn these powerful skills to help with anxiety, stress &amp; self-confidence simply book your place below.</strong>\r\nPlaces are limited to just 20 people and accepted on a first come first served basis.\r\n<h4><strong><span style=\"color: #008000;\">You can read client reviews below, on this page</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Want To Conquer You Anxiety &amp; Stress Even Faster?</strong></span></h4>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark works with a number of clients on an individual basis each week and helps works with many other issues and challenges.\r\n<strong>To arrange your free consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”','Freedom From Anxiety & Stress Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-05-13 13:52:15','2019-05-13 13:52:15','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2976,1,'2019-06-02 19:44:40','2019-06-02 19:44:40','','Order &ndash; June 2, 2019 @ 07:44 PM','','wc-processing','open','closed','order_5cf42728ef056','order-jun-02-2019-0744-pm','','','2019-06-02 19:45:14','2019-06-02 19:45:14','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2976',0,'shop_order','',2),(2864,1,'2019-05-15 20:19:00','2019-05-15 20:19:00','','Order &ndash; May 15, 2019 @ 08:19 PM','','wc-processing','open','closed','order_5cdc743438a91','order-may-15-2019-0819-pm','','','2019-05-15 20:21:55','2019-05-15 20:21:55','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2864',0,'shop_order','',2),(2865,1,'2019-05-17 10:05:17','2019-05-17 10:05:17','<img class=\"alignleft size-medium wp-image-2819\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/05/deep-relaxation-mind-body-techniques-300x199.jpg\" alt=\"deep relaxation mind &amp; body techniques\" width=\"300\" height=\"199\" /><span style=\"color: #008000;\"><strong>Learn Simple Deep Relaxation Mind &amp; Body Techniques To Improve Your Happiness &amp; Health.\r\n</strong></span>\r\n\r\nWednesday 22nd May 7.30pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person\r\nAdvance booking required\r\n<span style=\"color: #ff6600;\"><strong>Book your places below.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Learning to relax properly is a wonderful way to improve your health and quality of life.</strong>\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress and anxiety.\r\nDeep Relaxation is a wonderful feeling, deeper and faster than meditation.\r\n\r\n<strong>During this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid relaxation and happiness.</strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Learn how to</strong></span>\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>improve your meditation &amp; mindfulness practice</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep Relaxation Mind &amp; Body Technique Workshop</strong></span></h4>\r\nLearning modern self-hypnosis and NLP skills for deep relaxation has many benefits.\r\nWe know relaxed people suffer less stress, anxiety, illness and enjoy better, healthier lives.\r\n\r\n<strong>Learn how to relax deeply by booking your place here.</strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/deep-relaxation-mind-body-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPlease note that places are limited and bookings are taken on a first come first served basis.\r\nEarly Bird discount prices are available when booking by the date advised on the booking page.\r\nClick the image above to book your place and learn about Early Bird prices.\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about future Secret Workshops and events by joining the newsletter here.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.\r\n\r\n<strong><span style=\"color: #008000;\">The Newcastle Hypnotherapy</span></strong> <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #ff6600;\"><strong>Facebook Group for The Secret Workshops is here</strong></span></a>\r\n\r\nThe Deep Relaxation Mind &amp; Body Technique Workshop is just one of the many regular events that we organise on a monthly basis to help people feel better and improve life.\r\n\r\nMany people like to work with us by individual sessions to work on issues such as anxiety, stress, depression, self-confidence or to change habits or behaviour. Contact us to arrange your free phone consultation to examine your issue and to establish the best way forward for you.\r\n\r\n<strong>You can read some of the <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">feedback from our many happy clients here.</a></span></strong>\r\n\r\n&nbsp;','Deep Relaxation Mind & Body Techniques','','inherit','closed','closed','','2813-revision-v1','','','2019-05-17 10:05:17','2019-05-17 10:05:17','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(2868,1,'2019-05-17 11:15:03','2019-05-17 11:15:03','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-17 11:15:03','2019-05-17 11:15:03','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2869,1,'2019-05-17 11:17:33','2019-05-17 11:17:33','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\nDo you suffer\r\n\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-17 11:17:33','2019-05-17 11:17:33','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2870,1,'2019-05-17 11:26:21','2019-05-17 11:26:21','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-17 11:26:21','2019-05-17 11:26:21','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2871,1,'2019-05-17 11:54:06','2019-05-17 11:54:06','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\nSimply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.\r\nWe will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.\r\n\r\nChoice One. You can continue to live with your anxiety problems. You can let it make you feel awful and affect the people around you. It can affect your work\r\n\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-17 11:54:06','2019-05-17 11:54:06','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2872,1,'2019-05-17 11:54:32','2019-05-17 11:54:32','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n\r\nChoice One. You can continue to live with your anxiety problems. You can let it make you feel awful and affect the people around you. It can affect your work\r\n\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-17 11:54:32','2019-05-17 11:54:32','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2873,1,'2019-05-17 11:56:36','2019-05-17 11:56:36','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.\r\n\r\nCustomer Feedback from a NHS Dr\r\n&lt;iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"&gt;&lt;/iframe&gt;\r\n</strong>\r\n\r\nChoice One. You can continue to live with your anxiety problems. You can let it make you feel awful and affect the people around you. It can affect your work\r\n\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-17 11:56:36','2019-05-17 11:56:36','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2874,1,'2019-05-17 11:57:14','2019-05-17 11:57:14','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.\r\n\r\nCustomer Feedback from a NHS Dr\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\nChoice One. You can continue to live with your anxiety problems. You can let it make you feel awful and affect the people around you. It can affect your work\r\n\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-17 11:57:14','2019-05-17 11:57:14','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2875,1,'2019-05-17 11:58:53','2019-05-17 11:58:53','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\">Customer Feedback from an NHS Dr on Anxiety Help\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\nChoice One. You can continue to live with your anxiety problems. You can let it make you feel awful and affect the people around you. It can affect your work\r\n\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-17 11:58:53','2019-05-17 11:58:53','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2876,1,'2019-05-17 11:59:21','2019-05-17 11:59:21','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\">Customer Feedback from an NHS Dr on Anxiety Treatment\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\nChoice One. You can continue to live with your anxiety problems. You can let it make you feel awful and affect the people around you. It can affect your work\r\n\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-17 11:59:21','2019-05-17 11:59:21','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2877,1,'2019-05-17 11:59:45','2019-05-17 11:59:45','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\nChoice One. You can continue to live with your anxiety problems. You can let it make you feel awful and affect the people around you. It can affect your work\r\n\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-17 11:59:45','2019-05-17 11:59:45','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2878,1,'2019-05-17 12:05:05','2019-05-17 12:05:05','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nChoice One. You can continue to live with your anxiety problems. You can let it make you feel awful and affect the people around you. It can affect your work\r\n\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-17 12:05:05','2019-05-17 12:05:05','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2879,1,'2019-05-17 12:05:38','2019-05-17 12:05:38','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nChoice One. You can continue to live with your anxiety problems. You can let it make you feel awful and affect the people around you. It can affect your work\r\n\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-17 12:05:38','2019-05-17 12:05:38','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2881,1,'2019-05-17 12:27:41','2019-05-17 12:27:41','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can make the decision to move forward from today.\r\nTaking that first step has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li>stop anxiety attacks quickly</li>\r\n 	<li>recognise your anxiety triggers</li>\r\n 	<li>overcome worry and fear</li>\r\n 	<li>stop panic attacks</li>\r\n 	<li>relax deeply on demand</li>\r\n 	<li>replace anxity feelings with calm</li>\r\n 	<li>improve self-confidence &amp; self-esteem</li>\r\n 	<li>control moods, depression &amp; stress</li>\r\n</ul>\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-17 12:27:41','2019-05-17 12:27:41','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2880,1,'2019-05-17 12:24:47','2019-05-17 12:24:47','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems. You can let it get worse, making you feel awful and affecting the people around you. You can let anxiety affect your work and those your work with. It also can also affect your loved ones, your children as they worry about you on a daily basis. You can continue to experience your anxiety symptoms, affecting your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can make the decision to move forward from today.\r\nTaking that first step has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li>stop anxiety attacks quickly</li>\r\n 	<li>recognise your anxiety triggers</li>\r\n 	<li>overcome worry and fear</li>\r\n 	<li>stop panic attacks</li>\r\n 	<li>relax deeply on demand</li>\r\n 	<li>replace anxity feelings with calm</li>\r\n 	<li>improve self-confidence &amp; self-esteem</li>\r\n 	<li>control moods, depression &amp; stress</li>\r\n</ul>\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-17 12:24:47','2019-05-17 12:24:47','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2882,1,'2019-05-17 12:29:31','2019-05-17 12:29:31','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can make the decision to move forward from today.\r\nTaking that first step has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li>stop anxiety attacks quickly</li>\r\n 	<li>recognise those anxiety triggers</li>\r\n 	<li>overcome worry and fear</li>\r\n 	<li>stop panic attacks</li>\r\n 	<li>relax deeply on demand</li>\r\n 	<li>replace anxeity feelings with calm and wonderful relaxation</li>\r\n 	<li>improve self-confidence &amp; self-esteem</li>\r\n 	<li>control moods, depression &amp; stress</li>\r\n 	<li>enjoy life more and feel better</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-17 12:29:31','2019-05-17 12:29:31','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2883,1,'2019-05-17 12:41:41','2019-05-17 12:41:41','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can make the decision to move forward from today.\r\nTaking that first step has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li>stop anxiety attacks quickly</li>\r\n 	<li>recognise those anxiety triggers</li>\r\n 	<li>overcome worry and fear</li>\r\n 	<li>stop panic attacks</li>\r\n 	<li>relax deeply on demand</li>\r\n 	<li>replace anxeity feelings with calm and wonderful relaxation</li>\r\n 	<li>improve self-confidence &amp; self-esteem</li>\r\n 	<li>control moods, depression &amp; stress</li>\r\n 	<li>enjoy life more and feel better</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love the free phone consultation. This is your chance to speak with us over the phone and together we can exmaine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-17 12:41:41','2019-05-17 12:41:41','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2884,1,'2019-05-17 12:42:12','2019-05-17 12:42:12','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can make the decision to move forward from today.\r\nTaking that first step has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise those anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxeity feelings with calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love the free phone consultation. This is your chance to speak with us over the phone and together we can exmaine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-17 12:42:12','2019-05-17 12:42:12','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2885,1,'2019-05-17 12:53:29','2019-05-17 12:53:29','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can make the decision to move forward from today.\r\nTaking that first step has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise those anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxeity feelings with calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love the free phone consultation. This is your chance to speak with us over the phone and together we can exmaine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nWe are very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops to for anxiety, stress, despression and change work.\r\nIt really helps to look at the many parts of your life including your lifestyle, diet, nutrition and exercise.\r\nBy talking a wholistic approach to anxiety problems, many clients find better results than medication or alternative therapies.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-17 12:53:29','2019-05-17 12:53:29','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2886,1,'2019-05-17 12:55:56','2019-05-17 12:55:56','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can make the decision to move forward from today.\r\nTaking that first step has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise those anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxeity feelings with calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love the free phone consultation. This is your chance to speak with us over the phone and together we can exmaine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nWe are very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops to for anxiety, stress, despression and change work.\r\nIt really helps to look at the many parts of your life including your lifestyle, diet, nutrition and exercise.\r\nBy talking a wholistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Watch This Video By NHS Dr. Andrew About Newcastle Hypnotherapy &amp; Hypnosis For Anxiety\r\n</span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-17 12:55:56','2019-05-17 12:55:56','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2887,1,'2019-05-17 13:04:00','2019-05-17 13:04:00','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can make the decision to move forward from today.\r\nTaking that first step has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise those anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxeity feelings with calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love the free phone consultation. This is your chance to speak with us over the phone and together we can exmaine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nWe are very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops to for anxiety, stress, despression and change work.\r\nIt really helps to look at the many parts of your life including your lifestyle, diet, nutrition and exercise.\r\nBy talking a wholistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offer anxiety help from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31, <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\"> </span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-17 13:04:00','2019-05-17 13:04:00','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2888,1,'2019-05-18 10:04:18','2019-05-18 10:04:18','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can make the decision to move forward from today.\r\nTaking that first step has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise those anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxeity feelings with calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love the free phone consultation. This is your chance to speak with us over the phone and together we can exmaine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nWe are very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops to for anxiety, stress, despression and change work.\r\nIt really helps to look at the many parts of your life including your lifestyle, diet, nutrition and exercise.\r\nBy talking a wholistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offer anxiety help from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31, <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\"> </span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 10:04:18','2019-05-18 10:04:18','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2889,1,'2019-05-18 10:22:14','2019-05-18 10:22:14','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love the free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, despression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy talking a wholistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offer anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31, <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n&nbsp;\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\"> </span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 10:22:14','2019-05-18 10:22:14','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2934,1,'2019-05-29 16:47:49','2019-05-29 16:47:49','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></h4>\r\n<p style=\"text-align: center;\"><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span></p>\r\n<p style=\"text-align: center;\"><strong>People ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.\r\n<span style=\"color: #008000;\">Read our 5-star client feedback reviews below</span></strong></p>\r\nhttps://www.youtube.com/watch?v=QaMdJmT0Ibw\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nTo help you with this we offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation.</strong></span></a> This helps us to explore your issues and look at the best way forward for you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Simply call <strong>07568 455</strong> <strong>809</strong></span></a> to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nThis means we will look at all of the factors that may be causing you an issue. We often look at your diet, your lifestyle, your relationships, habits and more. We can then evaluate the areas that may be causing or adding to your problem and then suggest the best ways forward for the best results.<strong><em>\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our <strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend Hypnotherapy Practice</a></strong> as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Learn more about The Secret Workshops.</span></strong></h4>\r\nNewcastle Hypnotherapy organise regular events known as The Secret Workshops across the  North East and in Newcastle upon Tyne. You can join The Secret Workshops Newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time using the link in the email.\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smartphone and you can also enjoy hypnotherapy and NLP sessions online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n&nbsp;\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis?</strong></span></h4>\r\nHypnosis is a natural mental state that we all experience every day.\r\nImagine being totally focused on a good film, TV programme, driving a car or listening to your favourite music. These are all a form of hypnosis.\r\nA hypnotherapist or hypnotist will guide you into a hypnotic trance using a hypnotic induction. While enjoying this relaxed and focused state, we work together to make the changes in your mind to modify behaviours and habits for the better.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Hypnosis or NLP Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Secret Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Opening Times</strong></span></h4>\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-05-29 16:47:49','2019-05-29 16:47:49','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2890,1,'2019-05-18 10:24:35','2019-05-18 10:24:35','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></h4>\r\n<p style=\"text-align: center;\"><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span></p>\r\n<p style=\"text-align: center;\"><strong>People ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.\r\n<span style=\"color: #008000;\">Read our 5-star client feedback reviews below</span></strong></p>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nTo help you with this we offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation.</strong></span></a> This helps us to explore your issues and look at the best way forward for you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Simply call <strong>07568 455</strong> <strong>809</strong></span></a> to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nThis means we will look at all of the factors that may be causing you an issue. We often look at your diet, your lifestyle, your relationships, habits and more. We can then evaluate the areas that may be causing or adding to your problem and then suggest the best ways forward for the best results.<strong><em>\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our <strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend Hypnotherapy Practice</a></strong> as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n<div class=\"responsive-map\"></div> <iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Learn more about The Secret Workshops.</span></strong></h4>\r\nNewcastle Hypnotherapy organise regular events known as The Secret Workshops across the  North East and in Newcastle upon Tyne. You can join The Secret Workshops Newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time using the link in the email.\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smartphone and you can also enjoy hypnotherapy and NLP sessions online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n&nbsp;\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis?</strong></span></h4>\r\nHypnosis is a natural mental state that we all experience every day.\r\nImagine being totally focused on a good film, TV programme, driving a car or listening to your favourite music. These are all a form of hypnosis.\r\nA hypnotherapist or hypnotist will guide you into a hypnotic trance using a hypnotic induction. While enjoying this relaxed and focused state, we work together to make the changes in your mind to modify behaviours and habits for the better.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Hypnosis or NLP Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Secret Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Opening Times</strong></span></h4>\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-05-18 10:24:35','2019-05-18 10:24:35','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2891,1,'2019-05-18 10:25:45','2019-05-18 10:25:45','<h4 style=\"font-family: \'Times New Roman\'; text-align: center;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Clinical Hypnotherapy in Newcastle Upon Tyne, Northumberland, North East England &amp; Online\r\n</span></strong></span></h4>\r\n<p style=\"text-align: center;\"><span style=\"font-family: Arial;\"><strong>Very simply, we help people to make positive changes, easily and quickly, using hypnosis and NLP.</strong></span></p>\r\n<p style=\"text-align: center;\"><strong>People ask us to help with issues like <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/\">Stress</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/\">Pain Management</a>, Self-Confidence, Bad Habits &amp; Behaviour.\r\n<span style=\"color: #008000;\">Read our 5-star client feedback reviews below</span></strong></p>\r\n<iframe src=\"https://www.youtube.com/embed/QaMdJmT0Ibw?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\">Thanks to Dr Andrew for his positive feedback. You can read more client feedback on our Hypnosis and NLP service below. We help people from all walks of life including many NHS and health care professionals.</span></strong></span>\r\n<h4><span style=\"color: #ff6600;\"><strong><span style=\"color: #003300;\"><span style=\"color: #008000;\">Hypnotherapy In Newcastle, Northumberland, NE England &amp; online</span>\r\n</span></strong></span></h4>\r\n<strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Steve</span></strong> <em><strong>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can\'t thank you enough. Steve \"</strong></em>\r\n<h4><span style=\"color: #008000;\"><strong>Your Next Step?\r\n</strong></span></h4>\r\nNaturally many of our new clients like to chat with us first to answer any questions and discuss their issues.\r\nTo help you with this we offer everyone a <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0\"><span style=\"color: #ff6600;\"><strong>free 15-minute phone consultation.</strong></span></a> This helps us to explore your issues and look at the best way forward for you.\r\n<a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\">Simply call <strong>07568 455</strong> <strong>809</strong></span></a> to arrange your phone consultation or alternatively, some clients prefer to book a session straight away. You can pick the best option for you below.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session - <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>  <span style=\"color: #ff6600;\">or</span>\r\n</strong></li>\r\n 	<li><strong>Book your hypnotherapy session online - <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">Clinical Hypnotherapy With A Difference.</span>\r\n</strong></h4>\r\nOur clients tell us that we are a little different from other hypnosis practitioners.\r\nWhy? We use a wide range of modern techniques for great mental health such as NLP, EFT, nutrition, mindfulness and hypnotherapy. They tell us we offer a friendly, professional service, focused on you at affordable prices.\r\n\r\nThis means we will look at all of the factors that may be causing you an issue. We often look at your diet, your lifestyle, your relationships, habits and more. We can then evaluate the areas that may be causing or adding to your problem and then suggest the best ways forward for the best results.<strong><em>\r\n</em></strong>\r\n<p style=\"font-family: \'Times New Roman\';\"><em><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #006400;\"><strong><span style=\"color: #ff6600;\">Hypnotherapy Client Feedback by Gary</span> </strong></span></span></em><em><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘</strong></span><strong><span style=\"font-family: arial,helvetica,sans-serif;\">sugar-free</span></strong></em><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><em>’ for over two weeks”</em> </span></strong></p>\r\n\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"size-thumbnail wp-image-1730 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-150x150.png\" alt=\"\" width=\"150\" height=\"150\" /></a></strong></span></span></h2>\r\n<h4><span style=\"color: #008000;\"><strong>Yes, Hypnosis &amp; NLP can help you with that.</strong></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">We help people overcome many issues using hypnotherapy &amp; NLP including <a href=\"http://www.newcastle-hypnotherapy.com/anxiety-relief/\">Anxiety</a>, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Depression</a>, <a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress</a>, Anger, Phobias, Pain &amp; Chronic Pain, Weight Loss &amp; Weight Management, Addiction, Alcohol, <a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking</a>, Habits, Grief, Lack Of Confidence, IBS/Irritable Bowel Syndrome, Tinnitus, Sleep Disorders, Allergies, Food Intolerances, <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida</a> and more.</span></p>\r\n<span class=\"r-ixyJnXPLzq8o\" tabindex=\"0\"><span style=\"color: #ff6600;\"><strong>Review by David.</strong></span> <em><strong>\"Mark really is </strong><strong>first</strong><strong> rate. Very patient, very considerate, very professional. He has helped me through more than one problem, all handled in a kind and sympathetic manner. Thoroughly recommended.</strong></em></span><em><strong>\"</strong></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Newcastle Hypnotherapy - hypnotherapy near me.</span></strong> </span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Wherever you are, we can help you as we work from <strong>several locations</strong> in the North East &amp; now conduct hypnotherapy sessions online.</span></p>\r\n\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a><a href=\"https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/\"><strong>, Newcastle upon Tyne</strong></a></li>\r\n</ul>\r\n<em><span class=\"r-irHasJMkQBec\" style=\"color: #ff6600;\" tabindex=\"0\"><strong>Hypnotherapy Client feedback from Steve. <span style=\"color: #000000;\">\"I Would like to thank Mark for the great help he has given</span></strong> <span style=\"color: #000000;\"><strong>with</strong><strong> my problems with stress and anxiety. A total change in my life with </strong><strong>a focus</strong><strong> on the future.\"</strong></span></span></em>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><strong><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Wallsend</span></span></strong></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Our main location is <a href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy</a> at <strong>The Vault Creative Wellbeing Centre, </strong>Station Road in Wallsend, Newcastle upon Tyne.\r\nThis is a handy location as it is situated very closely to Wallsend Metro station, close to ASDA Wallsend and Wallsend Shopping Centre, The Forum, just off Wallsend High Street.\r\nThere is also plenty of parking at our <strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend Hypnotherapy Practice</a></strong> as there is a dedicated parking area.</span></p>\r\n\r\n<h4><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><span style=\"color: #008000;\">Newcastle Hypnotherapy In Seaton Delaval</span></a>\r\n</strong></h4>\r\nAlso popular with our clients is <strong>Food For Thought</strong>, in Seaton Delaval, Whitley Bay, Newcastle upon Tyne. (Astley Clinic of Complementary Medicine).\r\n\r\nAlso, we can offer hypnotherapy services from other locations in Northumberland including Cramlington, Bedlington, Ashington, Blyth, Hexham, Ponteland and Morpeth. We also have options for your hypnotherapy services in North Shields, Gateshead, Sunderland, Jesmond, South Shields, Gosforth, Wideopen, Cullercoats, Tynemouth, Newcastle City Centre and other areas in the North East &amp; Tyneside\r\n\r\n<strong>We also work via Online Sessions</strong> via Skype &amp; Zoom for video sessions that are as successful as face to face meetings.\r\n\r\n<strong>Newcastle Hypnotherapy Google Map </strong>- our main location in Wallsend, Newcastle Upon Tyne.\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n<h4 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy Workshops, Group Sessions &amp; Training Events.</strong></span></span></h4>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">Many clients like to attend the many hypnosis &amp; NLP workshops, group sessions, and events we run. These are a great way to learn new skills for life improvement. You will make friends and work with others with similar outcomes. Our Self Hypnosis Workshops are very popular and a great way to learn to use Hypnosis for your self. <strong>Visit the Newcastle Hypnotherapy <a href=\"http://www.newcastle-hypnotherapy.com/events-workshops/\">Events &amp; Workshop Page</a> for more information.</strong></span></p>\r\n<em><span style=\"color: #006400;\"><strong>Hypnosis Workshop Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the <span style=\"font-family: arial,helvetica,sans-serif;\">self-hypnosis</span><span style=\"font-family: arial,helvetica,sans-serif;\"> stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier </span><span style=\"font-family: arial,helvetica,sans-serif;\">in</span><span style=\"font-family: arial,helvetica,sans-serif;\"> myself.\"</span></strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Learn more about The Secret Workshops.</span></strong></h4>\r\nNewcastle Hypnotherapy organise regular events known as The Secret Workshops across the  North East and in Newcastle upon Tyne. You can join The Secret Workshops Newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time using the link in the email.\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>Newcastle Hypnotherapy - Online Hypnosis Sessions.\r\n</strong></span></span></h4>\r\nOnline hypnotherapy sessions are becoming very popular as many clients love hypnotherapy in the comfort of their own home.\r\nAll you need is a PC or smartphone and you can also enjoy hypnotherapy and NLP sessions online.\r\nIf you would like to experience online hypnosis from Newcastle Hypnotherapy simply follow these steps.\r\n<ol>\r\n 	<li><strong>Arrange your Free 15 Minute Strategy Session – <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here Now.</a>\r\n</strong></li>\r\n 	<li><strong>Book your hypnosis session to take control – <a href=\"https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/\">Click Here Now.</a></strong></li>\r\n</ol>\r\nOnline hypnotherapy is suitable for most issues and you can ask about this in your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 Minute Strategy Session</strong></a>.<span style=\"color: #006400;\"><span style=\"font-family: arial,helvetica,sans-serif;\"><strong>\r\n</strong></span></span>\r\n<p style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\"><span style=\"color: #008000;\"><strong><em>Hypnotherapy Client Feedback by Malcolm</em></strong><em>. </em></span></span><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong></span></p>\r\n\r\n<h4 class=\"MsoNormal\" style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><em><span style=\"font-family: Arial;\">Why is Hypnotherapy &amp; NLP so effective? Watch this short video.</span></em></span></strong></h4>\r\n&nbsp;\r\n<div></div>\r\n<h2 style=\"font-family: \'Times New Roman\';\"><span style=\"color: #ff6600;\"><strong>Frequently Asked Questions - Hypnosis &amp; NLP.\r\n</strong></span></h2>\r\n<h4><strong><span style=\"color: #008000;\">How Quickly Will I See Improvements?\r\n</span></strong></h4>\r\nMost of our clients see improvements in the first hypnosis session and these improve nicely over time. Everyone is different and we will explain the results you can expect during our first meeting. Our aim is to create change and improvements at a pace that is comfortable and suitable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis?</strong></span></h4>\r\nHypnosis is a natural mental state that we all experience every day.\r\nImagine being totally focused on a good film, TV programme, driving a car or listening to your favourite music. These are all a form of hypnosis.\r\nA hypnotherapist or hypnotist will guide you into a hypnotic trance using a hypnotic induction. While enjoying this relaxed and focused state, we work together to make the changes in your mind to modify behaviours and habits for the better.\r\n<h4><span style=\"color: #008000;\"><strong>What Is Hypnosis Like?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is simply a very relaxed state where you will be fully aware, conscious and in control. It is a very enjoyable experience, similar to deep meditation. Hypnosis is very focused and uses the power of both your conscious and unconscious mind. Most clients report they experience deep relaxation whilst being in control and more aware. Many say they feel very refreshed and positive as the session comes to an end. Clients working through stress, anxiety and depression state they quickly feel relaxed, feeling the issue fade away and being replaced with a feeling of hope, feeling in control and relief.</span></span>\r\n<h4><strong><span style=\"color: #008000;\">Will I Fall Asleep During Hypnosis?\r\n</span></strong></h4>\r\nNo. Hypnosis is not the same as sleep. Hypnosis is a heightened state of awareness and you will be fully aware of sounds outside, such as the moving traffic, voices or birds singing. You will remember your session in full detail and clients tell us they feel relaxed, calm peaceful and energised after their hypnosis sessions.\r\n<h4><strong><span style=\"color: #008000;\">How Long Do Hypnosis or NLP Sessions Take?</span></strong></h4>\r\nUsually, your first hypnosis session will take about 1 hour to an hour and a half. Additional sessions are usually about an hour in length depending on what we are working on. If there is to be any variation on this we will let you know.\r\n<h4><strong><span style=\"color: #008000;\">How Many Sessions Will It Take?</span></strong></h4>\r\nThis really will depend on what we are working on. Normally we can estimate the number of hypnotherapy sessions you may need during your free phone consultation. For most issues, 2 to 3 hypnotherapy sessions are required.\r\n<h4><strong><span style=\"color: #008000;\">How Much Do You Charge?</span></strong></h4>\r\nThis depends on what we are working on. We can advise on this during <strong><a href=\"https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/\">your free phone consultation.</a></strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Teach Self-Hypnosis?</span></strong></h4>\r\nCertainly. We find Self-Hypnosis is of major benefit to our clients and gives you some amazing tools for life improvement. We teach Self-Hypnosis through regular workshops or one to one sessions. <strong><a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click here to learn more about Self-Hypnosis.</a></strong>\r\n<div>\r\n<h4><span style=\"color: #008000;\"><span style=\"color: #000000;\"><span style=\"color: #008000;\"><strong>What Is The Difference Between Hypnosis &amp; Self Hypnosis?</strong></span></span></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">Hypnosis is a way of changing mental states for your benefit, usually directed by a hypnotherapist. Self-Hypnosis is directed by yourself, such as moving yourself into a confident state. When you learn self-hypnosis you have the skills to quickly change your mental states. Self-hypnosis is a powerful set of tools that can enhance your life</span></span><strong><span style=\"color: #008000;\">. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">You can learn more about self-hypnosis here.</a></span></strong>\r\n<h4><span style=\"color: #008000;\"><strong>Do You Do Group Talks &amp; Demonstrations For Hypnosis &amp; Self-Hypnosis?</strong></span></h4>\r\nOf course. We regularly do group talks, Self-Hypnosis demonstrations and private workshops for companies, charities and groups. Simply <em>call us on <strong>07568 455 809</strong> to discuss this.</em>\r\n<h4><strong><span style=\"color: #008000;\">Can Everyone Be Hypnotised?</span></strong></h4>\r\nThis is an interesting question and the answer can be different depending on the hypnotist you speak to.\r\nI personally believe everyone can be hypnotised and I have yet to meet someone that can\'t be hypnotised. I have met plenty of people who state they can\'t be hypnotised and found they certainly can be hypnotised. Some people are certainly resistant to hypnosis, usually due to a fear of being out of control. Teaching Self-Hypnosis is very useful in this situation to allow the client to enjoy and experience the benefits of hypnosis themselves.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Always The Best Therapy For Change?</strong></span></h4>\r\nHypnosis and Self-Hypnosis are very powerful tools that are often perfect for change work. Other tools can be just as powerful for change work. A good hypnotherapist will be experienced and trained in other tools such as Neuro-linguistic programming (NLP) and Emotional Freedom Technique (EFT) as they see fit for best results. We also use other useful therapies or work with other therapists as best for you, the client.\r\n<h4><span style=\"color: #008000;\"><strong>Is Hypnosis Dangerous?\r\n</strong></span></h4>\r\nHypnosis can be dangerous if used while operating machinery or driving. Hypnosis is perfectly safe when working with an experienced professional.\r\nThe use of hypnosis has been recognised by the AMA or American Medical Association since 1958<strong>.</strong>\r\n<h4><strong><span style=\"color: #008000;\">Do You Provide Hypnosis Audio Recordings?</span></strong></h4>\r\nYes, when suitable and beneficial. Many clients find a great benefit that we make recordings of your hypnosis sessions and give it to you. As these sessions are designed personally for you, you may find faster or great results by listening to these during your week.<strong>\r\n</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Are Premade Hypnosis Recordings Helpful?</strong></span></h4>\r\n<span style=\"color: #008000;\"><span style=\"color: #000000;\">For</span><span style=\"color: #000000;\"> best results, hypnosis recordings tailored especially for you will give you the best results. To do this we need to work together in person or by video calls. There are many good hypnosis audio tracks that you can purchase and they should be of benefit although they will not give the same results as a personalised hypnosis session</span><strong>.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">Can You Work Via Skype Or Video Calls For Online Sessions?</span></strong></h4>\r\nYes, we use Skype and other online video sessions when required. We do find client results are just as successful online as they are in person.\r\nSimply call us on 07568 455 809 to discuss this.\r\n<h4>You can read more <a href=\"http://www.newcastle-hypnotherapy.com/client-feedback/\"><strong>Newcastle Hypnotherapy client feedback here.</strong></a></h4>\r\n</div>\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Secret Workshop <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #006400;\">Are you ready to take control and make some changes?</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\">You can <em>call Mark at Newcastle Hypnotherapy on <strong>07568 455 809</strong></em> Today and arrange your Free, Confidential Phone Consultation. Alternatively, complete the form below.\r\n</span>\r\n<h4><span style=\"font-family: arial,helvetica,sans-serif;\"><strong><span style=\"color: #008000;\">About Mark</span></strong>\r\n</span></h4>\r\n<span style=\"font-family: arial,helvetica,sans-serif;\"><strong><img class=\"alignleft wp-image-103 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2017/10/mmhead-150x150.jpg\" alt=\"Newcastle Hypnotherapy Mark Morley\" width=\"150\" height=\"150\" /><span style=\"color: #008000;\">Mark Morley - CMH MPNLP</span></strong></span>\r\n\r\n<span style=\"color: #008000;\">Clinical Hypnotherapist\r\nMaster NLP Practitioner\r\nDirector at Newcastle Hypnotherapy\r\nMember - UK Guild of Hypnosis Practitioners\r\n</span>\r\n\r\nMark started to use self-hypnosis in his teens to help with self-confidence, anxiety, health issues and to overcome a stammer. He was very impressed with the results and quickly started to study a lot of personal development techniques as he went on to start and run various businesses.\r\n\r\nOver time he found Neuro-linguistic programming (NLP) to be a set of very powerful tools for change work. Mark took professional courses with NLP North East to become a Practitioner and then a Master Practitioner in NLP.\r\nDuring these courses, he also enjoyed the hypnosis skills learned and moved forward to become a qualified Clinical Hypnotherapist.\r\n\r\nMark successfully used many of these skills to build successful businesses including an entertainment company, a sales and marketing business, a health food company and a community group.\r\n\r\n\"I love to work with stress, anxiety and depression issues as our clients get such good results very quickly. There is nothing more rewarding in life than seeing a client change so dramatically and stating they have now got their life back. I also love to work in other problem areas such as self-confidence, behaviour changes and digestive, nutritional and dietary areas.\"\r\n<h4 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\"><span style=\"color: #008000;\"><strong>Diet &amp; Mental Health</strong></span></h4>\r\nMark writes, \"Although most of what we do is Hypnotherapy &amp; NLP work, I have several years of experience with nutritional work during my time in the health food industry. Very often customers would come to me thinking a pill or supplement would fix a digestive problem when if fact I could see anxiety or stress were the issues.\r\n\r\nDiet is also a major factor when it comes to good mental health. We know that when key nutrients are missing, certain problems are more likely to take place. We do work with other therapists and clinics when needed to address these issues. Often we need to check a clients diet and lifestyle and sometimes suggest they have a full blood check or health check before we proceed.\r\n\r\nCertain ingredients in processed foods can add to problems or cause them in the first place. We like to cover all of the bases so that the chances of resolving the problems are as high as possible for our clients\"\r\n<h4><strong><span style=\"color: #008000;\">Is the time right for you to take control?</span></strong></h4>\r\nCall Mark at Newcastle Hypnotherapy on 07568 455 809 or complete the contact form below to arrange your free phone consultation.\r\nWe can simply chat about your issue and look at the best way for you to move forward at a pace that is comfortable for you.\r\n<h4><strong><span style=\"color: #008000;\">Quick Links</span>\r\n</strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">Client Feedback - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">Anxiety Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stress-management/\">Stress Management - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/\">Hypnosis For Depression - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/\">Candida Hypnosis Relief - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/\">Stop Smoking Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/\">Weight Loss Hypnosis - Newcastle Hypnotherapy</a>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Self-Hypnosis - Newcastle Hypnotherapy</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Can I Get Hypnosis On The NHS?\r\n</span></strong></h4>\r\nSadly no. Hypnotherapy is not available through the NHS and you need to arrange your hypnotherapy yourself. We believe hypnosis should be available on the NHS for everyone as the results are often life-changing and sometimes better than medication.\r\n<h4><strong><span style=\"color: #008000;\">Contact Form</span></strong></h4>\r\n<div style=\"font-family: \'Times New Roman\';\"><span style=\"font-family: arial,helvetica,sans-serif;\">If you would like us to contact you please leave your details below along with the best time to contact you. Thank you.\r\nYour privacy is important to us and your data will never be shared or sold.\r\nWe are GDPR compliant at all times.\r\n</span></div>\r\n[wpforms id=\"35\"]\r\n\r\n<strong>Newcastle Hypnotherapy</strong>\r\n<span class=\"LrzXr\"><strong>31 Station Road,\r\nWallsend,\r\nNewcastle upon Tyne,\r\nNE28 6SZ</strong></span>\r\n\r\n<strong>Tel 07568 455 809</strong>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy Opening Times</strong></span></h4>\r\n<div class=\"ak\">\r\n<div class=\"IiXf4c\"><span class=\"pE\">Sunday </span><span class=\"qE\">10:00 am–8:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Monday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Tuesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Wednesday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Thursday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Friday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n<div class=\"IiXf4c\"><span class=\"pE\">Saturday </span><span class=\"qE\">8:00 am–9:00 pm</span></div>\r\n</div>','Newcastle Hypnotherapy','','inherit','closed','closed','','1437-revision-v1','','','2019-05-18 10:25:45','2019-05-18 10:25:45','',1437,'https://www.newcastle-hypnotherapy.com/1437-revision-v1/',0,'revision','',0),(2892,1,'2019-05-18 10:34:57','2019-05-18 10:34:57','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love the free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, despression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy talking a wholistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offer anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31, <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><span style=\"color: #000000;\"><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program by Newcastle Hypnotherapy</span>\r\nIt\'s so easy to get started on your anxiety relief with most clients experiencing rapid results.</span></strong>\r\n\r\n<span style=\"color: #000000;\"><strong>Your Free Anxiety Help Tips and more helpful information can be found below.</strong></span>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\"> </span></strong></h4>\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\">Take control and start your anxiety relief today.</span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n<a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><strong><span style=\"color: #ff6600;\">Anxiety Client Feedback - Steve</span></strong>  </a><strong><a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>\"Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can\'t thank you enough. Steve \"</em></a>\r\n</strong>\r\n<h4 style=\"text-align: center;\"><strong>Call <span style=\"color: #ff6600;\">07568 455809</span> today to get started or</strong>\r\n<strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a> to arrange\r\nYour FREE 15 Minute Phone Session.</strong></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 10:34:57','2019-05-18 10:34:57','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2893,1,'2019-05-18 10:46:29','2019-05-18 10:46:29','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love the free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, despression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy talking a wholistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offer anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31, <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. The following weeks usually see\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"> </span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n\r\n<h4 style=\"text-align: center;\"></h4>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\nAnxiety is different to stress as often the cause is unclear or can take a little time to understand.\r\nWith a little work, we can create awareness of your cause of anxiety and show you how to take control.\r\nAnxiety can have many symptoms including:\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 10:46:29','2019-05-18 10:46:29','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2894,1,'2019-05-18 11:05:28','2019-05-18 11:05:28','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love the free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, despression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy talking a wholistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offer anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31, <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\n<h4>Most people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer and issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n\r\n<span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, publci speaking anxiety, sxexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different to each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hpnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfullness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"> </span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n\r\n<h4 style=\"text-align: center;\"></h4>\r\n<span style=\"color: #008000;\"><strong> </strong></span>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\n<ul>\r\n 	<li></li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 11:05:28','2019-05-18 11:05:28','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2895,1,'2019-05-18 11:38:31','2019-05-18 11:38:31','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love the free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, despression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy talking a wholistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offer anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31, <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\n<h4>Most people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer and issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.</h4>\r\n<span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span>\r\n\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, publci speaking anxiety, sxexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different to each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hpnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfullness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with specialist excercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"> </span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n\r\n<h4 style=\"text-align: center;\"></h4>\r\n<span style=\"color: #008000;\"><strong> </strong></span>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>How does anxiety make your life uncomfortable?</strong></span></h4>\r\n<ul>\r\n 	<li></li>\r\n</ul>\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 11:38:31','2019-05-18 11:38:31','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2900,1,'2019-05-18 12:28:39','2019-05-18 12:28:39','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love the free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, despression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy talking a wholistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offer anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer and issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, publci speaking anxiety, sxexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different to each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hpnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfullness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with specialist excercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Is diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually for anxiety issues a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCetainly correct breathing excercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment progtam is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this durung your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychaitry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">5 Tips To Reduce Anxiety &amp; Stress Yourself\r\n</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 12:28:39','2019-05-18 12:28:39','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2903,1,'2019-05-18 12:46:14','2019-05-18 12:46:14','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love the free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with specialist exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.\r\n\r\n</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 12:46:14','2019-05-18 12:46:14','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2899,1,'2019-05-18 12:27:11','2019-05-18 12:27:11','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love the free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, despression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy talking a wholistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offer anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\n<h4>Most people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer and issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.</h4>\r\n<span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span>\r\n\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, publci speaking anxiety, sxexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different to each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hpnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfullness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with specialist excercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Is diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually for anxiety issues a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCetainly correct breathing excercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment progtam is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this durung your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychaitry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">5 Tips To Reduce Anxiety &amp; Stress Yourself\r\n</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 12:27:11','2019-05-18 12:27:11','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2896,1,'2019-05-18 12:05:06','2019-05-18 12:05:06','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love the free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, despression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy talking a wholistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offer anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31, <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\n<h4>Most people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer and issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.</h4>\r\n<span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span>\r\n\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, publci speaking anxiety, sxexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different to each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hpnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfullness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with specialist excercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Is diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually for anxiety issues a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCetainly correct breathing excercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program we will look at which breathing exercises are comfortable for you.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong>What is my next step?</strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free 15 min phone session.</strong></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"> </span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n\r\n<h4 style=\"text-align: center;\"></h4>\r\n<span style=\"color: #008000;\"><strong> </strong></span>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 12:05:06','2019-05-18 12:05:06','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2898,1,'2019-05-18 12:24:39','2019-05-18 12:24:39','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love the free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, despression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy talking a wholistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offer anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31, <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\n<h4>Most people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer and issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.</h4>\r\n<span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span>\r\n\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, publci speaking anxiety, sxexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different to each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hpnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfullness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with specialist excercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Is diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually for anxiety issues a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCetainly correct breathing excercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment progtam is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this durung your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychaitry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n<p style=\"text-align: left;\"></p>\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">5 Tips To Reduce Anxiety &amp; Stress Yourself\r\n</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 12:24:39','2019-05-18 12:24:39','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2897,1,'2019-05-18 12:21:50','2019-05-18 12:21:50','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love the free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, despression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy talking a wholistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offer anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31, <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\n<h4>Most people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer and issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.</h4>\r\n<span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span>\r\n\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, publci speaking anxiety, sxexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different to each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hpnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfullness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with specialist excercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Is diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually for anxiety issues a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCetainly correct breathing excercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment progtam is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this durung your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychaitry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"> </span></h4>\r\n<p style=\"text-align: left;\"><strong><img class=\"alignleft wp-image-1682 size-thumbnail\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/anxiety-tips-150x150.jpg\" alt=\"anxiety tips newcastle hypnotherapy\" width=\"150\" height=\"150\" />One of the things you will love about the <em>Anxiety Relief Hypnosis Program</em> is how quickly your anxiety symptoms can start to reduce.\r\nHypnotherapy &amp; NLP are wonderful tools for reducing and eliminating anxiety, fast.</strong></p>\r\nMost of our clients find their anxiety levels start to drop during their first session of the program. Anxiety improvements continue over the coming weeks with total control happening over time.<strong>\r\n</strong>\r\n<p style=\"text-align: left;\">As soon as you are ready <em>we can start working together</em> to start your personalised <strong>Anxiety Relief Hypnosis Program.</strong>  We work to replace your anxiety symptoms with new feelings of calm, relaxation and self- control.</p>\r\n\r\n<h4 style=\"text-align: center;\"></h4>\r\n<span style=\"color: #008000;\"><strong> </strong></span>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Clinical Hypnotherapy for Anxiety in Newcastle Upon Tyne, Northumberland, North East England &amp; Online</strong></span></h4>\r\nNewcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Your Anxiety Newsletter</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 12:21:50','2019-05-18 12:21:50','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2902,1,'2019-05-18 12:33:37','2019-05-18 12:33:37','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love the free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, despression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy talking a wholistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offer anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer and issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, publci speaking anxiety, sxexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different to each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hpnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfullness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with specialist excercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Is diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually for anxiety issues a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCetainly correct breathing excercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment progtam is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this durung your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychaitry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 12:33:37','2019-05-18 12:33:37','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2901,1,'2019-05-18 12:31:50','2019-05-18 12:31:50','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love the free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, despression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy talking a wholistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offer anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer and issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, publci speaking anxiety, sxexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different to each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hpnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfullness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with specialist excercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Is diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually for anxiety issues a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCetainly correct breathing excercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment progtam is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this durung your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychaitry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details below to receive your free Anxiety Newsletter. This will include powerful mind techniques to help with anxiety and stress.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Relief Hypnosis Program so effective?</em></strong></span></h4>\r\nWe look at all of the issues. We look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors. Anxiety can be caused by a number of issues and we will look at all of the factors and the best way forward for you.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n\r\nWe use a number of effective tools to conquer your anxiety including Hypnotherapy, Self-hypnosis, NLP or Neuro-Linguistic Programming, EFT or Emotional Freedom Technique, Meditation, Mindfulness, and other techniques.\r\nThis means we have dozens of techniques to create a solution just for you.\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy Treatment For Anxiety</span>\r\n</strong></h4>\r\nMany of our clients find hypnosis very effective to quickly reduce anxiety, social anxiety, and even severe anxiety symptoms. We find just a few small changes in your behavior can quickly reduce anxiety attacks and start to rebuild your confidence.\r\nOnce you have started the Anxiety Relief Hypnosis Program, you will learn simple techniques, giving you new control over your anxiety issues, putting you back in control to turn down your anxiety levels and stress levels on demand.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety relief hypnosis program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Anxiety Relief Hypnosis Program, Tailored To Your Needs</span></strong></h4>\r\nAs anxiety can be very different for each person, we tailor our Anxiety Relief Program to you.\r\nOne of the things you will love is that we can bring relief quickly and start replacing those feelings of anxiety with feelings of relaxation, being in control and happiness.\r\nWe also teach you some great skills to put you back in control and take charge of your anxiety symptoms.\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Relief Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\nThe aim of this program is to put you back in control and allow you to take control of your life, with all the support and help you need from us.\r\nThe program is tailored to you in many ways depending on how quickly you wish to progress and which issues you wish to take charge of first.\r\n\r\n<strong>Call 07568 455 809 Today, for your free, confidential phone session and start taking charge of your anxiety now.</strong>\r\n\r\nThankfully the more we work on your anxiety and you practice your new skills, your anxiety symptoms should decrease as we replace them with feelings of well-being, self-confidence, and relaxation. Over time we can increase these positive feelings and the feelings of anxiety will decrease. The anxiety relief hypnosis program will help with these anxiety symptoms.\r\n<h4><strong><span style=\"color: #008000;\">Can Self-Hypnosis &amp; NLP Help With Anxiety?</span></strong></h4>\r\nCertainly. Self-Hypnosis is a powerful set of tools that can really help us to calm down, improve our awareness and relax very quickly. Once we have learned these skills we can do this anytime, anywhere.\r\nNLP - Neuro-linguistic programming is also very powerful with anxiety and also allows us to become aware of our habitual patterns. We can then assess which of these patterns, behaviors, and habits are unwanted and replace them with new ones.\r\nThe benefit of using both self-hypnosis and NLP together is that we have many tools and techniques at our disposal and supercharging the desired results.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><span style=\"color: #008000;\"><strong>Talk with us about the Anxiety Relief Hypnosis Program.\r\n</strong></span></h4>\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #000000;\">You can <a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a> or give us a call on 07568 455 809. Please let us know the best time to call you back and we can answer all of your questions about anxiety and how this hypnosis program can help you.\r\n</span>\r\n</strong></span>\r\n<h2><strong><span style=\"color: #008000;\">Common Questions - Hypnosis and Anxiety</span></strong></h2>\r\nWe are asked many questions about anxiety, anxiety attacks, anxiety symptoms, panic attacks, and hypnosis. Here are just some of them. Feel free to contact us if you have any others.\r\n<h4><strong><span style=\"color: #008000;\">What are the benefits of hypnosis for anxiety?</span></strong></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviors and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><strong><span style=\"color: #008000;\">Who can be affected by Anxiety?</span></strong></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><strong><span style=\"color: #008000;\">How quickly will hypnotherapy help my anxiety?</span></strong></h4>\r\n<span style=\"color: #000000;\">Everyone is different and most of our clients find their anxiety symptoms quickly drop during the first session of the program. As you learn to control your anxiety, the results will get more effective over time.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is hypnosis the only way to deal with anxiety?</span></strong>\r\n</span></h4>\r\n<span style=\"color: #000000;\">No. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n</span>\r\n<h4><span style=\"color: #000000;\"><strong><span style=\"color: #008000;\">Is diet important with anxiety?</span></strong>\r\n</span></h4>\r\nYes, it can be. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><strong><span style=\"color: #008000;\">Is anxiety becoming more common &amp; if so why?</span></strong></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with.\r\nOur clients do find excellent results with the anxiety relief hypnosis program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication when using hypnotherapy?</span></strong></h4>\r\nYes. We are professional hypnotherapy practitioners and unable to advise you on the use of your medication. The anxiety relief hypnosis program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor about your medication. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?\r\n</span></strong></h4>\r\nSelf-Hypnosis is very useful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #008000;\"><strong>Client Feeback from Hayley</strong>. </span></em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">What is my next step?</span></strong></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><span style=\"color: #008000;\"><strong>Free 15 min phone session.</strong></span></a> Here we can discuss your anxiety issues and explore if hypnotherapy is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n\r\n&nbsp;\r\n<h4><strong>Newcastle Hypnotherapy – hypnotherapy near me.</strong></h4>\r\n<strong><em> </em></strong>\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><img class=\"alignleft wp-image-1730 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/PHONE-SESSION-300x300.png\" alt=\"FREE SESSION\" width=\"300\" height=\"300\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 12:31:50','2019-05-18 12:31:50','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2904,1,'2019-05-18 12:56:59','2019-05-18 12:56:59','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love the free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with specialist exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis gentleman had suffered from severe anxiety symptoms for 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nCBT and anxiety medication had helped to begin with but quickly reduced.\r\n\r\nAfter a prog\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 12:56:59','2019-05-18 12:56:59','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0);
INSERT INTO `wpqj_posts` VALUES (2905,1,'2019-05-18 13:20:04','2019-05-18 13:20:04','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 13:20:04','2019-05-18 13:20:04','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2906,1,'2019-05-18 14:09:52','2019-05-18 14:09:52','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n<h4>\r\n<span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\r\nThis client had sufferred from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often became stronger.\r\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\r\n\r\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\r\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\r\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\r\n\r\nAnxiety symptoms included digestive issues, muscle pains, tension headaces, worry and fear.\r\n\r\nWithin 2 weeks of starting the progam the client was amused that she was now fascinated by wasps and bees.\r\nShe was now keen to watch TV programs about insects and had bought books on the subject.\r\nIn the final session she reported she now enjoyed life and work and her husband was amazed at the changes.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\r\n</strong></h4>\r\nThis client was experiencing severe worry when a jouney in the car or bus were expected.\r\nAnxiety drugs had resulted in side effects and did not help with the issue.\r\nAnxiety symptoms included several repeated visists to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occassions if a car jouney was needed.\r\n\r\nThe client reported major improvements the following morning after her first session.\r\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\r\nWithin weeks she had enjoyed long car jouneys for weekends away and was looking forward to longer trips for holidays.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 14:09:52','2019-05-18 14:09:52','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2907,1,'2019-05-18 14:13:11','2019-05-18 14:13:11','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\r\nThis client had suffered from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often became stronger.\r\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\r\n\r\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety, symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\r\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\r\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\r\n\r\nAnxiety symptoms included digestive issues, muscle pains, tension headaches, worry and fear.\r\n\r\nWithin 2 weeks of starting the program the client was amused that she was now fascinated by wasps and bees.\r\nShe was now keen to watch TV programs about insects and had bought books on the subject.\r\nIn the final session, she reported she now enjoyed life and work and her husband was amazed at the changes.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\r\n</strong></h4>\r\nThis client was experiencing severe worry when a journey in the car or bus were expected.\r\nAnxiety drugs had resulted in side effects and did not help with the issue.\r\nAnxiety symptoms included several repeated visits to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occasions if a car journey was needed.\r\n\r\nThe client reported major improvements the following morning after her first session.\r\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\r\nWithin weeks she had enjoyed long car journeys for weekends away and was looking forward to longer trips for holidays.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 14:13:11','2019-05-18 14:13:11','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2908,1,'2019-05-18 14:17:13','2019-05-18 14:17:13','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\r\nThis client had suffered from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often became stronger.\r\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\r\n\r\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety, symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\r\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\r\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\r\n\r\nAnxiety symptoms included digestive issues, muscle pains, tension headaches, worry and fear.\r\n\r\nWithin 2 weeks of starting the program the client was amused that she was now fascinated by wasps and bees.\r\nShe was now keen to watch TV programs about insects and had bought books on the subject.\r\nIn the final session, she reported she now enjoyed life and work and her husband was amazed at the changes.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\r\n</strong></h4>\r\nThis client was experiencing severe worry when a journey in the car or bus were expected.\r\nAnxiety drugs had resulted in side effects and did not help with the issue.\r\nAnxiety symptoms included several repeated visits to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occasions if a car journey was needed.\r\n\r\nThe client reported major improvements the following morning after her first session.\r\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\r\nWithin weeks she had enjoyed long car journeys for weekends away and was looking forward to longer trips for holidays.\r\n\r\n<span style=\"color: #008000;\"><strong>Contact us today to arrange your free phone anxiety consultation.</strong></span>\r\n<strong><span style=\"color: #ff6600;\"><em>Call 07568 455 809 now</em></span></strong> or <em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Book Your Consultation Online Here</a>.</span></em>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 14:17:13','2019-05-18 14:17:13','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2909,1,'2019-05-18 14:22:25','2019-05-18 14:22:25','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension.</strong>\r\n<strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\r\nThis client had suffered from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often became stronger.\r\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\r\n\r\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety, symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\r\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\r\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\r\n\r\nAnxiety symptoms included digestive issues, muscle pains, tension headaches, worry and fear.\r\n\r\nWithin 2 weeks of starting the program the client was amused that she was now fascinated by wasps and bees.\r\nShe was now keen to watch TV programs about insects and had bought books on the subject.\r\nIn the final session, she reported she now enjoyed life and work and her husband was amazed at the changes.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\r\n</strong></h4>\r\nThis client was experiencing severe worry when a journey in the car or bus were expected.\r\nAnxiety drugs had resulted in side effects and did not help with the issue.\r\nAnxiety symptoms included several repeated visits to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occasions if a car journey was needed.\r\n\r\nThe client reported major improvements the following morning after her first session.\r\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\r\nWithin weeks she had enjoyed long car journeys for weekends away and was looking forward to longer trips for holidays.\r\n\r\n<span style=\"color: #008000;\"><strong>Contact us today to arrange your free phone anxiety consultation.</strong></span>\r\n<strong><span style=\"color: #ff6600;\"><em>Call 07568 455 809 now</em></span></strong> or <strong><em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Book Your Consultation Online Here</a>.</span></em></strong>\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy has a <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">Facebook Group here with details of Anxiety Workshops and Events</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 14:22:25','2019-05-18 14:22:25','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2910,1,'2019-05-18 14:37:45','2019-05-18 14:37:45','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control of anxiety issues with anxiety treatment and counselling. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension. </strong><strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\r\nThis client had suffered from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often became stronger.\r\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\r\n\r\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety, symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\r\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\r\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\r\n\r\nAnxiety symptoms included digestive issues, muscle pains, tension headaches, worry and fear.\r\n\r\nWithin 2 weeks of starting the program the client was amused that she was now fascinated by wasps and bees.\r\nShe was now keen to watch TV programs about insects and had bought books on the subject.\r\nIn the final session, she reported she now enjoyed life and work and her husband was amazed at the changes.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\r\n</strong></h4>\r\nThis client was experiencing severe worry when a journey in the car or bus were expected.\r\nAnxiety drugs had resulted in side effects and did not help with the issue.\r\nAnxiety symptoms included several repeated visits to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occasions if a car journey was needed.\r\n\r\nThe client reported major improvements the following morning after her first session.\r\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\r\nWithin weeks she had enjoyed long car journeys for weekends away and was looking forward to longer trips for holidays.\r\n\r\n<span style=\"color: #008000;\"><strong>Contact us today to arrange your free phone anxiety consultation.</strong></span>\r\n<strong><span style=\"color: #ff6600;\"><em>Call 07568 455 809 now</em></span></strong> or <strong><em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Book Your Consultation Online Here</a>.</span></em></strong>\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy has a <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">Facebook Group here with details of Anxiety Workshops and Events</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 14:37:45','2019-05-18 14:37:45','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2911,1,'2019-05-18 14:38:30','2019-05-18 14:38:30','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control with anxiety treatment and counselling. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension. </strong><strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\r\nThis client had suffered from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often became stronger.\r\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\r\n\r\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety, symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\r\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\r\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\r\n\r\nAnxiety symptoms included digestive issues, muscle pains, tension headaches, worry and fear.\r\n\r\nWithin 2 weeks of starting the program the client was amused that she was now fascinated by wasps and bees.\r\nShe was now keen to watch TV programs about insects and had bought books on the subject.\r\nIn the final session, she reported she now enjoyed life and work and her husband was amazed at the changes.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\r\n</strong></h4>\r\nThis client was experiencing severe worry when a journey in the car or bus were expected.\r\nAnxiety drugs had resulted in side effects and did not help with the issue.\r\nAnxiety symptoms included several repeated visits to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occasions if a car journey was needed.\r\n\r\nThe client reported major improvements the following morning after her first session.\r\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\r\nWithin weeks she had enjoyed long car journeys for weekends away and was looking forward to longer trips for holidays.\r\n\r\n<span style=\"color: #008000;\"><strong>Contact us today to arrange your free phone anxiety consultation.</strong></span>\r\n<strong><span style=\"color: #ff6600;\"><em>Call 07568 455 809 now</em></span></strong> or <strong><em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Book Your Consultation Online Here</a>.</span></em></strong>\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy has a <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">Facebook Group here with details of Anxiety Workshops and Events</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 14:38:30','2019-05-18 14:38:30','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2912,1,'2019-05-18 14:40:58','2019-05-18 14:40:58','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control with anxiety treatment and counselling. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension. </strong><strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n&nbsp;\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\r\nThis client had suffered from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often became stronger.\r\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\r\n\r\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety, symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\r\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\r\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\r\n\r\nAnxiety symptoms included digestive issues, muscle pains, tension headaches, worry and fear.\r\n\r\nWithin 2 weeks of starting the program the client was amused that she was now fascinated by wasps and bees.\r\nShe was now keen to watch TV programs about insects and had bought books on the subject.\r\nIn the final session, she reported she now enjoyed life and work and her husband was amazed at the changes.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\r\n</strong></h4>\r\nThis client was experiencing severe worry when a journey in the car or bus were expected.\r\nAnxiety drugs had resulted in side effects and did not help with the issue.\r\nAnxiety symptoms included several repeated visits to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occasions if a car journey was needed.\r\n\r\nThe client reported major improvements the following morning after her first session.\r\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\r\nWithin weeks she had enjoyed long car journeys for weekends away and was looking forward to longer trips for holidays.\r\n\r\n<span style=\"color: #008000;\"><strong>Contact us today to arrange your free phone anxiety consultation.</strong></span>\r\n<strong><span style=\"color: #ff6600;\"><em>Call 07568 455 809 now</em></span></strong> or <strong><em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Book Your Consultation Online Here</a>.</span></em></strong>\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy has a <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">Facebook Group here with details of Anxiety Workshops and Events</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 14:40:58','2019-05-18 14:40:58','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2918,1,'2019-05-19 20:56:11','2019-05-19 20:56:11','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<strong>Simply we help people to take control of anxiety treatment and counselling. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension. </strong><strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr for\r\nAnxiety Treatment &amp; Counselling\r\n</strong></span></p>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\r\nThis client had suffered from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often become stronger.\r\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\r\n\r\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety, symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\r\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\r\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\r\n\r\nAnxiety symptoms included digestive issues, muscle pains, tension headaches, worry and fear.\r\n\r\nWithin 2 weeks of starting the program the client was amused that she was now fascinated by wasps and bees.\r\nShe was now keen to watch TV programs about insects and had bought books on the subject.\r\nIn the final session, she reported she now enjoyed life and work and her husband was amazed at the changes.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\r\n</strong></h4>\r\nThis client was experiencing severe worry when a journey in the car or bus were expected.\r\nAnxiety drugs had resulted in side effects and did not help with the issue.\r\nAnxiety symptoms included several repeated visits to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occasions if a car journey was needed.\r\n\r\nThe client reported major improvements the following morning after her first session.\r\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\r\nWithin weeks she had enjoyed long car journeys for weekends away and was looking forward to longer trips for holidays.\r\n\r\n<span style=\"color: #008000;\"><strong>Contact us today to arrange your free phone anxiety consultation.</strong></span>\r\n<strong><span style=\"color: #ff6600;\"><em>Call 07568 455 809 now</em></span></strong> or <strong><em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Book Your Consultation Online Here</a>.</span></em></strong>\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy has a <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">Facebook Group here with details of Anxiety Workshops and Events</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-19 20:56:11','2019-05-19 20:56:11','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2913,1,'2019-05-18 14:43:00','2019-05-18 14:43:00','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control with anxiety treatment and counselling. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension. </strong><strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n&nbsp;\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\r\nThis client had suffered from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often became stronger.\r\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\r\n\r\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety, symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\r\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\r\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\r\n\r\nAnxiety symptoms included digestive issues, muscle pains, tension headaches, worry and fear.\r\n\r\nWithin 2 weeks of starting the program the client was amused that she was now fascinated by wasps and bees.\r\nShe was now keen to watch TV programs about insects and had bought books on the subject.\r\nIn the final session, she reported she now enjoyed life and work and her husband was amazed at the changes.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\r\n</strong></h4>\r\nThis client was experiencing severe worry when a journey in the car or bus were expected.\r\nAnxiety drugs had resulted in side effects and did not help with the issue.\r\nAnxiety symptoms included several repeated visits to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occasions if a car journey was needed.\r\n\r\nThe client reported major improvements the following morning after her first session.\r\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\r\nWithin weeks she had enjoyed long car journeys for weekends away and was looking forward to longer trips for holidays.\r\n\r\n<span style=\"color: #008000;\"><strong>Contact us today to arrange your free phone anxiety consultation.</strong></span>\r\n<strong><span style=\"color: #ff6600;\"><em>Call 07568 455 809 now</em></span></strong> or <strong><em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Book Your Consultation Online Here</a>.</span></em></strong>\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy has a <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">Facebook Group here with details of Anxiety Workshops and Events</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 14:43:00','2019-05-18 14:43:00','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2914,1,'2019-05-18 14:44:21','2019-05-18 14:44:21','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control with anxiety treatment and counselling. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension. </strong><strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr on Anxiety Treatment</strong></span></p>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\r\nThis client had suffered from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often became stronger.\r\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\r\n\r\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety, symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\r\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\r\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\r\n\r\nAnxiety symptoms included digestive issues, muscle pains, tension headaches, worry and fear.\r\n\r\nWithin 2 weeks of starting the program the client was amused that she was now fascinated by wasps and bees.\r\nShe was now keen to watch TV programs about insects and had bought books on the subject.\r\nIn the final session, she reported she now enjoyed life and work and her husband was amazed at the changes.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\r\n</strong></h4>\r\nThis client was experiencing severe worry when a journey in the car or bus were expected.\r\nAnxiety drugs had resulted in side effects and did not help with the issue.\r\nAnxiety symptoms included several repeated visits to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occasions if a car journey was needed.\r\n\r\nThe client reported major improvements the following morning after her first session.\r\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\r\nWithin weeks she had enjoyed long car journeys for weekends away and was looking forward to longer trips for holidays.\r\n\r\n<span style=\"color: #008000;\"><strong>Contact us today to arrange your free phone anxiety consultation.</strong></span>\r\n<strong><span style=\"color: #ff6600;\"><em>Call 07568 455 809 now</em></span></strong> or <strong><em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Book Your Consultation Online Here</a>.</span></em></strong>\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy has a <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">Facebook Group here with details of Anxiety Workshops and Events</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 14:44:21','2019-05-18 14:44:21','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2916,1,'2019-05-19 18:53:17','2019-05-19 18:53:17','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n&nbsp;\r\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/Tg4ij_bPGxs?rel=0\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>\r\n<strong>Simply we help people to take control with anxiety treatment and counselling. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension. </strong><strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr for\r\nAnxiety Treatment &amp; Counselling\r\n</strong></span></p>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\r\nThis client had suffered from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often became stronger.\r\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\r\n\r\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety, symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\r\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\r\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\r\n\r\nAnxiety symptoms included digestive issues, muscle pains, tension headaches, worry and fear.\r\n\r\nWithin 2 weeks of starting the program the client was amused that she was now fascinated by wasps and bees.\r\nShe was now keen to watch TV programs about insects and had bought books on the subject.\r\nIn the final session, she reported she now enjoyed life and work and her husband was amazed at the changes.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\r\n</strong></h4>\r\nThis client was experiencing severe worry when a journey in the car or bus were expected.\r\nAnxiety drugs had resulted in side effects and did not help with the issue.\r\nAnxiety symptoms included several repeated visits to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occasions if a car journey was needed.\r\n\r\nThe client reported major improvements the following morning after her first session.\r\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\r\nWithin weeks she had enjoyed long car journeys for weekends away and was looking forward to longer trips for holidays.\r\n\r\n<span style=\"color: #008000;\"><strong>Contact us today to arrange your free phone anxiety consultation.</strong></span>\r\n<strong><span style=\"color: #ff6600;\"><em>Call 07568 455 809 now</em></span></strong> or <strong><em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Book Your Consultation Online Here</a>.</span></em></strong>\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy has a <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">Facebook Group here with details of Anxiety Workshops and Events</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-19 18:53:17','2019-05-19 18:53:17','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2915,1,'2019-05-18 14:45:15','2019-05-18 14:45:15','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<img class=\"size-medium wp-image-1244 aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/choice-2692575_1280-300x111.jpg\" alt=\"Free Consultation Newcastle Hypnotherapy\" width=\"300\" height=\"111\" />\r\n\r\n<strong>Simply we help people to take control with anxiety treatment and counselling. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension. </strong><strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr for\r\nAnxiety Treatment &amp; Counselling\r\n</strong></span></p>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\r\nThis client had suffered from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often became stronger.\r\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\r\n\r\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety, symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\r\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\r\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\r\n\r\nAnxiety symptoms included digestive issues, muscle pains, tension headaches, worry and fear.\r\n\r\nWithin 2 weeks of starting the program the client was amused that she was now fascinated by wasps and bees.\r\nShe was now keen to watch TV programs about insects and had bought books on the subject.\r\nIn the final session, she reported she now enjoyed life and work and her husband was amazed at the changes.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\r\n</strong></h4>\r\nThis client was experiencing severe worry when a journey in the car or bus were expected.\r\nAnxiety drugs had resulted in side effects and did not help with the issue.\r\nAnxiety symptoms included several repeated visits to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occasions if a car journey was needed.\r\n\r\nThe client reported major improvements the following morning after her first session.\r\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\r\nWithin weeks she had enjoyed long car journeys for weekends away and was looking forward to longer trips for holidays.\r\n\r\n<span style=\"color: #008000;\"><strong>Contact us today to arrange your free phone anxiety consultation.</strong></span>\r\n<strong><span style=\"color: #ff6600;\"><em>Call 07568 455 809 now</em></span></strong> or <strong><em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Book Your Consultation Online Here</a>.</span></em></strong>\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy has a <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">Facebook Group here with details of Anxiety Workshops and Events</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-18 14:45:15','2019-05-18 14:45:15','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2917,1,'2019-05-19 20:38:12','2019-05-19 20:38:12','<img class=\"aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /><strong> Freedom From Anxiety &amp; Stress Workshop</strong>\r\n<span style=\"color: #ff6600;\"><strong>Wednesday 5th June</strong></span>\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\n£39 per person (£29 Early Bird Price)\r\n<strong>Advance booking is required.\r\n</strong><strong>\r\n</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you suffer from Anxiety, Stress, Low Self-Confidence or Struggle with Worry?\r\n</span></strong><span style=\"color: #000000;\">Anxiety &amp; Stress are becoming a problem for more and more people, making life unhappy and damaging health<strong>.</strong></span>\r\n\r\nThankfully there are many things you can do to take control of anxiety and stress.\r\nSimple, powerful techniques are helping people to take charge of their lives and replace anxiety &amp; stress with feelings of confidence, strength and control.<strong><span style=\"color: #008000;\">\r\n</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">The Freedom From Anxiety &amp; Stress Workshop</span></strong></h2>\r\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, Reduce <span style=\"color: #ff6600;\">Stress</span> while building <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety &amp; stress in yourself and others</li>\r\n 	<li>recognise your triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make your anxiety, stress &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety, stress &amp; worry patterns</li>\r\n 	<li>use skills to reduce negative states as soon as they appear</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\n<strong>This Freedom From Anxiety &amp; Stress Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></span></strong>\r\n\r\n<strong>To learn these powerful skills to help with anxiety, stress &amp; self-confidence simply book your place below.</strong>\r\nPlaces are limited to just 20 people and accepted on a first come first served basis.\r\n<h4><strong><span style=\"color: #008000;\">You can read client reviews below, on this page</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Want To Conquer You Anxiety &amp; Stress Even Faster?</strong></span></h4>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark works with a number of clients on an individual basis each week and helps works with many other issues and challenges.\r\n<strong>To arrange your free consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”','Freedom From Anxiety & Stress Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-05-19 20:38:12','2019-05-19 20:38:12','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2919,1,'2019-05-20 06:42:09','2019-05-20 06:42:09','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<strong>Simply we help people to take control of anxiety treatment and counselling. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension. </strong><strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<iframe src=\"https://www.youtube.com/embed/Tg4ij_bPGxs\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr for\r\nAnxiety Treatment &amp; Counselling\r\n</strong></span></p>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\r\nThis client had suffered from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often become stronger.\r\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\r\n\r\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety, symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\r\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\r\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\r\n\r\nAnxiety symptoms included digestive issues, muscle pains, tension headaches, worry and fear.\r\n\r\nWithin 2 weeks of starting the program the client was amused that she was now fascinated by wasps and bees.\r\nShe was now keen to watch TV programs about insects and had bought books on the subject.\r\nIn the final session, she reported she now enjoyed life and work and her husband was amazed at the changes.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\r\n</strong></h4>\r\nThis client was experiencing severe worry when a journey in the car or bus were expected.\r\nAnxiety drugs had resulted in side effects and did not help with the issue.\r\nAnxiety symptoms included several repeated visits to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occasions if a car journey was needed.\r\n\r\nThe client reported major improvements the following morning after her first session.\r\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\r\nWithin weeks she had enjoyed long car journeys for weekends away and was looking forward to longer trips for holidays.\r\n\r\n<span style=\"color: #008000;\"><strong>Contact us today to arrange your free phone anxiety consultation.</strong></span>\r\n<strong><span style=\"color: #ff6600;\"><em>Call 07568 455 809 now</em></span></strong> or <strong><em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Book Your Consultation Online Here</a>.</span></em></strong>\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy has a <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">Facebook Group here with details of Anxiety Workshops and Events</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-20 06:42:09','2019-05-20 06:42:09','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2920,1,'2019-05-20 08:27:22','2019-05-20 08:27:22','','Order &ndash; May 20, 2019 @ 08:27 AM','','wc-processing','open','closed','order_5ce264ea0e66e','order-may-20-2019-0827-am','','','2019-05-20 08:27:59','2019-05-20 08:27:59','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2920',0,'shop_order','',2),(2923,1,'2019-05-23 08:31:50','2019-05-23 08:31:50','<h4><span style=\"color: #008000;\"><strong><img class=\"alignleft size-medium wp-image-2489\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/18301132_10213555215381275_3679351157902333621_n-300x211.jpg\" alt=\"Happy Customer Reviews\" width=\"300\" height=\"211\" />Client Feedback &amp; Reviews</strong></span></h4>\r\n<strong>Thank you to all of our customers &amp; clients who have sent us a review.\r\nWe love your feedback, please keep it coming because it really helps others.</strong><span style=\"color: #008000;\"><strong>\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Dr Andrew\'s feedback on Newcastle Hypnotherapy.</span></strong></h4>\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>\"I\'ve had an amazing Christmas. I\'ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I\'m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.\"<span style=\"color: #008000;\"><span style=\"color: #000000;\">LN</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Carol </span></strong>\"Hi Mark, just wanted to let you know that you have completely transformed my life! I am no longer arachnophobic, and yesterday in the office I was the one who came to the rescue, picking a spider up in my bare hands and putting it out the window. Just think that before my sessions I couldn\'t even say the word spider, or hear anyone else say it! That fear is completely gone and I cannot thank you enough.\"\r\n<strong><span style=\"color: #008000;\">\r\nClient Feedback by Joyce</span></strong> <span style=\"color: #000000;\">\"<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce\"</span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback by Gary </span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar-free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number of therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by S F</span>.</strong>  \"<span style=\"color: #000000;\">I</span> Met Mark initially at an event at \'The Vault\' and found him to be a trustworthy genuine person, so I booked two Hypnotherapy sessions with him. I felt stuck with certain issues in my life and also had some trauma work to do. I had done a lot of work myself but the last little bit was still missing. With Mark\'s help, I found that missing bit and can now work with the tools that Mark offered to me. He introduced me to tapping (EFT) and NLP (Neuro-linguistic Programming) which are fantastic tools. Also, I can always use the hypnotherapy session that Mark recorded for me. Thank you so much, Mark! \"\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Learn More</a></strong>\r\n\r\nFind us on Facebook - <a href=\"https://www.facebook.com/newcastlehypnosis/\">Newcastle Hypnotherapy Facebook Page</a>\r\n\r\n&nbsp;','Reviews','','inherit','closed','closed','','200-revision-v1','','','2019-05-23 08:31:50','2019-05-23 08:31:50','',200,'https://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(2922,1,'2019-05-23 08:09:13','2019-05-23 08:09:13','<h4><span style=\"color: #008000;\"><strong><img class=\"alignleft size-medium wp-image-2489\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/18301132_10213555215381275_3679351157902333621_n-300x211.jpg\" alt=\"Happy Customer Reviews\" width=\"300\" height=\"211\" />Client Feedback &amp; Reviews</strong></span></h4>\r\n<strong>Thank you to all of our customers &amp; clients who have sent us a review.\r\nWe love your feedback, please keep it coming because it really helps others.</strong><span style=\"color: #008000;\"><strong>\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Dr Andrew\'s feedback on Newcastle Hypnotherapy.</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>\"I\'ve had an amazing Christmas. I\'ve been very relaxed compared to last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I\'m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.\"<span style=\"color: #008000;\"><span style=\"color: #000000;\">LN</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Carol </span></strong>\"Hi Mark, just wanted to let you know that you have completely transformed my life! I am no longer arachnophobic, and yesterday in the office I was the one who came to the rescue, picking a spider up in my bare hands and putting it out the window. Just think that before my sessions I couldn\'t even say the word spider, or hear anyone else say it! That fear is completely gone and I cannot thank you enough.\"\r\n<strong><span style=\"color: #008000;\">\r\nClient Feedback by Joyce</span></strong> <span style=\"color: #000000;\">\"<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce\"</span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback by Gary </span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar-free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by S F</span>.</strong>  \"<span style=\"color: #000000;\">I</span> Met Mark initially at an event at \'The Vault\' and found him to be a trustworthy genuine person, so I booked two Hypnotherapy sessions with him. I felt stuck with certain issues in my life and also had some trauma work to do. I had done a lot of work myself but the last little bit was still missing. With Mark\'s help, I found that missing bit and can now work with the tools that Mark offered to me. He introduced me to tapping (EFT) and NLP (Neurolinguistic Programming) which are fantastic tools. Also, I can always use the hypnotherapy session that Mark recorded for me. Thank you so much, Mark! \"\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Learn More</a></strong>\r\n\r\nA proud member of the <a href=\"https://www.ukguild.com/component/jsn/mark-morley?Item\">UK Guild Of Hypnosis Practitioners</a>\r\n\r\n<img class=\"alignleft wp-image-315 size-thumbnail\" title=\"Client Feedback\" src=\"http://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/01/ukghp-150x150.png\" alt=\"Client Feedback\" width=\"150\" height=\"150\" />','Reviews','','inherit','closed','closed','','200-revision-v1','','','2019-05-23 08:09:13','2019-05-23 08:09:13','',200,'https://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(2924,1,'2019-05-23 08:33:59','2019-05-23 08:33:59','<h4><span style=\"color: #008000;\"><strong><img class=\"alignleft size-medium wp-image-2489\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/01/18301132_10213555215381275_3679351157902333621_n-300x211.jpg\" alt=\"Happy Customer Reviews\" width=\"300\" height=\"211\" />Client Feedback &amp; Reviews</strong></span></h4>\r\n<strong>Thank you to all of our customers &amp; clients who have sent us a review.\r\nWe love your feedback, please keep it coming because it really helps others.</strong><span style=\"color: #008000;\"><strong>\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Dr Andrew\'s feedback on Newcastle Hypnotherapy.</span></strong></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<span style=\"color: #008000;\"><strong>Client Feedback by LN </strong></span>\"I\'ve had an amazing Christmas. I\'ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I\'m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.\"<span style=\"color: #008000;\"><span style=\"color: #000000;\">LN</span></span>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Carol </span></strong>\"Hi Mark, just wanted to let you know that you have completely transformed my life! I am no longer arachnophobic, and yesterday in the office I was the one who came to the rescue, picking a spider up in my bare hands and putting it out the window. Just think that before my sessions I couldn\'t even say the word spider, or hear anyone else say it! That fear is completely gone and I cannot thank you enough.\"\r\n<strong><span style=\"color: #008000;\">\r\nClient Feedback by Joyce</span></strong> <span style=\"color: #000000;\">\"<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce\"</span></span>\r\n\r\n<span style=\"color: #008000;\"><strong><em>Client Feedback by Steve </em></strong></span><span style=\"color: #000000;\"><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em></span>\r\n<strong>\r\n<span style=\"color: #008000;\">Client Feedback by Gary </span></strong>\"Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen - and to top it off I\'ve been \'sugar-free\' for over two weeks\"\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Kris</strong>.</span> <em>\"Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark\'s work is still making such a huge difference in my life in such a short time.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by M A</strong></span>.<em> \"I love my sessions with Yvette as she is always so positive and quickly puts me at ease. She easily understands the situation and knows exactly what to do in order to resolve it. I have worked with a number of therapists in the past and Yvette outshines them by miles.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Malcolm.</strong></span> <em>\"I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.\"</em>\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Amber</strong></span><em>. Yvette has such a wonderful, calming influence. Her methods are personal to my needs and her treatments leave me feeling more relaxed and confident than I\'ve felt in a long time.</em>\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by Micheal</span></strong>. Mark is one of those people who lives according to his beliefs and values, a strong value being to maintain good health; both physical and mental. For a potential client, this is a great thing as Mark ‘walks his talk’ and is consistent in word and deed. Mark has a desire to help people in need and this virtue extends itself to any client Mark works with. Mark is very ethical and always works to get the best outcome for any client he works with. Mark also has a positive outlook and this is something I would look for in a hypnotherapist/NLP practitioner, as it is said that the beliefs the hypnotherapist affects the outcome of the patient. Given that Mark is a skilled hypnotherapy practitioner and NLP Master Practitioner with a strong personal commitment to healthy, ecological living, a desire to help others and an optimistic outlook, he is ideally placed to help clients get the results they want.\r\n\r\n<span style=\"color: #008000;\"><strong>Client Feedback by Lynn.</strong></span> I contacted Mark to resolve an uncomfortable digestive disorder, thinking this was a food intolerance issue. Mark quickly discovered it was a stress issue and the exercises we practised, quickly brought much-needed relief. Within 3 weeks the pain &amp; discomfort had gone and I am now aware of when stress causes me an issue and what is needed to resolve it. Thank you again.\r\n\r\n<strong><span style=\"color: #008000;\">Client Feedback by S F</span>.</strong>  \"<span style=\"color: #000000;\">I</span> Met Mark initially at an event at \'The Vault\' and found him to be a trustworthy genuine person, so I booked two Hypnotherapy sessions with him. I felt stuck with certain issues in my life and also had some trauma work to do. I had done a lot of work myself but the last little bit was still missing. With Mark\'s help, I found that missing bit and can now work with the tools that Mark offered to me. He introduced me to tapping (EFT) and NLP (Neuro-linguistic Programming) which are fantastic tools. Also, I can always use the hypnotherapy session that Mark recorded for me. Thank you so much, Mark! \"\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Call <span style=\"color: #000000;\">07568 455 809</span> Today, For Your Free, Confidential Phone Consultation or complete the form below for a return call.\r\n[wpforms id=\"35\"]\r\n</strong></span>\r\n\r\n&nbsp;\r\n\r\nYou can learn Self-Hypnosis.<strong> <a href=\"http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Learn More</a></strong>\r\n\r\nFind us on Facebook - <a href=\"https://www.facebook.com/newcastlehypnosis/\">Newcastle Hypnotherapy Facebook Page</a>\r\n\r\n&nbsp;','Reviews','','inherit','closed','closed','','200-revision-v1','','','2019-05-23 08:33:59','2019-05-23 08:33:59','',200,'https://www.newcastle-hypnotherapy.com/200-revision-v1/',0,'revision','',0),(2925,1,'2019-05-23 08:40:19','2019-05-23 08:40:19','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<strong>Simply we help people to take control of anxiety treatment and counselling. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension. </strong><strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<iframe src=\"https://www.youtube.com/embed/Tg4ij_bPGxs\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr for\r\nAnxiety Treatment &amp; Counselling\r\n</strong></span></p>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\r\nThis client had suffered from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often become stronger.\r\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\r\n\r\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety, symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\r\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\r\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\r\n\r\nAnxiety symptoms included digestive issues, muscle pains, tension headaches, worry and fear.\r\n\r\nWithin 2 weeks of starting the program the client was amused that she was now fascinated by wasps and bees.\r\nShe was now keen to watch TV programs about insects and had bought books on the subject.\r\nIn the final session, she reported she now enjoyed life and work and her husband was amazed at the changes.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\r\n</strong></h4>\r\nThis client was experiencing severe worry when a journey in the car or bus were expected.\r\nAnxiety drugs had resulted in side effects and did not help with the issue.\r\nAnxiety symptoms included several repeated visits to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occasions if a car journey was needed.\r\n\r\nThe client reported major improvements the following morning after her first session.\r\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\r\nWithin weeks she had enjoyed long car journeys for weekends away and was looking forward to longer trips for holidays.\r\n\r\n<span style=\"color: #008000;\"><strong>Contact us today to arrange your free phone anxiety consultation.</strong></span>\r\n<strong><span style=\"color: #ff6600;\"><em>Call 07568 455 809 now</em></span></strong> or <strong><em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Book Your Consultation Online Here</a>.</span></em></strong>\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy has a <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">Facebook Group here with details of Anxiety Workshops and Events</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-23 08:40:19','2019-05-23 08:40:19','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2926,1,'2019-05-25 08:18:24','2019-05-25 08:18:24','<img class=\"aligncenter\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/anxiety-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /><strong> Freedom From Anxiety &amp; Stress Workshop</strong>\r\n<span style=\"color: #ff6600;\"><strong>Wednesday 5th June</strong></span>\r\n7.30 pm to 10 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\n£39 per person (£29 Early Bird Price)\r\n<strong>Advance booking is required.\r\n</strong><strong>\r\n</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you suffer from Anxiety, Stress, Low Self-Confidence or Struggle with Worry?\r\n</span></strong><span style=\"color: #000000;\">Anxiety &amp; Stress are becoming a problem for more and more people, making life unhappy and damaging health<strong>.</strong></span>\r\n\r\nThankfully there are many things you can do to take control of anxiety and stress.\r\nSimple, powerful techniques are helping people to take charge of their lives and replace anxiety &amp; stress with feelings of confidence, strength and control.<strong><span style=\"color: #008000;\">\r\n</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">The Freedom From Anxiety &amp; Stress Workshop</span></strong></h2>\r\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, Reduce <span style=\"color: #ff6600;\">Stress</span> while building <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety &amp; stress in yourself and others</li>\r\n 	<li>recognise your triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make your anxiety, stress &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety, stress &amp; worry patterns</li>\r\n 	<li>use skills to reduce negative states as soon as they appear</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\n<strong>This Freedom From Anxiety &amp; Stress Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></span></strong>\r\n\r\n<strong>To learn these powerful skills to help with anxiety, stress &amp; self-confidence simply book your place below.</strong>\r\nPlaces are limited to just 20 people and accepted on a first come first served basis.\r\n<h4><strong><span style=\"color: #008000;\">You can read client reviews below, on this page</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Want To Conquer You Anxiety &amp; Stress Even Faster?</strong></span></h4>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark works with a number of clients on an individual basis each week and helps works with many other issues and challenges.\r\n<strong>To arrange your free consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”','Freedom From Anxiety & Stress Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-05-25 08:18:24','2019-05-25 08:18:24','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(2927,1,'2019-05-29 16:23:07','2019-05-29 16:23:07','test text\r\n\r\nhttp://www.youtube.com/watch?v=dQw4w9WgXcQ','test page','','publish','closed','closed','','test-page-2','','','2019-05-29 16:41:40','2019-05-29 16:41:40','',0,'https://www.newcastle-hypnotherapy.com/?page_id=2927',0,'page','',0),(2933,1,'2019-05-29 16:41:40','2019-05-29 16:41:40','test text\r\n\r\nhttp://www.youtube.com/watch?v=dQw4w9WgXcQ','test page','','inherit','closed','closed','','2927-revision-v1','','','2019-05-29 16:41:40','2019-05-29 16:41:40','',2927,'https://www.newcastle-hypnotherapy.com/2927-revision-v1/',0,'revision','',0),(2928,1,'2019-05-29 16:23:07','2019-05-29 16:23:07','[iframe src=\"https://www.youtube.com/watch?v=Tg4ij_bPGxs\" width=\"100%\" height=\"100%\" scrolling=\"auto\" ]','test page','','inherit','closed','closed','','2927-revision-v1','','','2019-05-29 16:23:07','2019-05-29 16:23:07','',2927,'https://www.newcastle-hypnotherapy.com/2927-revision-v1/',0,'revision','',0),(2931,1,'2019-05-29 16:31:06','2019-05-29 16:31:06','test text\r\n\r\n&nbsp;\r\n[iframe src=\"https://www.youtube.com/watch?v=Tg4ij_bPGxs\" width=\"400\" height=\"600\"]','test page','','inherit','closed','closed','','2927-revision-v1','','','2019-05-29 16:31:06','2019-05-29 16:31:06','',2927,'https://www.newcastle-hypnotherapy.com/2927-revision-v1/',0,'revision','',0),(2929,1,'2019-05-29 16:24:12','2019-05-29 16:24:12','test text\r\n\r\n\r\n[iframe src=\"https://www.youtube.com/watch?v=Tg4ij_bPGxs\" width=\"100%\" height=\"100%\" scrolling=\"auto\" ]','test page','','inherit','closed','closed','','2927-revision-v1','','','2019-05-29 16:24:12','2019-05-29 16:24:12','',2927,'https://www.newcastle-hypnotherapy.com/2927-revision-v1/',0,'revision','',0),(2930,1,'2019-05-29 16:30:20','2019-05-29 16:30:20','test text\n\n&nbsp;\n[iframe src=\"http://yoururl.com\" width=\"400\" height=\"600\"]','test page','','inherit','closed','closed','','2927-autosave-v1','','','2019-05-29 16:30:20','2019-05-29 16:30:20','',2927,'https://www.newcastle-hypnotherapy.com/2927-autosave-v1/',0,'revision','',0),(2932,1,'2019-05-29 16:31:48','2019-05-29 16:31:48','test text\r\n\r\n[iframe src=\"https://www.youtube.com/watch?v=Tg4ij_bPGxs\" width=\"400\" height=\"600\"]','test page','','inherit','closed','closed','','2927-revision-v1','','','2019-05-29 16:31:48','2019-05-29 16:31:48','',2927,'https://www.newcastle-hypnotherapy.com/2927-revision-v1/',0,'revision','',0),(2936,1,'2019-05-29 17:18:57','2019-05-29 17:18:57','','Order &ndash; May 29, 2019 @ 05:18 PM','','wc-processing','open','closed','order_5ceebf015289e','order-may-29-2019-0518-pm','','','2019-05-29 17:19:53','2019-05-29 17:19:53','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2936',0,'shop_order','',3),(2938,1,'2019-05-31 09:55:54','2019-05-31 09:55:54','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<strong>Simply we help people to take control of anxiety treatment and counselling. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension. </strong><strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<iframe src=\"https://www.youtube.com/embed/Tg4ij_bPGxs\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr for\r\nAnxiety Treatment &amp; Counselling\r\n</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>5 Powerful Self Help Tips To Ease Anxiety Fast</strong>\r\n</span></h4>\r\nLearn some powerful techniques to help ease anxiety symptoms fast.\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is safe and you can leave the newsletter at any time.\r\n\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\r\nThis client had suffered from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often become stronger.\r\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\r\n\r\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety, symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\r\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\r\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\r\n\r\nAnxiety symptoms included digestive issues, muscle pains, tension headaches, worry and fear.\r\n\r\nWithin 2 weeks of starting the program the client was amused that she was now fascinated by wasps and bees.\r\nShe was now keen to watch TV programs about insects and had bought books on the subject.\r\nIn the final session, she reported she now enjoyed life and work and her husband was amazed at the changes.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\r\n</strong></h4>\r\nThis client was experiencing severe worry when a journey in the car or bus were expected.\r\nAnxiety drugs had resulted in side effects and did not help with the issue.\r\nAnxiety symptoms included several repeated visits to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occasions if a car journey was needed.\r\n\r\nThe client reported major improvements the following morning after her first session.\r\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\r\nWithin weeks she had enjoyed long car journeys for weekends away and was looking forward to longer trips for holidays.\r\n\r\n<span style=\"color: #008000;\"><strong>Contact us today to arrange your free phone anxiety consultation.</strong></span>\r\n<strong><span style=\"color: #ff6600;\"><em>Call 07568 455 809 now</em></span></strong> or <strong><em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Book Your Consultation Online Here</a>.</span></em></strong>\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy has a <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">Facebook Group here with details of Anxiety Workshops and Events</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-31 09:55:54','2019-05-31 09:55:54','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2939,1,'2019-05-31 09:56:52','2019-05-31 09:56:52','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<strong>Simply we help people to take control of anxiety treatment and counselling. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension. </strong><strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<iframe src=\"https://www.youtube.com/embed/Tg4ij_bPGxs\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr for\r\nAnxiety Treatment &amp; Counselling\r\n</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>5 Powerful Self-Help Tips To Ease Anxiety Symptoms</strong>\r\n</span></h4>\r\nLearn some powerful techniques to help ease anxiety symptoms fast.\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is safe and you can leave the newsletter at any time.\r\n\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\r\nThis client had suffered from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often become stronger.\r\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\r\n\r\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety, symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\r\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\r\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\r\n\r\nAnxiety symptoms included digestive issues, muscle pains, tension headaches, worry and fear.\r\n\r\nWithin 2 weeks of starting the program the client was amused that she was now fascinated by wasps and bees.\r\nShe was now keen to watch TV programs about insects and had bought books on the subject.\r\nIn the final session, she reported she now enjoyed life and work and her husband was amazed at the changes.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\r\n</strong></h4>\r\nThis client was experiencing severe worry when a journey in the car or bus were expected.\r\nAnxiety drugs had resulted in side effects and did not help with the issue.\r\nAnxiety symptoms included several repeated visits to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occasions if a car journey was needed.\r\n\r\nThe client reported major improvements the following morning after her first session.\r\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\r\nWithin weeks she had enjoyed long car journeys for weekends away and was looking forward to longer trips for holidays.\r\n\r\n<span style=\"color: #008000;\"><strong>Contact us today to arrange your free phone anxiety consultation.</strong></span>\r\n<strong><span style=\"color: #ff6600;\"><em>Call 07568 455 809 now</em></span></strong> or <strong><em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Book Your Consultation Online Here</a>.</span></em></strong>\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy has a <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">Facebook Group here with details of Anxiety Workshops and Events</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-31 09:56:52','2019-05-31 09:56:52','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2940,1,'2019-05-31 09:57:56','2019-05-31 09:57:56','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<strong>Simply we help people to take control of anxiety treatment and counselling. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension. </strong><strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<iframe src=\"https://www.youtube.com/embed/Tg4ij_bPGxs\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr for\r\nAnxiety Treatment &amp; Counselling\r\n</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>5 Powerful Self-Help Tips To Ease Anxiety Symptoms</strong>\r\n</span></h4>\r\nLearn the powerful techniques our clients use to ease anxiety symptoms fast.\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is safe and you can leave the newsletter at any time.\r\n\r\n<strong>With anxiety problems and symptoms, you have choices.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\r\nThis client had suffered from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often become stronger.\r\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\r\n\r\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety, symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\r\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\r\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\r\n\r\nAnxiety symptoms included digestive issues, muscle pains, tension headaches, worry and fear.\r\n\r\nWithin 2 weeks of starting the program the client was amused that she was now fascinated by wasps and bees.\r\nShe was now keen to watch TV programs about insects and had bought books on the subject.\r\nIn the final session, she reported she now enjoyed life and work and her husband was amazed at the changes.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\r\n</strong></h4>\r\nThis client was experiencing severe worry when a journey in the car or bus were expected.\r\nAnxiety drugs had resulted in side effects and did not help with the issue.\r\nAnxiety symptoms included several repeated visits to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occasions if a car journey was needed.\r\n\r\nThe client reported major improvements the following morning after her first session.\r\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\r\nWithin weeks she had enjoyed long car journeys for weekends away and was looking forward to longer trips for holidays.\r\n\r\n<span style=\"color: #008000;\"><strong>Contact us today to arrange your free phone anxiety consultation.</strong></span>\r\n<strong><span style=\"color: #ff6600;\"><em>Call 07568 455 809 now</em></span></strong> or <strong><em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Book Your Consultation Online Here</a>.</span></em></strong>\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy has a <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">Facebook Group here with details of Anxiety Workshops and Events</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-31 09:57:56','2019-05-31 09:57:56','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2941,1,'2019-05-31 09:58:56','2019-05-31 09:58:56','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<strong>Simply we help people to take control of anxiety treatment and counselling. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension. </strong><strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<iframe src=\"https://www.youtube.com/embed/Tg4ij_bPGxs\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr for\r\nAnxiety Treatment &amp; Counselling\r\n</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>5 Powerful Self-Help Tips To Ease Anxiety Symptoms</strong>\r\n</span></h4>\r\nLearn the powerful techniques our clients use to ease anxiety symptoms fast.\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is safe and you can leave the newsletter at any time.\r\n<h4><strong><span style=\"color: #008000;\">With anxiety problems and symptoms, you have choices</span>.</strong></h4>\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\r\nThis client had suffered from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often become stronger.\r\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\r\n\r\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety, symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\r\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\r\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\r\n\r\nAnxiety symptoms included digestive issues, muscle pains, tension headaches, worry and fear.\r\n\r\nWithin 2 weeks of starting the program the client was amused that she was now fascinated by wasps and bees.\r\nShe was now keen to watch TV programs about insects and had bought books on the subject.\r\nIn the final session, she reported she now enjoyed life and work and her husband was amazed at the changes.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\r\n</strong></h4>\r\nThis client was experiencing severe worry when a journey in the car or bus were expected.\r\nAnxiety drugs had resulted in side effects and did not help with the issue.\r\nAnxiety symptoms included several repeated visits to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occasions if a car journey was needed.\r\n\r\nThe client reported major improvements the following morning after her first session.\r\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\r\nWithin weeks she had enjoyed long car journeys for weekends away and was looking forward to longer trips for holidays.\r\n\r\n<span style=\"color: #008000;\"><strong>Contact us today to arrange your free phone anxiety consultation.</strong></span>\r\n<strong><span style=\"color: #ff6600;\"><em>Call 07568 455 809 now</em></span></strong> or <strong><em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Book Your Consultation Online Here</a>.</span></em></strong>\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy has a <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">Facebook Group here with details of Anxiety Workshops and Events</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-31 09:58:56','2019-05-31 09:58:56','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2942,1,'2019-05-31 09:59:55','2019-05-31 09:59:55','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<strong>Simply we help people to take control of anxiety treatment and counselling. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension. </strong><strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<iframe src=\"https://www.youtube.com/embed/Tg4ij_bPGxs\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr for\r\nAnxiety Treatment &amp; Counselling\r\n</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>5 Powerful Self-Help Tips To Ease Anxiety Symptoms</strong>\r\n</span></h4>\r\nLearn the powerful techniques our clients use to ease anxiety symptoms fast.\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is safe and you can leave the newsletter at any time.\r\n<h4><strong><span style=\"color: #008000;\">Good News!  You Have Choices</span>.</strong></h4>\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\r\nThis client had suffered from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often become stronger.\r\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\r\n\r\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety, symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\r\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\r\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\r\n\r\nAnxiety symptoms included digestive issues, muscle pains, tension headaches, worry and fear.\r\n\r\nWithin 2 weeks of starting the program the client was amused that she was now fascinated by wasps and bees.\r\nShe was now keen to watch TV programs about insects and had bought books on the subject.\r\nIn the final session, she reported she now enjoyed life and work and her husband was amazed at the changes.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\r\n</strong></h4>\r\nThis client was experiencing severe worry when a journey in the car or bus were expected.\r\nAnxiety drugs had resulted in side effects and did not help with the issue.\r\nAnxiety symptoms included several repeated visits to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occasions if a car journey was needed.\r\n\r\nThe client reported major improvements the following morning after her first session.\r\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\r\nWithin weeks she had enjoyed long car journeys for weekends away and was looking forward to longer trips for holidays.\r\n\r\n<span style=\"color: #008000;\"><strong>Contact us today to arrange your free phone anxiety consultation.</strong></span>\r\n<strong><span style=\"color: #ff6600;\"><em>Call 07568 455 809 now</em></span></strong> or <strong><em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Book Your Consultation Online Here</a>.</span></em></strong>\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy has a <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">Facebook Group here with details of Anxiety Workshops and Events</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-31 09:59:55','2019-05-31 09:59:55','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2943,1,'2019-05-31 10:35:20','2019-05-31 10:35:20','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in\r\nNewcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<strong>Simply we help people to take control with anxiety treatment and counselling. We start by reducing your anxiety symptoms of worry, fear, panic attacks, nervousness and tension. </strong><strong>We will then show you how to replace them, with feelings of self-control, strength, self-confidence, relaxation and calm.</strong>\r\n<iframe src=\"https://www.youtube.com/embed/Tg4ij_bPGxs\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Customer Feedback from an NHS Dr for\r\nAnxiety Treatment &amp; Counselling\r\n</strong></span></h4>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<p style=\"text-align: center;\"><span style=\"color: #008000;\">You can read more client testimonials &amp; anxiety case studies from our anxiety treatment &amp; counselling below.</span></p>\r\n\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>5 Powerful Self-Help Tips To Ease Anxiety Symptoms</strong>\r\n</span></h4>\r\nLearn the powerful techniques our clients use to ease anxiety symptoms fast.\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is safe and you can leave the newsletter at any time.\r\n<h4><strong><span style=\"color: #008000;\">Good News!  You Have Choices</span>.</strong></h4>\r\n<strong><span style=\"color: #ff6600;\">Choice One.</span></strong> You can continue to live with your anxiety problems.\r\nVery often anxiety symptoms will get worse, making you feel awful, affecting the people around you and your work. Anxiety can affect your physical health, your mental health, your relationships and much more.\r\n\r\n<strong><span style=\"color: #ff6600;\">Choice Two.</span></strong> You can <em>make the decision today</em> to move forward and take control.\r\n<em>Taking that first step</em> has helped many people to start reducing anxiety problems and the improvements keep growing over time. <span style=\"color: #008000;\"><strong>Clients report they learn to</strong></span>\r\n<ul>\r\n 	<li><strong>stop anxiety attacks quickly</strong></li>\r\n 	<li><strong>recognise your anxiety triggers</strong></li>\r\n 	<li><strong>overcome worry and fear</strong></li>\r\n 	<li><strong>stop panic attacks</strong></li>\r\n 	<li><strong>relax deeply on demand</strong></li>\r\n 	<li><strong>replace anxiety feelings with a calm and wonderful relaxation</strong></li>\r\n 	<li><strong>improve self-confidence &amp; self-esteem</strong></li>\r\n 	<li><strong>control moods, depression &amp; stress</strong></li>\r\n 	<li><strong>enjoy life more and feel better</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling Free Consultation</span>\r\n</strong></h4>\r\nOur anxiety clients love their free phone consultation. This is your chance to speak with us over the phone and together we can examine your anxiety symptoms, triggers and moods. We can then discuss the options available to you and the type of results you can expect.\r\n\r\n<span style=\"color: #008000;\"><strong>To arrange your Free Phone Consultation</strong></span> <em>simply call</em> <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book your slot online here.</a></strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Steve</strong></span> <em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with anxiety were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling by Newcastle Hypnotherapy.</span></strong></h4>\r\nOur many clients tell us we very successful at helping people with a wide range of problems and mental health issues.\r\nTo help we have developed a range of sessions, programs and workshops for anxiety, stress, depression and change work.\r\nWe find it really helps to look at the many aspects of your life including your lifestyle, diet, nutrition, exercise and relationships.\r\nBy taking a holistic approach to anxiety problems, many anxiety clients find better results than medication or alternative therapies alone.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Anxiety Client Feedback by Joyce </strong></span><strong>“<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span></strong>\r\n<h4 style=\"text-align: left;\"><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling in Newcastle Upon Tyne, Northumberland &amp; Online</strong></span></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> offers anxiety help and support from various locations in the North East and by video online.\r\nOur main address in Newcastle is 31 <span class=\"LrzXr\">Station Rd, Wallsend, Newcastle upon Tyne, NE28 6SZ.\r\nWe also work from other therapy locations including Northumberland, South Shields, Seaton Delaval, Cramlington, Bedlington. We can usually work from a location suitable for you on request.</span>\r\n\r\n<strong>Newcastle Hypnotherapy Google Map for our Wallsend Practice.\r\n</strong>\r\n<iframe src=\"https://www.google.com/maps/d/u/0/embed?mid=1P1tzaHQXnVAz_rnB6WjhGjYkMnjZX2nR\" width=\"640\" height=\"480\"></iframe>\r\n\r\n&nbsp;\r\n\r\n<strong>Your next step is to <em>arrange your free anxiety consultation today</em> and discover how we can help you. </strong><em>Call <span style=\"color: #008000;\"><strong>07568 455 809</strong></span> today</em> or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Click Here</strong></a></span> to book your session online.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Client Feedback by Kris</strong>.</span> <em>“Mark is an excellent therapist.  He has worked with me on 2 separate issues and each time Mark really took the time to listen to my issues putting me at ease and explaining which of his techniques and approaches I would benefit from.  The first time we met he helped me to understand my self more in relation to a problem that my family had been experiencing.  He gave me some tools which helped with my stresses and greatly improved my communication with my family. I can now say this situation is MUCH better and something that I am no longer losing any sleep over.</em>\r\n\r\n<em>The second time that we met was the first of 2 hypnotherapy session which is my opinion </em>was<em> done very tactfully and skillfully and gave me results far beyond my expectations.  Mark again took the time to sort through the things that I was worried about and showed me the crux of the issue of being overwhelmed with the possibility of losing my home due to a legal issue (I thought it was about something else when I first contacted him). Mark helped me by showing me how to gain more clarity and calmness when dealing with the companies involved.  As a result of a MASSIVE reduction in my stress levels, many other parts of my life are now running a lot smoother and I am much happier in general.</em>\r\n\r\n<em>I have previously been a patient in NHS counselling before for months and months, and I am still impressed at how Mark’s work is still making such a huge difference in my life in such a short time.”</em>\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Treatment &amp; Counselling</strong> Questions</span><strong><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<h4><span style=\"color: #008000;\"><strong>How quickly will I see results for my anxiety problems?</strong></span></h4>\r\nMost people find their anxiety levels and symptoms drop significantly during &amp; after their first session. This continues over the following weeks as you learn to recognise your anxiety triggers, mood changes, symptoms and you practice the anxiety freedom techniques. Many clients report they become so good at this that anxiety is no longer an issue for them within a period of months.\r\nEvery anxiety client is different and we will give you an estimate when <em><strong><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">you book your free consultation</a></strong></em> and again after your first session.\r\n<h4><span style=\"color: #008000;\"><strong>Which types of anxiety will your treatment help?</strong></span></h4>\r\nWe have helped anxiety clients with many different types of anxiety including worry, fear, social anxiety, public anxiety, general anxiety disorder, chronic anxiety, public speaking anxiety, sexual anxiety, GAD, depression, stress and other anxiety disorders.\r\n<h4><span style=\"color: #008000;\"><strong>What are the symptoms of Anxiety Disorders?</strong></span></h4>\r\nAnxiety problems and symptoms can be very different for each person. They can include\r\n<ul>\r\n 	<li>Sleep problems</li>\r\n 	<li>Switching off at night</li>\r\n 	<li>Unable to relax</li>\r\n 	<li>Being afraid of the wrong things</li>\r\n 	<li>Becoming stressed easily</li>\r\n 	<li>Rapid breathing</li>\r\n 	<li>Difficulty focusing or thinking clearly about anything other than the thing you’re worried about</li>\r\n 	<li>Digestive problems</li>\r\n 	<li>Panic Attacks</li>\r\n 	<li>Bruxism and muscle clenching</li>\r\n 	<li>Reduced immune system</li>\r\n 	<li>Cold, sweaty, numb or tingling hands or feet</li>\r\n 	<li>Heart palpitations</li>\r\n 	<li>Dry mouth</li>\r\n 	<li>Nausea</li>\r\n 	<li>Excessive worry and fear</li>\r\n</ul>\r\n<strong><span style=\"color: #ff6600;\">Anxiety Client Feedback by LN - Newcastle upon Tyne</span>\r\n“Thank You. I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Which methods do you use to treat anxiety issues?</strong></span></h4>\r\nThis really depends on the client and the anxiety symptoms for each person.\r\nAnxiety clients find modern Clinical Hypnotherapy, Neuro-Linguistic Programming, Emotional Freedom Techniques, Mindfulness, Meditation, Self-Hypnosis and other techniques are very effective.\r\n<h4><span style=\"color: #008000;\"><strong>Are these anxiety treatment methods long lasting?</strong></span></h4>\r\nYes. We teach you to control your anxiety with special exercises and techniques. The more you practice these the easier they become. As soon as you experience an anxiety trigger or feeling you know to relax deeply and replace the anxiety feeling with calm, self-confidence, strength or a feeling you choose.\r\n<h4><span style=\"color: #008000;\"><strong>What are the benefits of Hypnosis &amp; NLP for anxiety?</strong></span></h4>\r\nHypnotherapy allows us to quickly modify the anxiety triggers, behaviours and habits to replace them with better responses. These can be feeling calm, comfortable, self-confidence and happiness.\r\n<h4><span style=\"color: #008000;\"><strong>Who can be affected by Anxiety?</strong></span></h4>\r\nOur anxiety clients come from every walk of life. We have helped many NHS professionals, business owners, parents, school teachers, shop workers, executives and many others. Anxiety can affect everyone and the key to success is to take control of your anxiety.\r\n<h4><span style=\"color: #008000;\"><strong>Is hypnosis the only way to deal with anxiety?</strong></span></h4>\r\nNo. Hypnosis and Self-Hypnosis are very useful tools that are often perfect for dealing with anxiety. Other modern techniques can be just as powerful. A good hypnotist will be experienced and trained in other techniques such as Neuro-linguistic programming (NLP), Emotional Freedom Technique (EFT), Mindfulness and more. If a client is resistant or uncomfortable with hypnotherapy we have plenty of other options to choose from.\r\n<h4><span style=\"color: #008000;\"><strong>Are diet and food important with anxiety?</strong></span></h4>\r\nYes, sometimes. Certain foods are thought to make anxiety worse. Food intolerances and allergies can also have an effect on mental health or anxiety. We do look at diet, nutrition, and lifestyle to see if improvements can be made to reduce anxiety and other problems.\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety becoming more common &amp; if so why?</strong></span></h4>\r\nAnxiety is becoming more common than it used to be and there are many thoughts on why this is. We know anxiety is simply a learned pattern or habit and easily picked up from others. Our current busy lifestyles, social media, TV &amp; news programming can also lead to increased anxiety. The good news is we can replace these patterns and habits with better ones and leave the anxiety symptoms behind.\r\n<h4><span style=\"color: #008000;\"><strong>Will premade hypnosis recordings help with anxiety?</strong></span></h4>\r\nThey may help with mild anxiety however, anxiety and anxiety triggers can be very different for every client we work with. Our clients do find excellent results with the anxiety program as we do tailor this to each individual client. As part of this program, we will create a personal hypnosis audio track just for you. By using this track on a regular basis you will usually experience faster results.\r\n<h4><strong><span style=\"color: #008000;\">Should I still take my anxiety medication?</span>\r\n</strong></h4>\r\nYes. We are unable to advise you on the use of your anxiety medication. The anxiety relief program will not affect your anxiety medication. Once your anxiety symptoms reduce and you feel confident, we would advise you speak to your doctor or GP about your anxiety medications. We are always happy to work with your doctor to achieve the best results for you.\r\n<h4><strong><span style=\"color: #008000;\">Will learning Self-Hypnosis help with anxiety?</span>\r\n</strong></h4>\r\nSelf-Hypnosis is very powerful for anxiety problems as it helps you to control your feelings. As part of the anxiety relief hypnosis program, we will teach you some great self-hypnosis skills. These will allow you to <em>take control of your anxiety</em> and to change your feelings as you wish.\r\nWe also run workshops and events to learn self-hypnosis. <a href=\"https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/\">Click Here To Learn More about these events.</a>\r\n\r\n<em><span style=\"color: #ff6600;\"><strong>Anxiety Client Feeback from Hayley</strong>.</span>\r\n</em><em>\"<strong>Since going to the self-hypnosis stress and anxiety workshop, I have noticed a positive change in how I feel. I feel more relaxed and happier in myself.\"</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How much do you charge for anxiety treatment?</span></strong></h4>\r\nEvery anxiety client is different and we do tailor our programs to the individual needs.\r\nUsually, for anxiety issues, a program of sessions and support is needed to bring the anxiety down quickly and then to replace it with better feelings. We can advise better on the various options <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">during your free consultation.</a>\r\n<h4><span style=\"color: #008000;\">Can you advise me on natural supplements for anxiety treatments?</span></h4>\r\nYes. There are a number of supplements, herbal medicines, vitamins &amp; minerals that are known to help anxiety symptoms. Our aim is to help you become anxiety free as quickly as possible and certain supplements can really help.\r\n<h4><strong><span style=\"color: #008000;\">Do breathing </span></strong><span style=\"color: #008000;\">exercises</span><strong><span style=\"color: #008000;\"> help with anxiety treatments? </span></strong></h4>\r\nCertainly, correct breathing exercises can really help as part of a program for anxiety treatment.\r\nAs part of your anxiety treatment program, we will look at which breathing exercises are comfortable for you.\r\n<h4><span style=\"color: #008000;\"><strong>What is my next step?</strong></span></h4>\r\nYour first step to beating your anxiety is <em>to arrange</em> your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong>Free phone session.</strong></a> Here we can discuss your anxiety issues and explore if the anxiety treatment program is the right method to <em>take charge of your anxiety</em>. You can have all of your questions answered and decide if you wish to go ahead <em>to take charge of your issues.\r\n</em><strong>Call 07568 455 809 today<em> to take your first steps.</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Will online video sessions help my anxiety?</span>\r\n</strong></h4>\r\nYes, they can. Quite a number of our anxiety clients work with us by online video. We can conduct your anxiety treatment program by video and the results can be just as successful. Do ask about this during your <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">free anxiety consultation.</a>\r\n<h4><span style=\"color: #008000;\"><strong>Is anxiety treatment &amp; counselling suitable for children?</strong></span></h4>\r\nYes, we do work with both children and adults for anxiety problems and the treatments work well for all groups.\r\n<h4><span style=\"color: #008000;\">What is anxiety &amp; why do I have it?</span></h4>\r\nThere are many professional views on anxiety and what the causes are. There are many valid causes of anxiety and psychology or psychiatry like to take time to examine these.\r\nWe prefer to teach you how to overcome your anxiety problems and feel better. For many clients, this is a faster way to resolve your anxiety symptoms and move forward with your life.\r\n\r\n<strong>Newcastle Hypnotherapy can help you with your anxiety &amp; stress issues wherever you are. We practice hypnotherapy and NLP  from several locations across the North East and also work online via video link.</strong>\r\n<ul>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/\">Wallsend, Newcastle upon Tyne</a></strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/\">Cramlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong><a href=\"https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/\">Bedlington, Northumberland</a>\r\n</strong></li>\r\n 	<li><strong>Newcastle City Centre</strong></li>\r\n 	<li><a href=\"https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/\"><strong>Seaton Delaval, Whitley Bay</strong></a></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #ff6600;\">5 Simple Tips To Reduce Anxiety &amp; Stress Yourself</span><span style=\"color: #008000;\">\r\n</span></strong></h4>\r\n<strong>Enter your details now to learn the 5 simple tips that can help fast.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nWe are GDPR compliant and your privacy is safe. You can unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\">Why is the <strong><em>Anxiety Treatment Program so effective?\r\n</em></strong></span></h4>\r\nWe look at all of the issues that may be causing your anxiety.\r\nWe look at a number of factors including your diet, nutrition, allergies, intolerances, exercise, lifestyle, and other factors.\r\nMany of our anxiety clients come to us after finding the NHS and traditional methods are not working for them.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Relief Made Easy.</span></strong></h4>\r\n<strong>We can <em>start</em> <em>working together</em> in a number of ways to start your anxiety treatment program, putting you back in control of anxiety.\r\n</strong>\r\n<ul>\r\n 	<li><strong>One to One Sessions</strong> to create a personalised program for anxiety relief</li>\r\n 	<li><strong>Anxiety Workshops</strong> to learn Self-Hypnosis for mild anxiety problems</li>\r\n 	<li><strong>Online Video Sessions</strong> in the comfort of your own home via your phone or pc</li>\r\n</ul>\r\n<span style=\"color: #008000;\"><strong>Call us on 07568 455 809 to discuss which of these options is best for you.</strong></span>\r\n<h4><strong><span style=\"color: #008000;\">How Does The Anxiety Treatment Program Work?</span></strong></h4>\r\nThe first thing we do is arrange a session to evaluate your anxiety and your anxiety symptoms, how strong it can be and which triggers bring on your anxiety.\r\nWe usually find anxiety is linked to a number of issues or triggers and we can tackle one issue at a time, starting with the most serious first. As we deal with each issue we also teach you self-hypnosis to replace the feelings of anxiety with feelings of relaxation and control.\r\nOnce we have dealt with the most serious issue the rest is usually easier to deal with.\r\n<h4><strong><span style=\"color: #008000;\">Can Anxiety Be Linked To Other Problems?</span></strong></h4>\r\nYes. It is very common that when we address other issues and challenges that often anxiety and stress are making things worse. For example, when clients are struggling with weight loss or trying to stop smoking, anxiety and stress can be making the issues much worse or hampering positive change. As a result, we often use techniques and tools to reduce stress and anxiety quickly while dealing with your chosen outcomes and it is better to feel relaxed and calm to help you achieve your goals. The anxiety relief hypnosis program will certainly help.\r\n\r\n<span style=\"color: #008000;\"><strong>Are you now ready to take charge of your Anxiety today and discover a life without anxiety?</strong></span>\r\n<span style=\"color: #008000;\"><strong>Call 07568 455 809 Today, For Your Free, Confidential Phone Consultation.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Client Feedback - Malcolm.</strong> <a href=\"http://www.newcastle-hypnotherapy.com/reveiws/\"><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></a>\r\n<h4><strong> </strong></h4>\r\n<h4 style=\"text-align: center;\"><strong><span style=\"color: #008000;\">Anxiety Treatment &amp; Counselling</span>\r\n<span style=\"color: #008000;\">Client Case Studies</span>\r\n</strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 1</span></strong></h4>\r\nThis client had suffered from severe anxiety symptoms for about 2 years and issues were becoming stronger over time. The client had rarely been to work for 6 months and was afraid of losing his job.\r\nAnxiety symptoms included digestive issues, lack of focus, worry, fear and sleep problems.\r\nCBT and anxiety medication had helped to begin with but quickly became ineffective.\r\n\r\nOn starting the program the client reported quickly the anxiety symptoms dropped by over 60% and they continued to reduce nicely over the coming weeks.\r\nWith regular practice, the client returned to work with more energy and enthusiasm than before without further problems.\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 2</strong></span></h4>\r\nThis client had suffered from mild anxiety for many years and anxiety medications had \"taken the edge off for periods of time. They repeatedly become less effective over time although the side effects often become stronger.\r\nAnxiety symptoms included nausea, panic attacks, sleep problems, severe headaches, sexual issues, stress and some depression.\r\n\r\nThe client quickly found the relaxation exercises helped dramatically, reporting nausea, headaches and sleep issues were now resolved. By the end of the program anxiety, symptoms were only brought on by severe stress at work at very difficult times. The client stated they could reduce this anxiety to nothing by using the relaxation techniques on demand.\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Anxiety Client Case Study 3</strong></span></h4>\r\nThis client reported anxiety issues when she thought about wasps and bees or saw them on TV.\r\nShe often was in a state of worry and fear, constantly thinking about these at work and at home. If she thought there was a wasp or bee in the room or bus she would have to go home and sleep after running away. The client now refused to go walking with her husband and feared this was putting a train on the relationship. She also passed this phobia onto her nice who was now also terrified of flying insects.\r\n\r\nAnxiety symptoms included digestive issues, muscle pains, tension headaches, worry and fear.\r\n\r\nWithin 2 weeks of starting the program the client was amused that she was now fascinated by wasps and bees.\r\nShe was now keen to watch TV programs about insects and had bought books on the subject.\r\nIn the final session, she reported she now enjoyed life and work and her husband was amazed at the changes.\r\n<h4><strong><span style=\"color: #008000;\">Anxiety Client Case Study 4</span>\r\n</strong></h4>\r\nThis client was experiencing severe worry when a journey in the car or bus were expected.\r\nAnxiety drugs had resulted in side effects and did not help with the issue.\r\nAnxiety symptoms included several repeated visits to the toilet per hour, constant worry, lack of appetite and sex drive. This issue was also causing arguments each week with her partner and she avoided social occasions if a car journey was needed.\r\n\r\nThe client reported major improvements the following morning after her first session.\r\nShe had enjoyed a trip out in the car for a meal just hours after the session and was keen to go out again that day.\r\nWithin weeks she had enjoyed long car journeys for weekends away and was looking forward to longer trips for holidays.\r\n\r\n<span style=\"color: #008000;\"><strong>Contact us today to arrange your free phone anxiety consultation.</strong></span>\r\n<strong><span style=\"color: #ff6600;\"><em>Call 07568 455 809 now</em></span></strong> or <strong><em><span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Book Your Consultation Online Here</a>.</span></em></strong>\r\n\r\n&nbsp;\r\n\r\nNewcastle Hypnotherapy has a <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">Facebook Group here with details of Anxiety Workshops and Events</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','ANXIETY TREATMENT & COUNSELLING','','inherit','closed','closed','','68-revision-v1','','','2019-05-31 10:35:20','2019-05-31 10:35:20','',68,'https://www.newcastle-hypnotherapy.com/68-revision-v1/',0,'revision','',0),(2944,1,'2019-06-02 11:33:33','2019-06-02 11:33:33','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2960 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" /></p>\r\n<strong>A Secret Workshop @ The Vault, Wallsend. 7.30 pm to 9.30 pm - 19th June\r\n</strong>\r\n<strong>Advance booking required - </strong><strong>£12\r\n</strong>\r\n\r\n<strong>Limited to 20 spaces only</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Do some people drain your energy, bring you down or suck the life out of you?\r\nhttps://www.youtube.com/watch?v=vxiz_NJZN2c&amp;t=23s\r\n</strong></span>\r\n\r\n<strong>Are you spending time around negative people who just frustrate you and make life miserable?</strong>\r\n\r\n<strong>Would you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?</strong>\r\n\r\n<strong>There are natural skills that caring, giving people use to protect themselves to stay healthy and centred.</strong>\r\n<h4><span style=\"color: #008000;\">This workshop can help those who</span></h4>\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>This workshop will help you to learn to</strong></span></h4>\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Learn Your Super Hero Skills &amp; Become A Hero</span></strong></h4>\r\nPlaces are limited to just 20 people. Book your place here.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/protection-empowerment-workshop-booking-page/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can learn more about our other events &amp; workshops by joining the newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can unsubscribe at any time.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy - One to one.</strong></span></h4>\r\nAs well as The Secret Workshops you can work with us individually for a wide range of issues.\r\nTo arrange a free 15 minute phone consultation simply call on 07568 455 809 or <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book online here</a></strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>The Secret Workshop Facebook Group</strong></span></h4>\r\nYou can also discuss our many workshops and learn about new events on <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><em><strong>The Facebook Group</strong></em></a></span>.\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Places are limited to just 20 people. Book your place here.</span></strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/protection-empowerment-workshop-booking-page/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills Workshop','','publish','closed','closed','','protection-empowerment-skills-workshop','','','2019-06-17 16:39:43','2019-06-17 16:39:43','',0,'https://www.newcastle-hypnotherapy.com/?page_id=2944',0,'page','',0),(2945,1,'2019-06-02 08:53:02','2019-06-02 08:53:02','&nbsp;\r\n\r\nDo some people drain your energy, bring you down or suck the life out of you?\r\n\r\nAre you spending time around negative people who just frustrate you and make life miserable?\r\n\r\nWould you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?\r\n\r\nThere are natural skills that caring, giving people use to protect themselves to stay healthy and centred.\r\n\r\nThis workshop can help those who\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\nThis workshop will help you to learn to\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 08:53:02','2019-06-02 08:53:02','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2946,1,'2019-06-02 09:04:12','2019-06-02 09:04:12','','Protection and empowerment skills workshop','','inherit','open','closed','','office-899352_960_720','','','2019-06-02 09:04:48','2019-06-02 09:04:48','',2944,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/office-899352_960_720.jpg',0,'attachment','image/jpeg',0),(2947,1,'2019-06-02 09:07:04','2019-06-02 09:07:04','&nbsp;\r\n\r\nDo some people drain your energy, bring you down or suck the life out of you?\r\n\r\nAre you spending time around negative people who just frustrate you and make life miserable?\r\n\r\nWould you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?\r\n\r\nThere are natural skills that caring, giving people use to protect themselves to stay healthy and centred.\r\n\r\nThis workshop can help those who\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\nThis workshop will help you to learn to\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"alignleft size-medium wp-image-2946\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/office-899352_960_720-259x300.jpg\" alt=\"Protection and empowerment skills workshop\" width=\"259\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 09:07:04','2019-06-02 09:07:04','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2948,1,'2019-06-02 10:20:07','2019-06-02 10:20:07','','Protection & Empowerment Skills Workshop','','inherit','open','closed','','heart-2081684_960_720','','','2019-06-02 10:20:52','2019-06-02 10:20:52','',2944,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/heart-2081684_960_720.jpg',0,'attachment','image/jpeg',0),(2949,1,'2019-06-02 10:20:59','2019-06-02 10:20:59','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-2948\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/heart-2081684_960_720-300x300.jpg\" alt=\"Protection &amp; Empowerment Skills Workshop\" width=\"300\" height=\"300\" /></p>\r\n\r\nDo some people drain your energy, bring you down or suck the life out of you?\r\n\r\nAre you spending time around negative people who just frustrate you and make life miserable?\r\n\r\nWould you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?\r\n\r\nThere are natural skills that caring, giving people use to protect themselves to stay healthy and centred.\r\n\r\nThis workshop can help those who\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\nThis workshop will help you to learn to\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"alignleft size-medium wp-image-2946\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/office-899352_960_720-259x300.jpg\" alt=\"Protection and empowerment skills workshop\" width=\"259\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 10:20:59','2019-06-02 10:20:59','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2950,1,'2019-06-02 10:24:08','2019-06-02 10:24:08','<p style=\"text-align: left;\"><img class=\"alignleft size-medium wp-image-2948\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/heart-2081684_960_720-300x300.jpg\" alt=\"Protection &amp; Empowerment Skills Workshop\" width=\"300\" height=\"300\" /></p>\r\nA Secret Workshop @ The Vault, Wallsend.\r\n7.30 pm to 9.30 pm\r\nHot drinks &amp; snacks included.\r\n\r\nAdvance booking required\r\n\r\nDo some people drain your energy, bring you down or suck the life out of you?\r\n\r\nAre you spending time around negative people who just frustrate you and make life miserable?\r\n\r\nWould you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?\r\n\r\nThere are natural skills that caring, giving people use to protect themselves to stay healthy and centred.\r\n\r\nThis workshop can help those who\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\nThis workshop will help you to learn to\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"alignleft size-medium wp-image-2946\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/office-899352_960_720-259x300.jpg\" alt=\"Protection and empowerment skills workshop\" width=\"259\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 10:24:08','2019-06-02 10:24:08','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2951,1,'2019-06-02 10:24:48','2019-06-02 10:24:48','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2948 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/heart-2081684_960_720-300x300.jpg\" alt=\"Protection &amp; Empowerment Skills Workshop\" width=\"300\" height=\"300\" /></p>\r\n<strong>A Secret Workshop @ The Vault, Wallsend.</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>Hot drinks &amp; snacks included.</strong>\r\n\r\n<strong>Advance booking required</strong>\r\n\r\nDo some people drain your energy, bring you down or suck the life out of you?\r\n\r\nAre you spending time around negative people who just frustrate you and make life miserable?\r\n\r\nWould you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?\r\n\r\nThere are natural skills that caring, giving people use to protect themselves to stay healthy and centred.\r\n\r\nThis workshop can help those who\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\nThis workshop will help you to learn to\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"alignleft size-medium wp-image-2946\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/office-899352_960_720-259x300.jpg\" alt=\"Protection and empowerment skills workshop\" width=\"259\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 10:24:48','2019-06-02 10:24:48','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2952,1,'2019-06-02 10:26:25','2019-06-02 10:26:25','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2948 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/heart-2081684_960_720-300x300.jpg\" alt=\"Protection &amp; Empowerment Skills Workshop\" width=\"300\" height=\"300\" /></p>\r\n<strong> - A Secret Workshop @ The Vault, Wallsend.</strong>\r\n<strong>7.30 pm to 9.30 pm\r\n</strong>\r\n<strong> - Hot drinks &amp; snacks included.</strong>\r\n\r\n<strong>- Advance booking required\r\n\r\n£12 Early Bird Price or £20 after the 15th June\r\n</strong>\r\n\r\nDo some people drain your energy, bring you down or suck the life out of you?\r\n\r\nAre you spending time around negative people who just frustrate you and make life miserable?\r\n\r\nWould you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?\r\n\r\nThere are natural skills that caring, giving people use to protect themselves to stay healthy and centred.\r\n\r\nThis workshop can help those who\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\nThis workshop will help you to learn to\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"alignleft size-medium wp-image-2946\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/office-899352_960_720-259x300.jpg\" alt=\"Protection and empowerment skills workshop\" width=\"259\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 10:26:25','2019-06-02 10:26:25','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2953,1,'2019-06-02 10:27:15','2019-06-02 10:27:15','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2948 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/heart-2081684_960_720-300x300.jpg\" alt=\"Protection &amp; Empowerment Skills Workshop\" width=\"300\" height=\"300\" /></p>\r\n<strong> A Secret Workshop @ The Vault, Wallsend. </strong><strong>7.30 pm to 9.30 pm\r\n</strong>\r\n<strong> Hot drinks &amp; snacks included.</strong>\r\n\r\n<strong>Advance booking required</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">£12 Early Bird Price or £20 after the 15th June</span></strong>\r\n\r\nDo some people drain your energy, bring you down or suck the life out of you?\r\n\r\nAre you spending time around negative people who just frustrate you and make life miserable?\r\n\r\nWould you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?\r\n\r\nThere are natural skills that caring, giving people use to protect themselves to stay healthy and centred.\r\n\r\nThis workshop can help those who\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\nThis workshop will help you to learn to\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"alignleft size-medium wp-image-2946\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/office-899352_960_720-259x300.jpg\" alt=\"Protection and empowerment skills workshop\" width=\"259\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 10:27:15','2019-06-02 10:27:15','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2954,1,'2019-06-02 10:28:06','2019-06-02 10:28:06','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2948 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/heart-2081684_960_720-300x300.jpg\" alt=\"Protection &amp; Empowerment Skills Workshop\" width=\"300\" height=\"300\" /></p>\r\n<strong> A Secret Workshop @ The Vault, Wallsend. </strong><strong>7.30 pm to 9.30 pm\r\n</strong>\r\n<strong> Hot drinks &amp; snacks included.</strong>\r\n\r\n<strong>Advance booking required</strong>\r\n\r\n<strong>£12 Early Bird Price or £20 after the 15th June\r\n\r\nLimited to 20 spaces only</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDo some people drain your energy, bring you down or suck the life out of you?\r\n\r\nAre you spending time around negative people who just frustrate you and make life miserable?\r\n\r\nWould you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?\r\n\r\nThere are natural skills that caring, giving people use to protect themselves to stay healthy and centred.\r\n\r\nThis workshop can help those who\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\nThis workshop will help you to learn to\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"alignleft size-medium wp-image-2946\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/office-899352_960_720-259x300.jpg\" alt=\"Protection and empowerment skills workshop\" width=\"259\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 10:28:06','2019-06-02 10:28:06','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2955,1,'2019-06-02 10:29:06','2019-06-02 10:29:06','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2948 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/heart-2081684_960_720-300x300.jpg\" alt=\"Protection &amp; Empowerment Skills Workshop\" width=\"300\" height=\"300\" /></p>\r\n<strong> A Secret Workshop @ The Vault, Wallsend. </strong><strong>7.30 pm to 9.30 pm - 19 th June\r\n</strong>\r\n<strong> Hot drinks &amp; snacks included.</strong>\r\n\r\n<strong>Advance booking required</strong>\r\n\r\n<strong>£12 Early Bird Price or £20 after the 15th June</strong>\r\n\r\nLimited to 20 spaces only\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDo some people drain your energy, bring you down or suck the life out of you?\r\n\r\nAre you spending time around negative people who just frustrate you and make life miserable?\r\n\r\nWould you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?\r\n\r\nThere are natural skills that caring, giving people use to protect themselves to stay healthy and centred.\r\n\r\nThis workshop can help those who\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\nThis workshop will help you to learn to\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"alignleft size-medium wp-image-2946\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/office-899352_960_720-259x300.jpg\" alt=\"Protection and empowerment skills workshop\" width=\"259\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills Workshop','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 10:29:06','2019-06-02 10:29:06','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2956,1,'2019-06-02 10:29:22','2019-06-02 10:29:22','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2948 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/heart-2081684_960_720-300x300.jpg\" alt=\"Protection &amp; Empowerment Skills Workshop\" width=\"300\" height=\"300\" /></p>\r\n<strong> A Secret Workshop @ The Vault, Wallsend. </strong><strong>7.30 pm to 9.30 pm - 19 th June\r\n</strong>\r\n<strong>Hot drinks &amp; snacks included.</strong>\r\n\r\n<strong>Advance booking required</strong>\r\n\r\n<strong>£12 Early Bird Price or £20 after the 15th June</strong>\r\n\r\nLimited to 20 spaces only\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDo some people drain your energy, bring you down or suck the life out of you?\r\n\r\nAre you spending time around negative people who just frustrate you and make life miserable?\r\n\r\nWould you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?\r\n\r\nThere are natural skills that caring, giving people use to protect themselves to stay healthy and centred.\r\n\r\nThis workshop can help those who\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\nThis workshop will help you to learn to\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"alignleft size-medium wp-image-2946\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/office-899352_960_720-259x300.jpg\" alt=\"Protection and empowerment skills workshop\" width=\"259\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills Workshop','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 10:29:22','2019-06-02 10:29:22','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2957,1,'2019-06-02 10:29:47','2019-06-02 10:29:47','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2948 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/heart-2081684_960_720-300x300.jpg\" alt=\"Protection &amp; Empowerment Skills Workshop\" width=\"300\" height=\"300\" /></p>\r\n<strong> A Secret Workshop @ The Vault, Wallsend. </strong><strong>7.30 pm to 9.30 pm - 19 th June\r\n</strong>\r\n<strong>Hot drinks &amp; snacks included.</strong>\r\n\r\n<strong>Advance booking required</strong>\r\n\r\n<strong>£12 Early Bird Price or £20 after the 15th June</strong>\r\n\r\n<strong>Limited to 20 spaces only</strong>\r\n\r\n&nbsp;\r\n\r\nDo some people drain your energy, bring you down or suck the life out of you?\r\n\r\nAre you spending time around negative people who just frustrate you and make life miserable?\r\n\r\nWould you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?\r\n\r\nThere are natural skills that caring, giving people use to protect themselves to stay healthy and centred.\r\n\r\nThis workshop can help those who\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\nThis workshop will help you to learn to\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"alignleft size-medium wp-image-2946\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/office-899352_960_720-259x300.jpg\" alt=\"Protection and empowerment skills workshop\" width=\"259\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills Workshop','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 10:29:47','2019-06-02 10:29:47','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2958,1,'2019-06-02 10:30:30','2019-06-02 10:30:30','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2948 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/heart-2081684_960_720-300x300.jpg\" alt=\"Protection &amp; Empowerment Skills Workshop\" width=\"300\" height=\"300\" /></p>\r\n<strong> A Secret Workshop @ The Vault, Wallsend. 7.30 pm to 9.30 pm - 19 th June\r\n</strong>\r\n<strong>Hot drinks &amp; snacks included.</strong>\r\n\r\n<strong>Advance booking required</strong>\r\n\r\n<strong>£12 Early Bird Price or £20 after the 15th June</strong>\r\n\r\n<strong>Limited to 20 spaces only</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Do some people drain your energy, bring you down or suck the life out of you?</strong>\r\n\r\n<strong>Are you spending time around negative people who just frustrate you and make life miserable?</strong>\r\n\r\n<strong>Would you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?</strong>\r\n\r\n<strong>There are natural skills that caring, giving people use to protect themselves to stay healthy and centred.</strong>\r\n\r\nThis workshop can help those who\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\nThis workshop will help you to learn to\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"alignleft size-medium wp-image-2946\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/office-899352_960_720-259x300.jpg\" alt=\"Protection and empowerment skills workshop\" width=\"259\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills Workshop','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 10:30:30','2019-06-02 10:30:30','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2960,1,'2019-06-02 10:35:44','2019-06-02 10:35:44','','protection & empowerment skills 2','','inherit','open','closed','','protection-empowerment-skills-2','','','2019-06-02 10:35:44','2019-06-02 10:35:44','',2944,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2.jpg',0,'attachment','image/jpeg',0),(2959,1,'2019-06-02 10:34:03','2019-06-02 10:34:03','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2948 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/heart-2081684_960_720-300x300.jpg\" alt=\"Protection &amp; Empowerment Skills Workshop\" width=\"300\" height=\"300\" /></p>\r\n<strong> A Secret Workshop @ The Vault, Wallsend. 7.30 pm to 9.30 pm - 19 th June\r\n</strong>\r\n<strong>Hot drinks &amp; snacks included.</strong>\r\n\r\n<strong>Advance booking required</strong>\r\n\r\n<strong>£12 Early Bird Price or £20 after the 15th June</strong>\r\n\r\n<strong>Limited to 20 spaces only</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Do some people drain your energy, bring you down or suck the life out of you?</strong>\r\n\r\n<strong>Are you spending time around negative people who just frustrate you and make life miserable?</strong>\r\n\r\n<strong>Would you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?</strong>\r\n\r\n<strong>There are natural skills that caring, giving people use to protect themselves to stay healthy and centred.</strong>\r\n<h4><span style=\"color: #008000;\">This workshop can help those who</span></h4>\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>This workshop will help you to learn to</strong></span></h4>\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"alignleft size-medium wp-image-2946\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/office-899352_960_720-259x300.jpg\" alt=\"Protection and empowerment skills workshop\" width=\"259\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills Workshop','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 10:34:03','2019-06-02 10:34:03','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2961,1,'2019-06-02 10:43:41','2019-06-02 10:43:41','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2948 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/heart-2081684_960_720-300x300.jpg\" alt=\"Protection &amp; Empowerment Skills Workshop\" width=\"300\" height=\"300\" /></p>\r\n<strong> A Secret Workshop @ The Vault, Wallsend. 7.30 pm to 9.30 pm - 19th June\r\n</strong>\r\n<strong>Hot drinks &amp; snacks included.</strong>\r\n\r\n<strong>Advance booking required</strong>\r\n\r\n<strong>£12 Early Bird Price or £20 after the 15th June</strong>\r\n\r\n<strong>Limited to 20 spaces only</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Do some people drain your energy, bring you down or suck the life out of you?</strong>\r\n\r\n<strong>Are you spending time around negative people who just frustrate you and make life miserable?</strong>\r\n\r\n<strong>Would you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?</strong>\r\n\r\n<strong>There are natural skills that caring, giving people use to protect themselves to stay healthy and centred.</strong>\r\n<h4><span style=\"color: #008000;\">This workshop can help those who</span></h4>\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>This workshop will help you to learn to</strong></span></h4>\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"size-medium wp-image-2960 alignnone\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\n<h4><strong><span style=\"color: #008000;\">Learn Your Super Hero Skills &amp; Become A Hero</span></strong></h4>\r\nPlaces are limited to just 20 people. Book your place here.\r\n\r\n<img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can learn more about our other events &amp; workshops by joining the newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]</strong>','Protection & Empowerment Skills Workshop','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 10:43:41','2019-06-02 10:43:41','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2962,1,'2019-06-02 10:45:09','2019-06-02 10:45:09','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2948 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/heart-2081684_960_720-300x300.jpg\" alt=\"Protection &amp; Empowerment Skills Workshop\" width=\"300\" height=\"300\" /></p>\r\n<strong> A Secret Workshop @ The Vault, Wallsend. 7.30 pm to 9.30 pm - 19th June\r\n</strong>\r\n<strong>Hot drinks &amp; snacks included.</strong>\r\n\r\n<strong>Advance booking required</strong>\r\n\r\n<strong>£12 Early Bird Price or £20 after the 15th June</strong>\r\n\r\n<strong>Limited to 20 spaces only</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Do some people drain your energy, bring you down or suck the life out of you?</strong>\r\n\r\n<strong>Are you spending time around negative people who just frustrate you and make life miserable?</strong>\r\n\r\n<strong>Would you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?</strong>\r\n\r\n<strong>There are natural skills that caring, giving people use to protect themselves to stay healthy and centred.</strong>\r\n<h4><span style=\"color: #008000;\">This workshop can help those who</span></h4>\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>This workshop will help you to learn to</strong></span></h4>\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"size-medium wp-image-2960 alignnone\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\n<h4><strong><span style=\"color: #008000;\">Learn Your Super Hero Skills &amp; Become A Hero</span></strong></h4>\r\nPlaces are limited to just 20 people. Book your place here.\r\n\r\n<img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can learn more about our other events &amp; workshops by joining the newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can unsubscribe at any time.\r\n\r\n\r\n</strong>','Protection & Empowerment Skills Workshop','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 10:45:09','2019-06-02 10:45:09','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2963,1,'2019-06-02 10:50:04','2019-06-02 10:50:04','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2948 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/heart-2081684_960_720-300x300.jpg\" alt=\"Protection &amp; Empowerment Skills Workshop\" width=\"300\" height=\"300\" /></p>\r\n<strong> A Secret Workshop @ The Vault, Wallsend. 7.30 pm to 9.30 pm - 19th June\r\n</strong>\r\n<strong>Hot drinks &amp; snacks included.</strong>\r\n\r\n<strong>Advance booking required</strong>\r\n\r\n<strong>£12 Early Bird Price or £20 after the 15th June</strong>\r\n\r\n<strong>Limited to 20 spaces only</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Do some people drain your energy, bring you down or suck the life out of you?</strong>\r\n\r\n<strong>Are you spending time around negative people who just frustrate you and make life miserable?</strong>\r\n\r\n<strong>Would you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?</strong>\r\n\r\n<strong>There are natural skills that caring, giving people use to protect themselves to stay healthy and centred.</strong>\r\n<h4><span style=\"color: #008000;\">This workshop can help those who</span></h4>\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>This workshop will help you to learn to</strong></span></h4>\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"size-medium wp-image-2960 alignnone\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\n<h4><strong><span style=\"color: #008000;\">Learn Your Super Hero Skills &amp; Become A Hero</span></strong></h4>\r\nPlaces are limited to just 20 people. Book your place here.\r\n\r\n<img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can learn more about our other events &amp; workshops by joining the newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can unsubscribe at any time.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy - One to one.</strong></span></h4>\r\nAs well as The Secret Workshops you can work with us individually for a wide range of issues.\r\nTo arrange a free 15 minute phone consultation simply call on 07568 455 809 or <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book online here</a></strong></span>\r\n\r\n&nbsp;','Protection & Empowerment Skills Workshop','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 10:50:04','2019-06-02 10:50:04','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2967,1,'2019-06-02 10:54:47','2019-06-02 10:54:47','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2960 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" /></p>\r\n<strong> A Secret Workshop @ The Vault, Wallsend. 7.30 pm to 9.30 pm - 19th June\r\n</strong>\r\n<strong>Advance booking required - </strong><strong>£12 Early Bird Price or £20 after the 15th June</strong>\r\n\r\n<strong>Limited to 20 spaces only</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Do some people drain your energy, bring you down or suck the life out of you?</strong>\r\n\r\n<strong>Are you spending time around negative people who just frustrate you and make life miserable?</strong>\r\n\r\n<strong>Would you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?</strong>\r\n\r\n<strong>There are natural skills that caring, giving people use to protect themselves to stay healthy and centred.</strong>\r\n<h4><span style=\"color: #008000;\">This workshop can help those who</span></h4>\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>This workshop will help you to learn to</strong></span></h4>\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"size-medium wp-image-2960 alignnone\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\n<h4><strong><span style=\"color: #008000;\">Learn Your Super Hero Skills &amp; Become A Hero</span></strong></h4>\r\nPlaces are limited to just 20 people. Book your place here.\r\n\r\n<img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can learn more about our other events &amp; workshops by joining the newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can unsubscribe at any time.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy - One to one.</strong></span></h4>\r\nAs well as The Secret Workshops you can work with us individually for a wide range of issues.\r\nTo arrange a free 15 minute phone consultation simply call on 07568 455 809 or <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book online here</a></strong></span>\r\n\r\nThe Secret Workshop Facebook Group\r\n\r\nYou can also discuss our many workshops and learn about new events on <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><em><strong>The Facebook Group</strong></em></a></span>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills Workshop','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 10:54:47','2019-06-02 10:54:47','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2964,1,'2019-06-02 10:53:00','2019-06-02 10:53:00','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2948 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/heart-2081684_960_720-300x300.jpg\" alt=\"Protection &amp; Empowerment Skills Workshop\" width=\"300\" height=\"300\" /></p>\r\n<strong> A Secret Workshop @ The Vault, Wallsend. 7.30 pm to 9.30 pm - 19th June\r\n</strong>\r\n<strong>Hot drinks &amp; snacks included.</strong>\r\n\r\n<strong>Advance booking required</strong>\r\n\r\n<strong>£12 Early Bird Price or £20 after the 15th June</strong>\r\n\r\n<strong>Limited to 20 spaces only</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Do some people drain your energy, bring you down or suck the life out of you?</strong>\r\n\r\n<strong>Are you spending time around negative people who just frustrate you and make life miserable?</strong>\r\n\r\n<strong>Would you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?</strong>\r\n\r\n<strong>There are natural skills that caring, giving people use to protect themselves to stay healthy and centred.</strong>\r\n<h4><span style=\"color: #008000;\">This workshop can help those who</span></h4>\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>This workshop will help you to learn to</strong></span></h4>\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"size-medium wp-image-2960 alignnone\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\n<h4><strong><span style=\"color: #008000;\">Learn Your Super Hero Skills &amp; Become A Hero</span></strong></h4>\r\nPlaces are limited to just 20 people. Book your place here.\r\n\r\n<img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can learn more about our other events &amp; workshops by joining the newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can unsubscribe at any time.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy - One to one.</strong></span></h4>\r\nAs well as The Secret Workshops you can work with us individually for a wide range of issues.\r\nTo arrange a free 15 minute phone consultation simply call on 07568 455 809 or <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book online here</a></strong></span>\r\n\r\nThe Secret Workshop Facebook Group\r\n\r\nYou can also discuss our many workshops and learn about new events on <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><em><strong>The Facebook Group</strong></em></a></span>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills Workshop','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 10:53:00','2019-06-02 10:53:00','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2965,1,'2019-06-02 10:53:29','2019-06-02 10:53:29','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2960 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" /></p>\r\n<strong> A Secret Workshop @ The Vault, Wallsend. 7.30 pm to 9.30 pm - 19th June\r\n</strong>\r\n<strong>Hot drinks &amp; snacks included.</strong>\r\n\r\n<strong>Advance booking required</strong>\r\n\r\n<strong>£12 Early Bird Price or £20 after the 15th June</strong>\r\n\r\n<strong>Limited to 20 spaces only</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Do some people drain your energy, bring you down or suck the life out of you?</strong>\r\n\r\n<strong>Are you spending time around negative people who just frustrate you and make life miserable?</strong>\r\n\r\n<strong>Would you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?</strong>\r\n\r\n<strong>There are natural skills that caring, giving people use to protect themselves to stay healthy and centred.</strong>\r\n<h4><span style=\"color: #008000;\">This workshop can help those who</span></h4>\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>This workshop will help you to learn to</strong></span></h4>\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"size-medium wp-image-2960 alignnone\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\n<h4><strong><span style=\"color: #008000;\">Learn Your Super Hero Skills &amp; Become A Hero</span></strong></h4>\r\nPlaces are limited to just 20 people. Book your place here.\r\n\r\n<img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can learn more about our other events &amp; workshops by joining the newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can unsubscribe at any time.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy - One to one.</strong></span></h4>\r\nAs well as The Secret Workshops you can work with us individually for a wide range of issues.\r\nTo arrange a free 15 minute phone consultation simply call on 07568 455 809 or <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book online here</a></strong></span>\r\n\r\nThe Secret Workshop Facebook Group\r\n\r\nYou can also discuss our many workshops and learn about new events on <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><em><strong>The Facebook Group</strong></em></a></span>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills Workshop','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 10:53:29','2019-06-02 10:53:29','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2966,1,'2019-06-02 10:54:06','2019-06-02 10:54:06','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2960 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" /></p>\r\n<strong> A Secret Workshop @ The Vault, Wallsend. 7.30 pm to 9.30 pm - 19th June\r\n</strong>\r\n<strong>Hot drinks &amp; snacks included.</strong>\r\n\r\n<strong>Advance booking required - </strong><strong>£12 Early Bird Price or £20 after the 15th June</strong>\r\n\r\n<strong>Limited to 20 spaces only</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Do some people drain your energy, bring you down or suck the life out of you?</strong>\r\n\r\n<strong>Are you spending time around negative people who just frustrate you and make life miserable?</strong>\r\n\r\n<strong>Would you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?</strong>\r\n\r\n<strong>There are natural skills that caring, giving people use to protect themselves to stay healthy and centred.</strong>\r\n<h4><span style=\"color: #008000;\">This workshop can help those who</span></h4>\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>This workshop will help you to learn to</strong></span></h4>\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"size-medium wp-image-2960 alignnone\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\n<h4><strong><span style=\"color: #008000;\">Learn Your Super Hero Skills &amp; Become A Hero</span></strong></h4>\r\nPlaces are limited to just 20 people. Book your place here.\r\n\r\n<img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can learn more about our other events &amp; workshops by joining the newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can unsubscribe at any time.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy - One to one.</strong></span></h4>\r\nAs well as The Secret Workshops you can work with us individually for a wide range of issues.\r\nTo arrange a free 15 minute phone consultation simply call on 07568 455 809 or <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book online here</a></strong></span>\r\n\r\nThe Secret Workshop Facebook Group\r\n\r\nYou can also discuss our many workshops and learn about new events on <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><em><strong>The Facebook Group</strong></em></a></span>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills Workshop','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 10:54:06','2019-06-02 10:54:06','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2968,1,'2019-06-02 10:55:08','2019-06-02 10:55:08','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2960 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" /></p>\r\n<strong>A Secret Workshop @ The Vault, Wallsend. 7.30 pm to 9.30 pm - 19th June\r\n</strong>\r\n<strong>Advance booking required - </strong><strong>£12 Early Bird Price or £20 after the 15th June</strong>\r\n\r\n<strong>Limited to 20 spaces only</strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Do some people drain your energy, bring you down or suck the life out of you?</strong>\r\n\r\n<strong>Are you spending time around negative people who just frustrate you and make life miserable?</strong>\r\n\r\n<strong>Would you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?</strong>\r\n\r\n<strong>There are natural skills that caring, giving people use to protect themselves to stay healthy and centred.</strong>\r\n<h4><span style=\"color: #008000;\">This workshop can help those who</span></h4>\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>This workshop will help you to learn to</strong></span></h4>\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"size-medium wp-image-2960 alignnone\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\n<h4><strong><span style=\"color: #008000;\">Learn Your Super Hero Skills &amp; Become A Hero</span></strong></h4>\r\nPlaces are limited to just 20 people. Book your place here.\r\n\r\n<img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can learn more about our other events &amp; workshops by joining the newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can unsubscribe at any time.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy - One to one.</strong></span></h4>\r\nAs well as The Secret Workshops you can work with us individually for a wide range of issues.\r\nTo arrange a free 15 minute phone consultation simply call on 07568 455 809 or <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book online here</a></strong></span>\r\n\r\nThe Secret Workshop Facebook Group\r\n\r\nYou can also discuss our many workshops and learn about new events on <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><em><strong>The Facebook Group</strong></em></a></span>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills Workshop','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 10:55:08','2019-06-02 10:55:08','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2969,1,'2019-06-02 10:55:36','2019-06-02 10:55:36','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2960 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" /></p>\r\n<strong>A Secret Workshop @ The Vault, Wallsend. 7.30 pm to 9.30 pm - 19th June\r\n</strong>\r\n<strong>Advance booking required - </strong><strong>£12 Early Bird Price or £20 after the 15th June</strong>\r\n\r\n<strong>Limited to 20 spaces only</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Do some people drain your energy, bring you down or suck the life out of you?</strong></span>\r\n\r\n<strong>Are you spending time around negative people who just frustrate you and make life miserable?</strong>\r\n\r\n<strong>Would you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?</strong>\r\n\r\n<strong>There are natural skills that caring, giving people use to protect themselves to stay healthy and centred.</strong>\r\n<h4><span style=\"color: #008000;\">This workshop can help those who</span></h4>\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>This workshop will help you to learn to</strong></span></h4>\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"size-medium wp-image-2960 alignnone\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\n<h4><strong><span style=\"color: #008000;\">Learn Your Super Hero Skills &amp; Become A Hero</span></strong></h4>\r\nPlaces are limited to just 20 people. Book your place here.\r\n\r\n<img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can learn more about our other events &amp; workshops by joining the newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can unsubscribe at any time.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy - One to one.</strong></span></h4>\r\nAs well as The Secret Workshops you can work with us individually for a wide range of issues.\r\nTo arrange a free 15 minute phone consultation simply call on 07568 455 809 or <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book online here</a></strong></span>\r\n\r\nThe Secret Workshop Facebook Group\r\n\r\nYou can also discuss our many workshops and learn about new events on <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><em><strong>The Facebook Group</strong></em></a></span>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills Workshop','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 10:55:36','2019-06-02 10:55:36','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2970,1,'2019-06-02 10:56:26','2019-06-02 10:56:26','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2960 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" /></p>\r\n<strong>A Secret Workshop @ The Vault, Wallsend. 7.30 pm to 9.30 pm - 19th June\r\n</strong>\r\n<strong>Advance booking required - </strong><strong>£12 Early Bird Price or £20 after the 15th June</strong>\r\n\r\n<strong>Limited to 20 spaces only</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Do some people drain your energy, bring you down or suck the life out of you?</strong></span>\r\n\r\n<strong>Are you spending time around negative people who just frustrate you and make life miserable?</strong>\r\n\r\n<strong>Would you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?</strong>\r\n\r\n<strong>There are natural skills that caring, giving people use to protect themselves to stay healthy and centred.</strong>\r\n<h4><span style=\"color: #008000;\">This workshop can help those who</span></h4>\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>This workshop will help you to learn to</strong></span></h4>\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"size-medium wp-image-2960 alignnone\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\n<h4><strong><span style=\"color: #008000;\">Learn Your Super Hero Skills &amp; Become A Hero</span></strong></h4>\r\nPlaces are limited to just 20 people. Book your place here.\r\n\r\n<img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can learn more about our other events &amp; workshops by joining the newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can unsubscribe at any time.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy - One to one.</strong></span></h4>\r\nAs well as The Secret Workshops you can work with us individually for a wide range of issues.\r\nTo arrange a free 15 minute phone consultation simply call on 07568 455 809 or <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book online here</a></strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>The Secret Workshop Facebook Group</strong></span></h4>\r\nYou can also discuss our many workshops and learn about new events on <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><em><strong>The Facebook Group</strong></em></a></span>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills Workshop','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 10:56:26','2019-06-02 10:56:26','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2971,1,'2019-06-02 11:27:01','2019-06-02 11:27:01','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2960 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" /></p>\r\n<strong>A Secret Workshop @ The Vault, Wallsend. 7.30 pm to 9.30 pm - 19th June\r\n</strong>\r\n<strong>Advance booking required - </strong><strong>£12 Early Bird Price or £20 after the 15th June</strong>\r\n\r\n<strong>Limited to 20 spaces only</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Do some people drain your energy, bring you down or suck the life out of you?</strong></span>\r\n\r\n<strong>Are you spending time around negative people who just frustrate you and make life miserable?</strong>\r\n\r\n<strong>Would you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?</strong>\r\n\r\n<strong>There are natural skills that caring, giving people use to protect themselves to stay healthy and centred.</strong>\r\n<h4><span style=\"color: #008000;\">This workshop can help those who</span></h4>\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>This workshop will help you to learn to</strong></span></h4>\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n<img class=\"size-medium wp-image-2960 alignnone\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\n<h4><strong><span style=\"color: #008000;\">Learn Your Super Hero Skills &amp; Become A Hero</span></strong></h4>\r\nPlaces are limited to just 20 people. Book your place here.\r\n\r\n<img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can learn more about our other events &amp; workshops by joining the newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can unsubscribe at any time.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy - One to one.</strong></span></h4>\r\nAs well as The Secret Workshops you can work with us individually for a wide range of issues.\r\nTo arrange a free 15 minute phone consultation simply call on 07568 455 809 or <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book online here</a></strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>The Secret Workshop Facebook Group</strong></span></h4>\r\nYou can also discuss our many workshops and learn about new events on <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><em><strong>The Facebook Group</strong></em></a></span>.\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Places are limited to just 20 people. Book your place here.</span></strong></h4>\r\n<img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills Workshop','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 11:27:01','2019-06-02 11:27:01','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2972,1,'2019-06-02 11:32:11','2019-06-02 11:32:11','<strong>Terms &amp; Conditions Of Booking.</strong>\r\n\r\n<strong>Bookings.</strong> Bookings are taken strictly on a first come first served basis and your booking is only secured once payment is complete.\r\n<strong>Booking In Advance.</strong> We ask everyone to book and pay in advance please as this reduces admin work and allows us to focus on the workshop in progress.\r\n<strong>Cancellations &amp; Refunds.</strong> If you are unable to attend you can transfer your place to someone else and it is helpful if you email us to let us know who you have transferred your place.\r\nWe do not offer refunds if you are unable to attend.','Protection & Empowerment Workshop Booking Page','<strong>Book your place for this workshop here.\r\n19th June 7.30 pm to 9.30 pm\r\n</strong>You have the option to pay by Card, PayPal or Bank Transfer.\r\nBooking by bank transfer must be completed within 30 mins.\r\nAvailability – Spaces are limited to just 20 people and bookings are strictly taken on a 1st come first served basis.','publish','closed','closed','','protection-empowerment-workshop-booking-page','','','2019-06-02 11:32:35','2019-06-02 11:32:35','',0,'https://www.newcastle-hypnotherapy.com/?post_type=product&#038;p=2972',0,'product','',0),(2984,1,'2019-06-17 15:44:23','2019-06-17 15:44:23','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2960 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" /></p>\r\n<strong>A Secret Workshop @ The Vault, Wallsend. 7.30 pm to 9.30 pm - 19th June\r\n</strong>\r\n<strong>Advance booking required - </strong><strong>£12\r\n</strong>\r\n\r\n<strong>Limited to 20 spaces only</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Do some people drain your energy, bring you down or suck the life out of you?</strong></span>\r\n\r\n<strong>Are you spending time around negative people who just frustrate you and make life miserable?</strong>\r\n\r\n<strong>Would you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?</strong>\r\n\r\n<strong>There are natural skills that caring, giving people use to protect themselves to stay healthy and centred.</strong>\r\n<h4><span style=\"color: #008000;\">This workshop can help those who</span></h4>\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>This workshop will help you to learn to</strong></span></h4>\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Learn Your Super Hero Skills &amp; Become A Hero</span></strong></h4>\r\nPlaces are limited to just 20 people. Book your place here.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/protection-empowerment-workshop-booking-page/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can learn more about our other events &amp; workshops by joining the newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can unsubscribe at any time.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy - One to one.</strong></span></h4>\r\nAs well as The Secret Workshops you can work with us individually for a wide range of issues.\r\nTo arrange a free 15 minute phone consultation simply call on 07568 455 809 or <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book online here</a></strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>The Secret Workshop Facebook Group</strong></span></h4>\r\nYou can also discuss our many workshops and learn about new events on <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><em><strong>The Facebook Group</strong></em></a></span>.\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Places are limited to just 20 people. Book your place here.</span></strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/protection-empowerment-workshop-booking-page/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills Workshop','','inherit','closed','closed','','2944-revision-v1','','','2019-06-17 15:44:23','2019-06-17 15:44:23','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2973,1,'2019-06-02 11:33:33','2019-06-02 11:33:33','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2960 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" /></p>\r\n<strong>A Secret Workshop @ The Vault, Wallsend. 7.30 pm to 9.30 pm - 19th June\r\n</strong>\r\n<strong>Advance booking required - </strong><strong>£12 Early Bird Price or £20 after the 15th June</strong>\r\n\r\n<strong>Limited to 20 spaces only</strong>\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Do some people drain your energy, bring you down or suck the life out of you?</strong></span>\r\n\r\n<strong>Are you spending time around negative people who just frustrate you and make life miserable?</strong>\r\n\r\n<strong>Would you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?</strong>\r\n\r\n<strong>There are natural skills that caring, giving people use to protect themselves to stay healthy and centred.</strong>\r\n<h4><span style=\"color: #008000;\">This workshop can help those who</span></h4>\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>This workshop will help you to learn to</strong></span></h4>\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Learn Your Super Hero Skills &amp; Become A Hero</span></strong></h4>\r\nPlaces are limited to just 20 people. Book your place here.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/protection-empowerment-workshop-booking-page/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can learn more about our other events &amp; workshops by joining the newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can unsubscribe at any time.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy - One to one.</strong></span></h4>\r\nAs well as The Secret Workshops you can work with us individually for a wide range of issues.\r\nTo arrange a free 15 minute phone consultation simply call on 07568 455 809 or <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book online here</a></strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>The Secret Workshop Facebook Group</strong></span></h4>\r\nYou can also discuss our many workshops and learn about new events on <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><em><strong>The Facebook Group</strong></em></a></span>.\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Places are limited to just 20 people. Book your place here.</span></strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/protection-empowerment-workshop-booking-page/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills Workshop','','inherit','closed','closed','','2944-revision-v1','','','2019-06-02 11:33:33','2019-06-02 11:33:33','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2974,1,'2019-06-02 13:30:04','2019-06-02 13:30:04','','anxiety-400x265','','inherit','open','closed','','anxiety-400x265','','','2019-06-02 13:30:04','2019-06-02 13:30:04','',2558,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/anxiety-400x265.jpg',0,'attachment','image/jpeg',0),(2977,1,'2019-06-02 20:06:48','2019-06-02 20:06:48','','Protection & Empowerment Skills Workshop 19th June','','publish','closed','closed','','2977','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=2977',26,'nav_menu_item','',0),(2978,1,'2019-06-02 23:42:58','2019-06-02 23:42:58','','Order &ndash; June 2, 2019 @ 11:42 PM','','wc-processing','open','closed','order_5cf45f026ccd8','order-jun-02-2019-1142-pm','','','2019-06-02 23:43:42','2019-06-02 23:43:42','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2978',0,'shop_order','',2),(2979,1,'2019-06-03 08:45:47','2019-06-03 08:45:47','','Order &ndash; June 3, 2019 @ 08:45 AM','','wc-processing','open','closed','order_5cf4de3b3e1d2','order-jun-03-2019-0845-am','','','2019-06-03 08:46:51','2019-06-03 08:46:51','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2979',0,'shop_order','',2),(2980,1,'2019-06-03 14:40:46','2019-06-03 14:40:46','','Order &ndash; June 3, 2019 @ 02:40 PM','','wc-processing','open','closed','order_5cf5316e093c8','order-jun-03-2019-0240-pm','','','2019-06-03 15:04:49','2019-06-03 15:04:49','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2980',0,'shop_order','',3),(2981,1,'2019-06-03 22:51:28','2019-06-03 22:51:28','','Order &ndash; June 3, 2019 @ 10:51 PM','','wc-processing','open','closed','order_5cf5a470cc761','order-jun-03-2019-1051-pm','','','2019-06-03 22:52:14','2019-06-03 22:52:14','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2981',0,'shop_order','',2),(2982,1,'2019-06-04 06:58:05','2019-06-04 06:58:05','','Order &ndash; June 4, 2019 @ 06:58 AM','','wc-processing','open','closed','order_5cf6167d8322e','order-jun-04-2019-0658-am','','','2019-06-04 06:58:57','2019-06-04 06:58:57','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2982',0,'shop_order','',2),(2983,1,'2019-06-05 21:12:48','2019-06-05 21:12:48','','Order &ndash; June 5, 2019 @ 09:12 PM','','wc-on-hold','open','closed','order_5cf8305077114','order-jun-05-2019-0912-pm','','','2019-06-05 21:12:48','2019-06-05 21:12:48','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2983',0,'shop_order','',1),(2985,1,'2019-06-17 15:44:52','2019-06-17 15:44:52','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2960 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" /></p>\r\n<strong>A Secret Workshop @ The Vault, Wallsend. 7.30 pm to 9.30 pm - 19th June\r\n</strong>\r\n<strong>Advance booking required - </strong><strong>£12\r\n</strong>\r\n\r\n<strong>Limited to 20 spaces only</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Do some people drain your energy, bring you down or suck the life out of you?</strong></span>\r\n\r\n<strong>Are you spending time around negative people who just frustrate you and make life miserable?</strong>\r\n\r\n<strong>Would you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?</strong>\r\n\r\n<strong>There are natural skills that caring, giving people use to protect themselves to stay healthy and centred.</strong>\r\n<h4><span style=\"color: #008000;\">This workshop can help those who</span></h4>\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>This workshop will help you to learn to</strong></span></h4>\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Learn Your Super Hero Skills &amp; Become A Hero</span></strong></h4>\r\nPlaces are limited to just 20 people. Book your place here.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/protection-empowerment-workshop-booking-page/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can learn more about our other events &amp; workshops by joining the newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can unsubscribe at any time.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy - One to one.</strong></span></h4>\r\nAs well as The Secret Workshops you can work with us individually for a wide range of issues.\r\nTo arrange a free 15 minute phone consultation simply call on 07568 455 809 or <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book online here</a></strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>The Secret Workshop Facebook Group</strong></span></h4>\r\nYou can also discuss our many workshops and learn about new events on <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><em><strong>The Facebook Group</strong></em></a></span>.\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Places are limited to just 20 people. Book your place here.</span></strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/protection-empowerment-workshop-booking-page/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills Workshop','','inherit','closed','closed','','2944-revision-v1','','','2019-06-17 15:44:52','2019-06-17 15:44:52','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2986,1,'2019-06-17 16:39:43','2019-06-17 16:39:43','<p style=\"text-align: left;\"><img class=\"alignleft wp-image-2960 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/protection-empowerment-skills-2-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" /></p>\r\n<strong>A Secret Workshop @ The Vault, Wallsend. 7.30 pm to 9.30 pm - 19th June\r\n</strong>\r\n<strong>Advance booking required - </strong><strong>£12\r\n</strong>\r\n\r\n<strong>Limited to 20 spaces only</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Do some people drain your energy, bring you down or suck the life out of you?\r\nhttps://www.youtube.com/watch?v=vxiz_NJZN2c&amp;t=23s\r\n</strong></span>\r\n\r\n<strong>Are you spending time around negative people who just frustrate you and make life miserable?</strong>\r\n\r\n<strong>Would you like to learn the skills to protect yourself from negative behaviour, attitudes and energy?</strong>\r\n\r\n<strong>There are natural skills that caring, giving people use to protect themselves to stay healthy and centred.</strong>\r\n<h4><span style=\"color: #008000;\">This workshop can help those who</span></h4>\r\n<ul>\r\n 	<li>are caring for others</li>\r\n 	<li>have an empathetic personality</li>\r\n 	<li>experience an energy drain around negative people</li>\r\n 	<li>work as a healer or counseller</li>\r\n 	<li>suffer from burnout easily</li>\r\n 	<li>struggle with awkward family members</li>\r\n 	<li>feel bullied or intimidated by others</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>This workshop will help you to learn to</strong></span></h4>\r\n<ul>\r\n 	<li>become more resilient</li>\r\n 	<li>develop a positive, protective mindset</li>\r\n 	<li>stop others draining your energy</li>\r\n 	<li>mentally step back when needed</li>\r\n 	<li>control your mental states</li>\r\n 	<li>avoid arguments</li>\r\n 	<li>improve your self-confidence &amp; self-esteem</li>\r\n 	<li>increase your energy on demand</li>\r\n 	<li>quickly let go of frustration &amp; problems</li>\r\n 	<li>keep your mind clear and focused</li>\r\n 	<li>give as you need to while protecting yourself</li>\r\n 	<li>use your natural strengths to help people better</li>\r\n</ul>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Learn Your Super Hero Skills &amp; Become A Hero</span></strong></h4>\r\nPlaces are limited to just 20 people. Book your place here.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/protection-empowerment-workshop-booking-page/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can learn more about our other events &amp; workshops by joining the newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is always safe and you can unsubscribe at any time.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy - One to one.</strong></span></h4>\r\nAs well as The Secret Workshops you can work with us individually for a wide range of issues.\r\nTo arrange a free 15 minute phone consultation simply call on 07568 455 809 or <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">book online here</a></strong></span>\r\n<h4><span style=\"color: #008000;\"><strong>The Secret Workshop Facebook Group</strong></span></h4>\r\nYou can also discuss our many workshops and learn about new events on <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><em><strong>The Facebook Group</strong></em></a></span>.\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Places are limited to just 20 people. Book your place here.</span></strong></h4>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/protection-empowerment-workshop-booking-page/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Protection & Empowerment Skills Workshop','','inherit','closed','closed','','2944-revision-v1','','','2019-06-17 16:39:43','2019-06-17 16:39:43','',2944,'https://www.newcastle-hypnotherapy.com/2944-revision-v1/',0,'revision','',0),(2987,1,'2019-06-18 16:14:10','2019-06-18 16:14:10','','Order &ndash; June 18, 2019 @ 04:14 PM','dont have a printer. Tom gallagher. you just phoned me today. want to start going to all the workshops I can please. then lead with the hypnosis therapy for anxiety when money is sorted.','wc-on-hold','open','closed','order_5d090dd2275e1','order-jun-18-2019-0414-pm','','','2019-06-18 16:14:10','2019-06-18 16:14:10','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=2987',0,'shop_order','',1),(3131,1,'2019-07-06 18:32:33','2019-07-06 18:32:33','','Order &ndash; July 6, 2019 @ 06:32 PM','','wc-processing','open','closed','order_5d20e941c8e8d','order-jul-06-2019-0632-pm','','','2019-07-06 18:33:03','2019-07-06 18:33:03','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=3131',0,'shop_order','',2),(2989,1,'2019-06-26 19:19:52','2019-06-26 19:19:52','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>\r\nWednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12.50 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nhttps://www.youtube.com/watch?v=4xN-Fxqmbuw\r\n\r\n<span style=\"color: #008000;\"><strong>Feedback &amp; Reviews Are Below</strong></span>\r\n\r\n<strong>Hello everyone,\r\nover the last few months I have been asked how do we increase our emotional &amp; mental strengths?</strong><strong>There are a number of aspects to both and the first thing to do is to recognise our current strengths.</strong>\r\n\r\nWe all have a number of unconscious strengths, skills and abilities that can really help us in life.\r\n<div class=\"text_exposed_show\">\r\n\r\nAs part of this workshop, we will unlock these strengths, make you more aware of them and then look at how we can adapt and use them for the future.\r\n\r\nMost people are quite shocked when they discover and realise how powerful these skills make them.\r\nThese skills are usually transferable and adaptable to many areas of our lives.\r\n\r\nOnce we recognise these natural, hidden skills we can then switch them on, on demand and also look at how we can improve them as needed.\r\n\r\nThis gives is a very strong skill set, allowing us to be much stronger emotionally &amp; mentally, improving what we do &amp; how we do it, to the best of our abilities.\r\n\r\nOur next workshop will show you how to discover these unconscious skills and how to use them to improve your emotional and mental strengths.\r\n\r\nYou can book your place by clicking the link below.\r\nI look forward to seeing you all and sharing these powerful techniques with you all.\r\n\r\n</div>\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/ems/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"615\" height=\"296\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><a href=\"https://www.newcastle-hypnotherapy.com/product/ems/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a></h4>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','publish','closed','closed','','the-secrets-of-emotional-strength','','','2019-06-29 15:18:21','2019-06-29 15:18:21','',0,'https://www.newcastle-hypnotherapy.com/?page_id=2989',0,'page','',0),(2990,1,'2019-06-26 17:35:57','2019-06-26 17:35:57','Wednesday 10th July\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend\r\n£12 Early Bird Price\r\nAdvance booking only\r\n\r\n&nbsp;\r\n\r\n&nbsp;','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 17:35:57','2019-06-26 17:35:57','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(2991,1,'2019-06-26 17:41:17','2019-06-26 17:41:17','Wednesday 10th July\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend\r\n£12 Early Bird Price\r\nAdvance booking only\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice something you can be good at.\r\n\r\n&nbsp;','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 17:41:17','2019-06-26 17:41:17','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(2992,1,'2019-06-26 18:09:31','2019-06-26 18:09:31','Wednesday 10th July\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend\r\n£12 Early Bird Price\r\nAdvance booking only\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something you can be good at.\r\n\r\nDuring this workshop you will learn to\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\nMoving forward for a better future we will explore how to\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\nWho will this workshop help?\r\n\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those those looking to reduce anxiety, stress and those looking for a calmer life.\r\n\r\nLearn The Secrets Of Emotional Strength\r\n\r\nAs with all of The Secret Workshops you can enjoy simple to learn skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for thse workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 18:09:31','2019-06-26 18:09:31','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(2993,1,'2019-06-26 18:10:45','2019-06-26 18:10:45','Wednesday 10th July\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend\r\n£12 Early Bird Price\r\nAdvance booking only\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something you can be good at.\r\n\r\nDuring this workshop, you will learn to\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\nMoving forward for a better future we will explore how to\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\nWho will this workshop help?\r\n\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n\r\nLearn The Secrets Of Emotional Strength\r\n\r\nAs with all of The Secret Workshops you can enjoy simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 18:10:45','2019-06-26 18:10:45','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(2994,1,'2019-06-26 18:42:48','2019-06-26 18:42:48','','The Secrets Of Emotional Strength','','inherit','open','closed','','lnh','','','2019-06-26 18:43:26','2019-06-26 18:43:26','',2989,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh.jpg',0,'attachment','image/jpeg',0),(2995,1,'2019-06-26 18:43:42','2019-06-26 18:43:42','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" />Wednesday 10th July\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend\r\n£12 Early Bird Price\r\nAdvance booking only\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something you can be good at.\r\n\r\nDuring this workshop, you will learn to\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\nMoving forward for a better future we will explore how to\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\nWho will this workshop help?\r\n\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n\r\nLearn The Secrets Of Emotional Strength\r\n\r\nAs with all of The Secret Workshops you can enjoy simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 18:43:42','2019-06-26 18:43:42','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(2996,1,'2019-06-26 18:44:47','2019-06-26 18:44:47','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>Wednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something you can be good at.\r\n\r\nDuring this workshop, you will learn to\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\nMoving forward for a better future we will explore how to\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\nWho will this workshop help?\r\n\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n\r\nLearn The Secrets Of Emotional Strength\r\n\r\nAs with all of The Secret Workshops you can enjoy simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 18:44:47','2019-06-26 18:44:47','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(2997,1,'2019-06-26 18:45:12','2019-06-26 18:45:12','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>Wednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something you can be good at.\r\n\r\nDuring this workshop, you will learn to\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\nMoving forward for a better future we will explore how to\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\nWho will this workshop help?\r\n\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n\r\nLearn The Secrets Of Emotional Strength\r\n\r\nAs with all of The Secret Workshops you can enjoy simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 18:45:12','2019-06-26 18:45:12','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(2998,1,'2019-06-26 18:45:27','2019-06-26 18:45:27','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>Wednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something you can be good at.\r\n\r\nDuring this workshop, you will learn to\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\nMoving forward for a better future we will explore how to\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\nWho will this workshop help?\r\n\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n\r\nLearn The Secrets Of Emotional Strength\r\n\r\nAs with all of The Secret Workshops you can enjoy simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 18:45:27','2019-06-26 18:45:27','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(2999,1,'2019-06-26 18:46:06','2019-06-26 18:46:06','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>Wednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n\r\nDuring this workshop, you will learn to\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\nMoving forward for a better future we will explore how to\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\nWho will this workshop help?\r\n\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n\r\nLearn The Secrets Of Emotional Strength\r\n\r\nAs with all of The Secret Workshops you can enjoy simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 18:46:06','2019-06-26 18:46:06','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3000,1,'2019-06-26 18:46:56','2019-06-26 18:46:56','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>Wednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span>\r\n\r\nDuring this workshop, you will learn to</h4>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\nMoving forward for a better future we will explore how to\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\nWho will this workshop help?\r\n\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n\r\nLearn The Secrets Of Emotional Strength\r\n\r\nAs with all of The Secret Workshops you can enjoy simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 18:46:56','2019-06-26 18:46:56','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3001,1,'2019-06-26 18:47:19','2019-06-26 18:47:19','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>Wednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n&nbsp;\r\n\r\nDuring this workshop, you will learn to\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\nMoving forward for a better future we will explore how to\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\nWho will this workshop help?\r\n\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n\r\nLearn The Secrets Of Emotional Strength\r\n\r\nAs with all of The Secret Workshops you can enjoy simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 18:47:19','2019-06-26 18:47:19','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3002,1,'2019-06-26 18:47:43','2019-06-26 18:47:43','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>Wednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\nMoving forward for a better future we will explore how to\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\nWho will this workshop help?\r\n\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n\r\nLearn The Secrets Of Emotional Strength\r\n\r\nAs with all of The Secret Workshops you can enjoy simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 18:47:43','2019-06-26 18:47:43','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3003,1,'2019-06-26 18:48:52','2019-06-26 18:48:52','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>Wednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n\r\nLearn The Secrets Of Emotional Strength\r\n\r\nAs with all of The Secret Workshops you can enjoy simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 18:48:52','2019-06-26 18:48:52','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3004,1,'2019-06-26 19:01:38','2019-06-26 19:01:38','','newcastle hypnotherapy feedback','','inherit','open','closed','','alit','','','2019-06-26 19:01:59','2019-06-26 19:01:59','',2989,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg',0,'attachment','image/jpeg',0),(3005,1,'2019-06-26 19:02:23','2019-06-26 19:02:23','','Newcastle Hypnotherapy workshops and events','','inherit','open','closed','','tomt','','','2019-06-30 14:18:45','2019-06-30 14:18:45','',2989,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg',0,'attachment','image/jpeg',0),(3006,1,'2019-06-26 19:03:00','2019-06-26 19:03:00','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>Wednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"color: #008000;\"><strong>Recent Feedback\r\n<img class=\"alignleft size-medium wp-image-3004\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit-300x157.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"300\" height=\"157\" /></strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-3005\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt-300x144.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"300\" height=\"144\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:03:00','2019-06-26 19:03:00','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3007,1,'2019-06-26 19:03:44','2019-06-26 19:03:44','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>Wednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft size-medium wp-image-3004\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit-300x157.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"300\" height=\"157\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-3005\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt-300x144.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"300\" height=\"144\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:03:44','2019-06-26 19:03:44','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3008,1,'2019-06-26 19:05:32','2019-06-26 19:05:32','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>Wednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft size-medium wp-image-3004\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit-300x157.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"300\" height=\"157\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-3005\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt-300x144.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"300\" height=\"144\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:05:32','2019-06-26 19:05:32','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3009,1,'2019-06-26 19:07:07','2019-06-26 19:07:07','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>Wednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft size-medium wp-image-3004\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit-300x157.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"300\" height=\"157\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-3005\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt-300x144.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"300\" height=\"144\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\n\r\n&nbsp;\r\n\r\n&nbsp;','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:07:07','2019-06-26 19:07:07','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3010,1,'2019-06-26 19:13:38','2019-06-26 19:13:38','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>Wednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft size-medium wp-image-3004\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit-300x157.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"300\" height=\"157\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-3005\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt-300x144.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"300\" height=\"144\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n\r\n&nbsp;','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:13:38','2019-06-26 19:13:38','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3011,1,'2019-06-26 19:15:41','2019-06-26 19:15:41','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>Wednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft size-medium wp-image-3004\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit-300x157.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"300\" height=\"157\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-3005\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt-300x144.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"300\" height=\"144\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n\r\n&nbsp;','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:15:41','2019-06-26 19:15:41','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3012,1,'2019-06-26 19:17:30','2019-06-26 19:17:30','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>Wednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft size-medium wp-image-3004\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit-300x157.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"300\" height=\"157\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-3005\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt-300x144.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"300\" height=\"144\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div></div>\r\n<div class=\"header-custom-container\">\r\n\r\n<a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:17:30','2019-06-26 19:17:30','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3013,1,'2019-06-26 19:18:01','2019-06-26 19:18:01','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>Wednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft size-medium wp-image-3004\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit-300x157.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"300\" height=\"157\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-3005\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt-300x144.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"300\" height=\"144\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: left;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: left;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: left;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:18:01','2019-06-26 19:18:01','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3014,1,'2019-06-26 19:18:39','2019-06-26 19:18:39','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>Wednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft size-medium wp-image-3004\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit-300x157.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"300\" height=\"157\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-3005\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt-300x144.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"300\" height=\"144\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: left;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:18:39','2019-06-26 19:18:39','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3015,1,'2019-06-26 19:19:07','2019-06-26 19:19:07','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>Wednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft size-medium wp-image-3004\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit-300x157.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"300\" height=\"157\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-3005\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt-300x144.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"300\" height=\"144\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:19:07','2019-06-26 19:19:07','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3016,1,'2019-06-26 19:20:20','2019-06-26 19:20:20','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>\r\nWednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft size-medium wp-image-3004\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit-300x157.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"300\" height=\"157\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-3005\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt-300x144.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"300\" height=\"144\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:20:20','2019-06-26 19:20:20','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3017,1,'2019-06-26 19:21:11','2019-06-26 19:21:11','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>\r\nWednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft size-medium wp-image-3004\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit-300x157.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"300\" height=\"157\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-3005\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt-300x144.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"300\" height=\"144\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:21:11','2019-06-26 19:21:11','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3018,1,'2019-06-26 19:21:42','2019-06-26 19:21:42','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>\r\nWednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft size-medium wp-image-3004\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit-300x157.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"300\" height=\"157\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-3005\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt-300x144.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"300\" height=\"144\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:21:42','2019-06-26 19:21:42','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3019,1,'2019-06-26 19:22:20','2019-06-26 19:22:20','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>\r\nWednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-3005\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt-300x144.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"300\" height=\"144\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:22:20','2019-06-26 19:22:20','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3020,1,'2019-06-26 19:22:53','2019-06-26 19:22:53','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>\r\nWednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"615\" height=\"296\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:22:53','2019-06-26 19:22:53','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3021,1,'2019-06-26 19:23:20','2019-06-26 19:23:20','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>\r\nWednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"615\" height=\"296\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:23:20','2019-06-26 19:23:20','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3022,1,'2019-06-26 19:23:55','2019-06-26 19:23:55','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>\r\nWednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"615\" height=\"296\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:23:55','2019-06-26 19:23:55','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3023,1,'2019-06-26 19:24:21','2019-06-26 19:24:21','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>\r\nWednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"615\" height=\"296\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:24:21','2019-06-26 19:24:21','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3024,1,'2019-06-26 19:24:41','2019-06-26 19:24:41','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>\r\nWednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"615\" height=\"296\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n&nbsp;\r\n<h4></h4>\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:24:41','2019-06-26 19:24:41','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3025,1,'2019-06-26 19:25:08','2019-06-26 19:25:08','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>\r\nWednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"615\" height=\"296\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" />\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:25:08','2019-06-26 19:25:08','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3026,1,'2019-06-26 19:26:00','2019-06-26 19:26:00','<strong>Terms &amp; Conditions Of Booking.</strong>\r\n\r\n<strong>Bookings.</strong> Bookings are taken strictly on a first come first served basis and your booking is only secured once payment is complete.\r\n<strong>Booking In Advance.</strong> We ask everyone to book and pay in advance please as this reduces admin work and allows us to focus on the workshop in progress.\r\n<strong>Cancellations &amp; Refunds.</strong> If you are unable to attend you can transfer your place to someone else and it is helpful if you email us to let us know who you have transferred your place.\r\nWe do not offer refunds if you are unable to attend.','The Secrets Of Emotional Strength Workshop','<strong>Book your place for this workshop here.\r\n10th July 7.30 pm to 9.30 pm\r\n</strong>You have the option to pay by Card, PayPal or Bank Transfer.\r\nBooking by bank transfer must be completed within 30 mins.\r\nAvailability – Spaces are limited to just 20 people and bookings are strictly taken on a 1st come first served basis.','publish','closed','closed','','ems','','','2019-06-29 11:50:00','2019-06-29 11:50:00','',0,'https://www.newcastle-hypnotherapy.com/?post_type=product&#038;p=3026',0,'product','',0),(3027,1,'2019-06-29 15:17:54','2019-06-29 15:17:54','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>\nWednesday 10th July</strong>\n<strong>7.30 pm to 9.30 pm</strong>\n<strong>The Vault, Wallsend</strong>\n<strong>£12.50 Early Bird Price</strong>\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\n\n&nbsp;\n\n&nbsp;\n\nhttps://www.youtube.com/watch?v=4xN-Fxqmbuw\n\nFeedback &amp;\n\n<strong>Hello everyone,\nover the last few months I have been asked how do we increase our emotional &amp; mental strengths?</strong><strong>There are a number of aspects to both and the first thing to do is to recognise our current strengths.</strong>\n\nWe all have a number of unconscious strengths, skills and abilities that can really help us in life.\n<div class=\"text_exposed_show\">\n\nAs part of this workshop, we will unlock these strengths, make you more aware of them and then look at how we can adapt and use them for the future.\n\nMost people are quite shocked when they discover and realise how powerful these skills make them.\nThese skills are usually transferable and adaptable to many areas of our lives.\n\nOnce we recognise these natural, hidden skills we can then switch them on, on demand and also look at how we can improve them as needed.\n\nThis gives is a very strong skill set, allowing us to be much stronger emotionally &amp; mentally, improving what we do &amp; how we do it, to the best of our abilities.\n\nOur next workshop will show you how to discover these unconscious skills and how to use them to improve your emotional and mental strengths.\n\nYou can book your place by clicking the link below.\nI look forward to seeing you all and sharing these powerful techniques with you all.\n\n</div>\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\n<strong>During this workshop, you will learn to</strong>\n<ul>\n 	<li>recognise your current strengths &amp; how to use them</li>\n 	<li>look at what needs to be improved</li>\n 	<li>view things from different perspectives</li>\n 	<li>use your past experiences for future success</li>\n 	<li>handle past emotional problems</li>\n 	<li>avoid the things that make you emotionally weak</li>\n</ul>\n<strong>Moving forward for a better future we will explore how you can</strong>\n<ul>\n 	<li>stay on track</li>\n 	<li>avoid future problems</li>\n 	<li>take control of yourself emotionally</li>\n 	<li>improve your view on life</li>\n 	<li>enrich your mind</li>\n 	<li>look after your diet well</li>\n 	<li>build emotional strength</li>\n</ul>\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\n\nTo join us book your place here. Advance booking is always required for these workshops.\n\n<a href=\"https://www.newcastle-hypnotherapy.com/product/ems/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" /></strong></span></h4>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"615\" height=\"296\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<h4></h4>\n<h4></h4>\n<h4></h4>\n<h4></h4>\n<h4></h4>\n<h4><a href=\"https://www.newcastle-hypnotherapy.com/product/ems/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a></h4>\n<h4></h4>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<h4></h4>\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\nJoin the newsletter below to learn about similar events.\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\nYour privacy is safe and you can unsubscribe at any time.\n\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\nhttps://www.youtube.com/watch?v=cudUGD_t74I\n<div id=\"top-widget\" class=\"top-widget\">\n<div id=\"text-13\" class=\"widget_text\">\n<div class=\"textwidget\">\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\nFREE 15 Minute Phone Strategy Session</b>.</div>\n<div style=\"text-align: left;\"></div>\n<div class=\"header-custom-container\">\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\n\n</div>\n</div>\n</div>\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-autosave-v1','','','2019-06-29 15:17:54','2019-06-29 15:17:54','',2989,'https://www.newcastle-hypnotherapy.com/2989-autosave-v1/',0,'revision','',0),(3028,1,'2019-06-26 19:31:19','2019-06-26 19:31:19','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>\r\nWednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/ems/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"615\" height=\"296\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></h4>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:31:19','2019-06-26 19:31:19','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3029,1,'2019-06-26 19:31:50','2019-06-26 19:31:50','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>\r\nWednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/ems/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"615\" height=\"296\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></h4>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:31:50','2019-06-26 19:31:50','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3030,1,'2019-06-26 19:32:17','2019-06-26 19:32:17','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>\r\nWednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/ems/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"615\" height=\"296\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></h4>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:32:17','2019-06-26 19:32:17','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3031,1,'2019-06-26 19:33:09','2019-06-26 19:33:09','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>\r\nWednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/ems/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"615\" height=\"296\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><a href=\"https://www.newcastle-hypnotherapy.com/product/ems/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a></h4>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-26 19:33:09','2019-06-26 19:33:09','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3032,1,'2019-06-26 20:06:29','2019-06-26 20:06:29','','Order &ndash; June 26, 2019 @ 08:06 PM','','wc-processing','open','closed','order_5d13d045e435c','order-jun-26-2019-0806-pm','','','2019-06-26 20:07:09','2019-06-26 20:07:09','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=3032',0,'shop_order','',2),(3033,1,'2019-06-27 10:08:24','2019-06-27 10:08:24','','Order &ndash; June 27, 2019 @ 10:08 AM','','wc-on-hold','open','closed','order_5d149598271e6','order-jun-27-2019-1008-am','','','2019-06-27 10:08:24','2019-06-27 10:08:24','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=3033',0,'shop_order','',1),(3035,1,'2019-06-29 12:04:28','2019-06-29 12:04:28','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>\r\nWednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12.50 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/ems/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"615\" height=\"296\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><a href=\"https://www.newcastle-hypnotherapy.com/product/ems/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a></h4>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-29 12:04:28','2019-06-29 12:04:28','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3039,1,'2019-06-29 15:16:44','2019-06-29 15:16:44','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>\r\nWednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12.50 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nhttps://www.youtube.com/watch?v=4xN-Fxqmbuw\r\n\r\n&nbsp;\r\n\r\n<strong>Hello everyone,\r\nover the last few months I have been asked how do we increase our emotional &amp; mental strengths?</strong><strong>There are a number of aspects to both and the first thing to do is to recognise our current strengths.</strong>\r\n\r\nWe all have a number of unconscious strengths, skills and abilities that can really help us in life.\r\n<div class=\"text_exposed_show\">\r\n\r\nAs part of this workshop, we will unlock these strengths, make you more aware of them and then look at how we can adapt and use them for the future.\r\n\r\nMost people are quite shocked when they discover and realise how powerful these skills make them.\r\nThese skills are usually transferable and adaptable to many areas of our lives.\r\n\r\nOnce we recognise these natural, hidden skills we can then switch them on, on demand and also look at how we can improve them as needed.\r\n\r\nThis gives is a very strong skill set, allowing us to be much stronger emotionally &amp; mentally, improving what we do &amp; how we do it, to the best of our abilities.\r\n\r\nOur next workshop will show you how to discover these unconscious skills and how to use them to improve your emotional and mental strengths.\r\n\r\nYou can book your place by clicking the link below.\r\nI look forward to seeing you all and sharing these powerful techniques with you all.\r\n\r\n</div>\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/ems/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"615\" height=\"296\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><a href=\"https://www.newcastle-hypnotherapy.com/product/ems/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a></h4>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-29 15:16:44','2019-06-29 15:16:44','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3036,1,'2019-06-29 12:41:45','2019-06-29 12:41:45','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>\r\nWednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12.50 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n\r\n<strong>Hi everyone. Over the last few months I have been asked how do we increase our emotional &amp; mental strengths?</strong>\r\n<strong>There are a number of aspects to both and the first thing to do is to recognise our current strengths.</strong>\r\n\r\nWe all have a number of unconscious strengths, skills and abilities that can really help us in life.\r\n<div class=\"text_exposed_show\">\r\n\r\nAs part of this workshop, we will unlock these strengths, make you more aware of them and then look at how we can adapt and use them for the future.\r\n\r\nMost people are quite shocked when they discover and realise how powerful these skills make them.\r\nThese skills are usually transferable and adaptable to many areas of our lives.\r\n\r\nOnce we recognise these natural, hidden skills we can then switch them on, on demand and also look at how we can improve them as needed.\r\n\r\nThis gives is a very strong skill set, allowing us to be much stronger emotionally &amp; mentally, improving what we do &amp; how we do it, to the best of our abilities.\r\n\r\nOur next workshop will show you how to discover these unconscious skills and how to use them to improve your emotional and mental strengths.\r\n\r\nYou can book your place by clicking the link below.\r\nI look forward to seeing you all and sharing these powerful techniques with you all.\r\n\r\n</div>\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/ems/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"615\" height=\"296\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><a href=\"https://www.newcastle-hypnotherapy.com/product/ems/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a></h4>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-29 12:41:45','2019-06-29 12:41:45','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3038,1,'2019-06-29 12:43:31','2019-06-29 12:43:31','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>\r\nWednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12.50 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Hello everyone,\r\nover the last few months I have been asked how do we increase our emotional &amp; mental strengths? </strong><strong>There are a number of aspects to both and the first thing to do is to recognise our current strengths.</strong>\r\n\r\nWe all have a number of unconscious strengths, skills and abilities that can really help us in life.\r\n<div class=\"text_exposed_show\">\r\n\r\nAs part of this workshop, we will unlock these strengths, make you more aware of them and then look at how we can adapt and use them for the future.\r\n\r\nMost people are quite shocked when they discover and realise how powerful these skills make them.\r\nThese skills are usually transferable and adaptable to many areas of our lives.\r\n\r\nOnce we recognise these natural, hidden skills we can then switch them on, on demand and also look at how we can improve them as needed.\r\n\r\nThis gives is a very strong skill set, allowing us to be much stronger emotionally &amp; mentally, improving what we do &amp; how we do it, to the best of our abilities.\r\n\r\nOur next workshop will show you how to discover these unconscious skills and how to use them to improve your emotional and mental strengths.\r\n\r\nYou can book your place by clicking the link below.\r\nI look forward to seeing you all and sharing these powerful techniques with you all.\r\n\r\n</div>\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/ems/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"615\" height=\"296\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><a href=\"https://www.newcastle-hypnotherapy.com/product/ems/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a></h4>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-29 12:43:31','2019-06-29 12:43:31','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3037,1,'2019-06-29 12:42:30','2019-06-29 12:42:30','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>\r\nWednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12.50 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEmotional Strength is not something you are born with. It is a number of skills that you develop and learn.\r\nAnyone can learn these skills and with practice, something that improves your life dramatically.\r\n\r\n<strong>Hi everyone,\r\nover the last few months I have been asked how do we increase our emotional &amp; mental strengths?</strong>\r\n<strong>There are a number of aspects to both and the first thing to do is to recognise our current strengths.</strong>\r\n\r\nWe all have a number of unconscious strengths, skills and abilities that can really help us in life.\r\n<div class=\"text_exposed_show\">\r\n\r\nAs part of this workshop, we will unlock these strengths, make you more aware of them and then look at how we can adapt and use them for the future.\r\n\r\nMost people are quite shocked when they discover and realise how powerful these skills make them.\r\nThese skills are usually transferable and adaptable to many areas of our lives.\r\n\r\nOnce we recognise these natural, hidden skills we can then switch them on, on demand and also look at how we can improve them as needed.\r\n\r\nThis gives is a very strong skill set, allowing us to be much stronger emotionally &amp; mentally, improving what we do &amp; how we do it, to the best of our abilities.\r\n\r\nOur next workshop will show you how to discover these unconscious skills and how to use them to improve your emotional and mental strengths.\r\n\r\nYou can book your place by clicking the link below.\r\nI look forward to seeing you all and sharing these powerful techniques with you all.\r\n\r\n</div>\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/ems/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"615\" height=\"296\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><a href=\"https://www.newcastle-hypnotherapy.com/product/ems/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a></h4>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-29 12:42:30','2019-06-29 12:42:30','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3040,1,'2019-06-29 15:18:21','2019-06-29 15:18:21','<img class=\"alignleft size-medium wp-image-2994\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/lnh-300x200.jpg\" alt=\"The Secrets Of Emotional Strength\" width=\"300\" height=\"200\" /><strong>\r\nWednesday 10th July</strong>\r\n<strong>7.30 pm to 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£12.50 Early Bird Price</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking only</strong></span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nhttps://www.youtube.com/watch?v=4xN-Fxqmbuw\r\n\r\n<span style=\"color: #008000;\"><strong>Feedback &amp; Reviews Are Below</strong></span>\r\n\r\n<strong>Hello everyone,\r\nover the last few months I have been asked how do we increase our emotional &amp; mental strengths?</strong><strong>There are a number of aspects to both and the first thing to do is to recognise our current strengths.</strong>\r\n\r\nWe all have a number of unconscious strengths, skills and abilities that can really help us in life.\r\n<div class=\"text_exposed_show\">\r\n\r\nAs part of this workshop, we will unlock these strengths, make you more aware of them and then look at how we can adapt and use them for the future.\r\n\r\nMost people are quite shocked when they discover and realise how powerful these skills make them.\r\nThese skills are usually transferable and adaptable to many areas of our lives.\r\n\r\nOnce we recognise these natural, hidden skills we can then switch them on, on demand and also look at how we can improve them as needed.\r\n\r\nThis gives is a very strong skill set, allowing us to be much stronger emotionally &amp; mentally, improving what we do &amp; how we do it, to the best of our abilities.\r\n\r\nOur next workshop will show you how to discover these unconscious skills and how to use them to improve your emotional and mental strengths.\r\n\r\nYou can book your place by clicking the link below.\r\nI look forward to seeing you all and sharing these powerful techniques with you all.\r\n\r\n</div>\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Emotional Strength Workshop</strong></span></h4>\r\n<strong>During this workshop, you will learn to</strong>\r\n<ul>\r\n 	<li>recognise your current strengths &amp; how to use them</li>\r\n 	<li>look at what needs to be improved</li>\r\n 	<li>view things from different perspectives</li>\r\n 	<li>use your past experiences for future success</li>\r\n 	<li>handle past emotional problems</li>\r\n 	<li>avoid the things that make you emotionally weak</li>\r\n</ul>\r\n<strong>Moving forward for a better future we will explore how you can</strong>\r\n<ul>\r\n 	<li>stay on track</li>\r\n 	<li>avoid future problems</li>\r\n 	<li>take control of yourself emotionally</li>\r\n 	<li>improve your view on life</li>\r\n 	<li>enrich your mind</li>\r\n 	<li>look after your diet well</li>\r\n 	<li>build emotional strength</li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">Who will this workshop help?</span></strong></h4>\r\nThis workshop will help people looking to improve their life, relationships, communication and to handle life\'s ups and downs better.\r\nIt will also help those looking to reduce anxiety, stress and those looking for a calmer life.\r\n<h4><strong><span style=\"color: #008000;\">Learn The Secrets Of Emotional Strength</span></strong></h4>\r\nAs with all of The Secret Workshops you can learn simple skills, that with practice can really improve your life.\r\n\r\nTo join us book your place here. Advance booking is always required for these workshops.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/ems/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Recent Workshop Feedback\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" /></strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy Feedback\" width=\"615\" height=\"296\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><a href=\"https://www.newcastle-hypnotherapy.com/product/ems/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a></h4>\r\n<h4></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4></h4>\r\n<h4><strong><span style=\"color: #008000;\">Upcoming Workshops - Learn More</span></strong></h4>\r\nJoin the newsletter below to learn about similar events.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can unsubscribe at any time.\r\n\r\nThe Secret Workshops are low cost, regular events that help you to learn life improving skills such as self-hypnosis,  Neuro-linguistic programming and other modern techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Want To Work With Us Privately?</strong></span></h4>\r\nYou can also work with us on an individual basis for a range of issues, challenges and improvements.\r\n<a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\"><span style=\"color: #008000;\"><strong>Simply contact us today</strong></span></a> to arrange your <strong>free 15-minute phone consultation</strong> to explore any issues and to look at the best way forward for you.\r\n<h4><strong><span style=\"color: #008000;\">Client Feedback From A NHS Doctor</span></strong></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n<div id=\"top-widget\" class=\"top-widget\">\r\n<div id=\"text-13\" class=\"widget_text\">\r\n<div class=\"textwidget\">\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong>Call </strong><a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" role=\"link\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a><strong> today to get started</strong></div>\r\n<div class=\"header-custom-container\" style=\"text-align: center;\"><strong> or </strong><b><em><a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">CLICK HERE</a></em> to arrange Your\r\nFREE 15 Minute Phone Strategy Session</b>.</div>\r\n<div style=\"text-align: left;\"></div>\r\n<div class=\"header-custom-container\">\r\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Newcastle Hypnotherapy\'s Facebook Page</strong></a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>','The Secrets Of Emotional Strength','','inherit','closed','closed','','2989-revision-v1','','','2019-06-29 15:18:21','2019-06-29 15:18:21','',2989,'https://www.newcastle-hypnotherapy.com/2989-revision-v1/',0,'revision','',0),(3041,1,'2019-06-29 16:55:32','2019-06-29 16:55:32','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\nWednesday 24th July\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\n£12.5o Early Bird (£20 after)\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - April\r\n</strong></span></h4>\r\nDuring this months practice group, we will focus on the stairstep self-hypnosis induction &amp; add in a fun extra.\r\nThis is easy to learn for fast, self-relaxation and creating calm, stress-free states.\r\nWe will take you through this step by step and then practice this, ensuring you can use this induction well.\r\n\r\n<strong>Suitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practicing and strengthening your skills</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Why Learn Self-Hypnosis Skills?</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\n<h4>As part of this workshop, you will</h4>\r\n<ul>\r\n 	<li>learn what is self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions, and behavior</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\n<strong>This self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.</strong>\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can learn about our other events by joining the newsletter</strong>\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n<strong>You can unsubscribe from the newsletter at any time using the link in every email.</strong>','The Healing Pool & The Mental Message','','inherit','closed','closed','','560-revision-v1','','','2019-06-29 16:55:32','2019-06-29 16:55:32','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(3042,1,'2019-06-29 16:58:57','2019-06-29 16:58:57','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\nWednesday 24th July\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\n£12.5o Early Bird (£20 after)\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - July\r\n</strong></span></h4>\r\nDuring this months practice group, we will focus on two self-hypnosis techniques to quickly promote self-healing and mental relaxation.\r\nBoth are easy to learn for fast, relaxation and creating calm, stress-free states.\r\nWe will take you through this step by step and then practice this, ensuring you can use this induction well.\r\n\r\n<strong>Suitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practising and strengthening your skills</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Why Learn Self-Hypnosis Skills?</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\n<h4>As part of this workshop, you will</h4>\r\n<ul>\r\n 	<li>learn what is self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions, and behaviour</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\n<strong>This self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.</strong>\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can learn about our other events by joining the newsletter</strong>\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n<strong>You can unsubscribe from the newsletter at any time using the link in every email.</strong>','The Healing Pool & The Mental Message','','inherit','closed','closed','','560-revision-v1','','','2019-06-29 16:58:57','2019-06-29 16:58:57','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(3043,1,'2019-06-29 17:02:19','2019-06-29 17:02:19','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nNewcastle Self-Hypnosis Practice Group\r\n</span></strong>\r\n\r\nWednesday 24th July\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\n£12.50 Early Bird (£20 after)\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - July\r\n</strong></span></h4>\r\nDuring this months practice group, we will focus on two self-hypnosis techniques to quickly promote self-healing and mental relaxation.\r\nBoth are easy to learn for fast, relaxation and creating calm, stress-free states.\r\nWe will take you through this step by step and then practice this, ensuring you can use this induction well.\r\n\r\n<strong>Suitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practising and strengthening your skills</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Why Learn Self-Hypnosis Skills?</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\n<h4>As part of this workshop, you will</h4>\r\n<ul>\r\n 	<li>learn what is self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions, and behaviour</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\n<strong>This self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.</strong>\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can learn about our other events by joining the newsletter</strong>\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n<strong>You can unsubscribe from the newsletter at any time using the link in every email.</strong>','The Healing Pool & The Mental Message','','inherit','closed','closed','','560-revision-v1','','','2019-06-29 17:02:19','2019-06-29 17:02:19','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(3044,1,'2019-06-30 11:54:53','2019-06-30 11:54:53','<strong>We are planning a full introduction to NLP as so many of you who attend The Secret Workshops, have asked us to do so.</strong>\r\n\r\n<img class=\"alignleft wp-image-3060 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/power-384085_960_720.jpg\" alt=\"introduction to nlp\" width=\"950\" height=\"720\" />\r\n\r\nWe have a number of choices on how we can do this.\r\nIf you feel it is something you would like to explore please enter your details below and information will follow.\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><strong><span style=\"color: #008000;\">So what is NLP or Neuro-linguistic programming?</span></strong></h4>\r\nNLP is the study of excellent behaviour. Let\'s say we look at 100 school teachers, personal trainers, salespersons, nurses, doctors etc.\r\nOut of each 100, there will be a small percentage who do the job extremely well.\r\nThey will have unconscious and conscious skills, attitudes and abilities that push them ahead of the majority.\r\nNLP would look at the top percentage, study and model them and then teach those skills to others.\r\n<h4><span style=\"color: #008000;\"><strong>How can learning NLP help me?</strong></span></h4>\r\nNLP covers all areas of human life, communication, problem solving and therapy.\r\nLearning core NLP skills gives people a major advantage as they are aware of so much more unconscious communication.\r\nThey understand behaviour better and look at the world in a different way.\r\nWe are aware of so much more information that we were unaware of before.\r\n\r\nAs a result of learning NLP, our lives can be greatly improved. Our understanding and communication are better of nit just others and also ourselves. Our ability to learn new skills and abilities is vastly improved.\r\n<h4><span style=\"color: #008000;\"><strong>The Introduction To NLP Workshop</strong></span></h4>\r\nYour introduction to NLP will teach you some core skills to a group of about 20 people.\r\nThis introduction is interactive, meaning you will discover these skills yourself by working with others, seeing how they and you work and communicate.\r\n\r\nIf you would be interested in attending such an introduction please enter your details below.\r\nThis will allow us to judge the numbers and the best way to deliver this.\r\n\r\n[contact-form-7 id=\"3047\" title=\"NLP Events\"]\r\nYou can unsubscribe from this newsletter at any time using the link in every email.','Introduction to NLP Workshop','','publish','closed','closed','','introduction-to-nlp-workshop','','','2019-06-30 11:59:47','2019-06-30 11:59:47','',0,'https://www.newcastle-hypnotherapy.com/?page_id=3044',0,'page','',0),(3045,1,'2019-06-30 10:38:18','2019-06-30 10:38:18','We have been thinking about a full introduction to NLP as so many of you who attend The Secret Workshops, have asked us to do so.\r\n\r\nWe have a number of choices on how we can do this.\r\nIf you feel it is something you would like to explore please enter your details below and we will be intouch.\r\n\r\nHere is a little more information.\r\n\r\nSo what is NLP or Neuro-linguistic programming?\r\nNLP is the study of excellent behaviour. Let\'s say we look at 100 school teachers, personal trainers, salespersons, nurses, doctors etc.\r\nOut of each 100, there will be a small percentage who do the job extremley well.\r\nThey will have unconcious and concious skills, attitudes and abilities that push them ahead of the majority.\r\nNLP would look at the top percentage, study and model them and then teach those skills to others.\r\n\r\nNLP covers all areas of human life, communication, problem solving and therapy.\r\nLearning core NLP skills gives people a major advantage as they are aware of so much more unconcious communication.\r\nThey understand behaviour better and look at the world in a different way.\r\nWe are aware of so much more information that we were unaware of before.\r\n\r\nAs a result of learning NLP our lives can be greatly improved. Our understanding and communication is better. Our ability to learn new skills and abilities is vastly imporved.\r\n\r\nOur aim to create an introduction to NLP and to share some core skills to a group of 20 people.\r\nThis introduction is interactive meaning you will discover these skills yourself by working with others, seeing how they and you work and communicate.\r\n\r\nIf you would be interested in attending such an introduction please enter your details below.\r\nThis will allow us to judge the numbers and the best way to do this.','Introduction to NLP (Neuro-linguistic programming)','','inherit','closed','closed','','3044-revision-v1','','','2019-06-30 10:38:18','2019-06-30 10:38:18','',3044,'https://www.newcastle-hypnotherapy.com/3044-revision-v1/',0,'revision','',0),(3046,1,'2019-06-30 11:16:53','2019-06-30 11:16:53','We have been thinking about a full introduction to NLP as so many of you who attend The Secret Workshops, have asked us to do so.\r\n\r\nWe have a number of choices on how we can do this.\r\nIf you feel it is something you would like to explore please enter your details below and we will be in touch.\r\n\r\nHere is a little more information.\r\n\r\nSo what is NLP or Neuro-linguistic programming?\r\nNLP is the study of excellent behaviour. Let\'s say we look at 100 school teachers, personal trainers, salespersons, nurses, doctors etc.\r\nOut of each 100, there will be a small percentage who do the job extremely well.\r\nThey will have unconscious and conscious skills, attitudes and abilities that push them ahead of the majority.\r\nNLP would look at the top percentage, study and model them and then teach those skills to others.\r\n\r\nNLP covers all areas of human life, communication, problem solving and therapy.\r\nLearning core NLP skills gives people a major advantage as they are aware of so much more unconscious communication.\r\nThey understand behaviour better and look at the world in a different way.\r\nWe are aware of so much more information that we were unaware of before.\r\n\r\nAs a result of learning NLP, our lives can be greatly improved. Our understanding and communication are better. Our ability to learn new skills and abilities is vastly improved.\r\n\r\nOur aim to create an introduction to NLP and to share some core skills to a group of about 20 people.\r\nThis introduction is interactive meaning you will discover these skills yourself by working with others, seeing how they and you work and communicate.\r\n\r\nIf you would be interested in attending such an introduction please enter your details below.\r\nThis will allow us to judge the numbers and the best way to do this.','Introduction to NLP (Neuro-linguistic programming)','','inherit','closed','closed','','3044-revision-v1','','','2019-06-30 11:16:53','2019-06-30 11:16:53','',3044,'https://www.newcastle-hypnotherapy.com/3044-revision-v1/',0,'revision','',0),(3047,1,'2019-06-30 11:20:39','2019-06-30 11:20:39','<fieldset>\r\n	<legend>Enter your details below to learn about NLP events</legend>\r\n	<ol>\r\n		<li> Name [text* cf7s-name] </li>\r\n		<li> Email [email* cf7s-email] </li>\r\n		\r\n	</ol>\r\n	[submit \"Submit\"]\r\n	<p>* Required</p>\r\n</fieldset>\n1\nNH - New Subscriber EVENTS\nNLP EVENTS <mark@newcastle-hypnotherapy.com>\nmark@newcastle-hypnotherapy.com\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Newcastle Hypnotherapy Tyneside &amp; Northumberland, (http://www.newcastle-hypnotherapy.com)\nReply-To: <mark@newcastle-hypnotherapy.com>\n\n\n\n\nNewcastle Hypnotherapy Tyneside & Northumberland, \"[your-subject]\"\nNewcastle Hypnotherapy Tyneside & Northumberland, <mark@newcastle-hypnotherapy.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Newcastle Hypnotherapy Tyneside &amp; Northumberland, (http://www.newcastle-hypnotherapy.com)\nReply-To: mark@newcastle-hypnotherapy.com\n\n\n\nThank you. You have been added to the NLP Events newsletter\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','NLP Events','','publish','closed','closed','','events-newcastle-hypnotherapy_copy','','','2019-06-30 11:46:58','2019-06-30 11:46:58','',0,'https://www.newcastle-hypnotherapy.com/?post_type=wpcf7_contact_form&#038;p=3047',0,'wpcf7_contact_form','',0),(3048,1,'2019-06-30 11:29:07','2019-06-30 11:29:07','We have been thinking about a full introduction to NLP as so many of you who attend The Secret Workshops, have asked us to do so.\r\n\r\nWe have a number of choices on how we can do this.\r\nIf you feel it is something you would like to explore please enter your details below and we will be in touch.\r\n\r\nHere is a little more information.\r\n\r\nSo what is NLP or Neuro-linguistic programming?\r\nNLP is the study of excellent behaviour. Let\'s say we look at 100 school teachers, personal trainers, salespersons, nurses, doctors etc.\r\nOut of each 100, there will be a small percentage who do the job extremely well.\r\nThey will have unconscious and conscious skills, attitudes and abilities that push them ahead of the majority.\r\nNLP would look at the top percentage, study and model them and then teach those skills to others.\r\n\r\nNLP covers all areas of human life, communication, problem solving and therapy.\r\nLearning core NLP skills gives people a major advantage as they are aware of so much more unconscious communication.\r\nThey understand behaviour better and look at the world in a different way.\r\nWe are aware of so much more information that we were unaware of before.\r\n\r\nAs a result of learning NLP, our lives can be greatly improved. Our understanding and communication are better. Our ability to learn new skills and abilities is vastly improved.\r\n\r\nOur aim to create an introduction to NLP and to share some core skills to a group of about 20 people.\r\nThis introduction is interactive meaning you will discover these skills yourself by working with others, seeing how they and you work and communicate.\r\n\r\nIf you would be interested in attending such an introduction please enter your details below.\r\nThis will allow us to judge the numbers and the best way to do this.\r\n\r\n[contact-form-7 id=\"3047\" title=\"NLP Events\"]','Introduction to NLP (Neuro-linguistic programming)','','inherit','closed','closed','','3044-revision-v1','','','2019-06-30 11:29:07','2019-06-30 11:29:07','',3044,'https://www.newcastle-hypnotherapy.com/3044-revision-v1/',0,'revision','',0),(3049,1,'2019-06-30 11:29:38','2019-06-30 11:29:38','We have been thinking about a full introduction to NLP as so many of you who attend The Secret Workshops, have asked us to do so.\r\n\r\nWe have a number of choices on how we can do this.\r\nIf you feel it is something you would like to explore please enter your details below and we will be in touch.\r\n\r\nHere is a little more information.\r\n\r\nSo what is NLP or Neuro-linguistic programming?\r\nNLP is the study of excellent behaviour. Let\'s say we look at 100 school teachers, personal trainers, salespersons, nurses, doctors etc.\r\nOut of each 100, there will be a small percentage who do the job extremely well.\r\nThey will have unconscious and conscious skills, attitudes and abilities that push them ahead of the majority.\r\nNLP would look at the top percentage, study and model them and then teach those skills to others.\r\n\r\nNLP covers all areas of human life, communication, problem solving and therapy.\r\nLearning core NLP skills gives people a major advantage as they are aware of so much more unconscious communication.\r\nThey understand behaviour better and look at the world in a different way.\r\nWe are aware of so much more information that we were unaware of before.\r\n\r\nAs a result of learning NLP, our lives can be greatly improved. Our understanding and communication are better. Our ability to learn new skills and abilities is vastly improved.\r\n\r\nOur aim to create an introduction to NLP and to share some core skills to a group of about 20 people.\r\nThis introduction is interactive meaning you will discover these skills yourself by working with others, seeing how they and you work and communicate.\r\n\r\nIf you would be interested in attending such an introduction please enter your details below.\r\nThis will allow us to judge the numbers and the best way to do this.\r\n\r\n[contact-form-7 id=\"3047\" title=\"NLP Events\"]','Introduction to NLP','','inherit','closed','closed','','3044-revision-v1','','','2019-06-30 11:29:38','2019-06-30 11:29:38','',3044,'https://www.newcastle-hypnotherapy.com/3044-revision-v1/',0,'revision','',0),(3050,1,'2019-06-30 11:32:04','2019-06-30 11:32:04','<strong>We have been thinking about a full introduction to NLP as so many of you who attend The Secret Workshops, have asked us to do so.</strong>\r\n\r\nWe have a number of choices on how we can do this.\r\nIf you feel it is something you would like to explore please enter your details below and we will be in touch shortly.\r\n\r\n<strong><span style=\"color: #008000;\">So what is NLP or Neuro-linguistic programming?</span></strong>\r\n\r\nNLP is the study of excellent behaviour. Let\'s say we look at 100 school teachers, personal trainers, salespersons, nurses, doctors etc.\r\nOut of each 100, there will be a small percentage who do the job extremely well.\r\nThey will have unconscious and conscious skills, attitudes and abilities that push them ahead of the majority.\r\nNLP would look at the top percentage, study and model them and then teach those skills to others.\r\n\r\nNLP covers all areas of human life, communication, problem solving and therapy.\r\nLearning core NLP skills gives people a major advantage as they are aware of so much more unconscious communication.\r\nThey understand behaviour better and look at the world in a different way.\r\nWe are aware of so much more information that we were unaware of before.\r\n\r\nAs a result of learning NLP, our lives can be greatly improved. Our understanding and communication are better. Our ability to learn new skills and abilities is vastly improved.\r\n\r\nOur aim to create an introduction to NLP and to share some core skills to a group of about 20 people.\r\nThis introduction is interactive meaning you will discover these skills yourself by working with others, seeing how they and you work and communicate.\r\n\r\nIf you would be interested in attending such an introduction please enter your details below.\r\nThis will allow us to judge the numbers and the best way to do this.\r\n\r\n[contact-form-7 id=\"3047\" title=\"NLP Events\"]','Introduction to NLP','','inherit','closed','closed','','3044-revision-v1','','','2019-06-30 11:32:04','2019-06-30 11:32:04','',3044,'https://www.newcastle-hypnotherapy.com/3044-revision-v1/',0,'revision','',0),(3051,1,'2019-06-30 11:32:51','2019-06-30 11:32:51','<strong>We have been thinking about a full introduction to NLP as so many of you who attend The Secret Workshops, have asked us to do so.</strong>\r\n\r\nWe have a number of choices on how we can do this.\r\nIf you feel it is something you would like to explore please enter your details below and we will be in touch shortly.\r\n<h4><strong><span style=\"color: #008000;\">So what is NLP or Neuro-linguistic programming?</span></strong></h4>\r\nNLP is the study of excellent behaviour. Let\'s say we look at 100 school teachers, personal trainers, salespersons, nurses, doctors etc.\r\nOut of each 100, there will be a small percentage who do the job extremely well.\r\nThey will have unconscious and conscious skills, attitudes and abilities that push them ahead of the majority.\r\nNLP would look at the top percentage, study and model them and then teach those skills to others.\r\n\r\nNLP covers all areas of human life, communication, problem solving and therapy.\r\nLearning core NLP skills gives people a major advantage as they are aware of so much more unconscious communication.\r\nThey understand behaviour better and look at the world in a different way.\r\nWe are aware of so much more information that we were unaware of before.\r\n\r\nAs a result of learning NLP, our lives can be greatly improved. Our understanding and communication are better. Our ability to learn new skills and abilities is vastly improved.\r\n\r\nOur aim to create an introduction to NLP and to share some core skills to a group of about 20 people.\r\nThis introduction is interactive meaning you will discover these skills yourself by working with others, seeing how they and you work and communicate.\r\n\r\nIf you would be interested in attending such an introduction please enter your details below.\r\nThis will allow us to judge the numbers and the best way to do this.\r\n\r\n[contact-form-7 id=\"3047\" title=\"NLP Events\"]','Introduction to NLP','','inherit','closed','closed','','3044-revision-v1','','','2019-06-30 11:32:51','2019-06-30 11:32:51','',3044,'https://www.newcastle-hypnotherapy.com/3044-revision-v1/',0,'revision','',0),(3052,1,'2019-06-30 11:34:22','2019-06-30 11:34:22','<strong>We have been thinking about a full introduction to NLP as so many of you who attend The Secret Workshops, have asked us to do so.</strong>\r\n\r\nWe have a number of choices on how we can do this.\r\nIf you feel it is something you would like to explore please enter your details below and we will be in touch shortly.\r\n<h4><strong><span style=\"color: #008000;\">So what is NLP or Neuro-linguistic programming?</span></strong></h4>\r\nNLP is the study of excellent behaviour. Let\'s say we look at 100 school teachers, personal trainers, salespersons, nurses, doctors etc.\r\nOut of each 100, there will be a small percentage who do the job extremely well.\r\nThey will have unconscious and conscious skills, attitudes and abilities that push them ahead of the majority.\r\nNLP would look at the top percentage, study and model them and then teach those skills to others.\r\n<h4><span style=\"color: #008000;\"><strong>How can learning NLP help me?</strong></span></h4>\r\nNLP covers all areas of human life, communication, problem solving and therapy.\r\nLearning core NLP skills gives people a major advantage as they are aware of so much more unconscious communication.\r\nThey understand behaviour better and look at the world in a different way.\r\nWe are aware of so much more information that we were unaware of before.\r\n\r\nAs a result of learning NLP, our lives can be greatly improved. Our understanding and communication are better. Our ability to learn new skills and abilities is vastly improved.\r\n\r\nOur aim to create an introduction to NLP and to share some core skills to a group of about 20 people.\r\nThis introduction is interactive meaning you will discover these skills yourself by working with others, seeing how they and you work and communicate.\r\n\r\nIf you would be interested in attending such an introduction please enter your details below.\r\nThis will allow us to judge the numbers and the best way to do this.\r\n\r\n[contact-form-7 id=\"3047\" title=\"NLP Events\"]','Introduction to NLP','','inherit','closed','closed','','3044-revision-v1','','','2019-06-30 11:34:22','2019-06-30 11:34:22','',3044,'https://www.newcastle-hypnotherapy.com/3044-revision-v1/',0,'revision','',0),(3053,1,'2019-06-30 11:35:25','2019-06-30 11:35:25','<strong>We have been thinking about a full introduction to NLP as so many of you who attend The Secret Workshops, have asked us to do so.</strong>\r\n\r\nWe have a number of choices on how we can do this.\r\nIf you feel it is something you would like to explore please enter your details below and we will be in touch shortly.\r\n<h4><strong><span style=\"color: #008000;\">So what is NLP or Neuro-linguistic programming?</span></strong></h4>\r\nNLP is the study of excellent behaviour. Let\'s say we look at 100 school teachers, personal trainers, salespersons, nurses, doctors etc.\r\nOut of each 100, there will be a small percentage who do the job extremely well.\r\nThey will have unconscious and conscious skills, attitudes and abilities that push them ahead of the majority.\r\nNLP would look at the top percentage, study and model them and then teach those skills to others.\r\n<h4><span style=\"color: #008000;\"><strong>How can learning NLP help me?</strong></span></h4>\r\nNLP covers all areas of human life, communication, problem solving and therapy.\r\nLearning core NLP skills gives people a major advantage as they are aware of so much more unconscious communication.\r\nThey understand behaviour better and look at the world in a different way.\r\nWe are aware of so much more information that we were unaware of before.\r\n\r\nAs a result of learning NLP, our lives can be greatly improved. Our understanding and communication are better of nit just others and also ourselves. Our ability to learn new skills and abilities is vastly improved.\r\n\r\nOur aim to create an introduction to NLP and to share some core skills to a group of about 20 people.\r\nThis introduction is interactive meaning you will discover these skills yourself by working with others, seeing how they and you work and communicate.\r\n\r\nIf you would be interested in attending such an introduction please enter your details below.\r\nThis will allow us to judge the numbers and the best way to do this.\r\n\r\n[contact-form-7 id=\"3047\" title=\"NLP Events\"]','Introduction to NLP','','inherit','closed','closed','','3044-revision-v1','','','2019-06-30 11:35:25','2019-06-30 11:35:25','',3044,'https://www.newcastle-hypnotherapy.com/3044-revision-v1/',0,'revision','',0),(3054,1,'2019-06-30 11:36:47','2019-06-30 11:36:47','<strong>We have been thinking about a full introduction to NLP as so many of you who attend The Secret Workshops, have asked us to do so.</strong>\r\n\r\nWe have a number of choices on how we can do this.\r\nIf you feel it is something you would like to explore please enter your details below and we will be in touch shortly.\r\n<h4><strong><span style=\"color: #008000;\">So what is NLP or Neuro-linguistic programming?</span></strong></h4>\r\nNLP is the study of excellent behaviour. Let\'s say we look at 100 school teachers, personal trainers, salespersons, nurses, doctors etc.\r\nOut of each 100, there will be a small percentage who do the job extremely well.\r\nThey will have unconscious and conscious skills, attitudes and abilities that push them ahead of the majority.\r\nNLP would look at the top percentage, study and model them and then teach those skills to others.\r\n<h4><span style=\"color: #008000;\"><strong>How can learning NLP help me?</strong></span></h4>\r\nNLP covers all areas of human life, communication, problem solving and therapy.\r\nLearning core NLP skills gives people a major advantage as they are aware of so much more unconscious communication.\r\nThey understand behaviour better and look at the world in a different way.\r\nWe are aware of so much more information that we were unaware of before.\r\n<h4>As a result of learning NLP, our lives can be greatly improved. Our understanding and communication are better of nit just others and also ourselves. Our ability to learn new skills and abilities is vastly improved.\r\n\r\n<span style=\"color: #008000;\"><strong>The Introduction To NLP Workshop</strong></span></h4>\r\nOur aim to create an introduction to NLP and to share some core skills to a group of about 20 people.\r\nThis introduction is interactive meaning you will discover these skills yourself by working with others, seeing how they and you work and communicate.\r\n\r\nIf you would be interested in attending such an introduction please enter your details below.\r\nThis will allow us to judge the numbers and the best way to do this.\r\n\r\n[contact-form-7 id=\"3047\" title=\"NLP Events\"]','Introduction to NLP','','inherit','closed','closed','','3044-revision-v1','','','2019-06-30 11:36:47','2019-06-30 11:36:47','',3044,'https://www.newcastle-hypnotherapy.com/3044-revision-v1/',0,'revision','',0),(3055,1,'2019-06-30 11:37:38','2019-06-30 11:37:38','<strong>We have been thinking about a full introduction to NLP as so many of you who attend The Secret Workshops, have asked us to do so.</strong>\r\n\r\nWe have a number of choices on how we can do this.\r\nIf you feel it is something you would like to explore please enter your details below and we will be in touch shortly.\r\n<h4><strong><span style=\"color: #008000;\">So what is NLP or Neuro-linguistic programming?</span></strong></h4>\r\nNLP is the study of excellent behaviour. Let\'s say we look at 100 school teachers, personal trainers, salespersons, nurses, doctors etc.\r\nOut of each 100, there will be a small percentage who do the job extremely well.\r\nThey will have unconscious and conscious skills, attitudes and abilities that push them ahead of the majority.\r\nNLP would look at the top percentage, study and model them and then teach those skills to others.\r\n<h4><span style=\"color: #008000;\"><strong>How can learning NLP help me?</strong></span></h4>\r\nNLP covers all areas of human life, communication, problem solving and therapy.\r\nLearning core NLP skills gives people a major advantage as they are aware of so much more unconscious communication.\r\nThey understand behaviour better and look at the world in a different way.\r\nWe are aware of so much more information that we were unaware of before.\r\n\r\nAs a result of learning NLP, our lives can be greatly improved. Our understanding and communication are better of nit just others and also ourselves. Our ability to learn new skills and abilities is vastly improved.\r\n<h4><span style=\"color: #008000;\"><strong>The Introduction To NLP Workshop</strong></span></h4>\r\nOur aim to create an introduction to NLP and to share some core skills to a group of about 20 people.\r\nThis introduction is interactive meaning you will discover these skills yourself by working with others, seeing how they and you work and communicate.\r\n\r\nIf you would be interested in attending such an introduction please enter your details below.\r\nThis will allow us to judge the numbers and the best way to do this.\r\n\r\n[contact-form-7 id=\"3047\" title=\"NLP Events\"]','Introduction to NLP','','inherit','closed','closed','','3044-revision-v1','','','2019-06-30 11:37:38','2019-06-30 11:37:38','',3044,'https://www.newcastle-hypnotherapy.com/3044-revision-v1/',0,'revision','',0),(3056,1,'2019-06-30 11:40:46','2019-06-30 11:40:46','<strong>We have been thinking about a full introduction to NLP as so many of you who attend The Secret Workshops, have asked us to do so.</strong>\r\n\r\nWe have a number of choices on how we can do this.\r\nIf you feel it is something you would like to explore please enter your details below and we will be in touch shortly.\r\n<h4><strong><span style=\"color: #008000;\">So what is NLP or Neuro-linguistic programming?</span></strong></h4>\r\nNLP is the study of excellent behaviour. Let\'s say we look at 100 school teachers, personal trainers, salespersons, nurses, doctors etc.\r\nOut of each 100, there will be a small percentage who do the job extremely well.\r\nThey will have unconscious and conscious skills, attitudes and abilities that push them ahead of the majority.\r\nNLP would look at the top percentage, study and model them and then teach those skills to others.\r\n<h4><span style=\"color: #008000;\"><strong>How can learning NLP help me?</strong></span></h4>\r\nNLP covers all areas of human life, communication, problem solving and therapy.\r\nLearning core NLP skills gives people a major advantage as they are aware of so much more unconscious communication.\r\nThey understand behaviour better and look at the world in a different way.\r\nWe are aware of so much more information that we were unaware of before.\r\n\r\nAs a result of learning NLP, our lives can be greatly improved. Our understanding and communication are better of nit just others and also ourselves. Our ability to learn new skills and abilities is vastly improved.\r\n<h4><span style=\"color: #008000;\"><strong>The Introduction To NLP Workshop</strong></span></h4>\r\nYour introduction to NLP will teach you some core skills to a group of about 20 people.\r\nThis introduction is interactive, meaning you will discover these skills yourself by working with others, seeing how they and you work and communicate.\r\n\r\nIf you would be interested in attending such an introduction please enter your details below.\r\nThis will allow us to judge the numbers and the best way to deliver this.\r\n\r\n[contact-form-7 id=\"3047\" title=\"NLP Events\"]','Introduction to NLP Workshop','','inherit','closed','closed','','3044-revision-v1','','','2019-06-30 11:40:46','2019-06-30 11:40:46','',3044,'https://www.newcastle-hypnotherapy.com/3044-revision-v1/',0,'revision','',0),(3057,1,'2019-06-30 11:44:24','2019-06-30 11:44:24','<strong>We have been thinking about a full introduction to NLP as so many of you who attend The Secret Workshops, have asked us to do so.</strong>\r\n\r\nWe have a number of choices on how we can do this.\r\nIf you feel it is something you would like to explore please enter your details below and we will be in touch shortly.\r\n<h4><strong><span style=\"color: #008000;\">So what is NLP or Neuro-linguistic programming?</span></strong></h4>\r\nNLP is the study of excellent behaviour. Let\'s say we look at 100 school teachers, personal trainers, salespersons, nurses, doctors etc.\r\nOut of each 100, there will be a small percentage who do the job extremely well.\r\nThey will have unconscious and conscious skills, attitudes and abilities that push them ahead of the majority.\r\nNLP would look at the top percentage, study and model them and then teach those skills to others.\r\n<h4><span style=\"color: #008000;\"><strong>How can learning NLP help me?</strong></span></h4>\r\nNLP covers all areas of human life, communication, problem solving and therapy.\r\nLearning core NLP skills gives people a major advantage as they are aware of so much more unconscious communication.\r\nThey understand behaviour better and look at the world in a different way.\r\nWe are aware of so much more information that we were unaware of before.\r\n\r\nAs a result of learning NLP, our lives can be greatly improved. Our understanding and communication are better of nit just others and also ourselves. Our ability to learn new skills and abilities is vastly improved.\r\n<h4><span style=\"color: #008000;\"><strong>The Introduction To NLP Workshop</strong></span></h4>\r\nYour introduction to NLP will teach you some core skills to a group of about 20 people.\r\nThis introduction is interactive, meaning you will discover these skills yourself by working with others, seeing how they and you work and communicate.\r\n\r\nIf you would be interested in attending such an introduction please enter your details below.\r\nThis will allow us to judge the numbers and the best way to deliver this.\r\n\r\n[contact-form-7 id=\"3047\" title=\"NLP Events\"]\r\nYou can unsubscribe from this newsletter at any time.','Introduction to NLP Workshop','','inherit','closed','closed','','3044-revision-v1','','','2019-06-30 11:44:24','2019-06-30 11:44:24','',3044,'https://www.newcastle-hypnotherapy.com/3044-revision-v1/',0,'revision','',0),(3060,1,'2019-06-30 11:54:16','2019-06-30 11:54:16','','newcastle hypnotherapy events workshops','','inherit','open','closed','','power-384085_960_720','','','2019-06-30 13:24:17','2019-06-30 13:24:17','',3044,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/power-384085_960_720.jpg',0,'attachment','image/jpeg',0),(3058,1,'2019-06-30 11:45:32','2019-06-30 11:45:32','<strong>We have been thinking about a full introduction to NLP as so many of you who attend The Secret Workshops, have asked us to do so.</strong>\r\n\r\nWe have a number of choices on how we can do this.\r\nIf you feel it is something you would like to explore please enter your details below and we will be in touch shortly.\r\n<h4><strong><span style=\"color: #008000;\">So what is NLP or Neuro-linguistic programming?</span></strong></h4>\r\nNLP is the study of excellent behaviour. Let\'s say we look at 100 school teachers, personal trainers, salespersons, nurses, doctors etc.\r\nOut of each 100, there will be a small percentage who do the job extremely well.\r\nThey will have unconscious and conscious skills, attitudes and abilities that push them ahead of the majority.\r\nNLP would look at the top percentage, study and model them and then teach those skills to others.\r\n<h4><span style=\"color: #008000;\"><strong>How can learning NLP help me?</strong></span></h4>\r\nNLP covers all areas of human life, communication, problem solving and therapy.\r\nLearning core NLP skills gives people a major advantage as they are aware of so much more unconscious communication.\r\nThey understand behaviour better and look at the world in a different way.\r\nWe are aware of so much more information that we were unaware of before.\r\n\r\nAs a result of learning NLP, our lives can be greatly improved. Our understanding and communication are better of nit just others and also ourselves. Our ability to learn new skills and abilities is vastly improved.\r\n<h4><span style=\"color: #008000;\"><strong>The Introduction To NLP Workshop</strong></span></h4>\r\nYour introduction to NLP will teach you some core skills to a group of about 20 people.\r\nThis introduction is interactive, meaning you will discover these skills yourself by working with others, seeing how they and you work and communicate.\r\n\r\nIf you would be interested in attending such an introduction please enter your details below.\r\nThis will allow us to judge the numbers and the best way to deliver this.\r\n\r\n[contact-form-7 id=\"3047\" title=\"NLP Events\"]\r\nYou can unsubscribe from this newsletter at any time using the link in every email.','Introduction to NLP Workshop','','inherit','closed','closed','','3044-revision-v1','','','2019-06-30 11:45:32','2019-06-30 11:45:32','',3044,'https://www.newcastle-hypnotherapy.com/3044-revision-v1/',0,'revision','',0),(3059,1,'2019-06-30 11:51:36','2019-06-30 11:51:36','<strong>We are planning a full introduction to NLP as so many of you who attend The Secret Workshops, have asked us to do so.</strong>\r\n\r\nWe have a number of choices on how we can do this.\r\nIf you feel it is something you would like to explore please enter your details below and information will follow.\r\n<h4><strong><span style=\"color: #008000;\">So what is NLP or Neuro-linguistic programming?</span></strong></h4>\r\nNLP is the study of excellent behaviour. Let\'s say we look at 100 school teachers, personal trainers, salespersons, nurses, doctors etc.\r\nOut of each 100, there will be a small percentage who do the job extremely well.\r\nThey will have unconscious and conscious skills, attitudes and abilities that push them ahead of the majority.\r\nNLP would look at the top percentage, study and model them and then teach those skills to others.\r\n<h4><span style=\"color: #008000;\"><strong>How can learning NLP help me?</strong></span></h4>\r\nNLP covers all areas of human life, communication, problem solving and therapy.\r\nLearning core NLP skills gives people a major advantage as they are aware of so much more unconscious communication.\r\nThey understand behaviour better and look at the world in a different way.\r\nWe are aware of so much more information that we were unaware of before.\r\n\r\nAs a result of learning NLP, our lives can be greatly improved. Our understanding and communication are better of nit just others and also ourselves. Our ability to learn new skills and abilities is vastly improved.\r\n<h4><span style=\"color: #008000;\"><strong>The Introduction To NLP Workshop</strong></span></h4>\r\nYour introduction to NLP will teach you some core skills to a group of about 20 people.\r\nThis introduction is interactive, meaning you will discover these skills yourself by working with others, seeing how they and you work and communicate.\r\n\r\nIf you would be interested in attending such an introduction please enter your details below.\r\nThis will allow us to judge the numbers and the best way to deliver this.\r\n\r\n[contact-form-7 id=\"3047\" title=\"NLP Events\"]\r\nYou can unsubscribe from this newsletter at any time using the link in every email.','Introduction to NLP Workshop','','inherit','closed','closed','','3044-revision-v1','','','2019-06-30 11:51:36','2019-06-30 11:51:36','',3044,'https://www.newcastle-hypnotherapy.com/3044-revision-v1/',0,'revision','',0),(3061,1,'2019-06-30 11:54:53','2019-06-30 11:54:53','<strong>We are planning a full introduction to NLP as so many of you who attend The Secret Workshops, have asked us to do so.</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-3060\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/power-384085_960_720-300x227.jpg\" alt=\"introduction to nlp\" width=\"300\" height=\"227\" />\r\n\r\nWe have a number of choices on how we can do this.\r\nIf you feel it is something you would like to explore please enter your details below and information will follow.\r\n<h4><strong><span style=\"color: #008000;\">So what is NLP or Neuro-linguistic programming?</span></strong></h4>\r\nNLP is the study of excellent behaviour. Let\'s say we look at 100 school teachers, personal trainers, salespersons, nurses, doctors etc.\r\nOut of each 100, there will be a small percentage who do the job extremely well.\r\nThey will have unconscious and conscious skills, attitudes and abilities that push them ahead of the majority.\r\nNLP would look at the top percentage, study and model them and then teach those skills to others.\r\n<h4><span style=\"color: #008000;\"><strong>How can learning NLP help me?</strong></span></h4>\r\nNLP covers all areas of human life, communication, problem solving and therapy.\r\nLearning core NLP skills gives people a major advantage as they are aware of so much more unconscious communication.\r\nThey understand behaviour better and look at the world in a different way.\r\nWe are aware of so much more information that we were unaware of before.\r\n\r\nAs a result of learning NLP, our lives can be greatly improved. Our understanding and communication are better of nit just others and also ourselves. Our ability to learn new skills and abilities is vastly improved.\r\n<h4><span style=\"color: #008000;\"><strong>The Introduction To NLP Workshop</strong></span></h4>\r\nYour introduction to NLP will teach you some core skills to a group of about 20 people.\r\nThis introduction is interactive, meaning you will discover these skills yourself by working with others, seeing how they and you work and communicate.\r\n\r\nIf you would be interested in attending such an introduction please enter your details below.\r\nThis will allow us to judge the numbers and the best way to deliver this.\r\n\r\n[contact-form-7 id=\"3047\" title=\"NLP Events\"]\r\nYou can unsubscribe from this newsletter at any time using the link in every email.','Introduction to NLP Workshop','','inherit','closed','closed','','3044-revision-v1','','','2019-06-30 11:54:53','2019-06-30 11:54:53','',3044,'https://www.newcastle-hypnotherapy.com/3044-revision-v1/',0,'revision','',0),(3062,1,'2019-06-30 11:55:31','2019-06-30 11:55:31','<strong>We are planning a full introduction to NLP as so many of you who attend The Secret Workshops, have asked us to do so.</strong>\r\n\r\n<img class=\"alignleft size-medium wp-image-3060\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/power-384085_960_720-300x227.jpg\" alt=\"introduction to nlp\" width=\"300\" height=\"227\" />\r\n\r\nWe have a number of choices on how we can do this.\r\nIf you feel it is something you would like to explore please enter your details below and information will follow.\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><strong><span style=\"color: #008000;\">So what is NLP or Neuro-linguistic programming?</span></strong></h4>\r\nNLP is the study of excellent behaviour. Let\'s say we look at 100 school teachers, personal trainers, salespersons, nurses, doctors etc.\r\nOut of each 100, there will be a small percentage who do the job extremely well.\r\nThey will have unconscious and conscious skills, attitudes and abilities that push them ahead of the majority.\r\nNLP would look at the top percentage, study and model them and then teach those skills to others.\r\n<h4><span style=\"color: #008000;\"><strong>How can learning NLP help me?</strong></span></h4>\r\nNLP covers all areas of human life, communication, problem solving and therapy.\r\nLearning core NLP skills gives people a major advantage as they are aware of so much more unconscious communication.\r\nThey understand behaviour better and look at the world in a different way.\r\nWe are aware of so much more information that we were unaware of before.\r\n\r\nAs a result of learning NLP, our lives can be greatly improved. Our understanding and communication are better of nit just others and also ourselves. Our ability to learn new skills and abilities is vastly improved.\r\n<h4><span style=\"color: #008000;\"><strong>The Introduction To NLP Workshop</strong></span></h4>\r\nYour introduction to NLP will teach you some core skills to a group of about 20 people.\r\nThis introduction is interactive, meaning you will discover these skills yourself by working with others, seeing how they and you work and communicate.\r\n\r\nIf you would be interested in attending such an introduction please enter your details below.\r\nThis will allow us to judge the numbers and the best way to deliver this.\r\n\r\n[contact-form-7 id=\"3047\" title=\"NLP Events\"]\r\nYou can unsubscribe from this newsletter at any time using the link in every email.','Introduction to NLP Workshop','','inherit','closed','closed','','3044-revision-v1','','','2019-06-30 11:55:31','2019-06-30 11:55:31','',3044,'https://www.newcastle-hypnotherapy.com/3044-revision-v1/',0,'revision','',0),(3063,1,'2019-06-30 11:55:54','2019-06-30 11:55:54','<strong>We are planning a full introduction to NLP as so many of you who attend The Secret Workshops, have asked us to do so.</strong>\r\n\r\n<img class=\"alignleft wp-image-3060 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/power-384085_960_720.jpg\" alt=\"introduction to nlp\" width=\"950\" height=\"720\" />\r\n\r\nWe have a number of choices on how we can do this.\r\nIf you feel it is something you would like to explore please enter your details below and information will follow.\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4></h4>\r\n<h4><strong><span style=\"color: #008000;\">So what is NLP or Neuro-linguistic programming?</span></strong></h4>\r\nNLP is the study of excellent behaviour. Let\'s say we look at 100 school teachers, personal trainers, salespersons, nurses, doctors etc.\r\nOut of each 100, there will be a small percentage who do the job extremely well.\r\nThey will have unconscious and conscious skills, attitudes and abilities that push them ahead of the majority.\r\nNLP would look at the top percentage, study and model them and then teach those skills to others.\r\n<h4><span style=\"color: #008000;\"><strong>How can learning NLP help me?</strong></span></h4>\r\nNLP covers all areas of human life, communication, problem solving and therapy.\r\nLearning core NLP skills gives people a major advantage as they are aware of so much more unconscious communication.\r\nThey understand behaviour better and look at the world in a different way.\r\nWe are aware of so much more information that we were unaware of before.\r\n\r\nAs a result of learning NLP, our lives can be greatly improved. Our understanding and communication are better of nit just others and also ourselves. Our ability to learn new skills and abilities is vastly improved.\r\n<h4><span style=\"color: #008000;\"><strong>The Introduction To NLP Workshop</strong></span></h4>\r\nYour introduction to NLP will teach you some core skills to a group of about 20 people.\r\nThis introduction is interactive, meaning you will discover these skills yourself by working with others, seeing how they and you work and communicate.\r\n\r\nIf you would be interested in attending such an introduction please enter your details below.\r\nThis will allow us to judge the numbers and the best way to deliver this.\r\n\r\n[contact-form-7 id=\"3047\" title=\"NLP Events\"]\r\nYou can unsubscribe from this newsletter at any time using the link in every email.','Introduction to NLP Workshop','','inherit','closed','closed','','3044-revision-v1','','','2019-06-30 11:55:54','2019-06-30 11:55:54','',3044,'https://www.newcastle-hypnotherapy.com/3044-revision-v1/',0,'revision','',0),(3064,1,'2019-06-30 11:58:02','2019-06-30 11:58:02',' ','','','publish','closed','closed','','introduction-to-nlp-workshop','','','2019-09-13 13:58:05','2019-09-13 13:58:05','',0,'https://www.newcastle-hypnotherapy.com/?p=3064',17,'nav_menu_item','',0),(3149,1,'2019-09-08 10:25:39','2019-09-08 10:25:39','<span style=\"color: #008000;\"><strong><img class=\"alignleft wp-image-3145 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/09/deep-relaxation-300x188.jpg\" alt=\"deep relaxation\" width=\"300\" height=\"188\" />Learn Simple Deep Relaxation Mind &amp; Body Techniques To Improve Your Happiness, Health, Meditation &amp; Sleep\r\n</strong></span>\r\n\r\n<strong>Wednesday 18th September 7.30pm to 9.30 pm</strong>\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person\r\n<strong>Advance booking required</strong>\r\n<span style=\"color: #ff6600;\"><strong>Book your places below.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Learning to relax properly is a wonderful way to improve your health and quality of life.</strong>\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress, anxiety, tension and improves sleep.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Deep Relaxation Workshop</strong></span></h4>\r\n<strong>During this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid natural relaxation and happiness.</strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Learn how to</strong></span>\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>improve your meditation &amp; mindfulness practice</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n<strong>The Secrets Of Deep Relaxation Workshop</strong> takes place on Wednesday the 18th of September at The Vault, Wallsend.\r\nThis Secret Workshop runs from 7.30 pm to 9.30 pm and includes refreshments &amp; snacks.\r\nThe price is just £15 per person, advance booking is required and we are limited to just 20 people.\r\n\r\n<strong>Learn how to relax deeply by booking your place here now.</strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/deep-relaxation-mind-body-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about future Secret Workshops and events by joining the newsletter here.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.\r\n\r\n<strong><span style=\"color: #008000;\">The Newcastle Hypnotherapy</span></strong> <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #ff6600;\"><strong>Facebook Group for The Secret Workshops is here</strong></span></a>\r\n\r\nThe Deep Relaxation Mind &amp; Body Technique Workshop is just one of the many regular events that we organise on a monthly basis to help people feel better and improve life.\r\n\r\nMany people like to work with us by individual sessions to work on issues such as anxiety, stress, depression, self-confidence or to change habits or behaviour. Contact us to arrange your free phone consultation to examine your issue and to establish the best way forward for you.\r\n\r\n<strong>You can read some of the <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">feedback from our many happy clients here.</a></span></strong>\r\n\r\n&nbsp;','The Secrets Of Deep Relaxation Workshop','','inherit','closed','closed','','2813-revision-v1','','','2019-09-08 10:25:39','2019-09-08 10:25:39','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(3066,1,'2019-06-30 13:24:32','2019-06-30 13:24:32','<img class=\"alignleft wp-image-3060 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/power-384085_960_720.jpg\" alt=\"newcastle hypnotherapy events workshops\" width=\"950\" height=\"720\" /><strong>Newcastle Hypnotherapy regularly runs and take part in many local events, workshops, training and fairs to promote:\r\n</strong>\r\n<ul>\r\n 	<li>Life Enhancing Skills</li>\r\n 	<li>Handle Problems &amp; Challenges Better</li>\r\n 	<li>Build Confidence &amp; Make New Friends</li>\r\n 	<li>Personal Development</li>\r\n 	<li>Good Mental Health</li>\r\n</ul>\r\n<strong>We teach skills in</strong>\r\n<ul>\r\n 	<li>Neuro-Linguistic Programming - NLP,</li>\r\n 	<li>Hypnosis,</li>\r\n 	<li>Self-Hypnosis,</li>\r\n 	<li>Emotional Freedom Technique - EFT Tapping</li>\r\n 	<li>Meditation</li>\r\n 	<li>Mindfulness</li>\r\n 	<li>Relaxation</li>\r\n 	<li>Many other techniques and skills that really can make a difference.</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h2>\r\nNow running weekly and from various locations, teaching new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:24:32','2019-06-30 13:24:32','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3068,1,'2019-06-30 13:29:29','2019-06-30 13:29:29','<strong>Newcastle Hypnotherapy regularly runs and take part in many local events, workshops, training and fairs\r\n</strong>\r\n\r\nYou can learn about these events by joining the newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n\r\n&nbsp;\r\n\r\nIn these workshops you can lean:\r\n<ul>\r\n 	<li>Life Enhancing Skills</li>\r\n 	<li>Handle Problems &amp; Challenges Better</li>\r\n 	<li>Build Confidence &amp; Make New Friends</li>\r\n 	<li>Personal Development</li>\r\n 	<li>Good Mental Health</li>\r\n</ul>\r\n<strong>We teach skills in</strong>\r\n<ul>\r\n 	<li>Neuro-Linguistic Programming - NLP,</li>\r\n 	<li>Hypnosis,</li>\r\n 	<li>Self-Hypnosis,</li>\r\n 	<li>Emotional Freedom Technique - EFT Tapping</li>\r\n 	<li>Meditation</li>\r\n 	<li>Mindfulness</li>\r\n 	<li>Relaxation</li>\r\n 	<li>Many other techniques and skills that really can make a difference.</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h2>\r\nNow running weekly and from various locations, teaching new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:29:29','2019-06-30 13:29:29','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3069,1,'2019-06-30 13:31:02','2019-06-30 13:31:02','<strong>Newcastle Hypnotherapy runs and take part in many local events, workshops, training and fairs.\r\n\r\n<span style=\"color: #ff6600;\">You learn to be </span>clamer<span style=\"color: #ff6600;\">, more relaxed, happier, content, self-confident, energised and focused.</span>\r\n</strong>\r\n\r\nYou can learn about these events by joining the newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n\r\n&nbsp;\r\n\r\nIn these workshops you can lean:\r\n<ul>\r\n 	<li>Life Enhancing Skills</li>\r\n 	<li>Handle Problems &amp; Challenges Better</li>\r\n 	<li>Build Confidence &amp; Make New Friends</li>\r\n 	<li>Personal Development</li>\r\n 	<li>Good Mental Health</li>\r\n</ul>\r\n<strong>We teach skills in</strong>\r\n<ul>\r\n 	<li>Neuro-Linguistic Programming - NLP,</li>\r\n 	<li>Hypnosis,</li>\r\n 	<li>Self-Hypnosis,</li>\r\n 	<li>Emotional Freedom Technique - EFT Tapping</li>\r\n 	<li>Meditation</li>\r\n 	<li>Mindfulness</li>\r\n 	<li>Relaxation</li>\r\n 	<li>Many other techniques and skills that really can make a difference.</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h2>\r\nNow running weekly and from various locations, teaching new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:31:02','2019-06-30 13:31:02','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3070,1,'2019-06-30 13:31:40','2019-06-30 13:31:40','<strong>Newcastle Hypnotherapy runs and take part in many local events, workshops, training and fairs.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">You learn to be calmer, more relaxed, happier, content, self-confident, energised and focused.</span></strong>\r\n\r\nYou can learn about these events by joining the newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n\r\n&nbsp;\r\n\r\nIn these workshops you can lean:\r\n<ul>\r\n 	<li>Life Enhancing Skills</li>\r\n 	<li>Handle Problems &amp; Challenges Better</li>\r\n 	<li>Build Confidence &amp; Make New Friends</li>\r\n 	<li>Personal Development</li>\r\n 	<li>Good Mental Health</li>\r\n</ul>\r\n<strong>We teach skills in</strong>\r\n<ul>\r\n 	<li>Neuro-Linguistic Programming - NLP,</li>\r\n 	<li>Hypnosis,</li>\r\n 	<li>Self-Hypnosis,</li>\r\n 	<li>Emotional Freedom Technique - EFT Tapping</li>\r\n 	<li>Meditation</li>\r\n 	<li>Mindfulness</li>\r\n 	<li>Relaxation</li>\r\n 	<li>Many other techniques and skills that really can make a difference.</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h2>\r\nNow running weekly and from various locations, teaching new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:31:40','2019-06-30 13:31:40','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3071,1,'2019-06-30 13:32:20','2019-06-30 13:32:20','<strong>Newcastle Hypnotherapy runs and take part in many local events, workshops, training and fairs.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">You learn to be calmer, more relaxed, happier, content, self-confident, energised and focused.</span></strong>\r\n\r\nYou can learn about these events by joining the newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li>Life Enhancing Skills</li>\r\n 	<li>Handle Problems &amp; Challenges Better</li>\r\n 	<li>Build Confidence &amp; Make New Friends</li>\r\n 	<li>Personal Development</li>\r\n 	<li>Good Mental Health</li>\r\n</ul>\r\n<strong>We teach skills in</strong>\r\n<ul>\r\n 	<li>Neuro-Linguistic Programming - NLP,</li>\r\n 	<li>Hypnosis,</li>\r\n 	<li>Self-Hypnosis,</li>\r\n 	<li>Emotional Freedom Technique - EFT Tapping</li>\r\n 	<li>Meditation</li>\r\n 	<li>Mindfulness</li>\r\n 	<li>Relaxation</li>\r\n 	<li>Many other techniques and skills that really can make a difference.</li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h2>\r\nNow running weekly and from various locations, teaching new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:32:20','2019-06-30 13:32:20','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3072,1,'2019-06-30 13:32:42','2019-06-30 13:32:42','<strong>Newcastle Hypnotherapy runs and take part in many local events, workshops, training and fairs.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">You learn to be calmer, more relaxed, happier, content, self-confident, energised and focused.</span></strong>\r\n\r\nYou can learn about these events by joining the newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<strong>We teach skills in</strong>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP,</strong></li>\r\n 	<li><strong>Hypnosis,</strong></li>\r\n 	<li><strong>Self-Hypnosis,</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h2>\r\nNow running weekly and from various locations, teaching new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:32:42','2019-06-30 13:32:42','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3073,1,'2019-06-30 13:33:23','2019-06-30 13:33:23','<strong>Newcastle Hypnotherapy runs and take part in many local events, workshops, training and fairs.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">You learn to be calmer, more relaxed, happier, content, self-confident, energised and focused.</span></strong>\r\n\r\nYou can learn about these events by joining the newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP,</strong></li>\r\n 	<li><strong>Hypnosis,</strong></li>\r\n 	<li><strong>Self-Hypnosis,</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h2>\r\nNow running weekly and from various locations, teaching new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:33:23','2019-06-30 13:33:23','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0);
INSERT INTO `wpqj_posts` VALUES (3074,1,'2019-06-30 13:33:58','2019-06-30 13:33:58','<strong>Newcastle Hypnotherapy runs and take part in many local events, workshops, training and fairs.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">You learn to be calmer, more relaxed, happier, content, self-confident, energised and focused.</span></strong>\r\n\r\nYou can learn about these events by joining the newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h2>\r\nNow running weekly and from various locations, teaching new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n\r\nBooking advance is always required and a small fee is charged to cover the costs. This is a non-profit event.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\n\r\n<span style=\"color: #008000;\"><strong>For the latest events information by email please join our newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n</strong></span>\r\n\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss</span> </strong></span>\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:33:58','2019-06-30 13:33:58','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3075,1,'2019-06-30 13:41:10','2019-06-30 13:41:10','<strong>Newcastle Hypnotherapy runs and take part in many local events, workshops, training and fairs.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">You learn to be calmer, more relaxed, happier, content, self-confident, energised and focused.</span></strong>\r\n\r\nYou can learn about these events by joining the newsletter below.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h2>\r\nNow running weekly and from various locations, teaching new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:41:10','2019-06-30 13:41:10','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3076,1,'2019-06-30 13:41:53','2019-06-30 13:41:53','<strong>Newcastle Hypnotherapy runs and take part in many local events, workshops, training and fairs.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">You learn to be calmer, more relaxed, happier, content, self-confident, energised and focused.</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">You can learn about these events by joining the newsletter below.</span></strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.</h4>\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h2>\r\nNow running weekly and from various locations, teaching new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:41:53','2019-06-30 13:41:53','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3077,1,'2019-06-30 13:42:23','2019-06-30 13:42:23','<strong>Newcastle Hypnotherapy runs and take part in many local events, workshops, training and fairs.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">You learn to be calmer, more relaxed, happier, content, self-confident, energised and focused.</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">You can learn about these events by joining the newsletter below.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h2>\r\nNow running weekly and from various locations, teaching new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:42:23','2019-06-30 13:42:23','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3078,1,'2019-06-30 13:44:16','2019-06-30 13:44:16','<strong>Newcastle Hypnotherapy runs and take part in many local events, workshops, training and fairs.</strong>\r\n\r\n<strong><span style=\"color: #ff6600;\">You learn to be calmer, more relaxed, happier, content, self-confident, energised and focused.</span></strong>\r\n<h4><strong><span style=\"color: #008000;\">You can learn about these events by joining the newsletter below.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h2>\r\nNow running weekly and from various locations, teaching new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an indepth event, teaching you deeper skills and techniques.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:44:16','2019-06-30 13:44:16','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3079,1,'2019-06-30 13:47:58','2019-06-30 13:47:58','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teach you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">You can learn about these events by joining the newsletter below.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h2>\r\nNow running weekly and from various locations, teaching new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an indepth event, teaching you deeper skills and techniques.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:47:58','2019-06-30 13:47:58','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3080,1,'2019-06-30 13:48:44','2019-06-30 13:48:44','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teach you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h2>\r\nNow running weekly and from various locations, teaching new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an indepth event, teaching you deeper skills and techniques.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:48:44','2019-06-30 13:48:44','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3081,1,'2019-06-30 13:49:39','2019-06-30 13:49:39','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teach you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h2>\r\nNow running weekly and from various locations, teaching new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an indepth event, teaching you deeper skills and techniques.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:49:39','2019-06-30 13:49:39','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3082,1,'2019-06-30 13:51:30','2019-06-30 13:51:30','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teach you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h2>\r\nNow running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East.\r\nYou can learn powerful new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an indepth event, teaching you deeper skills and techniques.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:51:30','2019-06-30 13:51:30','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3083,1,'2019-06-30 13:52:06','2019-06-30 13:52:06','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teach you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h2>\r\nNow running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:\r\nSelf-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an indepth event, teaching you deeper skills and techniques.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:52:06','2019-06-30 13:52:06','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3084,1,'2019-06-30 13:52:41','2019-06-30 13:52:41','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teach you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h2><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h2>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h2><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h2>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an indepth event, teaching you deeper skills and techniques.\r\n<h2><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h2>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n&nbsp;\r\n<h2><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h2>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\n<h2><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h2>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h2><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h2>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:52:41','2019-06-30 13:52:41','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3085,1,'2019-06-30 13:54:42','2019-06-30 13:54:42','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teach you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an indepth event, teaching you deeper skills and techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:54:42','2019-06-30 13:54:42','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3086,1,'2019-06-30 13:55:17','2019-06-30 13:55:17','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:55:17','2019-06-30 13:55:17','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3087,1,'2019-06-30 13:56:38','2019-06-30 13:56:38','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:56:38','2019-06-30 13:56:38','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3088,1,'2019-06-30 13:57:31','2019-06-30 13:57:31','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n<h4><strong>Learn about these events by joining the newsletter.</strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:57:31','2019-06-30 13:57:31','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3089,1,'2019-06-30 13:57:59','2019-06-30 13:57:59','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 13:57:59','2019-06-30 13:57:59','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3090,1,'2019-06-30 14:07:03','2019-06-30 14:07:03','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which teherapies will bes best for you and the best way forward.\r\nSimply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></strong></span> to book your free session.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 14:07:03','2019-06-30 14:07:03','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3091,1,'2019-06-30 14:08:04','2019-06-30 14:08:04','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.\r\n<img class=\"alignleft size-medium wp-image-3004\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit-300x157.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"300\" height=\"157\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which teherapies will bes best for you and the best way forward.\r\nSimply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></strong></span> to book your free session.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 14:08:04','2019-06-30 14:08:04','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3092,1,'2019-06-30 14:08:37','2019-06-30 14:08:37','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which teherapies will bes best for you and the best way forward.\r\nSimply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></strong></span> to book your free session.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 14:08:37','2019-06-30 14:08:37','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3093,1,'2019-06-30 14:10:19','2019-06-30 14:10:19','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.\r\n\r\n</span></strong></p>\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for the feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which teherapies will bes best for you and the best way forward.\r\nSimply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></strong></span> to book your free session.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 14:10:19','2019-06-30 14:10:19','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3094,1,'2019-06-30 14:19:02','2019-06-30 14:19:02','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for the feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which teherapies will bes best for you and the best way forward.\r\nSimply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></strong></span> to book your free session.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 14:19:02','2019-06-30 14:19:02','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3095,1,'2019-06-30 14:21:53','2019-06-30 14:21:53','','newcastle hypnotherapy events and workshops','','inherit','open','closed','','hayley','','','2019-06-30 14:22:22','2019-06-30 14:22:22','',322,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg',0,'attachment','image/jpeg',0),(3096,1,'2019-06-30 14:22:47','2019-06-30 14:22:47','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for the feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\nThank you for the feedback\r\n\r\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which teherapies will bes best for you and the best way forward.\r\nSimply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></strong></span> to book your free session.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 14:22:47','2019-06-30 14:22:47','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3097,1,'2019-06-30 14:23:50','2019-06-30 14:23:50','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for the feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\nThank you for the feedback\r\n\r\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which teherapies will bes best for you and the best way forward.\r\nSimply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></strong></span> to book your free session.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 14:23:50','2019-06-30 14:23:50','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3098,1,'2019-06-30 14:25:23','2019-06-30 14:25:23','','newcastle hypnotherapy workshops and events','','inherit','open','closed','','gail','','','2019-06-30 14:25:54','2019-06-30 14:25:54','',322,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/gail.jpg',0,'attachment','image/jpeg',0),(3099,1,'2019-06-30 14:26:00','2019-06-30 14:26:00','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for the feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\nThank you for the feedback\r\n\r\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\nThank you for the feedback\r\n<img class=\"alignleft size-full wp-image-3098\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/gail.jpg\" alt=\"newcastle hypnotherapy workshops and events\" width=\"619\" height=\"194\" />\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which teherapies will bes best for you and the best way forward.\r\nSimply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></strong></span> to book your free session.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 14:26:00','2019-06-30 14:26:00','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3100,1,'2019-06-30 14:26:30','2019-06-30 14:26:30','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for the feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\nThank you for the feedback\r\n\r\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\nThank you for the feedback\r\n<img class=\"alignleft size-full wp-image-3098\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/gail.jpg\" alt=\"newcastle hypnotherapy workshops and events\" width=\"619\" height=\"194\" />\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which teherapies will bes best for you and the best way forward.\r\nSimply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></strong></span> to book your free session.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 14:26:30','2019-06-30 14:26:30','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3101,1,'2019-06-30 14:27:09','2019-06-30 14:27:09','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for the feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\nThank you for the feedback\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\nThank you for the feedback\r\n\r\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\nThank you for the feedback\r\n<img class=\"alignleft size-full wp-image-3098\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/gail.jpg\" alt=\"newcastle hypnotherapy workshops and events\" width=\"619\" height=\"194\" />\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which teherapies will bes best for you and the best way forward.\r\nSimply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></strong></span> to book your free session.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 14:27:09','2019-06-30 14:27:09','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3102,1,'2019-06-30 14:28:29','2019-06-30 14:28:29','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for your feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n<strong>Thank you for your feedback</strong>\r\n\r\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft size-full wp-image-3098\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/gail.jpg\" alt=\"newcastle hypnotherapy workshops and events\" width=\"619\" height=\"194\" />\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which teherapies will bes best for you and the best way forward.\r\nSimply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><strong><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></strong></span> to book your free session.\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 14:28:29','2019-06-30 14:28:29','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3103,1,'2019-06-30 14:29:40','2019-06-30 14:29:40','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for your feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n<strong>Thank you for your feedback</strong>\r\n\r\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft size-full wp-image-3098\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/gail.jpg\" alt=\"newcastle hypnotherapy workshops and events\" width=\"619\" height=\"194\" />\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which teherapies will bes best for you and the best way forward.\r\n<strong>Simply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></span> to book your free session.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 14:29:40','2019-06-30 14:29:40','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3104,1,'2019-06-30 14:31:42','2019-06-30 14:31:42','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for your feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n<strong>Thank you for your feedback</strong>\r\n\r\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft size-full wp-image-3098\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/gail.jpg\" alt=\"newcastle hypnotherapy workshops and events\" width=\"619\" height=\"194\" />\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which teherapies will bes best for you and the best way forward.\r\n<strong>Simply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></span> to book your free session.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What did the NHS Dr say about Newcastle </strong>Hypnotherapy<strong>?</strong></span></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 14:31:42','2019-06-30 14:31:42','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3105,1,'2019-06-30 14:34:44','2019-06-30 14:34:44','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for your feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n<strong>Thank you for your feedback</strong>\r\n\r\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft size-full wp-image-3098\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/gail.jpg\" alt=\"newcastle hypnotherapy workshops and events\" width=\"619\" height=\"194\" />\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which therapies will be best for you and the best way forward.\r\n<strong>Simply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></span> to book your free session.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What did the NHS Dr say about Newcastle </strong>Hypnotherapy<strong>?</strong></span></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Simply call 07568 455 809 today to get started or <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a> to book your free session.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 14:34:44','2019-06-30 14:34:44','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3106,1,'2019-06-30 14:35:13','2019-06-30 14:35:13','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for your feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n<strong>Thank you for your feedback</strong>\r\n\r\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft size-full wp-image-3098\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/gail.jpg\" alt=\"newcastle hypnotherapy workshops and events\" width=\"619\" height=\"194\" />\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which therapies will be best for you and the best way forward.\r\n<strong>Simply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></span> to book your free session.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What did the NHS Dr say about Newcastle </strong>Hypnotherapy<strong>?</strong></span></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Simply call 07568 455 809 today to get started or <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a> to book your free session.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 14:35:13','2019-06-30 14:35:13','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3107,1,'2019-06-30 14:36:07','2019-06-30 14:36:07','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for your feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n<strong>Thank you for your feedback</strong>\r\n\r\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft size-full wp-image-3098\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/gail.jpg\" alt=\"newcastle hypnotherapy workshops and events\" width=\"619\" height=\"194\" />\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which therapies will be best for you and the best way forward.\r\n<strong>Simply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></span> to book your free session.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What did the NHS Dr say about Newcastle </strong>Hypnotherapy<strong>?</strong></span></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n\r\n<strong>Simply call 07568 455 809 today to get started or <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a> to book your free session.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-06-30 14:36:07','2019-06-30 14:36:07','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3109,1,'2019-06-30 17:28:00','2019-06-30 17:28:00','Many of our anxiety clients have found this simple Deep Breathing Exercise really helps with anxiety &amp; stress symptoms.\r\nLearn &amp; practice this simple exercise and let us know how much this also helps you in the comments below.\r\n<h2><strong><span style=\"color: #008000;\">Deep Breathing Exercise for Anxiety &amp; Stress\r\n</span></strong></h2>\r\nhttps://youtu.be/TaZcFc2mRA0\r\n\r\n<strong>You can find even more anxiety tips and techniques when you join the newsletter today. Enter your details here.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can remove yourself any time.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #ff6600;\"><strong>Anxiety Hypnotherapy Client Feedback by Steve</strong></span></a>\r\n<em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">How can Hypnotherapy and NLP help with anxiety symptoms?</span></strong></h2>\r\nVery simply hypnosis and NLP are great ways to improve mental health, reducing anxiety and stress problems.\r\nThe first thing we do is to reduce or remove any stress issues and change the way you react to your anxiety triggers.\r\nWe can teach you how to relax and stay calm in almost every situation and then replace those old feelings of anxiety and stress with feelings of strength, calm, confidence and energy.\r\n<h2><span style=\"color: #008000;\">What types of</span> <span style=\"color: #008000;\">Anxiety will hypnosis help with?</span></h2>\r\nThe NHS do like to give Anxiety Symptoms labels, such as Generalised Anxiety Disorder, Social Anxiety, Panic Attacks etc. We believe that almost every anxiety condition will benefit from hypnotherapy and NLP techniques. Our clients find they obtain great results quickly with improvements continuing as you practice the exercises and listen to the personalised hypnosis audio track that we supply.\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Anxiety Issues?</strong></span></h2>\r\nYour first step to resolving your anxiety issue is to arrange a free 15-minute phone consultation to work out the best strategy for you.\r\nWe do have an <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\"><strong><em>Anxiety Relief Hypnosis Program </em></strong></a>that works very well for most clients. Of course, we do tailor the program to each client\'s needs as everyone is different with a different history. You can click here to <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong><em>arrange your free phone consultation now</em> </strong></a>or give us a call on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Hypnotherapy Client Feedback by Malcolm</strong>.\r\n</span><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong>\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy near me for Anxiety?</span><em>\r\n</em></strong></h2>\r\nWe work with anxiety clients through online sessions and face to face sessions and through group workshops.\r\nIf you are not local to us, online anxiety sessions will work just as personal sessions. Simply ask about this when you arrange your free phone consultation.\r\nYou an also take part in the <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshops</a></strong> where we teach Self-Hypnosis, Anxiety Freedom Techniques, Meditation, Mindfulness, EFT Tapping and other useful skills for great mental health.','Anxiety Breathing Excercises','','inherit','closed','closed','','1960-revision-v1','','','2019-06-30 17:28:00','2019-06-30 17:28:00','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(3110,1,'2019-06-30 17:28:53','2019-06-30 17:28:53','Many of our anxiety clients have found this simple Deep Breathing Exercise really helps with anxiety &amp; stress symptoms.\r\nLearn &amp; practice this simple exercise and let us know how much this also helps you in the comments below.\r\n<h2><strong><span style=\"color: #008000;\">Deep Breathing Exercise for Anxiety &amp; Stress\r\n</span></strong></h2>\r\nhttps://youtu.be/TaZcFc2mRA0\r\n\r\n<strong>You can find even more anxiety tips and techniques when you join the newsletter today. Enter your details here.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can remove yourself any time.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #ff6600;\"><strong>Anxiety Hypnotherapy Client Feedback by Steve</strong></span></a>\r\n<em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h2><strong><span style=\"color: #008000;\">How can Hypnotherapy and NLP help with anxiety symptoms?</span></strong></h2>\r\nVery simply hypnosis and NLP are great ways to improve mental health, reducing anxiety and stress problems.\r\nThe first thing we do is to reduce or remove any stress issues and change the way you react to your anxiety triggers.\r\nWe can teach you how to relax and stay calm in almost every situation and then replace those old feelings of anxiety and stress with feelings of strength, calm, confidence and energy.\r\n<h2><span style=\"color: #008000;\">What types of</span> <span style=\"color: #008000;\">Anxiety will hypnosis help with?</span></h2>\r\nThe NHS do like to give Anxiety Symptoms labels, such as Generalised Anxiety Disorder, Social Anxiety, Panic Attacks etc. We believe that almost every anxiety condition will benefit from hypnotherapy and NLP techniques. Our clients find they obtain great results quickly with improvements continuing as you practice the exercises and listen to the personalised hypnosis audio track that we supply.\r\n<h2><span style=\"color: #008000;\"><strong>Are you ready to take control of your Anxiety Issues?</strong></span></h2>\r\nYour first step to resolving your anxiety issue is to arrange a free 15-minute phone consultation to work out the best strategy for you.\r\nWe do have an <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\"><strong><em>Anxiety Relief Hypnosis Program </em></strong></a>that works very well for most clients. Of course, we do tailor the program to each client\'s needs as everyone is different with a different history. You can click here to <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong><em>arrange your free phone consultation now</em> </strong></a>or give us a call on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Hypnotherapy Client Feedback by Malcolm</strong>.\r\n</span><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong>\r\n<h2><strong><span style=\"color: #008000;\">Hypnotherapy near me for Anxiety?</span><em>\r\n</em></strong></h2>\r\nWe work with anxiety clients through online sessions and face to face sessions and through group workshops.\r\nIf you are not local to us, online anxiety sessions will work just as personal sessions. Simply ask about this when you arrange your free phone consultation.\r\nYou an also take part in the <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshops</a></strong> where we teach Self-Hypnosis, Anxiety Freedom Techniques, Meditation, Mindfulness, EFT Tapping and other useful skills for great mental health.','Deep Breathing Excercise For Anxiety & Stress','','inherit','closed','closed','','1960-revision-v1','','','2019-06-30 17:28:53','2019-06-30 17:28:53','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(3111,1,'2019-06-30 17:30:58','2019-06-30 17:30:58','Many of our anxiety clients have found this simple Deep Breathing Exercise really helps with anxiety &amp; stress symptoms.\r\nLearn &amp; practice this simple exercise and let us know how much this also helps you in the comments below.\r\n<h2><strong><span style=\"color: #008000;\">Deep Breathing Exercise for Anxiety &amp; Stress\r\n</span></strong></h2>\r\nhttps://youtu.be/TaZcFc2mRA0\r\n\r\n<strong>You can find even more anxiety tips and techniques when you join the newsletter today. Enter your details here.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can remove yourself any time.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #ff6600;\"><strong>Anxiety Hypnotherapy Client Feedback by Steve</strong></span></a>\r\n<em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How can Hypnotherapy and NLP help with anxiety symptoms?</span></strong></h4>\r\nVery simply hypnosis and NLP are great ways to improve mental health, reducing anxiety and stress problems.\r\nThe first thing we do is to reduce or remove any stress issues and change the way you react to your anxiety triggers.\r\nWe can teach you how to relax and stay calm in almost every situation and then replace those old feelings of anxiety and stress with feelings of strength, calm, confidence and energy.\r\n<h4><span style=\"color: #008000;\">What types of</span> <span style=\"color: #008000;\">Anxiety will hypnosis help with?</span></h4>\r\nThe NHS do like to give Anxiety Symptoms labels, such as Generalised Anxiety Disorder, Social Anxiety, Panic Attacks etc. We believe that almost every anxiety condition will benefit from hypnotherapy and NLP techniques. Our clients find they obtain great results quickly with improvements continuing as you practice the exercises and listen to the personalised hypnosis audio track that we supply.\r\n<h4><span style=\"color: #008000;\"><strong>Are you ready to take control of your Anxiety Issues?</strong></span></h4>\r\nYour first step to resolving your anxiety issue is to arrange a free 15-minute phone consultation to work out the best strategy for you.\r\nWe do have an <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\"><strong><em>Anxiety Relief Hypnosis Program </em></strong></a>that works very well for most clients. Of course, we do tailor the program to each client\'s needs as everyone is different with a different history. You can click here to <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong><em>arrange your free phone consultation now</em> </strong></a>or give us a call on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Hypnotherapy Client Feedback by Malcolm</strong>.\r\n</span><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy near me for Anxiety?</span><em>\r\n</em></strong></h4>\r\nWe work with anxiety clients through online sessions and face to face sessions and through group workshops.\r\nIf you are not local to us, online anxiety sessions will work just as personal sessions. Simply ask about this when you arrange your free phone consultation.\r\nYou an also take part in the <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshops</a></strong> where we teach Self-Hypnosis, Anxiety Freedom Techniques, Meditation, Mindfulness, EFT Tapping and other useful skills for great mental health.','Deep Breathing Excercise For Anxiety & Stress','','inherit','closed','closed','','1960-revision-v1','','','2019-06-30 17:30:58','2019-06-30 17:30:58','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(3112,1,'2019-06-30 17:31:48','2019-06-30 17:31:48','Many of our anxiety clients have found this simple Deep Breathing Exercise really helps with anxiety &amp; stress symptoms.\r\nLearn &amp; practice this simple exercise and let us know how much this also helps you in the comments below.\r\n<h2><strong><span style=\"color: #008000;\">Deep Breathing Exercise for Anxiety &amp; Stress\r\n</span></strong></h2>\r\nhttps://youtu.be/TaZcFc2mRA0\r\n\r\n<strong>You can find even more anxiety tips and techniques when you join the newsletter today. Enter your details here.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can remove yourself any time.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #ff6600;\"><strong>Anxiety Hypnotherapy Client Feedback by Steve</strong></span></a>\r\n<em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">How can Hypnotherapy and NLP help with anxiety symptoms?</span></strong></h4>\r\nVery simply hypnosis and NLP are great ways to improve mental health, reducing anxiety and stress problems.\r\nThe first thing we do is to reduce or remove any stress issues and change the way you react to your anxiety triggers.\r\nWe can teach you how to relax and stay calm in almost every situation and then replace those old feelings of anxiety and stress with feelings of strength, calm, confidence and energy.\r\n<h4><span style=\"color: #008000;\">What types of</span> <span style=\"color: #008000;\">Anxiety will hypnosis help with?</span></h4>\r\nThe NHS do like to give Anxiety Symptoms labels, such as Generalised Anxiety Disorder, Social Anxiety, Panic Attacks etc. We believe that almost every anxiety condition will benefit from hypnotherapy and NLP techniques. Our clients find they obtain great results quickly with improvements continuing as you practice the exercises and listen to the personalised hypnosis audio track that we supply.\r\n<h4><span style=\"color: #008000;\"><strong>Are you ready to take control of your Anxiety Issues?</strong></span></h4>\r\nYour first step to resolving your anxiety issue is to arrange a free 15-minute phone consultation to work out the best strategy for you.\r\nWe do have an <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\"><strong><em>Anxiety Relief Hypnosis Program </em></strong></a>that works very well for most clients. Of course, we do tailor the program to each client\'s needs as everyone is different with a different history. You can click here to <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong><em>arrange your free phone consultation now</em> </strong></a>or give us a call on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Hypnotherapy Client Feedback by Malcolm</strong>.\r\n</span><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy near me for Anxiety?</span><em>\r\n</em></strong></h4>\r\nWe work with anxiety clients through online sessions and face to face sessions and through group workshops.\r\nIf you are not local to us, online anxiety sessions will work just as personal sessions. Simply ask about this when you arrange your free phone consultation.\r\nYou cann also take part in the <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Wednesday Workshops</a></strong> where we teach Self-Hypnosis, Anxiety Freedom Techniques, Meditation, Mindfulness, EFT Tapping and other useful skills for great mental health.','Deep Breathing Excercise For Anxiety & Stress','','inherit','closed','closed','','1960-revision-v1','','','2019-06-30 17:31:48','2019-06-30 17:31:48','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(3114,1,'2019-06-30 17:35:49','2019-06-30 17:35:49','Many of our anxiety clients have found this simple Deep Breathing Exercise really helps with anxiety &amp; stress symptoms.\r\nLearn &amp; practice this simple exercise and let us know how much this also helps you in the comments below.\r\n<h2><strong><span style=\"color: #008000;\">Deep Breathing Exercise for Anxiety &amp; Stress\r\n</span></strong></h2>\r\nhttps://youtu.be/TaZcFc2mRA0\r\n\r\n<strong>You can find even more anxiety tips and techniques when you join the newsletter today. Enter your details here.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can remove yourself any time.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #ff6600;\"><strong>Anxiety Hypnotherapy Client Feedback by Steve</strong></span></a>\r\n<em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can’t thank you enough. Steve “</strong></em>\r\n<h4><strong><span style=\"color: #008000;\">https://youtu.be/cudUGD_t74I</span></strong></h4>\r\n<h4><strong><span style=\"color: #008000;\">\r\nHow can Hypnotherapy and NLP help with anxiety symptoms?</span></strong></h4>\r\nVery simply hypnosis and NLP are great ways to improve mental health, reducing anxiety and stress problems.\r\nThe first thing we do is to reduce or remove any stress issues and change the way you react to your anxiety triggers.\r\nWe can teach you how to relax and stay calm in almost every situation and then replace those old feelings of anxiety and stress with feelings of strength, calm, confidence and energy.\r\n<h4><span style=\"color: #008000;\">What types of</span> <span style=\"color: #008000;\">Anxiety will hypnosis help with?</span></h4>\r\nThe NHS do like to give Anxiety Symptoms labels, such as Generalised Anxiety Disorder, Social Anxiety, Panic Attacks etc. We believe that almost every anxiety condition will benefit from hypnotherapy and NLP techniques. Our clients find they obtain great results quickly with improvements continuing as you practice the exercises and listen to the personalised hypnosis audio track that we supply.\r\n<h4><span style=\"color: #008000;\"><strong>Are you ready to take control of your Anxiety Issues?</strong></span></h4>\r\nYour first step to resolving your anxiety issue is to arrange a free 15-minute phone consultation to work out the best strategy for you.\r\nWe do have an <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\"><strong><em>Anxiety Relief Hypnosis Program </em></strong></a>that works very well for most clients. Of course, we do tailor the program to each client\'s needs as everyone is different with a different history. You can click here to <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong><em>arrange your free phone consultation now</em> </strong></a>or give us a call on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Hypnotherapy Client Feedback by Malcolm</strong>.\r\n</span><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy near me for Anxiety?</span><em>\r\n</em></strong></h4>\r\nWe work with anxiety clients through online sessions and face to face sessions and through group workshops.\r\nIf you are not local to us, online anxiety sessions will work just as personal sessions. Simply ask about this when you arrange your free phone consultation.\r\nYou can also take part in <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">The Secret Workshops</a></strong> where we teach Self-Hypnosis, Anxiety Freedom Techniques, Meditation, Mindfulness, EFT Tapping and other useful skills for great mental health.','Deep Breathing Excercise For Anxiety & Stress','','inherit','closed','closed','','1960-revision-v1','','','2019-06-30 17:35:49','2019-06-30 17:35:49','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(3115,1,'2019-06-30 17:37:11','2019-06-30 17:37:11','Many of our anxiety clients have found this simple Deep Breathing Exercise really helps with anxiety &amp; stress symptoms.\r\nLearn &amp; practice this simple exercise and let us know how much this also helps you in the comments below.\r\n<h2><strong><span style=\"color: #008000;\">Deep Breathing Exercise for Anxiety &amp; Stress\r\n</span></strong></h2>\r\nhttps://youtu.be/TaZcFc2mRA0\r\n\r\n<strong>You can find even more anxiety tips and techniques when you join the newsletter today. Enter your details here.</strong>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYour privacy is always safe and you can remove yourself any time.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\"><span style=\"color: #ff6600;\"><strong>Anxiety Hypnotherapy Client Feedback by Steve</strong></span></a>\r\n<em><strong>“Hi Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> has been under control and I now feel I have my life back. I can’t thank you enough. Steve “\r\n\r\nWhat did the NHS Dr say about our Anxiety &amp; Stress service?\r\n</strong></em>\r\n\r\nhttps://youtu.be/cudUGD_t74I\r\n<h4><strong><span style=\"color: #008000;\">How can Hypnotherapy and NLP help with anxiety symptoms?</span></strong></h4>\r\nVery simply hypnosis and NLP are great ways to improve mental health, reducing anxiety and stress problems.\r\nThe first thing we do is to reduce or remove any stress issues and change the way you react to your anxiety triggers.\r\nWe can teach you how to relax and stay calm in almost every situation and then replace those old feelings of anxiety and stress with feelings of strength, calm, confidence and energy.\r\n<h4><span style=\"color: #008000;\">What types of</span> <span style=\"color: #008000;\">Anxiety will hypnosis help with?</span></h4>\r\nThe NHS do like to give Anxiety Symptoms labels, such as Generalised Anxiety Disorder, Social Anxiety, Panic Attacks etc. We believe that almost every anxiety condition will benefit from hypnotherapy and NLP techniques. Our clients find they obtain great results quickly with improvements continuing as you practice the exercises and listen to the personalised hypnosis audio track that we supply.\r\n<h4><span style=\"color: #008000;\"><strong>Are you ready to take control of your Anxiety Issues?</strong></span></h4>\r\nYour first step to resolving your anxiety issue is to arrange a free 15-minute phone consultation to work out the best strategy for you.\r\nWe do have an <a href=\"https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/\"><strong><em>Anxiety Relief Hypnosis Program </em></strong></a>that works very well for most clients. Of course, we do tailor the program to each client\'s needs as everyone is different with a different history. You can click here to <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\"><strong><em>arrange your free phone consultation now</em> </strong></a>or give us a call on <a class=\"C8TUKc ibAyupR_agB4-6WH35iSZ2V0 rllt__link a-no-hover-decoration\" tabindex=\"0\" data-rtid=\"ibAyupR_agB4\" data-cid=\"3097112178469321316\" data-ved=\"0ahUKEwiD9aiFo8fdAhXMFsAKHS4fDnwQyTMIbzAE\"><span class=\"rllt__details lqhpac\"><strong>07568 455</strong> <strong>809</strong></span></a> today.\r\n\r\n<span style=\"color: #ff6600;\"><strong>Hypnotherapy Client Feedback by Malcolm</strong>.\r\n</span><strong><em>“I have had several sessions with Mark, and, needing to build up my self-confidence, the difference has been quite something!! I have a stronger self-belief, feeling more able to take on new challenges. If you’re looking to make changes in your life, but, finding that it’s a challenge, not getting any further, then I recommend you book with Mark and see the difference for yourself.”</em></strong>\r\n<h4><strong><span style=\"color: #008000;\">Hypnotherapy near me for Anxiety?</span><em>\r\n</em></strong></h4>\r\nWe work with anxiety clients through online sessions and face to face sessions and through group workshops.\r\nIf you are not local to us, online anxiety sessions will work just as personal sessions. Simply ask about this when you arrange your free phone consultation.\r\nYou can also take part in <strong><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">The Secret Workshops</a></strong> where we teach Self-Hypnosis, Anxiety Freedom Techniques, Meditation, Mindfulness, EFT Tapping and other useful skills for great mental health.','Deep Breathing Excercise For Anxiety & Stress','','inherit','closed','closed','','1960-revision-v1','','','2019-06-30 17:37:11','2019-06-30 17:37:11','',1960,'https://www.newcastle-hypnotherapy.com/1960-revision-v1/',0,'revision','',0),(3117,1,'2019-06-30 18:39:07','2019-06-30 18:39:07','Tapping is a powerful technique that is most useful for many of our clients. However there are many types of tapping.\r\nHere is the most powerful, simple tapping routine that we have found.\r\n<div class=\"_5w1r _3_om _5wdf\">\r\n<div class=\"_4gx_\">\r\n<div class=\"_1aa6\"><span class=\"_5yl5\">https://youtu.be/-fJrfAYMPPE</span></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">EFT - Emotional Freedom Technique</span></strong></h4>\r\n&nbsp;\r\n\r\nEFT or Emotional Freedom Technique can be used to help with many issues and problems.\r\nWe find it is extremely effective for pain, both physical pain or emotional pain and can quickly reduce both down in a few minutes.\r\n\r\n<strong><span style=\"color: #008000;\">Learning The Basics Of EFT Tapping</span></strong>\r\n\r\nWatch the short EFT video above and learn the tapping points to tap on.\r\nMake a list of any past and present issues that may be causing emotional distress, no matter how small.\r\nSpend 10 to 15 minutes per day working through all of these and the more you practice the easier it becomes.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EFT Tapping Made Simple & Easy','','inherit','closed','closed','','2592-revision-v1','','','2019-06-30 18:39:07','2019-06-30 18:39:07','',2592,'https://www.newcastle-hypnotherapy.com/2592-revision-v1/',0,'revision','',0),(3116,1,'2019-06-30 18:37:37','2019-06-30 18:37:37','Tapping is a powerful technique that is most useful for many of our clients. However there are many types of tapping.\r\nHere is the most powerful, simple tapping routine that we have found.\r\n<div class=\"_5w1r _3_om _5wdf\">\r\n<div class=\"_4gx_\">\r\n<div class=\"_1aa6\"><span class=\"_5yl5\">&lt;iframe width=\"560\" height=\"315\" src=\"<a href=\"https://www.youtube.com/embed/-fJrfAYMPPE?rel=0&amp;fbclid=IwAR14qxdtw2nxaYSFAMCZzkfWwKVbIqugoQKYzVA0f94K_2XXZMdMCac41Ac\" target=\"_blank\" rel=\"nofollow noopener noreferrer\" data-lynx-mode=\"hover\" data-lynx-uri=\"https://l.facebook.com/l.php?u=https%3A%2F%2Fwww.youtube.com%2Fembed%2F-fJrfAYMPPE%3Frel%3D0%26fbclid%3DIwAR14qxdtw2nxaYSFAMCZzkfWwKVbIqugoQKYzVA0f94K_2XXZMdMCac41Ac&amp;h=AT3yDDJPmu0gyk8Yb-oGEcbR4pTb3dWICISiLdwHAOi5odeyhvWtoBRX0mAgjN1-xBcXklaP9ADTfW4hnFXUkBHmKIb8o4LNsTNi4zZPqCxYhkYEsQWIlr45a51fxWP7Uis\">https://www.youtube.com/embed/-fJrfAYMPPE?rel=0</a>\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen&gt;&lt;/iframe&gt;</span></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">EFT - Emotional Freedom Technique</span></strong></h4>\r\n&nbsp;\r\n\r\nEFT or Emotional Freedom Technique can be used to help with many issues and problems.\r\nWe find it is extremely effective for pain, both physical pain or emotional pain and can quickly reduce both down in a few minutes.\r\n\r\n<strong><span style=\"color: #008000;\">Learning The Basics Of EFT Tapping</span></strong>\r\n\r\nWatch the short EFT video above and learn the tapping points to tap on.\r\nMake a list of any past and present issues that may be causing emotional distress, no matter how small.\r\nSpend 10 to 15 minutes per day working through all of these and the more you practice the easier it becomes.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EFT Tapping Made Simple & Easy','','inherit','closed','closed','','2592-revision-v1','','','2019-06-30 18:37:37','2019-06-30 18:37:37','',2592,'https://www.newcastle-hypnotherapy.com/2592-revision-v1/',0,'revision','',0),(3118,1,'2019-06-30 18:43:15','2019-06-30 18:43:15','Tapping is a powerful technique that is most useful for many of our clients. However there are many types of tapping.\r\nHere is the most powerful, simple tapping routine that we have found.\r\n<div class=\"_5w1r _3_om _5wdf\">\r\n<div class=\"_4gx_\">\r\n<div class=\"_1aa6\"><span class=\"_5yl5\">https://www.youtube.com/watch?v=-fJrfAYMPPE</span></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">EFT - Emotional Freedom Technique</span></strong></h4>\r\n&nbsp;\r\n\r\nEFT or Emotional Freedom Technique can be used to help with many issues and problems.\r\nWe find it is extremely effective for pain, both physical pain or emotional pain and can quickly reduce both down in a few minutes.\r\n\r\n<strong><span style=\"color: #008000;\">Learning The Basics Of EFT Tapping</span></strong>\r\n\r\nWatch the short EFT video above and learn the tapping points to tap on.\r\nMake a list of any past and present issues that may be causing emotional distress, no matter how small.\r\nSpend 10 to 15 minutes per day working through all of these and the more you practice the easier it becomes.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EFT Tapping Made Simple & Easy','','inherit','closed','closed','','2592-revision-v1','','','2019-06-30 18:43:15','2019-06-30 18:43:15','',2592,'https://www.newcastle-hypnotherapy.com/2592-revision-v1/',0,'revision','',0),(3119,1,'2019-06-30 18:43:37','2019-06-30 18:43:37','Tapping is a powerful technique that is most useful for many of our clients. However there are many types of tapping.\r\nHere is the most powerful, simple tapping routine that we have found.\r\n<div class=\"_5w1r _3_om _5wdf\">\r\n<div class=\"_4gx_\">\r\n<div class=\"_1aa6\"><span class=\"_5yl5\">www.youtube.com/watch?v=-fJrfAYMPPE</span></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">EFT - Emotional Freedom Technique</span></strong></h4>\r\n&nbsp;\r\n\r\nEFT or Emotional Freedom Technique can be used to help with many issues and problems.\r\nWe find it is extremely effective for pain, both physical pain or emotional pain and can quickly reduce both down in a few minutes.\r\n\r\n<strong><span style=\"color: #008000;\">Learning The Basics Of EFT Tapping</span></strong>\r\n\r\nWatch the short EFT video above and learn the tapping points to tap on.\r\nMake a list of any past and present issues that may be causing emotional distress, no matter how small.\r\nSpend 10 to 15 minutes per day working through all of these and the more you practice the easier it becomes.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EFT Tapping Made Simple & Easy','','inherit','closed','closed','','2592-revision-v1','','','2019-06-30 18:43:37','2019-06-30 18:43:37','',2592,'https://www.newcastle-hypnotherapy.com/2592-revision-v1/',0,'revision','',0),(3120,1,'2019-06-30 18:44:12','2019-06-30 18:44:12','Tapping is a powerful technique that is most useful for many of our clients. However there are many types of tapping.\r\nHere is the most powerful, simple tapping routine that we have found.\r\nhttps://www.youtube.com/watch?v=-fJrfAYMPPE\r\n<div class=\"_5w1r _3_om _5wdf\">\r\n<div class=\"_4gx_\">\r\n<div class=\"_1aa6\"><span class=\"_5yl5\"> </span></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">EFT - Emotional Freedom Technique</span></strong></h4>\r\n&nbsp;\r\n\r\nEFT or Emotional Freedom Technique can be used to help with many issues and problems.\r\nWe find it is extremely effective for pain, both physical pain or emotional pain and can quickly reduce both down in a few minutes.\r\n\r\n<strong><span style=\"color: #008000;\">Learning The Basics Of EFT Tapping</span></strong>\r\n\r\nWatch the short EFT video above and learn the tapping points to tap on.\r\nMake a list of any past and present issues that may be causing emotional distress, no matter how small.\r\nSpend 10 to 15 minutes per day working through all of these and the more you practice the easier it becomes.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EFT Tapping Made Simple & Easy','','inherit','closed','closed','','2592-revision-v1','','','2019-06-30 18:44:12','2019-06-30 18:44:12','',2592,'https://www.newcastle-hypnotherapy.com/2592-revision-v1/',0,'revision','',0),(3122,1,'2019-06-30 18:48:58','2019-06-30 18:48:58','Tapping is a powerful technique that is most useful for many of our clients. However there are many types of tapping.\r\nHere is the most powerful, simple tapping routine that we have found.\r\n<div class=\"_5w1r _3_om _5wdf\">\r\n<div class=\"_4gx_\">\r\n<div class=\"_1aa6\"><span class=\"_5yl5\"> </span></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">EFT - Emotional Freedom Technique</span></strong></h4>\r\n&nbsp;\r\n\r\nEFT or Emotional Freedom Technique can be used to help with many issues and problems.\r\nWe find it is extremely effective for pain, both physical pain or emotional pain and can quickly reduce both down in a few minutes.\r\n\r\n<strong><span style=\"color: #008000;\">Learning The Basics Of EFT Tapping</span></strong>\r\n\r\nWatch the short EFT video above and learn the tapping points to tap on.\r\nMake a list of any past and present issues that may be causing emotional distress, no matter how small.\r\nSpend 10 to 15 minutes per day working through all of these and the more you practice the easier it becomes.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EFT Tapping Made Simple & Easy','','inherit','closed','closed','','2592-revision-v1','','','2019-06-30 18:48:58','2019-06-30 18:48:58','',2592,'https://www.newcastle-hypnotherapy.com/2592-revision-v1/',0,'revision','',0),(3121,1,'2019-06-30 18:46:14','2019-06-30 18:46:14','Tapping is a powerful technique that is most useful for many of our clients. However there are many types of tapping.\r\nHere is the most powerful, simple tapping routine that we have found.\r\n<a href=\"https://youtu.be/-fJrfAYMPPE\">https://www.youtube.com/watch?v=-fJrfAYMPPE</a>\r\n<div class=\"_5w1r _3_om _5wdf\">\r\n<div class=\"_4gx_\">\r\n<div class=\"_1aa6\"><span class=\"_5yl5\"> </span></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">EFT - Emotional Freedom Technique</span></strong></h4>\r\n&nbsp;\r\n\r\nEFT or Emotional Freedom Technique can be used to help with many issues and problems.\r\nWe find it is extremely effective for pain, both physical pain or emotional pain and can quickly reduce both down in a few minutes.\r\n\r\n<strong><span style=\"color: #008000;\">Learning The Basics Of EFT Tapping</span></strong>\r\n\r\nWatch the short EFT video above and learn the tapping points to tap on.\r\nMake a list of any past and present issues that may be causing emotional distress, no matter how small.\r\nSpend 10 to 15 minutes per day working through all of these and the more you practice the easier it becomes.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EFT Tapping Made Simple & Easy','','inherit','closed','closed','','2592-revision-v1','','','2019-06-30 18:46:14','2019-06-30 18:46:14','',2592,'https://www.newcastle-hypnotherapy.com/2592-revision-v1/',0,'revision','',0),(3123,1,'2019-06-30 18:50:25','2019-06-30 18:50:25','Tapping is a powerful technique that is most useful for many of our clients. However there are many types of tapping.\r\nHere is the most powerful, simple tapping routine that we have found.\r\n<iframe src=\"https://www.youtube.com/embed/-fJrfAYMPPE\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div class=\"_5w1r _3_om _5wdf\">\r\n<div class=\"_4gx_\">\r\n<div class=\"_1aa6\"><span class=\"_5yl5\"> </span></div>\r\n</div>\r\n</div>\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">EFT - Emotional Freedom Technique</span></strong></h4>\r\n&nbsp;\r\n\r\nEFT or Emotional Freedom Technique can be used to help with many issues and problems.\r\nWe find it is extremely effective for pain, both physical pain or emotional pain and can quickly reduce both down in a few minutes.\r\n\r\n<strong><span style=\"color: #008000;\">Learning The Basics Of EFT Tapping</span></strong>\r\n\r\nWatch the short EFT video above and learn the tapping points to tap on.\r\nMake a list of any past and present issues that may be causing emotional distress, no matter how small.\r\nSpend 10 to 15 minutes per day working through all of these and the more you practice the easier it becomes.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EFT Tapping Made Simple & Easy','','inherit','closed','closed','','2592-revision-v1','','','2019-06-30 18:50:25','2019-06-30 18:50:25','',2592,'https://www.newcastle-hypnotherapy.com/2592-revision-v1/',0,'revision','',0),(3124,1,'2019-06-30 19:02:16','2019-06-30 19:02:16','<iframe src=\"https://www.youtube.com/embed/-fJrfAYMPPE\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div class=\"_5w1r _3_om _5wdf\">\r\n<div class=\"_4gx_\">\r\n<h4><span style=\"color: #008000;\"><strong>Learn even more powerful tips &amp; techniques\r\n</strong></span></h4>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\n<h4 class=\"_1aa6\"><span style=\"color: #008000;\"><strong><span class=\"_5yl5\">EFT Tapping Made Simple &amp; Easy\r\n</span></strong></span></h4>\r\nTapping is a powerful technique that is most useful for many of our clients. However there are many types of tapping.\r\nHere is the most powerful, simple tapping routine that we have found.\r\n\r\n</div>\r\n</div>\r\nEFT or Emotional Freedom Technique can be used to help with many issues and problems.\r\nWe find it is extremely effective for pain, both physical pain or emotional pain, cravings, anxiety, stress and many other issues.\r\nUsing this technique we can usually reduce the issue from a 10 to a 1 or 0 in 10 minutes or less\r\n\r\n<strong><span style=\"color: #008000;\">Learning The Basics Of EFT Tapping</span></strong>\r\n\r\nWatch the short EFT video above and learn the tapping points to tap on.\r\nMake a list of any past and present issues that may be causing emotional distress, no matter how small.\r\nSpend 10 to 15 minutes per day working through all of these and the more you practice the easier it becomes.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EFT Tapping Made Simple & Easy','','inherit','closed','closed','','2592-revision-v1','','','2019-06-30 19:02:16','2019-06-30 19:02:16','',2592,'https://www.newcastle-hypnotherapy.com/2592-revision-v1/',0,'revision','',0),(3125,1,'2019-06-30 19:09:23','2019-06-30 19:09:23','<iframe src=\"https://www.youtube.com/embed/-fJrfAYMPPE\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div class=\"_5w1r _3_om _5wdf\">\r\n<div class=\"_4gx_\">\r\n<h4><span style=\"color: #008000;\"><strong>Learn even more powerful tips &amp; techniques\r\n</strong></span></h4>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYou can unsubscribe from the newsltter at any time.\r\n<h4 class=\"_1aa6\"><span style=\"color: #008000;\"><strong><span class=\"_5yl5\">EFT Tapping Made Simple &amp; Easy\r\n</span></strong></span></h4>\r\nTapping is a powerful technique that is most useful for many of our clients. However there are many types of tapping.\r\nHere is the most powerful, simple tapping routine that we have found.\r\n\r\n</div>\r\n</div>\r\nEFT or Emotional Freedom Technique can be used to help with many issues and problems.\r\nWe find it is extremely effective for pain, both physical pain or emotional pain, cravings, anxiety, stress and many other issues.\r\nUsing this technique we can usually reduce the issue from a 10 to a 1 or 0 in 10 minutes or less\r\n\r\n<strong><span style=\"color: #008000;\">Learning The Basics Of EFT Tapping</span></strong>\r\n<h4>Watch the short EFT video above and learn the tapping points to tap on.\r\nMake a list of any past and present issues that may be causing emotional distress, no matter how small.\r\nSpend 10 to 15 minutes per day working through all of these and the more you practice the easier it becomes.\r\n\r\nLet us know how you get on by commenting below.\r\n\r\n<span style=\"color: #008000;\"><strong>Would you like to work with us individually?</strong></span></h4>\r\nWe do work with a small number of clients on a private basis.\r\nCall <strong>07568 455 809</strong> today to get started or <span style=\"color: #ff6600;\"><strong>Click Here</strong></span> to book a free phone consultation.\r\nWe can then discuss your issues and look at the best way forward for you.\r\n<h4><span style=\"color: #008000;\"><strong>What did The NHS Dr say about our services?</strong></span></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EFT Tapping Made Simple & Easy','','inherit','closed','closed','','2592-revision-v1','','','2019-06-30 19:09:23','2019-06-30 19:09:23','',2592,'https://www.newcastle-hypnotherapy.com/2592-revision-v1/',0,'revision','',0),(3126,1,'2019-06-30 19:09:56','2019-06-30 19:09:56','<iframe src=\"https://www.youtube.com/embed/-fJrfAYMPPE\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div class=\"_5w1r _3_om _5wdf\">\r\n<div class=\"_4gx_\">\r\n<h4><span style=\"color: #008000;\"><strong>Learn even more powerful tips &amp; techniques\r\n</strong></span></h4>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYou can unsubscribe from the newsltter at any time.\r\n<h4 class=\"_1aa6\"><span style=\"color: #008000;\"><strong><span class=\"_5yl5\">EFT Tapping Made Simple &amp; Easy\r\n</span></strong></span></h4>\r\nTapping is a powerful technique that is most useful for many of our clients. However there are many types of tapping.\r\nHere is the most powerful, simple tapping routine that we have found.\r\n\r\n</div>\r\n</div>\r\nEFT or Emotional Freedom Technique can be used to help with many issues and problems.\r\nWe find it is extremely effective for pain, both physical pain or emotional pain, cravings, anxiety, stress and many other issues.\r\nUsing this technique we can usually reduce the issue from a 10 to a 1 or 0 in 10 minutes or less\r\n\r\n<strong><span style=\"color: #008000;\">Learning The Basics Of EFT Tapping</span></strong>\r\n<h4>Watch the short EFT video above and learn the tapping points to tap on.\r\nMake a list of any past and present issues that may be causing emotional distress, no matter how small.\r\nSpend 10 to 15 minutes per day working through all of these and the more you practice the easier it becomes.</h4>\r\nLet us know how you get on by commenting below.\r\n\r\n<span style=\"color: #008000;\"><strong>Would you like to work with us individually?</strong></span>\r\n\r\nWe do work with a small number of clients on a private basis.\r\nCall <strong>07568 455 809</strong> today to get started or <span style=\"color: #ff6600;\"><strong>Click Here</strong></span> to book a free phone consultation.\r\nWe can then discuss your issues and look at the best way forward for you.\r\n<h4><span style=\"color: #008000;\"><strong>What did The NHS Dr say about our services?</strong></span></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EFT Tapping Made Simple & Easy','','inherit','closed','closed','','2592-revision-v1','','','2019-06-30 19:09:56','2019-06-30 19:09:56','',2592,'https://www.newcastle-hypnotherapy.com/2592-revision-v1/',0,'revision','',0),(3127,1,'2019-06-30 19:10:53','2019-06-30 19:10:53','<iframe src=\"https://www.youtube.com/embed/-fJrfAYMPPE\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div class=\"_5w1r _3_om _5wdf\">\r\n<div class=\"_4gx_\">\r\n<h4><span style=\"color: #008000;\"><strong>Learn even more powerful tips &amp; techniques\r\n</strong></span></h4>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYou can unsubscribe from the newsltter at any time.\r\n<h4 class=\"_1aa6\"><span style=\"color: #008000;\"><strong><span class=\"_5yl5\">EFT Tapping Made Simple &amp; Easy\r\n</span></strong></span></h4>\r\nTapping is a powerful technique that is most useful for many of our clients. However there are many types of tapping.\r\nHere is the most powerful, simple tapping routine that we have found.\r\n\r\n</div>\r\n</div>\r\nEFT or Emotional Freedom Technique can be used to help with many issues and problems.\r\nWe find it is extremely effective for pain, both physical pain or emotional pain, cravings, anxiety, stress and many other issues.\r\nUsing this technique we can usually reduce the issue from a 10 to a 1 or 0 in 10 minutes or less\r\n<h4><strong><span style=\"color: #008000;\">Learning The Basics Of EFT Tapping</span></strong></h4>\r\nWatch the short EFT video above and learn the tapping points to tap on.\r\nMake a list of any past and present issues that may be causing emotional distress, no matter how small.\r\nSpend 10 to 15 minutes per day working through all of these and the more you practice the easier it becomes.\r\n\r\nLet us know how you get on by commenting below.\r\n\r\n<span style=\"color: #008000;\"><strong>Would you like to work with us individually?</strong></span>\r\n\r\nWe do work with a small number of clients on a private basis.\r\nCall <strong>07568 455 809</strong> today to get started or <span style=\"color: #ff6600;\"><strong>Click Here</strong></span> to book a free phone consultation.\r\nWe can then discuss your issues and look at the best way forward for you.\r\n<h4><span style=\"color: #008000;\"><strong>What did The NHS Dr say about our services?</strong></span></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EFT Tapping Made Simple & Easy','','inherit','closed','closed','','2592-revision-v1','','','2019-06-30 19:10:53','2019-06-30 19:10:53','',2592,'https://www.newcastle-hypnotherapy.com/2592-revision-v1/',0,'revision','',0),(3129,1,'2019-06-30 19:12:44','2019-06-30 19:12:44','&nbsp;\r\n<div class=\"_5w1r _3_om _5wdf\">\r\n<div class=\"_4gx_\">\r\n<h4><span style=\"color: #008000;\"><strong>Learn even more powerful tips &amp; techniques\r\n</strong></span></h4>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYou can unsubscribe from the newsletter at any time.\r\n<h4 class=\"_1aa6\"><span style=\"color: #008000;\"><strong><span class=\"_5yl5\">EFT Tapping Made Simple &amp; Easy\r\n</span></strong></span></h4>\r\nTapping is a powerful technique that is most useful for many of our clients. However, there are many types of tapping.\r\nHere is the most powerful, simple tapping routine that we have found.\r\n\r\n</div>\r\n</div>\r\nEFT or Emotional Freedom Technique can be used to help with many issues and problems.\r\nWe find it is extremely effective for pain, both physical pain or emotional pain, cravings, anxiety, stress and many other issues.\r\nUsing this technique we can usually reduce the issue from a 10 to a 1 or 0 in 10 minutes or less\r\n<h4><strong><span style=\"color: #008000;\">Learning The Basics Of EFT Tapping</span></strong></h4>\r\nWatch the short EFT video above and learn the tapping points to tap on.\r\nMake a list of any past and present issues that may be causing emotional distress, no matter how small.\r\nSpend 10 to 15 minutes per day working through all of these and the more you practice the easier it becomes.\r\n\r\nLet us know how you get on by commenting below.\r\n<h4><span style=\"color: #008000;\"><strong>Would you like to work with us individually?</strong></span></h4>\r\nWe do work with a small number of clients on a private basis.\r\nCall <strong>07568 455 809</strong> today to get started or <span style=\"color: #ff6600;\"><strong>Click Here</strong></span> to book a free phone consultation.\r\nWe can then discuss your issues and look at the best way forward for you.\r\n<h4><span style=\"color: #008000;\"><strong>What did The NHS Dr say about our services?</strong></span></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n\r\nCall <strong>07568 455 809</strong> today to get started or <strong>Click Here</strong> to book a free phone consultation.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EFT Tapping Made Simple & Easy','','inherit','closed','closed','','2592-revision-v1','','','2019-06-30 19:12:44','2019-06-30 19:12:44','',2592,'https://www.newcastle-hypnotherapy.com/2592-revision-v1/',0,'revision','',0),(3128,1,'2019-06-30 19:11:51','2019-06-30 19:11:51','<iframe src=\"https://www.youtube.com/embed/-fJrfAYMPPE\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<div class=\"_5w1r _3_om _5wdf\">\r\n<div class=\"_4gx_\">\r\n<h4><span style=\"color: #008000;\"><strong>Learn even more powerful tips &amp; techniques\r\n</strong></span></h4>\r\n[contact-form-7 id=\"528\" title=\"Anxiety\"]\r\nYou can unsubscribe from the newsltter at any time.\r\n<h4 class=\"_1aa6\"><span style=\"color: #008000;\"><strong><span class=\"_5yl5\">EFT Tapping Made Simple &amp; Easy\r\n</span></strong></span></h4>\r\nTapping is a powerful technique that is most useful for many of our clients. However there are many types of tapping.\r\nHere is the most powerful, simple tapping routine that we have found.\r\n\r\n</div>\r\n</div>\r\nEFT or Emotional Freedom Technique can be used to help with many issues and problems.\r\nWe find it is extremely effective for pain, both physical pain or emotional pain, cravings, anxiety, stress and many other issues.\r\nUsing this technique we can usually reduce the issue from a 10 to a 1 or 0 in 10 minutes or less\r\n<h4><strong><span style=\"color: #008000;\">Learning The Basics Of EFT Tapping</span></strong></h4>\r\nWatch the short EFT video above and learn the tapping points to tap on.\r\nMake a list of any past and present issues that may be causing emotional distress, no matter how small.\r\nSpend 10 to 15 minutes per day working through all of these and the more you practice the easier it becomes.\r\n\r\nLet us know how you get on by commenting below.\r\n<h4><span style=\"color: #008000;\"><strong>Would you like to work with us individually?</strong></span></h4>\r\nWe do work with a small number of clients on a private basis.\r\nCall <strong>07568 455 809</strong> today to get started or <span style=\"color: #ff6600;\"><strong>Click Here</strong></span> to book a free phone consultation.\r\nWe can then discuss your issues and look at the best way forward for you.\r\n<h4><span style=\"color: #008000;\"><strong>What did The NHS Dr say about our services?</strong></span></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EFT Tapping Made Simple & Easy','','inherit','closed','closed','','2592-revision-v1','','','2019-06-30 19:11:51','2019-06-30 19:11:51','',2592,'https://www.newcastle-hypnotherapy.com/2592-revision-v1/',0,'revision','',0),(3130,1,'2019-07-02 18:51:29','2019-07-02 18:51:29','','Order &ndash; July 2, 2019 @ 06:51 PM','','wc-on-hold','open','closed','order_5d1ba7b1ac6fb','order-jul-02-2019-0651-pm','','','2019-07-02 18:51:29','2019-07-02 18:51:29','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=3130',0,'shop_order','',1),(3132,1,'2019-07-09 13:41:44','2019-07-09 13:41:44','','Order &ndash; July 9, 2019 @ 01:41 PM','','wc-processing','open','closed','order_5d2499983b073','order-jul-09-2019-0141-pm','','','2019-07-09 13:43:12','2019-07-09 13:43:12','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=3132',0,'shop_order','',2),(3133,1,'2019-07-10 11:07:32','2019-07-10 11:07:32','','Order &ndash; July 10, 2019 @ 11:07 AM','','wc-on-hold','open','closed','order_5d25c6f4ce068','order-jul-10-2019-1107-am','','','2019-07-10 11:07:33','2019-07-10 11:07:33','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=3133',0,'shop_order','',1),(3134,1,'2019-07-11 17:38:08','2019-07-11 17:38:08','','Order &ndash; July 11, 2019 @ 05:38 PM','','wc-processing','open','closed','order_5d27740085468','order-jul-11-2019-0538-pm','','','2019-07-11 17:38:46','2019-07-11 17:38:46','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=3134',0,'shop_order','',2),(3135,1,'2019-07-12 22:26:07','2019-07-12 22:26:07','','Order &ndash; July 12, 2019 @ 10:26 PM','','wc-processing','open','closed','order_5d2908ffddcf8','order-jul-12-2019-1026-pm','','','2019-07-12 22:26:48','2019-07-12 22:26:48','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=3135',0,'shop_order','',2),(3252,0,'2019-09-15 16:48:40','2019-09-15 16:48:40','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7e6d1102d190.41909742-VjB9B5tu674Czlj1ijCP6J9TzEpjoORF','','','2019-09-15 16:55:45','2019-09-15 16:55:45','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3252',0,'scheduled-action','',3),(3137,1,'2019-07-17 12:41:04','2019-07-17 12:41:04','<img class=\"alignleft wp-image-939 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/06/13892001_548866268633789_4421031440901787475_n-1-300x201.jpg\" alt=\"Self-hypnosis-practice-group\" width=\"300\" height=\"201\" />\r\n\r\n<strong><span style=\"color: #008000;\">\r\nThe Healing Pool &amp; The Mental Message\r\n</span></strong>\r\n\r\nWednesday 24th July\r\n7.30 pm to 9.30 pm\r\nThe Vault, Wallsend.\r\n£12.50 Early Bird (£20 after)\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Self-Hypnosis Monthly Practice Group - July\r\n</strong></span></h4>\r\nDuring this months practice group, we will focus on two self-hypnosis techniques to quickly promote self-healing and mental relaxation.\r\nBoth are easy to learn for fast, relaxation and creating calm, stress-free states.\r\nWe will take you through this step by step and then practice this, ensuring you can use this induction well.\r\n\r\n<strong>Suitable for both beginners and those who have attended a self-hypnosis workshop before as you will be practising and strengthening your skills</strong>\r\n<h4><span style=\"color: #008000;\"><strong>Why Learn Self-Hypnosis Skills?</strong></span></h4>\r\nSelf-Hypnosis is always one of our most popular workshops and gives us a great skill set for a better life.\r\n<h4>As part of this workshop, you will</h4>\r\n<ul>\r\n 	<li>learn what is self-hypnosis</li>\r\n 	<li>practice inductions on others</li>\r\n 	<li>learn new induction techniques</li>\r\n 	<li>discover how self-hypnosis helps with anxiety &amp; stress</li>\r\n 	<li>improve your meditation results &amp; calm your mind</li>\r\n 	<li>learn to control your feelings, emotions, and behaviour</li>\r\n 	<li>take control of cravings and reactions</li>\r\n</ul>\r\n<strong>This self-hypnosis practice group is led by Mark, a clinical hypnotherapist and NLP practitioner.</strong>\r\nIf you are looking to move forward to learn hypnosis for yourself or to become a hypnotherapist, these practice groups will give you useful skills for your future.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>You can learn about our other events by joining the newsletter</strong>\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n<strong>You can unsubscribe from the newsletter at any time using the link in every email.</strong>','The Healing Pool & The Mental Message','','inherit','closed','closed','','560-revision-v1','','','2019-07-17 12:41:04','2019-07-17 12:41:04','',560,'https://www.newcastle-hypnotherapy.com/560-revision-v1/',0,'revision','',0),(3138,1,'2019-07-21 10:10:38','2019-07-21 10:10:38','','Order &ndash; July 21, 2019 @ 10:10 AM','','wc-processing','open','closed','order_5d343a1e0c6ac','order-jul-21-2019-1010-am','','','2019-07-21 10:15:19','2019-07-21 10:15:19','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=3138',0,'shop_order','',2),(3139,1,'2019-07-24 08:44:53','2019-07-24 08:44:53','','Order &ndash; July 24, 2019 @ 08:44 AM','','wc-processing','open','closed','order_5d381a854a90e','order-jul-24-2019-0844-am','','','2019-07-24 08:46:31','2019-07-24 08:46:31','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=3139',0,'shop_order','',2),(3140,1,'2019-07-24 11:20:11','2019-07-24 11:20:11','','Order &ndash; July 24, 2019 @ 11:20 AM','','wc-on-hold','open','closed','order_5d383eeb11e03','order-jul-24-2019-1120-am','','','2019-07-24 11:20:11','2019-07-24 11:20:11','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=3140',0,'shop_order','',1),(3142,1,'2019-09-13 12:27:23','2019-09-13 12:27:23','<span style=\"color: #008000;\"><strong><img class=\"alignleft wp-image-3145 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/09/deep-relaxation-300x188.jpg\" alt=\"deep relaxation\" width=\"300\" height=\"188\" />Learn Simple Deep Relaxation Mind &amp; Body Techniques To Improve Your Happiness, Health, Meditation &amp; Sleep\n</strong></span>\n\n<strong>Wednesday 18th September 7.30pm to 9.30 pm</strong>\nThe Vault Creative Wellbeing Centre\n£15 per person\n<strong>Advance booking required</strong>\n<span style=\"color: #ff6600;\"><strong>Book your places below.</strong></span>\n\n<strong><span style=\"color: #ff0000;\">SPECIAL OFFER - Bring a friend for free!</span></strong>\nSimply book your place below and then bring a friend with you on the evening.\n\n\n<strong>Learning to relax properly is a wonderful way to improve your health and quality of life.</strong>\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress, anxiety, tension and improves sleep.\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Deep Relaxation Workshop</strong></span></h4>\n<strong>During this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid natural relaxation and happiness.</strong>\n\n<span style=\"color: #ff6600;\"><strong>Learn how to</strong></span>\n<ul>\n 	<li>identify when you need to relax and start your relaxation process</li>\n 	<li>know when you are relaxed to deepen those feelings further</li>\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\n 	<li>practice self-hypnosis to relax yourself and others</li>\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\n 	<li>feel relaxed during stressful situations</li>\n 	<li>relax physically &amp; mentally</li>\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\n 	<li>relax while eating, walking &amp; other activities</li>\n 	<li>improve your meditation &amp; mindfulness practice</li>\n 	<li>defeat unwanted thoughts and distractions</li>\n 	<li>enjoy life better while feeling relaxed and calm</li>\n</ul>\n<strong>The Secrets Of Deep Relaxation Workshop</strong> takes place on Wednesday the 18th of September at The Vault, Wallsend.\nThis Secret Workshop runs from 7.30 pm to 9.30 pm and includes refreshments &amp; snacks.\nThe price is just £15 per person, advance booking is required and we are limited to just 20 people.\n\n<strong>Learn how to relax deeply by booking your place here now.</strong>\n<a href=\"https://www.newcastle-hypnotherapy.com/product/deep-relaxation-mind-body-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<strong>Learn more about future Secret Workshops and events by joining the newsletter here.</strong>\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\nYour privacy is safe and you can remove yourself from the newsletter at any time.\n\n<strong><span style=\"color: #008000;\">The Newcastle Hypnotherapy</span></strong> <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #ff6600;\"><strong>Facebook Group for The Secret Workshops is here</strong></span></a>\n\nThe Deep Relaxation Mind &amp; Body Technique Workshop is just one of the many regular events that we organise on a monthly basis to help people feel better and improve life.\n\nMany people like to work with us by individual sessions to work on issues such as anxiety, stress, depression, self-confidence or to change habits or behaviour. Contact us to arrange your free phone consultation to examine your issue and to establish the best way forward for you.\n\n<strong>You can read some of the <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">feedback from our many happy clients here.</a></span></strong>\n\n&nbsp;','The Secrets Of Deep Relaxation Workshop','','inherit','closed','closed','','2813-autosave-v1','','','2019-09-13 12:27:23','2019-09-13 12:27:23','',2813,'https://www.newcastle-hypnotherapy.com/2813-autosave-v1/',0,'revision','',0),(3146,1,'2019-09-08 09:41:45','2019-09-08 09:41:45','<span style=\"color: #008000;\"><strong><img class=\"alignleft wp-image-3145 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/09/deep-relaxation-300x188.jpg\" alt=\"deep relaxation\" width=\"300\" height=\"188\" />Learn Simple Deep Relaxation Mind &amp; Body Techniques To Improve Your Happiness, Health, Meditation &amp; Sleep\r\n</strong></span>\r\n\r\n<strong>Wednesday 18th September 7.30pm to 9.30 pm</strong>\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person\r\n<strong>Advance booking required</strong>\r\n<span style=\"color: #ff6600;\"><strong>Book your places below.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Learning to relax properly is a wonderful way to improve your health and quality of life.</strong>\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress, anxiety, tension and improves sleep.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Deep Relaxation Workshop</strong></span></h4>\r\n<strong>During this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid natural relaxation and happiness.</strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Learn how to</strong></span>\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>improve your meditation &amp; mindfulness practice</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n<strong>The Secrets Of Deep Relaxation Workshop</strong> takes place on Wednesday the 18th of September at The Vault, Wallsend.\r\nThis Secret Workshop runs from 7.30 pm to 9.30 pm and includes refreshments &amp; snacks.\r\nThe price is just £15 per person, advance booking is required and we are limited to just 20 people.\r\n\r\n<strong>Learn how to relax deeply by booking your place here now.</strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/deep-relaxation-mind-body-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about future Secret Workshops and events by joining the newsletter here.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.\r\n\r\n<strong><span style=\"color: #008000;\">The Newcastle Hypnotherapy</span></strong> <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #ff6600;\"><strong>Facebook Group for The Secret Workshops is here</strong></span></a>\r\n\r\nThe Deep Relaxation Mind &amp; Body Technique Workshop is just one of the many regular events that we organise on a monthly basis to help people feel better and improve life.\r\n\r\nMany people like to work with us by individual sessions to work on issues such as anxiety, stress, depression, self-confidence or to change habits or behaviour. Contact us to arrange your free phone consultation to examine your issue and to establish the best way forward for you.\r\n\r\n<strong>You can read some of the <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">feedback from our many happy clients here.</a></span></strong>\r\n\r\n&nbsp;','Deep Relaxation Mind & Body Techniques','','inherit','closed','closed','','2813-revision-v1','','','2019-09-08 09:41:45','2019-09-08 09:41:45','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(3144,1,'2019-09-08 09:37:01','2019-09-08 09:37:01','<img class=\"alignleft size-medium wp-image-2819\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/05/deep-relaxation-mind-body-techniques-300x199.jpg\" alt=\"deep relaxation mind &amp; body techniques\" width=\"300\" height=\"199\" /><span style=\"color: #008000;\"><strong>Learn Simple Deep Relaxation Mind &amp; Body Techniques To Improve Your Happiness &amp; Health.\r\n</strong></span>\r\n\r\n<strong>Wednesday 18th September 7.30pm to 9.30 pm</strong>\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person\r\n<strong>Advance booking required</strong>\r\n<span style=\"color: #ff6600;\"><strong>Book your places below.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Learning to relax properly is a wonderful way to improve your health and quality of life.</strong>\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress, anxiety, tension and improves sleep.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Deep Relaxation Workshop</strong></span></h4>\r\n<strong>During this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid natural relaxation and happiness.</strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Learn how to</strong></span>\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>improve your meditation &amp; mindfulness practice</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n<strong>The Secrets Of Deep Relaxation Workshop</strong> takes place on Wednesday the 18th of September at The Vault, Wallsend.\r\nThis Secret Workshop runs from 7.30 pm to 9.30 pm and includes refreshments &amp; snacks.\r\nThe price is just £15 per person, advance booking is required and we are limited to just 20 people.\r\n\r\n<strong>Learn how to relax deeply by booking your place here now.</strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/deep-relaxation-mind-body-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about future Secret Workshops and events by joining the newsletter here.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.\r\n\r\n<strong><span style=\"color: #008000;\">The Newcastle Hypnotherapy</span></strong> <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #ff6600;\"><strong>Facebook Group for The Secret Workshops is here</strong></span></a>\r\n\r\nThe Deep Relaxation Mind &amp; Body Technique Workshop is just one of the many regular events that we organise on a monthly basis to help people feel better and improve life.\r\n\r\nMany people like to work with us by individual sessions to work on issues such as anxiety, stress, depression, self-confidence or to change habits or behaviour. Contact us to arrange your free phone consultation to examine your issue and to establish the best way forward for you.\r\n\r\n<strong>You can read some of the <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">feedback from our many happy clients here.</a></span></strong>\r\n\r\n&nbsp;','Deep Relaxation Mind & Body Techniques','','inherit','closed','closed','','2813-revision-v1','','','2019-09-08 09:37:01','2019-09-08 09:37:01','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(3143,1,'2019-09-08 09:30:18','2019-09-08 09:30:18','<img class=\"alignleft size-medium wp-image-2819\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/05/deep-relaxation-mind-body-techniques-300x199.jpg\" alt=\"deep relaxation mind &amp; body techniques\" width=\"300\" height=\"199\" /><span style=\"color: #008000;\"><strong>Learn Simple Deep Relaxation Mind &amp; Body Techniques To Improve Your Happiness &amp; Health.\r\n</strong></span>\r\n\r\n<strong>Wednesday 18th September 7.30pm to 9.30 pm</strong>\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person\r\n<strong>Advance booking required</strong>\r\n<span style=\"color: #ff6600;\"><strong>Book your places below.</strong></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Learning to relax properly is a wonderful way to improve your health and quality of life.</strong>\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress, anxiety, tension and improves sleep.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Deep Relaxation Workshop</strong></span></h4>\r\n<strong>\r\nDuring this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid relaxation and happiness.</strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Learn how to</strong></span>\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>improve your meditation &amp; mindfulness practice</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>The Deep Relaxation Mind &amp; Body Technique Workshop</strong></span></h4>\r\nLearning modern self-hypnosis and NLP skills for deep relaxation has many benefits.\r\nWe know relaxed people suffer less stress, anxiety, illness and enjoy better, healthier lives.\r\n\r\n<strong>Learn how to relax deeply by booking your place here.</strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/deep-relaxation-mind-body-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPlease note that places are limited and bookings are taken on a first come first served basis.\r\nEarly Bird discount prices are available when booking by the date advised on the booking page.\r\nClick the image above to book your place and learn about Early Bird prices.\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about future Secret Workshops and events by joining the newsletter here.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.\r\n\r\n<strong><span style=\"color: #008000;\">The Newcastle Hypnotherapy</span></strong> <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #ff6600;\"><strong>Facebook Group for The Secret Workshops is here</strong></span></a>\r\n\r\nThe Deep Relaxation Mind &amp; Body Technique Workshop is just one of the many regular events that we organise on a monthly basis to help people feel better and improve life.\r\n\r\nMany people like to work with us by individual sessions to work on issues such as anxiety, stress, depression, self-confidence or to change habits or behaviour. Contact us to arrange your free phone consultation to examine your issue and to establish the best way forward for you.\r\n\r\n<strong>You can read some of the <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">feedback from our many happy clients here.</a></span></strong>\r\n\r\n&nbsp;','Deep Relaxation Mind & Body Techniques','','inherit','closed','closed','','2813-revision-v1','','','2019-09-08 09:30:18','2019-09-08 09:30:18','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(3145,1,'2019-09-08 09:40:20','2019-09-08 09:40:20','','deep relaxation','','inherit','open','closed','','deep-relaxation','','','2019-09-08 09:40:35','2019-09-08 09:40:35','',2813,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/09/deep-relaxation.jpg',0,'attachment','image/jpeg',0),(3147,1,'2019-09-08 09:46:33','2019-09-08 09:46:33','Once you have booked your place, a confirmation email will be sent to you.\nFurther information will be sent to you a few days before this event.\n\n<strong>Terms &amp; Conditions.</strong>\nThe Secret Workshops are a set of events, sharing life-enhancing skills.\nBookings are taken strictly on a first come first served basis and your booking is only secured once payment is complete.\n<strong>Booking In Advance.</strong>\nWe ask everyone to book and pay in advance please as this reduces admin work and allow us to focus on the workshop in progress.\n<strong>Cancellations and refunds.</strong>\nIf you are unable to attend you can transfer your place to someone else and it is helpful if you could email us with this information.\nWe do not offer refunds if you are unable to attend.','The Secrets Of Deep Relaxation Workshop','Book your place here for Wednesday 22nd May\nYou can pay by Card, Paypal or Bank Transfer.\nSpaces are limited to 20 people. First come first served.\n<span style=\"color: #ff6600;\"><strong>\n</strong></span>','inherit','closed','closed','','2836-autosave-v1','','','2019-09-08 09:46:33','2019-09-08 09:46:33','',2836,'https://www.newcastle-hypnotherapy.com/2836-autosave-v1/',0,'revision','',0),(3148,1,'2019-09-08 10:02:00','2019-09-08 10:02:00','','Order &ndash; September 8, 2019 @ 10:02 AM','','wc-on-hold','open','closed','order_5d74d1980dc57','order-sep-08-2019-1002-am','','','2019-09-08 10:02:00','2019-09-08 10:02:00','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=3148',0,'shop_order','',1),(3150,1,'2019-09-12 22:53:19','2019-09-12 22:53:19','','Order &ndash; September 12, 2019 @ 10:53 PM','','wc-processing','open','closed','order_5d7acc5fb0cdd','order-sep-12-2019-1053-pm','','','2019-09-12 22:54:21','2019-09-12 22:54:21','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=3150',0,'shop_order','',2),(3151,1,'2019-09-13 12:22:45','2019-09-13 12:22:45','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2019-09-13 12:22:45','2019-09-13 12:22:45','',0,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/09/woocommerce-placeholder.png',0,'attachment','image/png',0),(3152,1,'2019-09-13 12:28:23','2019-09-13 12:28:23','<span style=\"color: #008000;\"><strong><img class=\"alignleft wp-image-3145 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/09/deep-relaxation-300x188.jpg\" alt=\"deep relaxation\" width=\"300\" height=\"188\" />Learn Simple Deep Relaxation Mind &amp; Body Techniques To Improve Your Happiness, Health, Meditation &amp; Sleep\r\n</strong></span>\r\n\r\n<strong>Wednesday 18th September 7.30pm to 9.30 pm</strong>\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person\r\n<strong>Advance booking required</strong>\r\n<span style=\"color: #ff6600;\"><strong>Book your places below.</strong></span>\r\n\r\n<strong><span style=\"color: #ff0000;\">SPECIAL OFFER - Bring a friend for free!</span></strong>\r\nSimply book your place below and bring a friend who has not been to one of these workshops before.\r\n\r\n<strong>Learning to relax properly is a wonderful way to improve your health and quality of life.</strong>\r\nBeing able to relax on demand is a useful skill that helps our mind and body to work better, reducing stress, anxiety, tension and improves sleep.\r\n<h4><span style=\"color: #008000;\"><strong>The Secrets Of Deep Relaxation Workshop</strong></span></h4>\r\n<strong>During this Secret Workshop, you will learn important Self-Hypnosis and NLP skills to aid natural relaxation and happiness.</strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Learn how to</strong></span>\r\n<ul>\r\n 	<li>identify when you need to relax and start your relaxation process</li>\r\n 	<li>know when you are relaxed to deepen those feelings further</li>\r\n 	<li>use your mind to relax quickly, anytime, anywhere</li>\r\n 	<li>practice self-hypnosis to relax yourself and others</li>\r\n 	<li>replace feelings of tension, anxiety &amp; stress with deep relaxation</li>\r\n 	<li>feel relaxed during stressful situations</li>\r\n 	<li>relax physically &amp; mentally</li>\r\n 	<li>focus your mind on relaxing images, sounds and feelings</li>\r\n 	<li>relax while eating, walking &amp; other activities</li>\r\n 	<li>improve your meditation &amp; mindfulness practice</li>\r\n 	<li>defeat unwanted thoughts and distractions</li>\r\n 	<li>enjoy life better while feeling relaxed and calm</li>\r\n</ul>\r\n<strong>The Secrets Of Deep Relaxation Workshop</strong> takes place on Wednesday the 18th of September at The Vault, Wallsend.\r\nThis Secret Workshop runs from 7.30 pm to 9.30 pm and includes refreshments &amp; snacks.\r\nThe price is just £15 per person, advance booking is required and we are limited to just 20 people.\r\n\r\n<strong>Learn how to relax deeply by booking your place here now.</strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/deep-relaxation-mind-body-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about future Secret Workshops and events by joining the newsletter here.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nYour privacy is safe and you can remove yourself from the newsletter at any time.\r\n\r\n<strong><span style=\"color: #008000;\">The Newcastle Hypnotherapy</span></strong> <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #ff6600;\"><strong>Facebook Group for The Secret Workshops is here</strong></span></a>\r\n\r\nThe Deep Relaxation Mind &amp; Body Technique Workshop is just one of the many regular events that we organise on a monthly basis to help people feel better and improve life.\r\n\r\nMany people like to work with us by individual sessions to work on issues such as anxiety, stress, depression, self-confidence or to change habits or behaviour. Contact us to arrange your free phone consultation to examine your issue and to establish the best way forward for you.\r\n\r\n<strong>You can read some of the <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/client-feedback/\">feedback from our many happy clients here.</a></span></strong>\r\n\r\n&nbsp;','The Secrets Of Deep Relaxation Workshop','','inherit','closed','closed','','2813-revision-v1','','','2019-09-13 12:28:23','2019-09-13 12:28:23','',2813,'https://www.newcastle-hypnotherapy.com/2813-revision-v1/',0,'revision','',0),(3154,1,'2019-09-13 12:35:36','2019-09-13 12:35:36','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong><span style=\"color: #000000;\">Join us for another enjoyable evening of Past Life Regression.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\n\r\n<strong>The Vault, Wallsend.\r\n9th October from 7.30 pm to 9.30 pm.\r\n£15 per serson</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\nWe will aim to record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\nWho were your family?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Secret Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nYou can come along and just watch others being regressed or if you would like to be regressed yourself, simply let us know when making your booking. We will work through as many people as we can and can\'t promise to fit everyone in.\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out to you before the workshop.\r\nYou will need to book your place in advance by clicking the button below.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>&nbsp;\r\n\r\n&nbsp;\r\n\r\nTo learn more about The Secret Workshops and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Secret Workshops <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>','Past Life Regression Workshop - 9th October','','inherit','closed','closed','','1185-revision-v1','','','2019-09-13 12:35:36','2019-09-13 12:35:36','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(3153,1,'2019-09-13 12:33:45','2019-09-13 12:33:45','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong><span style=\"color: #000000;\">Join us for another enjoyable evening of Past Life Regression.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\n\r\n<strong>The Vault, Wallsend.\r\n9th October from 7.30 pm to 9.30 pm.\r\n£15 (£10 Early Bird)</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\nWe will aim to record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\nWho were your family?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Secret Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nYou can come along and just watch others being regressed or if you would like to be regressed yourself, simply let us know when making your booking. We will work through as many people as we can and can\'t promise to fit everyone in.\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out to you before the workshop.\r\nYou will need to book your place in advance by clicking the button below.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>&nbsp;\r\n\r\n&nbsp;\r\n\r\nTo learn more about The Secret Workshops and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Secret Workshops <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>','Past Life Regression Workshop - 9th October','','inherit','closed','closed','','1185-revision-v1','','','2019-09-13 12:33:45','2019-09-13 12:33:45','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(3155,1,'2019-09-13 12:36:06','2019-09-13 12:36:06','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong><span style=\"color: #000000;\">Join us for another enjoyable evening of Past Life Regression.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\n\r\n<strong>The Vault, Wallsend.\r\n9th October from 7.30 pm to 9.30 pm.\r\n£15 per person</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\nWe will aim to record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\nWho were your family?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Secret Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nYou can come along and just watch others being regressed or if you would like to be regressed yourself, simply let us know when making your booking. We will work through as many people as we can and can\'t promise to fit everyone in.\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out to you before the workshop.\r\nYou will need to book your place in advance by clicking the button below.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>&nbsp;\r\n\r\n&nbsp;\r\n\r\nTo learn more about The Secret Workshops and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Secret Workshops <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>','Past Life Regression Workshop - 9th October','','inherit','closed','closed','','1185-revision-v1','','','2019-09-13 12:36:06','2019-09-13 12:36:06','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(3156,1,'2019-09-13 12:36:38','2019-09-13 12:36:38','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong><span style=\"color: #000000;\">Join us for another enjoyable evening of Past Life Regression.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\n\r\n<strong>The Vault, Wallsend.\r\n9th October from 7.30 pm to 9.30 pm.\r\n£15 per person</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces\r\n\r\n</strong></span>\r\n\r\nWe will aim to record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\nWho were your family?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Secret Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nYou can come along and just watch others being regressed or if you would like to be regressed yourself, simply let us know when making your booking. We will work through as many people as we can and can\'t promise to fit everyone in.\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out to you before the workshop.\r\nYou will need to book your place in advance by clicking the button below.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>&nbsp;\r\n\r\n&nbsp;\r\n\r\nTo learn more about The Secret Workshops and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Secret Workshops <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>','Past Life Regression Workshop - 9th October','','inherit','closed','closed','','1185-revision-v1','','','2019-09-13 12:36:38','2019-09-13 12:36:38','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(3157,1,'2019-09-13 12:37:16','2019-09-13 12:37:16','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong><span style=\"color: #000000;\">Join us for another enjoyable evening of Past Life Regression.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\n\r\n<strong>The Vault, Wallsend.\r\n9th October\r\n</strong><strong>7.30 pm to 9.30 pm.\r\n£15 per person</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\n&nbsp;\r\n\r\nWe will aim to record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\nWho were your family?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Secret Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nYou can come along and just watch others being regressed or if you would like to be regressed yourself, simply let us know when making your booking. We will work through as many people as we can and can\'t promise to fit everyone in.\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out to you before the workshop.\r\nYou will need to book your place in advance by clicking the button below.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>&nbsp;\r\n\r\n&nbsp;\r\n\r\nTo learn more about The Secret Workshops and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Secret Workshops <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>','Past Life Regression Workshop - 9th October','','inherit','closed','closed','','1185-revision-v1','','','2019-09-13 12:37:16','2019-09-13 12:37:16','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(3158,1,'2019-09-13 12:37:52','2019-09-13 12:37:52','<span style=\"color: #008000;\"><strong>\r\n<img class=\"alignleft wp-image-1186 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/08/past-life-regression-workshop-300x234.jpg\" alt=\"past life regression workshop\" width=\"300\" height=\"234\" /></strong></span><strong><span style=\"color: #000000;\">Join us for another enjoyable evening of Past Life Regression.\r\n</span></strong>During this Wednesday Workshop, we will give demonstrations of Past Life Regression from those attending, using hypnosis.\r\n\r\n<strong>The Vault, Wallsend.\r\n9th October\r\n</strong><strong>7.30 pm to 9.30 pm.\r\n£15 per person</strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below – Limited Spaces</strong></span>\r\n\r\nWe will aim to record each Past Life Regression Session for you to listen to again later.\r\nIf you wish to be included for past life regression please let us know as you book your session.\r\nWe will fit in as many people as possible during the evening.\r\n<h2><span style=\"color: #008000;\"><strong>Past Life Regression Workshop. </strong></span></h2>\r\nWho could you have been in a previous life?\r\nWhat lessons can you learn from your past?\r\nWhich abilities and skills did you possess?\r\nHow did you die?\r\nWho were your family?\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft wp-image-1659 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis Secret Workshop is led by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a> to conduct Past Life Regression in a safe and comfortable manner.\r\nPast life regression can be fascinating and surprising as our unconscious minds appear to hold lots of information. This is usually not available to us until we use the power of hypnosis, allowing us to unlock vast amounts of information.\r\n\r\nYou can come along and just watch others being regressed or if you would like to be regressed yourself, simply let us know when making your booking. We will work through as many people as we can and can\'t promise to fit everyone in.\r\n\r\n<strong>Advance booking is essential and numbers are limited.</strong>\r\nOnce you have booked a place to attend, a confirmation email will be sent out to you before the workshop.\r\nYou will need to book your place in advance by clicking the button below.\r\n\r\nYou can book your place here today. To learn more about future events look below.\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" /><a href=\"https://www.newcastle-hypnotherapy.com/product/past-life-regression/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"668U96CQZFVCU\" /><img src=\"https://www.paypalobjects.com/en_GB/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></form>&nbsp;\r\n\r\n&nbsp;\r\n\r\nTo learn more about The Secret Workshops and other Newcastle Hypnotherapy events, please subscribe to our newsletter.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. You may unsubscribe at any time.\r\n<div>Newcastle Hypnotherapy <a href=\"https://www.facebook.com/newcastlehypnosis/\"><strong>Facebook Page</strong></a></div>\r\n<div>The Secret Workshops <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">Facebook Page</a></strong></div>\r\n<div>Newcastle Hypnotherapy on <a href=\"https://twitter.com/Newcastlehypno\"><strong>Twitter</strong></a></div>\r\n<div></div>','Past Life Regression Workshop - 9th October','','inherit','closed','closed','','1185-revision-v1','','','2019-09-13 12:37:52','2019-09-13 12:37:52','',1185,'https://www.newcastle-hypnotherapy.com/1185-revision-v1/',0,'revision','',0),(3159,0,'2019-09-13 12:39:10','2019-09-13 12:39:10','[]','woocommerce_update_marketplace_suggestions','','publish','open','closed','','scheduled-action-5d7b8e11eb28b9.60780333-6YDiCYNpcSTdtEgVsXbd7mqJyzf7LgJM','','','2019-09-13 12:39:45','2019-09-13 12:39:45','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3159',0,'scheduled-action','',3),(3160,0,'2019-09-13 12:40:48','2019-09-13 12:40:48','{\"update_callback\":\"wc_update_354_modify_shop_manager_caps\"}','woocommerce_run_update_callback','','publish','open','closed','','scheduled-action-5d7b8e83850e08.04205495-5Mt0TRlyQ5dfngWos7HH3JinaSqaUi9U','','','2019-09-13 12:41:39','2019-09-13 12:41:39','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3160',0,'scheduled-action','',3),(3161,0,'2019-09-13 12:40:49','2019-09-13 12:40:49','{\"update_callback\":\"wc_update_354_db_version\"}','woocommerce_run_update_callback','','publish','open','closed','','scheduled-action-5d7b8e8387a570.82746957-M6pvH8YHogplgyr8BgVl1KYqCDJXFG6b','','','2019-09-13 12:41:39','2019-09-13 12:41:39','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3161',0,'scheduled-action','',3),(3162,0,'2019-09-13 12:40:50','2019-09-13 12:40:50','{\"update_callback\":\"wc_update_360_product_lookup_tables\"}','woocommerce_run_update_callback','','publish','open','closed','','scheduled-action-5d7b8e83966b04.79160301-LwwwXwQ0wzDsAuQhxXvS0LTknMJgMDiO','','','2019-09-13 12:41:39','2019-09-13 12:41:39','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3162',0,'scheduled-action','',3),(3163,0,'2019-09-13 12:40:51','2019-09-13 12:40:51','{\"update_callback\":\"wc_update_360_term_meta\"}','woocommerce_run_update_callback','','publish','open','closed','','scheduled-action-5d7b8e83980897.76637856-b2GCBRk45wiTjtaJSjd2ghSR6QvKQmtq','','','2019-09-13 12:41:39','2019-09-13 12:41:39','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3163',0,'scheduled-action','',3),(3164,0,'2019-09-13 12:40:52','2019-09-13 12:40:52','{\"update_callback\":\"wc_update_360_downloadable_product_permissions_index\"}','woocommerce_run_update_callback','','publish','open','closed','','scheduled-action-5d7b8e8399c1b6.94030910-bAKsqXRHFLEkgaYFxTqkdnJsy6tIhi2m','','','2019-09-13 12:41:39','2019-09-13 12:41:39','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3164',0,'scheduled-action','',3),(3165,0,'2019-09-13 12:40:53','2019-09-13 12:40:53','{\"update_callback\":\"wc_update_360_db_version\"}','woocommerce_run_update_callback','','publish','open','closed','','scheduled-action-5d7b8e839b9175.02663838-ZVtHgMKAhXaLNWOPXRmyuD7m7eISjdUi','','','2019-09-13 12:41:39','2019-09-13 12:41:39','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3165',0,'scheduled-action','',3),(3166,0,'2019-09-13 12:40:54','2019-09-13 12:40:54','{\"update_callback\":\"wc_update_370_tax_rate_classes\"}','woocommerce_run_update_callback','','publish','open','closed','','scheduled-action-5d7b8e839d4139.86560199-eMj9xqUzRe5sk2ZgRcJHuvaRS1neLw25','','','2019-09-13 12:41:39','2019-09-13 12:41:39','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3166',0,'scheduled-action','',3),(3167,0,'2019-09-13 12:40:55','2019-09-13 12:40:55','{\"update_callback\":\"wc_update_370_mro_std_currency\"}','woocommerce_run_update_callback','','publish','open','closed','','scheduled-action-5d7b8e839f1b47.16537376-HUWj9axSmdBpir9ltsRATUvhB8k6ylv0','','','2019-09-13 12:41:39','2019-09-13 12:41:39','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3167',0,'scheduled-action','',3),(3168,0,'2019-09-13 12:40:56','2019-09-13 12:40:56','{\"update_callback\":\"wc_update_370_db_version\"}','woocommerce_run_update_callback','','publish','open','closed','','scheduled-action-5d7b8e83a0e627.38996284-vXUcOVjPb7MDL1rhtVE8EvHY7zWD9BiG','','','2019-09-13 12:41:39','2019-09-13 12:41:39','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3168',0,'scheduled-action','',3),(3169,0,'2019-09-13 12:41:33','2019-09-13 12:41:33','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7b8e83a29399.76484129-8roBc3uSIPgNUGIMz7JUmAC2mEqiPD9O','','','2019-09-13 12:41:39','2019-09-13 12:41:39','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3169',0,'scheduled-action','',3),(3170,0,'2019-09-13 12:41:39','2019-09-13 12:41:39','{\"column\":\"min_max_price\"}','wc_update_product_lookup_tables_column','','publish','open','closed','','scheduled-action-5d7b8e83a68463.21526807-Q677l5CbdDtLImU63WkF38bTFLKBenNC','','','2019-09-13 12:41:39','2019-09-13 12:41:39','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3170',0,'scheduled-action','',3),(3171,0,'2019-09-13 12:41:40','2019-09-13 12:41:40','{\"column\":\"stock_quantity\"}','wc_update_product_lookup_tables_column','','publish','open','closed','','scheduled-action-5d7b8ec5d36767.64309652-J45KjbE2tGUtQS3wrVYBsuD463qH76av','','','2019-09-13 12:42:45','2019-09-13 12:42:45','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3171',0,'scheduled-action','',3),(3172,0,'2019-09-13 12:41:41','2019-09-13 12:41:41','{\"column\":\"sku\"}','wc_update_product_lookup_tables_column','','publish','open','closed','','scheduled-action-5d7b8ec5d63429.40062217-oISKZet0Arg5GRoTaLOjqapvSi7BPUJT','','','2019-09-13 12:42:45','2019-09-13 12:42:45','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3172',0,'scheduled-action','',3),(3173,0,'2019-09-13 12:41:42','2019-09-13 12:41:42','{\"column\":\"stock_status\"}','wc_update_product_lookup_tables_column','','publish','open','closed','','scheduled-action-5d7b8ec5d8d835.32729164-EuScg6SM9l9BLrbZnaP1LitRh60GVfUQ','','','2019-09-13 12:42:45','2019-09-13 12:42:45','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3173',0,'scheduled-action','',3),(3174,0,'2019-09-13 12:41:43','2019-09-13 12:41:43','{\"column\":\"average_rating\"}','wc_update_product_lookup_tables_column','','publish','open','closed','','scheduled-action-5d7b8ec5db6a30.15460341-o1BHfyiLJSwLsiiohG8d68d3t6uP0swN','','','2019-09-13 12:42:45','2019-09-13 12:42:45','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3174',0,'scheduled-action','',3),(3175,0,'2019-09-13 12:41:44','2019-09-13 12:41:44','{\"column\":\"total_sales\"}','wc_update_product_lookup_tables_column','','publish','open','closed','','scheduled-action-5d7b8ec5de1923.39006642-q5hYbXxdtmaD9SPhDRde2Q86h6qfitfp','','','2019-09-13 12:42:45','2019-09-13 12:42:45','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3175',0,'scheduled-action','',3),(3176,0,'2019-09-13 12:41:45','2019-09-13 12:41:45','{\"column\":\"downloadable\"}','wc_update_product_lookup_tables_column','','publish','open','closed','','scheduled-action-5d7b8ec5e08846.43668393-fEoaHAEPMHGnhxEyEdJO0qwf7Qq7vma5','','','2019-09-13 12:42:45','2019-09-13 12:42:45','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3176',0,'scheduled-action','',3),(3177,0,'2019-09-13 12:41:46','2019-09-13 12:41:46','{\"column\":\"virtual\"}','wc_update_product_lookup_tables_column','','publish','open','closed','','scheduled-action-5d7b8ec5e2cac8.74740211-Ktmv5jgX6TYVsH7AZzUk3usuuNnykTBD','','','2019-09-13 12:42:45','2019-09-13 12:42:45','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3177',0,'scheduled-action','',3),(3178,0,'2019-09-13 12:41:47','2019-09-13 12:41:47','{\"column\":\"onsale\"}','wc_update_product_lookup_tables_column','','publish','open','closed','','scheduled-action-5d7b8ec5e5cb93.31797926-gOa1jBTNmPxveVpXrkVLKhUY8ZZsB7G4','','','2019-09-13 12:42:45','2019-09-13 12:42:45','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3178',0,'scheduled-action','',3),(3179,0,'2019-09-13 12:41:49','2019-09-13 12:41:49','{\"offset\":0,\"limit\":50}','wc_update_product_lookup_tables_rating_count_batch','','publish','open','closed','','scheduled-action-5d7b8ec5e76163.12317194-3EXwDwiBUc9c6hWW39NMFLV87OnhBX5z','','','2019-09-13 12:42:45','2019-09-13 12:42:45','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3179',0,'scheduled-action','',3),(3180,0,'2019-09-13 13:41:39','2019-09-13 13:41:39','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7b9ca8502ad0.73967203-CmTAvVXiEOFzeEaTafvWbvQeiCHXQvkd','','','2019-09-13 13:42:00','2019-09-13 13:42:00','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3180',0,'scheduled-action','',3),(3181,1,'2019-09-13 12:49:37','2019-09-13 12:49:37','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about the upcoming events below.</span></strong></h4>\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for your feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n<strong>Thank you for your feedback</strong>\r\n\r\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft size-full wp-image-3098\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/gail.jpg\" alt=\"newcastle hypnotherapy workshops and events\" width=\"619\" height=\"194\" />\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which therapies will be best for you and the best way forward.\r\n<strong>Simply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></span> to book your free session.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What did the NHS Dr say about Newcastle </strong>Hypnotherapy<strong>?</strong></span></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n\r\n<strong>Simply call 07568 455 809 today to get started or <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a> to book your free session.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-09-13 12:49:37','2019-09-13 12:49:37','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3182,1,'2019-09-13 12:53:05','2019-09-13 12:53:05','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\"> Upcoming Events 2019.\r\n</span></strong></h4>\r\n<strong>18th September - <a href=\"https://www.newcastle-hypnotherapy.com/the-secrets-of-deep-relaxation-workshop/\">The Secrets Of Relaxation - Learn More</a></strong>\r\n\r\n<strong>9th October</strong> - <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/past-life-regression-workshop/\"><strong>Past Life Regression Workshop - Learn More</strong></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for your feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n<strong>Thank you for your feedback</strong>\r\n\r\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft size-full wp-image-3098\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/gail.jpg\" alt=\"newcastle hypnotherapy workshops and events\" width=\"619\" height=\"194\" />\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which therapies will be best for you and the best way forward.\r\n<strong>Simply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></span> to book your free session.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What did the NHS Dr say about Newcastle </strong>Hypnotherapy<strong>?</strong></span></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n\r\n<strong>Simply call 07568 455 809 today to get started or <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a> to book your free session.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-09-13 12:53:05','2019-09-13 12:53:05','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3183,1,'2019-09-13 12:55:06','2019-09-13 12:55:06','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\"> Upcoming Events 2019.\r\n</span></strong></h4>\r\n<strong>18th September - <a href=\"https://www.newcastle-hypnotherapy.com/the-secrets-of-deep-relaxation-workshop/\">The Secrets Of Relaxation - Learn More</a></strong>\r\n\r\n<strong>9th October</strong> - <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/past-life-regression-workshop/\"><strong>Past Life Regression Workshop - Learn More</strong></a>\r\n\r\n<strong>23rd October - TBA</strong>\r\n\r\n<strong>6 November - The Secrets Of Being Happy</strong>\r\n\r\n<strong>20 Novemeber - Dealing With Difficult People</strong>\r\n\r\n<strong>11th December - TBA</strong>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for your feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n<strong>Thank you for your feedback</strong>\r\n\r\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft size-full wp-image-3098\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/gail.jpg\" alt=\"newcastle hypnotherapy workshops and events\" width=\"619\" height=\"194\" />\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which therapies will be best for you and the best way forward.\r\n<strong>Simply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></span> to book your free session.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What did the NHS Dr say about Newcastle </strong>Hypnotherapy<strong>?</strong></span></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n\r\n<strong>Simply call 07568 455 809 today to get started or <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a> to book your free session.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-09-13 12:55:06','2019-09-13 12:55:06','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3185,1,'2019-09-13 12:57:13','2019-09-13 12:57:13','<img class=\"alignleft wp-image-2675 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />\r\n<strong>Wednesday 6th November.</strong>\r\n<strong>7.30 pm to 9.30 pm.</strong>\r\n<strong>@ The Vault, Wallsend.</strong>\r\n<strong>£15 </strong>\r\n<strong>Advance booking required.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><strong><span style=\"color: #008000;\">Happiness is a HABIT</span> </strong></h4>\r\nDuring this fun workshop, we will explore the natural attitudes and skills certain people possess to be and stay happy.\r\nWe will then look at the best ways we can easily adapt these ideas to be happier, more relaxed, less stressed and less anxious.\r\n\r\n<strong>Happy people tend to</strong>\r\n<ul>\r\n 	<li>be more relaxed</li>\r\n 	<li>suffer less stress &amp; anxiety</li>\r\n 	<li>live longer &amp; healthier lives</li>\r\n 	<li>enjoy better health</li>\r\n 	<li>attract friends &amp; partners easier</li>\r\n 	<li>suffer less mental health issues</li>\r\n 	<li>smile more</li>\r\n 	<li>enjoy better relationships</li>\r\n 	<li>age slower</li>\r\n 	<li>learn faster</li>\r\n 	<li>experience fewer problems and challenges</li>\r\n 	<li>handle problems better</li>\r\n 	<li>enjoy life more</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Learn The Secrets Of Being Happy.</strong></span></h4>\r\nHappiness is just a good habit that happy people do automatically.\r\nThese natural skills are easy to learn and practice until they become a natural habit.\r\nThey make life better, easier and more enjoyable.\r\n\r\nThis workshop is hosted by Mark from <a href=\"https://www.newcastle-hypnotherapy.com\">Newcastle Hypnotherapy</a>.\r\nMark is a clinical hypnotherapist and master practitioner of NLP and has many life-improving skills to share.\r\n\r\nYou can join us for this fun workshop by booking your place here -\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/the-secrets-of-being-happy-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nYou can also learn more about the many regular events by joining our newsletter here.\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\nYour privacy is always safe with us and you can unsubscribe at any time.\r\n\r\nThe Secrets Of Being Happy is part of The Secret Workshops that run from The Vault and other locations across the North East and Newcastle.\r\nIf you would like to suggest an event or idea please <strong><a href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">Contact Us</a></strong> or find us on our Facebook Page below.\r\n\r\n<strong>The Secret Workshops also have a Facebook Group with details and discussions of the regular life-improving workshops.</strong>\r\n<span style=\"color: #008000;\"><strong>You can easily join the group today by </strong></span><a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><strong><span style=\"color: #008000;\">CLICKING HERE NOW.</span></strong></a>\r\n\r\nNewcastle Hypnotherapy offer specialist help for many issues including problems with Stress, Anxiety, Self-Confidence, Depression and change work. You can arrange your free 15-minute phone consultation at the top of this page to discuss your issue and look at the best way forward for you.<img class=\"alignleft size-medium wp-image-2675\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secrets Of Being Happy\" width=\"300\" height=\"169\" />','The Secrets Of Being Happy','','inherit','closed','closed','','2681-revision-v1','','','2019-09-13 12:57:13','2019-09-13 12:57:13','',2681,'https://www.newcastle-hypnotherapy.com/2681-revision-v1/',0,'revision','',0),(3186,1,'2019-09-13 13:07:10','2019-09-13 13:07:10','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\"> Upcoming Events 2019.\r\n</span></strong></h4>\r\n<strong>18th September - <a href=\"https://www.newcastle-hypnotherapy.com/the-secrets-of-deep-relaxation-workshop/\">The Secrets Of Relaxation - Learn More</a></strong>\r\n\r\n<strong>9th October</strong> - <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/past-life-regression-workshop/\"><strong>Past Life Regression Workshop - Learn More</strong></a>\r\n\r\n<strong>23rd October - TBA</strong>\r\n\r\n<strong>6th November - <a href=\"https://www.newcastle-hypnotherapy.com/the-secrets-of-being-happy/\">The Secrets Of Being Happy - Learn More</a>\r\n</strong>\r\n\r\n<strong>20 Novemeber - Dealing With Difficult People</strong>\r\n\r\n<strong>11th December - TBA</strong>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for your feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n<strong>Thank you for your feedback</strong>\r\n\r\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft size-full wp-image-3098\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/gail.jpg\" alt=\"newcastle hypnotherapy workshops and events\" width=\"619\" height=\"194\" />\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which therapies will be best for you and the best way forward.\r\n<strong>Simply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></span> to book your free session.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What did the NHS Dr say about Newcastle </strong>Hypnotherapy<strong>?</strong></span></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n\r\n<strong>Simply call 07568 455 809 today to get started or <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a> to book your free session.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-09-13 13:07:10','2019-09-13 13:07:10','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3187,1,'2019-09-13 13:10:32','2019-09-13 13:10:32','<img class=\"alignleft size-medium wp-image-2719\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/04/dealing-with-difficult-people-and-children-300x200.jpg\" alt=\"dealing with difficult people and children\" width=\"300\" height=\"200\" /><strong>\r\n<span style=\"color: #008000;\">Deal with difficult people and children better.</span></strong>\r\n\r\nWed 20th November\r\n7.30 pm to 9.30 pm\r\nThe Vault Creative Wellbeing Centre\r\n£15 per person\r\nAdvance booking required\r\n<strong><span style=\"color: #ff6600;\">Book your place below.</span></strong>\r\n\r\n&nbsp;\r\n\r\nDealing with difficult people and children can be frustrating and stressful.\r\nDuring this Secret Workshop, you will learn advanced NLP &amp; Psychology Skills to improve your outcomes.\r\n\r\n<span style=\"color: #008000;\"><strong>Learn how to</strong></span>\r\n<ul>\r\n 	<li>listen better for great results</li>\r\n 	<li>discover hidden messages &amp; needs</li>\r\n 	<li>notice important body language signs</li>\r\n 	<li>keep your composure and stay calm</li>\r\n 	<li>use options to move forward</li>\r\n 	<li>avoid becoming defensive</li>\r\n 	<li>move away from arguments</li>\r\n 	<li>set limits and boundaries</li>\r\n 	<li>protect yourself from negative, energy drainers</li>\r\n 	<li>put your point across nicely</li>\r\n 	<li>obtain a win for everyone</li>\r\n 	<li>improve your communication skills</li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>Dealing With Difficult People &amp; Children</strong></span></h4>\r\nLearning modern NLP and Psychological methods can really improve your communication skills, making relationships more enjoyable.\r\nThere are many hidden communication signals and messages in every conversation. Learning to recognize these signals opens up vital information that can help with difficult people and children.\r\n\r\nJoin us for this fun Secret Workshop and improve your relationships and communication skills.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/?post_type=product&amp;p=2732&amp;preview=true\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about future events by joining the newsletter below.</strong>\r\n<strong>You can unsubscribe at </strong>any time<strong>. Your privacy is always safe.</strong>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<strong>You can also learn more in <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\">The Secret Workshop Group</a></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Dealing With Difficult People & Children','','inherit','closed','closed','','2718-revision-v1','','','2019-09-13 13:10:32','2019-09-13 13:10:32','',2718,'https://www.newcastle-hypnotherapy.com/2718-revision-v1/',0,'revision','',0),(3188,1,'2019-09-13 13:27:01','2019-09-13 13:27:01','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\"> Upcoming Events 2019.\r\n</span></strong></h4>\r\n<strong>18th September - <a href=\"https://www.newcastle-hypnotherapy.com/the-secrets-of-deep-relaxation-workshop/\">The Secrets Of Relaxation - Learn More</a></strong>\r\n\r\n<strong>9th October</strong> - <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/past-life-regression-workshop/\"><strong>Past Life Regression Workshop - Learn More</strong></a>\r\n\r\n<strong>23rd October - TBA</strong>\r\n\r\n<strong>6th November - <a href=\"https://www.newcastle-hypnotherapy.com/the-secrets-of-being-happy/\">The Secrets Of Being Happy - Learn More</a>\r\n</strong>\r\n\r\n<strong>20th November - <a href=\"https://www.newcastle-hypnotherapy.com/dealing-with-difficult-people-children/\">Dealing With Difficult People - Learn More</a>\r\n</strong>\r\n\r\n<strong>11th December - TBA</strong>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for your feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n<strong>Thank you for your feedback</strong>\r\n\r\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft size-full wp-image-3098\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/gail.jpg\" alt=\"newcastle hypnotherapy workshops and events\" width=\"619\" height=\"194\" />\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which therapies will be best for you and the best way forward.\r\n<strong>Simply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></span> to book your free session.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What did the NHS Dr say about Newcastle </strong>Hypnotherapy<strong>?</strong></span></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n\r\n<strong>Simply call 07568 455 809 today to get started or <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a> to book your free session.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-09-13 13:27:01','2019-09-13 13:27:01','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3189,1,'2019-09-13 13:30:20','2019-09-13 13:30:20','<img class=\"alignleft size-medium wp-image-2613\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/02/self-confidence-2121159_1280-300x171.jpg\" alt=\"self-confidence-workshop\" width=\"300\" height=\"171\" />\r\n<strong>Wednesday the 11th December</strong>\r\n<strong>7.30 pm - 9.30 pm</strong>\r\n<strong>The Vault, Wallsend</strong>\r\n<strong>£15 </strong>\r\n<span style=\"color: #ff6600;\"><strong>Advance booking required\r\nBook below - Limited Spaces\r\n</strong></span>\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Improve Your Self-Confidence &amp; Feel Amazing.</strong></span></h4>\r\n<strong>Have you noticed that people with great self-confidence find life usually goes in their favour?</strong> Do you see them attracting good things, good people, less resistance in life and they smile much more?\r\n\r\n<strong>Self-confidence is a natural skill, a mindset, an attitude that gives people that extra edge in life. </strong>It makes life so much easier as though life bends the right way, for people with self-confidence.\r\n<h4><span style=\"color: #008000;\"><strong>Good News! - Everyone can learn self-confidence.</strong></span></h4>\r\n<strong>Daftly we are not taught self-confidence in school.</strong> Some people naturally pick it up while others miss it completely. <strong>The difference self-confidence can make to our lives is amazing. </strong>Your life can be so much better.\r\n\r\n<span style=\"color: #008000;\"><strong>During This Self-Confidence Workshop, you will learn</strong></span>\r\n<ul>\r\n 	<li>how to be self-confident</li>\r\n 	<li>to naturally increase your self-esteem</li>\r\n 	<li>NLP techniques to instantly switch on self-confidence</li>\r\n 	<li>how to be relaxed around others</li>\r\n 	<li>how to smile naturally</li>\r\n 	<li>to be self-confident in your own way</li>\r\n 	<li>a self-hypnosis technique to naturally see yourself as self-confident</li>\r\n</ul>\r\nThis self-confidence building workshop lasts for 2 hours starting at 7.30 pm.\r\nYou will learn easy to use skills and techniques that will quickly improve your self-confidence and self-esteem.\r\nWith practice, you can improve these levels to those of your choice.\r\n\r\n<strong>You can book your place here. <a href=\"https://www.newcastle-hypnotherapy.com/product/self-confidence-workshop-booking/\">Click now to book your place.</a></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-confidence-workshop-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Would you like to work with Mark privately to conquer your anxiety, stress or low self-confidence issues?</strong>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark also works with many other issues and challenges.\r\n<strong>To arrange your consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <strong>your free consultation online here</strong>.\r\n<h4 style=\"text-align: left;\"><span style=\"font-family: Arial; color: #008000;\"><strong>What did the Dr say about Newcastle Hypnotherapy?\r\n</strong></span>\r\n<iframe src=\"https://www.youtube.com/embed/cudUGD_t74I?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe></h4>\r\nYou can also join <strong><a href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Secret Workshops Discussion Group Here</a></strong>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/self-confidence-workshop-booking/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>','Self-Confidence Workshop','','inherit','closed','closed','','2612-revision-v1','','','2019-09-13 13:30:20','2019-09-13 13:30:20','',2612,'https://www.newcastle-hypnotherapy.com/2612-revision-v1/',0,'revision','',0),(3190,1,'2019-09-13 13:31:47','2019-09-13 13:31:47','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\"> Upcoming Events 2019.\r\n</span></strong></h4>\r\n<strong>18th September - <a href=\"https://www.newcastle-hypnotherapy.com/the-secrets-of-deep-relaxation-workshop/\">The Secrets Of Relaxation - Learn More</a></strong>\r\n\r\n<strong>9th October</strong> - <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/past-life-regression-workshop/\"><strong>Past Life Regression Workshop - Learn More</strong></a>\r\n\r\n<strong>23rd October - TBA</strong>\r\n\r\n<strong>6th November - <a href=\"https://www.newcastle-hypnotherapy.com/the-secrets-of-being-happy/\">The Secrets Of Being Happy - Learn More</a>\r\n</strong>\r\n\r\n<strong>20th November - <a href=\"https://www.newcastle-hypnotherapy.com/dealing-with-difficult-people-children/\">Dealing With Difficult People - Learn More</a>\r\n</strong>\r\n\r\n<strong>11th December - <a href=\"https://www.newcastle-hypnotherapy.com/self-confidence-workshop/\">The Secrets Of Self-Confidence - Learn More</a>\r\n</strong>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for your feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n<strong>Thank you for your feedback</strong>\r\n\r\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft size-full wp-image-3098\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/gail.jpg\" alt=\"newcastle hypnotherapy workshops and events\" width=\"619\" height=\"194\" />\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which therapies will be best for you and the best way forward.\r\n<strong>Simply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></span> to book your free session.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What did the NHS Dr say about Newcastle </strong>Hypnotherapy<strong>?</strong></span></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n\r\n<strong>Simply call 07568 455 809 today to get started or <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a> to book your free session.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-09-13 13:31:47','2019-09-13 13:31:47','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3192,0,'2019-09-13 14:42:00','2019-09-13 14:42:00','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7baaf48047d5.98160989-TFEswHKzzLgQexwQKYfFFb6dl7XbMcC9','','','2019-09-13 14:43:00','2019-09-13 14:43:00','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3192',0,'scheduled-action','',3),(3193,1,'2019-09-13 13:42:30','2019-09-13 13:42:30','<img class=\"alignleft wp-image-1750 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/10/memory-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\r\nSome people have a great memory and they rarely forget anything.\r\nThey remember everything, important dates, events, names with ease.\r\nOthers are great at remembering certain things and have trouble remembering the simple things.\r\nSome of us find our memory starts to get worse as we age. What can we do to stop this?\r\n\r\n<strong>Having a good memory is often a set of skills that with a little practice, can really help to improve memory function.</strong>\r\nWant to learn these skills? <em>Join us for this Memory Improving Workshop.</em>\r\n\r\n<strong>When? 21st November.</strong>\r\n<strong>Where? The Vault, Wallsend.</strong>\r\n<strong>What Time? 7.30pm to 9.30pm</strong>\r\n<strong>How Much? £8.50 by advance booking.</strong>\r\n\r\nThe Wednesday Workshop is a regular set of events that run on the 1st &amp; 3rd Wednesday each month.\r\nBooking in advance is required at the link below. Places are limited.\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/nlp-memory-improvement/\"><img class=\"alignleft wp-image-1551 size-medium\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-300x107.png\" alt=\"book workshop now\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Learn more about our regular events.</strong>\r\nSubscribe to the events newsletter below.\r\n\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR compliant. Your details are always kept private. You can unsubscribe from this newsletter at any time.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Improving Your Memory - TBA','','inherit','closed','closed','','1749-revision-v1','','','2019-09-13 13:42:30','2019-09-13 13:42:30','',1749,'https://www.newcastle-hypnotherapy.com/1749-revision-v1/',0,'revision','',0),(3196,1,'2019-09-13 13:54:52','2019-09-13 13:54:52','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\"> Upcoming Events 2019.\r\n</span></strong></h4>\r\n<strong>18th September - <a href=\"https://www.newcastle-hypnotherapy.com/the-secrets-of-deep-relaxation-workshop/\">The Secrets Of Relaxation - Learn More</a></strong>\r\n\r\n<strong>9th October</strong> - <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/past-life-regression-workshop/\"><strong>Past Life Regression Workshop - Learn More</strong></a>\r\n\r\n<strong>23rd October - <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-freedom-workshop/\">Freedom From Anxiety &amp; Stress Workshop - Learn More</a>\r\n</strong>\r\n\r\n<strong>6th November - <a href=\"https://www.newcastle-hypnotherapy.com/the-secrets-of-being-happy/\">The Secrets Of Being Happy - Learn More</a>\r\n</strong>\r\n\r\n<strong>20th November - <a href=\"https://www.newcastle-hypnotherapy.com/dealing-with-difficult-people-children/\">Dealing With Difficult People - Learn More</a>\r\n</strong>\r\n\r\n<strong>11th December - <a href=\"https://www.newcastle-hypnotherapy.com/self-confidence-workshop/\">The Secrets Of Self-Confidence - Learn More</a>\r\n</strong>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for your feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n<strong>Thank you for your feedback</strong>\r\n\r\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft size-full wp-image-3098\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/gail.jpg\" alt=\"newcastle hypnotherapy workshops and events\" width=\"619\" height=\"194\" />\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which therapies will be best for you and the best way forward.\r\n<strong>Simply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></span> to book your free session.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What did the NHS Dr say about Newcastle </strong>Hypnotherapy<strong>?</strong></span></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n\r\n<strong>Simply call 07568 455 809 today to get started or <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a> to book your free session.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-09-13 13:54:52','2019-09-13 13:54:52','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3194,1,'2019-09-13 13:49:28','2019-09-13 13:49:28','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong>Workshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\"> Upcoming Events 2019.\r\n</span></strong></h4>\r\n<strong>18th September - <a href=\"https://www.newcastle-hypnotherapy.com/the-secrets-of-deep-relaxation-workshop/\">The Secrets Of Relaxation - Learn More</a></strong>\r\n\r\n<strong>9th October</strong> - <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/past-life-regression-workshop/\"><strong>Past Life Regression Workshop - Learn More</strong></a>\r\n\r\n<strong>23rd October - TBA</strong>\r\n\r\n<strong>6th November - <a href=\"https://www.newcastle-hypnotherapy.com/the-secrets-of-being-happy/\">The Secrets Of Being Happy - Learn More</a>\r\n</strong>\r\n\r\n<strong>20th November - <a href=\"https://www.newcastle-hypnotherapy.com/dealing-with-difficult-people-children/\">Dealing With Difficult People - Learn More</a>\r\n</strong>\r\n\r\n<strong>11th December - <a href=\"https://www.newcastle-hypnotherapy.com/self-confidence-workshop/\">The Secrets Of Self-Confidence - Learn More</a>\r\n</strong>\r\n\r\n<span style=\"color: #ff0000;\"><strong>New workshops and events are added on a regular basis.</strong></span>\r\n<span style=\"color: #ff0000;\"><strong>Join the newsletter below for updates as they happen.</strong></span>\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for your feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n<strong>Thank you for your feedback</strong>\r\n\r\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft size-full wp-image-3098\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/gail.jpg\" alt=\"newcastle hypnotherapy workshops and events\" width=\"619\" height=\"194\" />\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which therapies will be best for you and the best way forward.\r\n<strong>Simply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></span> to book your free session.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What did the NHS Dr say about Newcastle </strong>Hypnotherapy<strong>?</strong></span></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n\r\n<strong>Simply call 07568 455 809 today to get started or <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a> to book your free session.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-09-13 13:49:28','2019-09-13 13:49:28','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3195,1,'2019-09-13 13:53:31','2019-09-13 13:53:31','https://www.youtube.com/watch?v=UnamAk-G42Y\r\n\r\n<strong> Freedom From Anxiety &amp; Stress Workshop</strong>\r\n<span style=\"color: #ff6600;\"><strong>Wednesday 23rd October</strong></span>\r\n7.30 pm to 10 pm\r\nThe Vault, Wallsend.\r\nHot drinks &amp; snacks included.\r\n£15.00 Per Person\r\n<strong>Advance booking is required.\r\n</strong><strong>\r\n</strong>\r\n\r\n<strong><span style=\"color: #008000;\">Do you suffer from Anxiety, Stress, Low Self-Confidence or Struggle with Worry?\r\n</span></strong><span style=\"color: #000000;\">Anxiety &amp; Stress are becoming a problem for more and more people, making life unhappy and damaging health<strong>.</strong></span>\r\n\r\nThankfully there are many things you can do to take control of anxiety and stress.\r\nSimple, powerful techniques are helping people to take charge of their lives and replace anxiety &amp; stress with feelings of confidence, strength and control.<strong><span style=\"color: #008000;\">\r\n</span></strong>\r\n<h2><strong><span style=\"color: #008000;\">The Freedom From Anxiety &amp; Stress Workshop</span></strong></h2>\r\nThis Workshop is an introduction to <span style=\"color: #ff6600;\"><strong>Anxiety Freedom Techniques</strong></span> that can successfully help to reduce or conquer <span style=\"color: #ff6600;\"><strong>Anxiety</strong></span>, Reduce <span style=\"color: #ff6600;\">Stress</span> while building <span style=\"color: #ff6600;\"><strong>Self-Confidence</strong></span> and change <span style=\"color: #ff6600;\"><strong>Worry</strong></span> to <span style=\"color: #ff6600;\"><strong>Positive Thoughts</strong></span>.\r\n\r\n<strong>During this workshop, you will learn Powerful Techniques to</strong>\r\n<ul>\r\n 	<li>gain awareness of anxiety &amp; stress in yourself and others</li>\r\n 	<li>recognise your triggers and anchors</li>\r\n 	<li>be aware of the effects of anxiety &amp; worry on your body &amp; mind</li>\r\n 	<li>discover which foods can make your anxiety, stress &amp; moods worse</li>\r\n</ul>\r\n<strong>You will then move on to learn to</strong>\r\n<ul>\r\n 	<li>use powerful breathing techniques to reduce anxiety</li>\r\n 	<li>interrupt &amp; stop anxiety, stress &amp; worry patterns</li>\r\n 	<li>use skills to reduce negative states as soon as they appear</li>\r\n 	<li>relax on demand and stay calm in stressful situations</li>\r\n 	<li>use activities and recreation to keep anxiety away</li>\r\n 	<li>enhance your diet to naturally reduce anxiety problems</li>\r\n 	<li>bring on feelings of self-confidence on demand.</li>\r\n</ul>\r\n<strong>This Freedom From Anxiety &amp; Stress Workshop will be led by Mark Morley, a specialist in anxiety &amp; stress issues with <span style=\"color: #008000;\"><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/\">Newcastle Hypnotherapy.</a></span></strong>\r\n\r\n<strong>To learn these powerful skills to help with anxiety, stress &amp; self-confidence simply book your place below.</strong>\r\nPlaces are limited to just 20 people and accepted on a first come first served basis.\r\n<h4><strong><span style=\"color: #008000;\">You can read client reviews below, on this page</span></strong>\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a></h4>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>To learn about the other events simply join the newsletter.</strong>\r\nYour privacy is always safe and you can remove yourself at any time\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/\"><img class=\"alignleft size-medium wp-image-1659\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/book-workshop-now-1-300x107.png\" alt=\"\" width=\"300\" height=\"107\" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4><span style=\"color: #008000;\"><strong>Want To Conquer You Anxiety &amp; Stress Even Faster?</strong></span></h4>\r\nYou can arrange a free phone consultation to discuss your anxiety issues and explore the options that are available to you.\r\nMark works with a number of clients on an individual basis each week and helps works with many other issues and challenges.\r\n<strong>To arrange your free consultation call 07568 455 809, leaving a message if required.</strong>\r\nYou can also book <span style=\"color: #008000;\"><strong>your free consultation online here</strong></span>.\r\n<h4><strong><span style=\"color: #008000;\">What did Dr Andrew say about our Anxiety &amp; Stress Sessions?</span></strong></h4>\r\nYou can also join <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.facebook.com/groups/NHwednesdayworkshop/\">The Wednesday Workshop Discussion Group here</a></strong></span>\r\n\r\n<strong>Client Feedback by LN </strong>“I’ve had an amazing Christmas. I’ve been very relaxed compared to the last few years with a house full. Had a bit of a stressful morning yesterday, and I was able to dissolve my feelings pretty quick. I’m still taking my supplements and looking at ways to improve my diet. So overall still heading in the right direction.”LN\r\n\r\n<strong>Client Feedback by Joyce</strong> “<span class=\"Linkify\">Thank you for your help at a very difficult time in my life, you were extremely patient and it helped a lot. The weight loss continues and l am more positive. Regards Joyce”</span>\r\n\r\n<strong><em>Client Feedback by Steve </em></strong><em>“Hi </em><em>Mark, Just a quick email to thank you for the help you gave me. My problems with <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/\">anxiety</a> were hitting me hard as you know and I was concerned about losing my job because of it. Since our sessions, the anxiety has been under control and I now feel I have my life back.  I can’t thank you enough. Steve “</em>\r\n<strong>\r\nClient Feedback by Gary</strong>“Mark is great. Got to the cause of the problem, felt a part of the solution and left really clear on what needed to happen – and to top it off I’ve been ‘sugar-free’ for over two weeks”','Freedom From Anxiety & Stress Workshop','','inherit','closed','closed','','2558-revision-v1','','','2019-09-13 13:53:31','2019-09-13 13:53:31','',2558,'https://www.newcastle-hypnotherapy.com/2558-revision-v1/',0,'revision','',0),(3198,0,'2019-09-13 14:09:18','2019-09-13 14:09:18','[3197]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d7ba342870142.00063591-1QiQcMNJxuVWEdiCqAVYXpnhnoSrjz8h','','','2019-09-13 14:10:10','2019-09-13 14:10:10','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3198',30,'scheduled-action','',3),(3199,0,'2019-09-13 15:43:00','2019-09-13 15:43:00','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7bb9b433b300.29264478-husTNBlr74tTiw1sXP6G0euG7elbo8qb','','','2019-09-13 15:45:56','2019-09-13 15:45:56','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3199',0,'scheduled-action','',3),(3200,1,'2019-09-13 14:53:06','2019-09-13 14:53:06','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong><img class=\"alignleft wp-image-2675 size-medium\" title=\"The Secret Workshops Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secret Workshops Newcastle Hypnotherapy\" width=\"300\" height=\"169\" />\r\nWorkshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\"> Upcoming Events 2019.\r\n</span></strong></h4>\r\n<strong>18th September - <a href=\"https://www.newcastle-hypnotherapy.com/the-secrets-of-deep-relaxation-workshop/\">The Secrets Of Relaxation - Learn More</a></strong>\r\n\r\n<strong>9th October</strong> - <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/past-life-regression-workshop/\"><strong>Past Life Regression Workshop - Learn More</strong></a>\r\n\r\n<strong>23rd October - <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-freedom-workshop/\">Freedom From Anxiety &amp; Stress Workshop - Learn More</a>\r\n</strong>\r\n\r\n<strong>6th November - <a href=\"https://www.newcastle-hypnotherapy.com/the-secrets-of-being-happy/\">The Secrets Of Being Happy - Learn More</a>\r\n</strong>\r\n\r\n<strong>20th November - <a href=\"https://www.newcastle-hypnotherapy.com/dealing-with-difficult-people-children/\">Dealing With Difficult People - Learn More</a>\r\n</strong>\r\n\r\n<strong>11th December - <a href=\"https://www.newcastle-hypnotherapy.com/self-confidence-workshop/\">The Secrets Of Self-Confidence - Learn More</a>\r\n</strong>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for your feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n<strong>Thank you for your feedback</strong>\r\n\r\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft size-full wp-image-3098\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/gail.jpg\" alt=\"newcastle hypnotherapy workshops and events\" width=\"619\" height=\"194\" />\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which therapies will be best for you and the best way forward.\r\n<strong>Simply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></span> to book your free session.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What did the NHS Dr say about Newcastle </strong>Hypnotherapy<strong>?</strong></span></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n\r\n<strong>Simply call 07568 455 809 today to get started or <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a> to book your free session.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-09-13 14:53:06','2019-09-13 14:53:06','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3201,1,'2019-09-13 14:53:32','2019-09-13 14:53:32','<h4 style=\"text-align: center;\"><span style=\"color: #008000;\"><strong><img class=\"alignleft wp-image-2675 size-medium\" title=\"The Secret Workshops Newcastle Hypnotherapy\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/03/The-Secrets-Of-Being-Happy-300x169.jpg\" alt=\"The Secret Workshops Newcastle Hypnotherapy\" width=\"300\" height=\"169\" />\r\nWorkshops &amp; Events in Newcastle Upon Tyne,\r\nNorthumberland, North East England &amp; Online</strong></span></h4>\r\n&nbsp;\r\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff6600;\">Newcastle Hypnotherapy teaches you to be calmer, more relaxed, happier,\r\ncontent, self-confident, energised and focused.</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\"> Upcoming Events 2019.\r\n</span></strong></h4>\r\n<strong>18th September - <a href=\"https://www.newcastle-hypnotherapy.com/the-secrets-of-deep-relaxation-workshop/\">The Secrets Of Relaxation - Learn More</a></strong>\r\n\r\n<strong>9th October</strong> - <a href=\"https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/past-life-regression-workshop/\"><strong>Past Life Regression Workshop - Learn More</strong></a>\r\n\r\n<strong>23rd October - <a href=\"https://www.newcastle-hypnotherapy.com/anxiety-freedom-workshop/\">Freedom From Anxiety &amp; Stress Workshop - Learn More</a>\r\n</strong>\r\n\r\n<strong>6th November - <a href=\"https://www.newcastle-hypnotherapy.com/the-secrets-of-being-happy/\">The Secrets Of Being Happy - Learn More</a>\r\n</strong>\r\n\r\n<strong>20th November - <a href=\"https://www.newcastle-hypnotherapy.com/dealing-with-difficult-people-children/\">Dealing With Difficult People - Learn More</a>\r\n</strong>\r\n\r\n<strong>11th December - <a href=\"https://www.newcastle-hypnotherapy.com/self-confidence-workshop/\">The Secrets Of Self-Confidence - Learn More</a>\r\n</strong>\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><strong><span style=\"color: #ff6600;\"><span style=\"color: #000000;\">Thank you for your feedback</span>\r\n<img class=\"alignleft wp-image-3004 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/alit.jpg\" alt=\"newcastle hypnotherapy feedback\" width=\"579\" height=\"303\" />\r\n</span></strong></p>\r\n\r\n<h4><strong><span style=\"color: #008000;\">Learn about these events by joining the newsletter.</span></strong></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><strong><span style=\"color: #008000;\">In these workshops you can lean:</span></strong></h4>\r\n<ul>\r\n 	<li><strong>Life Enhancing Skills</strong></li>\r\n 	<li><strong>Handle Problems &amp; Challenges Better</strong></li>\r\n 	<li><strong>Build Confidence &amp; Make New Friends</strong></li>\r\n 	<li><strong>Personal Development</strong></li>\r\n 	<li><strong>Good Mental Health</strong></li>\r\n</ul>\r\n<h4><span style=\"color: #008000;\"><strong>We teach skills in</strong></span></h4>\r\n<ul>\r\n 	<li><strong>Neuro-Linguistic Programming - NLP</strong></li>\r\n 	<li><strong>Hypnosis</strong></li>\r\n 	<li><strong>Self-Hypnosis</strong></li>\r\n 	<li><strong>Emotional Freedom Technique - EFT Tapping</strong></li>\r\n 	<li><strong>Meditation</strong></li>\r\n 	<li><strong>Mindfulness</strong></li>\r\n 	<li><strong>Relaxation</strong></li>\r\n 	<li><strong>Many other techniques and skills that really can make a difference.</strong></li>\r\n</ul>\r\n<h4><strong><span style=\"color: #008000;\">The Secret Workshops\r\n</span></strong></h4>\r\n<strong>Now running weekly and from various locations in Newcastle upon Tyne, Northumberland and the North East. You can learn powerful new skills such as:</strong>\r\n<strong><span style=\"color: #ff6600;\">Self-Hypnosis, Meditation, Mindfulness, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP, Past Life Regression and more.</span></strong>\r\n\r\nThese are great for improving life skills and also help with Anxiety, Stress, Depression, Self-Confidence, Memory Skills and more.\r\n<h4><span style=\"color: #008000;\"><strong>Newcastle Hypnotherapy &amp; NLP Events.</strong></span></h4>\r\nLonger events are also run for greater learning in such areas as Self-Hypnosis, Emotion Freedom Technique - EFT, Neuro-Linguistic Programming - NLP.\r\nOur longer events are usually an in-depth event, teaching you deeper skills and techniques.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft wp-image-3005 size-full\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/tomt.jpg\" alt=\"Newcastle Hypnotherapy workshops and events\" width=\"615\" height=\"296\" />\r\n<h4><span style=\"color: #008000;\"><strong>Examples Of </strong><strong>Events You Can Attend</strong></span><span style=\"color: #ff6600;\"><strong>\r\n</strong></span></h4>\r\n<span style=\"color: #ff6600;\"><strong>Meditate Deeper &amp; Faster Using Self Hypnosis </strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Past Life Regression Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Self Hypnosis</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Pain Management Workshop </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">S</span></strong><span style=\"color: #ff6600;\"><strong>elf Hypnosis for Stress &amp; Anxiety</strong></span>\r\n\r\n<span style=\"color: #008000;\"><strong><span style=\"color: #ff6600;\">Self-Hypnosis for Weight Loss\r\n</span> </strong></span>\r\n\r\n<strong><span style=\"color: #ff6600;\">The Secrets Of Being Happy</span></strong>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The NLP Introduction Workshop</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Emotional Strength</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Healing Pool - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Mental Massage - Self-Hypnosis</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Dealing With Difficult People &amp; Children</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Deep Relaxation Mind &amp; Body</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Secrets Of Self-Confidence</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>Improving The Memory</strong></span>\r\n\r\n<span style=\"color: #ff6600;\"><strong>The Stress &amp; Anxiety Workshop</strong></span>\r\n\r\n<strong>Thank you for your feedback</strong>\r\n\r\n<img class=\"alignleft size-full wp-image-3095\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/hayley.jpg\" alt=\"newcastle hypnotherapy events and workshops\" width=\"653\" height=\"276\" />\r\n<h4></h4>\r\n<h4><span style=\"color: #008000;\"><strong>Events &amp; Workshops Newcastle Hypnotherapy\r\n</strong></span></h4>\r\nYou can also join <a href=\"https://www.facebook.com/groups/TheSecretWorkshops/\"><span style=\"color: #008000;\"><strong>The Secret</strong><strong><span style=\"color: #008000;\"> Workshops Facebook Group</span></strong></span></a> for more information.\r\nHere you can discuss workshops, ideas and skills, make friends and ask questions.\r\n<h4><span style=\"color: #008000;\"><strong>Can You Share Some Skills?</strong></span></h4>\r\nIf you can contribute and share some useful life skills <span style=\"color: #008000;\"><strong><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">get in touch by ema</a><a style=\"color: #008000;\" href=\"https://www.newcastle-hypnotherapy.com/contact-us/\">i</a></strong><strong>l</strong></span> and we can discuss this further.\r\n<h4><strong><span style=\"color: #008000;\">What Would You Like To Learn? Suggest A Topic.\r\n</span></strong></h4>\r\nIf there is a particular topic or subject you would like to work on please let us know.\r\nThe aim of the group is to bring together as many skills as possible to then share with others.\r\n\r\n<strong>Thank you for your feedback</strong>\r\n<img class=\"alignleft size-full wp-image-3098\" src=\"https://www.newcastle-hypnotherapy.com/wp-content/uploads/2019/06/gail.jpg\" alt=\"newcastle hypnotherapy workshops and events\" width=\"619\" height=\"194\" />\r\n<h4><span style=\"color: #008000;\"><strong>Learn about these events by joining the newsletter.</strong></span></h4>\r\n[contact-form-7 id=\"667\" title=\"Events - Newcastle Hypnotherapy\"]\r\nWe are GDPR Compliant and will only use your details to send you updates.\r\nYou may unsubscribe at any time.\r\n<h4><span style=\"color: #008000;\"><strong>You can also work with Newcastle Hypnotherapy individually.</strong></span></h4>\r\nAs well as our many workshops and events, you can work with us on an individual basis.\r\nMany clients prefer private sessions to help with a large range of issues including Anxiety Problems, Stress Management, Depression Issues, Behaviour Changes, Releasing Habits, Self-Confidence &amp; Self-Esteem.\r\n\r\nTo see if our private sessions are suitable for you, we offer a free phone consultation to discuss your issues and create a strategy that suits you best. We can look at which therapies will be best for you and the best way forward.\r\n<strong>Simply call 07568 455 809 today to get started or <span style=\"color: #ff6600;\"><a style=\"color: #ff6600;\" href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a></span> to book your free session.</strong>\r\n<h4><span style=\"color: #008000;\"><strong>What did the NHS Dr say about Newcastle </strong>Hypnotherapy<strong>?</strong></span></h4>\r\nhttps://www.youtube.com/watch?v=cudUGD_t74I\r\n\r\n<strong>Simply call 07568 455 809 today to get started or <a href=\"https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/\">Click Here</a> to book your free session.</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','EVENTS & WORKSHOPS','','inherit','closed','closed','','322-revision-v1','','','2019-09-13 14:53:32','2019-09-13 14:53:32','',322,'https://www.newcastle-hypnotherapy.com/322-revision-v1/',0,'revision','',0),(3202,0,'2019-09-13 16:45:56','2019-09-13 16:45:56','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7bc7f46cd0f5.95587666-X5s1YsykRjp4RNsz4uwvDPWOaHPCrecB','','','2019-09-13 16:46:44','2019-09-13 16:46:44','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3202',0,'scheduled-action','',3),(3203,0,'2019-09-13 17:46:44','2019-09-13 17:46:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7bd60487e847.54082466-YkXXcsmVHENohO0uVTgf65mCui1cQ0fy','','','2019-09-13 17:46:44','2019-09-13 17:46:44','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3203',0,'scheduled-action','',3),(3204,0,'2019-09-13 18:46:44','2019-09-13 18:46:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7be49788cce1.26195708-my8NQy2udkHflFraMWhmibOeIhLgnm3c','','','2019-09-13 18:48:55','2019-09-13 18:48:55','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3204',0,'scheduled-action','',3),(3205,0,'2019-09-13 19:48:55','2019-09-13 19:48:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7bf689461c87.92773402-AFkpSvbkx73E2FQfmhJO7mKs0qsvBIkN','','','2019-09-13 20:05:29','2019-09-13 20:05:29','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3205',0,'scheduled-action','',3),(3206,0,'2019-09-13 21:05:29','2019-09-13 21:05:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7c0526794fd9.23748529-bv52CG9WCA3RCnmufrIBH6Q8v8LVlxhk','','','2019-09-13 21:07:50','2019-09-13 21:07:50','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3206',0,'scheduled-action','',3),(3207,0,'2019-09-13 22:07:50','2019-09-13 22:07:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7c1bbf397c22.66368786-QCPSME163pt7HriKLFro4J71AQtkazk1','','','2019-09-13 22:44:15','2019-09-13 22:44:15','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3207',0,'scheduled-action','',3),(3208,1,'2019-09-13 21:15:06','2019-09-13 21:15:06','','Order &ndash; September 13, 2019 @ 09:15 PM','','wc-processing','open','closed','wc_order_sc4p5mswXVquO','order-sep-13-2019-0915-pm','','','2019-09-13 21:16:00','2019-09-13 21:16:00','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=3208',0,'shop_order','',3),(3209,0,'2019-09-13 21:15:11','2019-09-13 21:15:11','[3208]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d7c070e953fc1.14905167-FJmLOtTEG3aelN5vfyRYfpqsTUS8mbkA','','','2019-09-13 21:15:58','2019-09-13 21:15:58','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3209',30,'scheduled-action','',3),(3210,0,'2019-09-13 21:16:05','2019-09-13 21:16:05','[3208]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d7c0781bde709.92630193-7d1W0ZsF8Tzq6UXul8MdQ0UDuIHKl7mi','','','2019-09-13 21:17:53','2019-09-13 21:17:53','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3210',30,'scheduled-action','',3),(3211,0,'2019-09-13 23:44:15','2019-09-13 23:44:15','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7c29d6f23279.63609536-sNIE9mWt8bccmG7xITn2Za2yzG2w9wg8','','','2019-09-13 23:44:22','2019-09-13 23:44:22','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3211',0,'scheduled-action','',3),(3212,0,'2019-09-14 00:44:22','2019-09-14 00:44:22','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7c3cbece8f05.01314682-T3JaeAARcGKCoe1YFpNUfHHVYZWMx9tX','','','2019-09-14 01:05:02','2019-09-14 01:05:02','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3212',0,'scheduled-action','',3),(3213,0,'2019-09-14 02:05:02','2019-09-14 02:05:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7c4db07b2b26.62295618-vTF2oCPFphrRdtK8AKyRJwXG0QrqRgQQ','','','2019-09-14 02:17:20','2019-09-14 02:17:20','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3213',0,'scheduled-action','',3),(3214,0,'2019-09-14 03:17:20','2019-09-14 03:17:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7c5f49bbfb89.79438607-JLOuszh93M6RZ881NJuhzxdsaj8VoulR','','','2019-09-14 03:32:25','2019-09-14 03:32:25','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3214',0,'scheduled-action','',3),(3215,0,'2019-09-14 04:32:25','2019-09-14 04:32:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7c7338add334.40738807-aOWEPp8Y4fz7slVPDu4Czjs1fuDlR9ro','','','2019-09-14 04:57:28','2019-09-14 04:57:28','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3215',0,'scheduled-action','',3),(3216,0,'2019-09-14 05:57:28','2019-09-14 05:57:28','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7c8494a5b0c6.28662871-DTcY1AScnVdRpN3p8hMeMSxkmdHQDoo6','','','2019-09-14 06:11:32','2019-09-14 06:11:32','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3216',0,'scheduled-action','',3),(3217,0,'2019-09-14 07:11:32','2019-09-14 07:11:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7c9522b5c7b7.86605800-T8uXzbRGapK7rF4v7wDje0Ttoc5lNKMz','','','2019-09-14 07:22:10','2019-09-14 07:22:10','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3217',0,'scheduled-action','',3),(3218,0,'2019-09-14 08:22:10','2019-09-14 08:22:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7ca3e28980d7.19753213-7vdyibAZ5LfonVsM0AyCiyFXX1AFvNAF','','','2019-09-14 08:25:06','2019-09-14 08:25:06','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3218',0,'scheduled-action','',3),(3219,0,'2019-09-14 09:25:06','2019-09-14 09:25:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7cb3f2255bd3.55019729-GtFms4OjIyOInVCEvr5tiSL07ACOG6lK','','','2019-09-14 09:33:38','2019-09-14 09:33:38','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3219',0,'scheduled-action','',3),(3220,0,'2019-09-14 10:33:38','2019-09-14 10:33:38','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7cc7c5f1d488.77662982-avcOsy4QEgyTtzgmV0aYD0DYo1ADCVSn','','','2019-09-14 10:58:13','2019-09-14 10:58:13','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3220',0,'scheduled-action','',3),(3221,0,'2019-09-14 11:58:13','2019-09-14 11:58:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7cd5f19b13d3.80246964-mZ9QkcQOITQzMmklHuZuL7aCbgRLVhHn','','','2019-09-14 11:58:41','2019-09-14 11:58:41','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3221',0,'scheduled-action','',3),(3222,0,'2019-09-14 12:58:41','2019-09-14 12:58:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7ce7a8661807.42688662-vduZaLt21Tcs1turRx8cu7Y7nwFCTMbf','','','2019-09-14 13:14:16','2019-09-14 13:14:16','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3222',0,'scheduled-action','',3),(3223,0,'2019-09-14 14:14:16','2019-09-14 14:14:16','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7cf5f1d79798.31209625-lFf9S9eINWiaVWIdbpPfNKXY4l9UT2CX','','','2019-09-14 14:15:13','2019-09-14 14:15:13','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3223',0,'scheduled-action','',3),(3224,1,'2019-09-14 13:30:09','2019-09-14 13:30:09','','Order &ndash; September 14, 2019 @ 01:30 PM','','wc-on-hold','open','closed','wc_order_UY85lLIRshPRN','order-sep-14-2019-0130-pm','','','2019-09-14 13:30:09','2019-09-14 13:30:09','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=3224',0,'shop_order','',1),(3225,0,'2019-09-14 13:30:14','2019-09-14 13:30:14','[3224]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d7ceb81eecc16.48484576-pHJY6gkS2oTRHUJgjgzbUgE2LM1rfaMQ','','','2019-09-14 13:30:41','2019-09-14 13:30:41','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3225',30,'scheduled-action','',3),(3226,1,'2019-09-14 13:31:48','2019-09-14 13:31:48','','Order &ndash; September 14, 2019 @ 01:31 PM','','wc-processing','open','closed','wc_order_ke0JqfjFxi2Go','order-sep-14-2019-0131-pm','','','2019-09-14 13:33:01','2019-09-14 13:33:01','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=3226',0,'shop_order','',2),(3227,0,'2019-09-14 13:31:53','2019-09-14 13:31:53','[3226]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d7cec0a099fc6.06565330-rXXMsxESsoM2camsgsUDYspUeh6Ks0yW','','','2019-09-14 13:32:58','2019-09-14 13:32:58','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3227',30,'scheduled-action','',3),(3228,0,'2019-09-14 13:33:06','2019-09-14 13:33:06','[3226]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d7cec3c4bf476.80361747-vCAbnIfSIpBRBIJnTAKf3V7qCNP7uwzm','','','2019-09-14 13:33:48','2019-09-14 13:33:48','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3228',30,'scheduled-action','',3),(3229,0,'2019-09-14 15:15:13','2019-09-14 15:15:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7d0438b83d06.17900648-YLpdByXgiYnkwQexVSygwpB80d86K5YS','','','2019-09-14 15:16:08','2019-09-14 15:16:08','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3229',0,'scheduled-action','',3),(3230,0,'2019-09-14 16:16:08','2019-09-14 16:16:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7d1506e51801.32256993-taNQBneOLQqVhS4ha7aHhpJBuJ788tHv','','','2019-09-14 16:27:50','2019-09-14 16:27:50','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3230',0,'scheduled-action','',3),(3231,0,'2019-09-14 17:27:50','2019-09-14 17:27:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7d23b441ee54.25875083-S7AF1SsdFHG5gQnLZzy5npue2Ktl1s7G','','','2019-09-14 17:30:28','2019-09-14 17:30:28','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3231',0,'scheduled-action','',3),(3232,0,'2019-09-14 18:30:28','2019-09-14 18:30:28','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7d330dc82fe6.28763081-gyktT5hwBG2AqMjgRrOUzG2XXY4X1Vf5','','','2019-09-14 18:35:57','2019-09-14 18:35:57','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3232',0,'scheduled-action','',3),(3233,0,'2019-09-14 19:35:57','2019-09-14 19:35:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7d41ae040760.85645525-wvFIjZ3z2mjJi5ASv8DWbiiAVOE3fQOl','','','2019-09-14 19:38:22','2019-09-14 19:38:22','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3233',0,'scheduled-action','',3),(3234,0,'2019-09-14 20:38:22','2019-09-14 20:38:22','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7d50b440aa93.59920771-dMcEcNxoLxH0PQXGgFiytDNSXM5l1gEX','','','2019-09-14 20:42:28','2019-09-14 20:42:28','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3234',0,'scheduled-action','',3),(3235,0,'2019-09-14 21:42:28','2019-09-14 21:42:28','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7d5f713c2ce2.93850087-GsIztIrSBvfhVSyQ3yyEY00CBXgiH5wE','','','2019-09-14 21:45:21','2019-09-14 21:45:21','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3235',0,'scheduled-action','',3),(3236,0,'2019-09-14 22:45:21','2019-09-14 22:45:21','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7d6e50687a22.09441265-MHvSL3Ij5PKlh7nEaYnqczPr7TfapoPA','','','2019-09-14 22:48:48','2019-09-14 22:48:48','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3236',0,'scheduled-action','',3),(3237,0,'2019-09-14 23:48:48','2019-09-14 23:48:48','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7d7d4c066817.38165061-RffwsPYTdv8O5IExY5uw2jzbnCsoBXkD','','','2019-09-14 23:52:44','2019-09-14 23:52:44','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3237',0,'scheduled-action','',3),(3238,0,'2019-09-15 00:52:44','2019-09-15 00:52:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7d8b72814338.88437449-S3riEhBtzOEYBSUTVTVO59NpotyLkUJA','','','2019-09-15 00:53:06','2019-09-15 00:53:06','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3238',0,'scheduled-action','',3),(3239,0,'2019-09-15 01:53:06','2019-09-15 01:53:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7d99a69e2c61.14627364-n7g07ihjNVRSHdodKXuazuMefjCGTrmR','','','2019-09-15 01:53:42','2019-09-15 01:53:42','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3239',0,'scheduled-action','',3),(3240,0,'2019-09-15 02:53:42','2019-09-15 02:53:42','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7da8d57043a7.44562620-vRHuHXqT0Ztrw1OD13uCJXJepFwJMJeY','','','2019-09-15 02:58:29','2019-09-15 02:58:29','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3240',0,'scheduled-action','',3),(3241,0,'2019-09-15 03:58:29','2019-09-15 03:58:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7dbf23513004.60939651-7vZ444noXvQeJQCakusERrTwRMpsmZHN','','','2019-09-15 04:33:39','2019-09-15 04:33:39','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3241',0,'scheduled-action','',3),(3242,0,'2019-09-15 05:33:39','2019-09-15 05:33:39','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7dd0bcb648b0.52645819-lBRWWgHxG7XM2pGLnkBtGvdP0mi2GMBc','','','2019-09-15 05:48:44','2019-09-15 05:48:44','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3242',0,'scheduled-action','',3),(3243,0,'2019-09-15 06:48:44','2019-09-15 06:48:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7de19531ef23.55928368-te1WfMMOapdd6rEHs4elusUcc0nwjgpJ','','','2019-09-15 07:00:37','2019-09-15 07:00:37','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3243',0,'scheduled-action','',3),(3244,0,'2019-09-15 08:00:37','2019-09-15 08:00:37','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7deff64d9296.99194250-T6dMUxn7NNTJflEG1nu6kkYLPt5z91Uq','','','2019-09-15 08:01:58','2019-09-15 08:01:58','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3244',0,'scheduled-action','',3),(3245,0,'2019-09-15 09:01:58','2019-09-15 09:01:58','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7e00610c97e5.22263692-XfjCgETTErzgj9T76Gz4mMi57oYreYnz','','','2019-09-15 09:12:01','2019-09-15 09:12:01','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3245',0,'scheduled-action','',3),(3246,0,'2019-09-15 10:12:01','2019-09-15 10:12:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7e0f29b1bd41.76935239-QqpAbU9QlRk5pqPQfGG5bUULTsjHdfM7','','','2019-09-15 10:15:05','2019-09-15 10:15:05','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3246',0,'scheduled-action','',3),(3247,0,'2019-09-15 11:15:05','2019-09-15 11:15:05','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7e1e35a2ad34.09789823-BELw7YPWUkiqt8Y6WM61ff2Vtn7aWHK1','','','2019-09-15 11:19:17','2019-09-15 11:19:17','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3247',0,'scheduled-action','',3),(3248,0,'2019-09-15 12:19:17','2019-09-15 12:19:17','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7e2c92221109.00946431-YZyhFyOUbgnXziJo0iqQLcVgpyhwKIWv','','','2019-09-15 12:20:34','2019-09-15 12:20:34','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3248',0,'scheduled-action','',3),(3249,0,'2019-09-15 13:20:34','2019-09-15 13:20:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7e3bff814432.34042220-qMGjbGIAlHbrajFzTEya0eqByrzGNe2N','','','2019-09-15 13:26:23','2019-09-15 13:26:23','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3249',0,'scheduled-action','',3),(3250,0,'2019-09-15 14:26:23','2019-09-15 14:26:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7e4b2f71def8.20032504-TubAqBLPdAHNGbtoLzQWGTNbFkxxAI0h','','','2019-09-15 14:31:11','2019-09-15 14:31:11','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3250',0,'scheduled-action','',3),(3251,0,'2019-09-15 15:31:11','2019-09-15 15:31:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7e5d5892de08.15606631-LiZVSbiJll5uTyyy7Voqef1ERX0UlOPF','','','2019-09-15 15:48:40','2019-09-15 15:48:40','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3251',0,'scheduled-action','',3),(3253,0,'2019-09-15 17:55:45','2019-09-15 17:55:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7e7b376cdc35.42937297-kLzCFcGVAQE9i0PzmI8jwzPiVgvPnAIl','','','2019-09-15 17:56:07','2019-09-15 17:56:07','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3253',0,'scheduled-action','',3),(3254,0,'2019-09-15 18:56:07','2019-09-15 18:56:07','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7e8a17804363.42397178-pN7j65MctD6c8Do9JontoU2jLbDilUEk','','','2019-09-15 18:59:35','2019-09-15 18:59:35','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3254',0,'scheduled-action','',3),(3255,0,'2019-09-15 19:59:35','2019-09-15 19:59:35','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7e99023f34b4.33930435-PL2gqA8RKcCg7z3ViRmpzQdoC2v10DYn','','','2019-09-15 20:03:14','2019-09-15 20:03:14','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3255',0,'scheduled-action','',3),(3256,0,'2019-09-15 21:03:14','2019-09-15 21:03:14','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7ea78eb58d40.02404327-CquNAIq87qbJKu485P0AcX2nvpn7f0td','','','2019-09-15 21:05:18','2019-09-15 21:05:18','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3256',0,'scheduled-action','',3),(3257,0,'2019-09-15 22:05:18','2019-09-15 22:05:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7eb6a5aa4704.26419317-FuHVVcS8oi3ZzmwVVexPq2yUiSIX65nV','','','2019-09-15 22:09:41','2019-09-15 22:09:41','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3257',0,'scheduled-action','',3),(3258,0,'2019-09-15 23:09:41','2019-09-15 23:09:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7ec7f73b0606.88565944-FTPGeciSqXddbzUjqUmpB8jjEQ62m5x9','','','2019-09-15 23:23:35','2019-09-15 23:23:35','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3258',0,'scheduled-action','',3),(3259,0,'2019-09-16 00:23:35','2019-09-16 00:23:35','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7ed7491ca2c3.59535685-t6WPRJG43amqFyLnZWVdXXfdmtQzbLty','','','2019-09-16 00:28:57','2019-09-16 00:28:57','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3259',0,'scheduled-action','',3),(3260,0,'2019-09-16 01:28:57','2019-09-16 01:28:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7ee5836bfee7.56917123-kkenHsTVtWQ172MtOKLDcW6edFf0qutB','','','2019-09-16 01:29:39','2019-09-16 01:29:39','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3260',0,'scheduled-action','',3),(3261,0,'2019-09-16 02:29:39','2019-09-16 02:29:39','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7ef7f39756f9.93416070-sVm0QUbSBw09iL22XnrTLDyuURgIFw1I','','','2019-09-16 02:48:19','2019-09-16 02:48:19','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3261',0,'scheduled-action','',3),(3262,0,'2019-09-16 03:48:19','2019-09-16 03:48:19','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7f07fa7f8f78.21361742-4hi63xdJ6t3o72OIgzd7br2UCVs8Z1DM','','','2019-09-16 03:56:42','2019-09-16 03:56:42','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3262',0,'scheduled-action','',3),(3263,0,'2019-09-16 04:56:42','2019-09-16 04:56:42','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7f16cf486e65.14189905-Ic97PN1ezHr1KexvaEEu4JNCo1LK2uLE','','','2019-09-16 04:59:59','2019-09-16 04:59:59','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3263',0,'scheduled-action','',3),(3264,0,'2019-09-16 05:59:59','2019-09-16 05:59:59','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7f258e29cc29.34694277-mWiVYxabDCIegYye7Z6FN7Lnq5dZfSOU','','','2019-09-16 06:02:54','2019-09-16 06:02:54','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3264',0,'scheduled-action','',3),(3265,0,'2019-09-16 07:02:54','2019-09-16 07:02:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7f3d9237daa0.09987085-jrBH4kKfRxl6rLcScSyd57LTjzCSMccr','','','2019-09-16 07:45:22','2019-09-16 07:45:22','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3265',0,'scheduled-action','',3),(3266,0,'2019-09-16 08:45:22','2019-09-16 08:45:22','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7f4e3ac6dd36.29642288-fvGukaavsSL3R1BlQyS4AaP8WtAWoNBg','','','2019-09-16 08:56:26','2019-09-16 08:56:26','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3266',0,'scheduled-action','',3),(3267,0,'2019-09-16 09:56:26','2019-09-16 09:56:26','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7f5d52cddb48.58019142-W79P67UvvMRwVOlk3tTCmXwQKfrHScAE','','','2019-09-16 10:00:50','2019-09-16 10:00:50','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3267',0,'scheduled-action','',3),(3268,0,'2019-09-16 11:00:50','2019-09-16 11:00:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7f6e1532dc19.46011825-jgDhPjp6ElnweL1Reuvokk5F09toQBa0','','','2019-09-16 11:12:21','2019-09-16 11:12:21','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3268',0,'scheduled-action','',3),(3269,0,'2019-09-16 12:12:21','2019-09-16 12:12:21','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7f7d68406d10.66189306-qGc3hArPNqO7RaefUUuLbEX8ALeWZC6y','','','2019-09-16 12:17:44','2019-09-16 12:17:44','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3269',0,'scheduled-action','',3),(3270,0,'2019-09-16 13:17:44','2019-09-16 13:17:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7f8bc90c8fb3.45938201-ItKobZXwl7WxavRRUInqnEAlQVn1ej3s','','','2019-09-16 13:19:05','2019-09-16 13:19:05','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3270',0,'scheduled-action','',3),(3271,0,'2019-09-16 14:19:05','2019-09-16 14:19:05','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7f9a3b9ed6d5.46878794-HAbhDSMtrEs03bEvy9oDq56pnvD99vKj','','','2019-09-16 14:20:43','2019-09-16 14:20:43','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3271',0,'scheduled-action','',3),(3272,0,'2019-09-16 15:20:43','2019-09-16 15:20:43','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7fa86653a0c8.62570992-WHbMYrMjK3ucy87tuwFMNAAFCEptAsFQ','','','2019-09-16 15:21:10','2019-09-16 15:21:10','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3272',0,'scheduled-action','',3),(3273,0,'2019-09-16 16:21:10','2019-09-16 16:21:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7fb761c443a3.89932192-z4jNkkPeJv5DDDtLvxXb4O1tHuPz3qQf','','','2019-09-16 16:25:05','2019-09-16 16:25:05','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3273',0,'scheduled-action','',3),(3274,0,'2019-09-16 17:25:05','2019-09-16 17:25:05','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7fc5d29f6626.10431902-7xxtz2XpZ8S2aZcqNdi83UQyj8gcWeT8','','','2019-09-16 17:26:42','2019-09-16 17:26:42','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3274',0,'scheduled-action','',3),(3275,0,'2019-09-16 18:26:42','2019-09-16 18:26:42','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7fd57a148f90.04143584-YSFu5RAwD2U1xlx9lD9ojtkH6XZRiGeq','','','2019-09-16 18:33:30','2019-09-16 18:33:30','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3275',0,'scheduled-action','',3),(3276,0,'2019-09-16 19:33:30','2019-09-16 19:33:30','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7fe56a71b115.09320856-yam9uyZOzY4bhSmOajXoXFNoyOVvZbeE','','','2019-09-16 19:41:30','2019-09-16 19:41:30','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3276',0,'scheduled-action','',3),(3277,0,'2019-09-16 20:41:30','2019-09-16 20:41:30','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d7ff388391bd7.58919602-6DvQ6WkZq3qvkmsx6nS29qZVLR7kIsLz','','','2019-09-16 20:41:44','2019-09-16 20:41:44','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3277',0,'scheduled-action','',3),(3278,0,'2019-09-16 21:41:44','2019-09-16 21:41:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d8001cc659dc7.47656566-4JYZfP3bYzPTYzmrUIhNHm7g5DksWtpq','','','2019-09-16 21:42:36','2019-09-16 21:42:36','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3278',0,'scheduled-action','',3),(3279,0,'2019-09-16 22:42:36','2019-09-16 22:42:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d8010801c2a44.05556907-z6T6RJhpPSwoM4y9zGri3n1GFOtcK6MV','','','2019-09-16 22:45:20','2019-09-16 22:45:20','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3279',0,'scheduled-action','',3),(3280,0,'2019-09-16 23:45:20','2019-09-16 23:45:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d801eb96d2f82.19252799-UrYe6vLyVyBoCKks1fit4W8cmK7GYYyu','','','2019-09-16 23:46:01','2019-09-16 23:46:01','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3280',0,'scheduled-action','',3),(3281,0,'2019-09-17 00:46:01','2019-09-17 00:46:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d8032343bff08.10036462-sJ0JvAhiJKQgC3A3u7PuMCyyIa4PMgtF','','','2019-09-17 01:09:08','2019-09-17 01:09:08','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3281',0,'scheduled-action','',3),(3282,0,'2019-09-17 02:09:08','2019-09-17 02:09:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d8042f5597e55.01907326-fJiA1pLpj5TiX91VyI7Uoh4LcJPTx0iG','','','2019-09-17 02:20:37','2019-09-17 02:20:37','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3282',0,'scheduled-action','',3),(3283,0,'2019-09-17 03:20:37','2019-09-17 03:20:37','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d8051e7199035.67955608-wnPD6QkYxMMDbuFN5f1Uh3EPYTh7OjFv','','','2019-09-17 03:24:23','2019-09-17 03:24:23','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3283',0,'scheduled-action','',3),(3284,0,'2019-09-17 04:24:23','2019-09-17 04:24:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d806036973841.14394016-jixBPBrTUExqFTFSQeO5SXso2uDlfWNe','','','2019-09-17 04:25:26','2019-09-17 04:25:26','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3284',0,'scheduled-action','',3),(3285,0,'2019-09-17 05:25:26','2019-09-17 05:25:26','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d806ef2c16148.39393033-oE18WG4tyUdrqhxV2UKVhVz7IulZdPXD','','','2019-09-17 05:28:18','2019-09-17 05:28:18','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3285',0,'scheduled-action','',3),(3286,0,'2019-09-17 06:28:18','2019-09-17 06:28:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d807dcff268f8.68719367-89coUO752niSJZWfsmO06HxPNsnv1Wll','','','2019-09-17 06:31:43','2019-09-17 06:31:43','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3286',0,'scheduled-action','',3),(3287,0,'2019-09-17 07:31:44','2019-09-17 07:31:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d808c643cce40.93665128-MIc9MDJ0NYD124DpRxo68TtUUmqYMPui','','','2019-09-17 07:33:56','2019-09-17 07:33:56','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3287',0,'scheduled-action','',3),(3288,0,'2019-09-17 08:33:56','2019-09-17 08:33:56','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d809ab2416bc0.20870810-ncw9Bizg2UYKguV8mn3DcRSfp1I2gdzm','','','2019-09-17 08:34:58','2019-09-17 08:34:58','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3288',0,'scheduled-action','',3),(3289,1,'2019-09-17 08:26:17','2019-09-17 08:26:17','','Order &ndash; September 17, 2019 @ 08:26 AM','','wc-cancelled','open','closed','wc_order_AVcG6xp675p0r','order-sep-17-2019-0826-am','','','2019-09-17 08:28:16','2019-09-17 08:28:16','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=3289',0,'shop_order','',1),(3290,0,'2019-09-17 08:26:22','2019-09-17 08:26:22','[3289]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d80991ff3fe04.46397681-NZVvkILX3Ocr9U3nYwVgirM2o9D1Quy4','','','2019-09-17 08:28:15','2019-09-17 08:28:15','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3290',30,'scheduled-action','',3),(3291,0,'2019-09-17 08:28:21','2019-09-17 08:28:21','[3289]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d809ab23e13e7.05045137-xdj0ivRa5FKUboxh6BICQTXyBmAXfjmy','','','2019-09-17 08:34:58','2019-09-17 08:34:58','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3291',30,'scheduled-action','',3),(3292,0,'2019-09-17 09:34:58','2019-09-17 09:34:58','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d80aa34a51fe0.21787755-oZpbzId4jwEhOThC6K84tZnZG4sPoTf9','','','2019-09-17 09:41:08','2019-09-17 09:41:08','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3292',0,'scheduled-action','',3),(3293,0,'2019-09-17 10:41:08','2019-09-17 10:41:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d80b8ba242949.16849955-wLkzYpBkR45s9yn9V2UvkycSm9HKjygq','','','2019-09-17 10:43:06','2019-09-17 10:43:06','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3293',0,'scheduled-action','',3),(3294,0,'2019-09-17 11:43:06','2019-09-17 11:43:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d80c76b368b54.08349082-xzi30DGeGrNvwCj69Y7tIzjomaWQW105','','','2019-09-17 11:45:47','2019-09-17 11:45:47','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3294',0,'scheduled-action','',3),(3295,0,'2019-09-17 12:45:47','2019-09-17 12:45:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d80d7870c43d5.10722831-YwbxPADBxjjJzSluZXy9yhIR2wk6neig','','','2019-09-17 12:54:31','2019-09-17 12:54:31','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3295',0,'scheduled-action','',3),(3296,0,'2019-09-17 13:54:31','2019-09-17 13:54:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d80e62cb5fc43.76343316-E26L5SBd4ysktxR0kes0UmQAEHnT6gNa','','','2019-09-17 13:57:00','2019-09-17 13:57:00','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3296',0,'scheduled-action','',3),(3297,0,'2019-09-17 14:57:00','2019-09-17 14:57:00','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d80f57a826e38.07905257-VEqkSzoLHcVV5COq803UHUKTkrFAm9AS','','','2019-09-17 15:02:18','2019-09-17 15:02:18','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3297',0,'scheduled-action','',3),(3298,0,'2019-09-17 16:02:18','2019-09-17 16:02:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d8103c6275a75.23521803-4mVpsi3hQpc7UBRaedrRYI8LfEh339bG','','','2019-09-17 16:03:18','2019-09-17 16:03:18','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3298',0,'scheduled-action','',3),(3299,0,'2019-09-17 17:03:18','2019-09-17 17:03:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d8112bee4c6c5.58977882-ioBuj5yA8LFDE7gf5qBEiolyWtYaXfAN','','','2019-09-17 17:07:10','2019-09-17 17:07:10','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3299',0,'scheduled-action','',3),(3300,0,'2019-09-17 18:07:10','2019-09-17 18:07:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d81210d4ee377.43049119-q9GHyS3SUgSPLeqAlJYcSBCiYvrk5e4x','','','2019-09-17 18:08:13','2019-09-17 18:08:13','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3300',0,'scheduled-action','',3),(3301,0,'2019-09-17 19:08:13','2019-09-17 19:08:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d812fb5314e74.86808612-21j5moq0yZk9vEdOQpwl4mVmtlby25FA','','','2019-09-17 19:10:45','2019-09-17 19:10:45','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3301',0,'scheduled-action','',3),(3302,0,'2019-09-17 20:10:45','2019-09-17 20:10:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d814236689c27.26969579-k92CUl9j1JtnYsy01BHmRI6URenTNOsG','','','2019-09-17 20:29:42','2019-09-17 20:29:42','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3302',0,'scheduled-action','',3),(3303,0,'2019-09-17 21:29:42','2019-09-17 21:29:42','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d81504dd21b56.13386575-1kmd4TxvIjalVGACWMU0yUd9CaBxIhMi','','','2019-09-17 21:29:49','2019-09-17 21:29:49','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3303',0,'scheduled-action','',3),(3304,0,'2019-09-17 22:29:49','2019-09-17 22:29:49','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d816423da19c6.38327304-nFHiXpqMa6KW9Tgc9fJMtu8ecpO1KYP0','','','2019-09-17 22:54:27','2019-09-17 22:54:27','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3304',0,'scheduled-action','',3),(3305,0,'2019-09-17 23:54:27','2019-09-17 23:54:27','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d81724fdeefb6.82558146-Lopx3PB0Vr3hm7e7P1VOENtyyMnReuWI','','','2019-09-17 23:54:55','2019-09-17 23:54:55','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3305',0,'scheduled-action','',3),(3306,0,'2019-09-18 00:54:55','2019-09-18 00:54:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d81841f364fa1.33658477-4IdIUqCYR4FLavOEZysYMfCZbqZejKOO','','','2019-09-18 01:10:55','2019-09-18 01:10:55','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3306',0,'scheduled-action','',3),(3307,0,'2019-09-18 02:10:55','2019-09-18 02:10:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d81922f2595a0.34946987-9AcblWnZ545AX488AHuyqCS1baAqoc8d','','','2019-09-18 02:10:55','2019-09-18 02:10:55','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3307',0,'scheduled-action','',3),(3308,0,'2019-09-18 03:10:55','2019-09-18 03:10:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d81a1d5e41843.35303278-hBi2DniNYJ8Te3Ppl5xHc295PKoCEwxH','','','2019-09-18 03:17:41','2019-09-18 03:17:41','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3308',0,'scheduled-action','',3),(3309,0,'2019-09-18 04:17:41','2019-09-18 04:17:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d81b0df9bb5c8.39917569-h7bsafilmnEcBLq8I7KRoy1FsyGXXCN9','','','2019-09-18 04:21:51','2019-09-18 04:21:51','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3309',0,'scheduled-action','',3),(3310,0,'2019-09-18 05:21:51','2019-09-18 05:21:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d81c011a2d076.90381183-hwfPxRvLnaZoDEW4sMTu3B1yvFQrtHaV','','','2019-09-18 05:26:41','2019-09-18 05:26:41','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3310',0,'scheduled-action','',3),(3311,0,'2019-09-18 06:26:41','2019-09-18 06:26:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d81ceb851b405.09557614-IP4u5yzlhdU6sMRDns0uEhbcHJAB1wtD','','','2019-09-18 06:29:12','2019-09-18 06:29:12','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3311',0,'scheduled-action','',3),(3312,0,'2019-09-18 07:29:12','2019-09-18 07:29:12','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d81dcec1e5c41.01936255-Rr76ljtxfJr40KwOrItlkEMn2XrNrZ8V','','','2019-09-18 07:29:48','2019-09-18 07:29:48','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3312',0,'scheduled-action','',3),(3313,1,'2019-09-18 06:34:58','2019-09-18 06:34:58','','Order &ndash; September 18, 2019 @ 06:34 AM','','wc-processing','open','closed','wc_order_eOQtiyKcw39tb','order-sep-18-2019-0634-am','','','2019-09-18 06:38:08','2019-09-18 06:38:08','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=3313',0,'shop_order','',2),(3314,0,'2019-09-18 06:35:03','2019-09-18 06:35:03','[3313]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d81d0ba8a12f7.17185854-p8SETV8qEmi5M0lqTd2KRUkZvTJYyuFG','','','2019-09-18 06:37:46','2019-09-18 06:37:46','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3314',30,'scheduled-action','',3),(3315,0,'2019-09-18 06:38:13','2019-09-18 06:38:13','[3313]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d81d2189e8776.83134236-inuqb3TPnzoOcIZKBnAvsrlyZ4LRfpcL','','','2019-09-18 06:43:36','2019-09-18 06:43:36','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3315',30,'scheduled-action','',3),(3316,0,'2019-09-18 08:29:48','2019-09-18 08:29:48','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d81ed975b1ce2.53075282-LptdgDdm4asXMGma52kMT88MBS50sq28','','','2019-09-18 08:40:55','2019-09-18 08:40:55','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3316',0,'scheduled-action','',3),(3317,1,'2019-09-18 07:50:56','2019-09-18 07:50:56','','Order &ndash; September 18, 2019 @ 07:50 AM','','wc-on-hold','open','closed','wc_order_nPcVYo8cA6EEg','order-sep-18-2019-0750-am','','','2019-09-18 07:50:56','2019-09-18 07:50:56','',0,'https://www.newcastle-hypnotherapy.com/?post_type=shop_order&#038;p=3317',0,'shop_order','',1),(3318,0,'2019-09-18 07:51:01','2019-09-18 07:51:01','[3317]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d81e38edd8650.97079011-GrC5ELVm49KlrFIuazMqO3gQUkuAJlJl','','','2019-09-18 07:58:06','2019-09-18 07:58:06','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3318',30,'scheduled-action','',3),(3319,0,'2019-09-18 09:40:55','2019-09-18 09:40:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d81fc6a026cd0.53315555-WjBOVxNJOUYPi6iXCnbGbG1kD4g1GDh1','','','2019-09-18 09:44:10','2019-09-18 09:44:10','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3319',0,'scheduled-action','',3),(3320,0,'2019-09-18 10:44:10','2019-09-18 10:44:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d820ae16cd831.63515510-aELqya655SzCzViQTAmCgFH9rnqCgYfc','','','2019-09-18 10:45:53','2019-09-18 10:45:53','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3320',0,'scheduled-action','',3),(3321,0,'2019-09-18 11:45:53','2019-09-18 11:45:53','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d821db7cdae62.97976155-zoXHPmt6XKrLSQhAZhjAUOnl1w31Btfd','','','2019-09-18 12:06:15','2019-09-18 12:06:15','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3321',0,'scheduled-action','',3),(3322,0,'2019-09-18 13:06:15','2019-09-18 13:06:15','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d822c8299b237.24791228-nTjNQS12Ml9dnLY8ZNtNFfVjUSQSAlES','','','2019-09-18 13:09:22','2019-09-18 13:09:22','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3322',0,'scheduled-action','',3),(3323,0,'2019-09-18 14:09:22','2019-09-18 14:09:22','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d823cd6d4c713.38659184-MGPyG1R8ynzlocOsgZ79DBuw8LYMd3m7','','','2019-09-18 14:19:02','2019-09-18 14:19:02','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3323',0,'scheduled-action','',3),(3324,0,'2019-09-18 15:19:02','2019-09-18 15:19:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d824d11767733.84613996-6vt9GY5v7tJ9fd0vy3R85ZdIx1g0MNoS','','','2019-09-18 15:28:17','2019-09-18 15:28:17','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3324',0,'scheduled-action','',3),(3325,0,'2019-09-18 16:28:17','2019-09-18 16:28:17','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d825cc2547a65.72858005-P9to9dOYmViIg1VUHafC1jqhLf5hsLKN','','','2019-09-18 16:35:14','2019-09-18 16:35:14','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3325',0,'scheduled-action','',3),(3326,0,'2019-09-18 17:35:14','2019-09-18 17:35:14','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d826af5d20c39.17019382-utKjzqSQiSa422ZDMIdxe8s8KLcHFnJZ','','','2019-09-18 17:35:49','2019-09-18 17:35:49','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3326',0,'scheduled-action','',3),(3327,0,'2019-09-18 18:35:49','2019-09-18 18:35:49','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d827a0e8b4c70.95626484-wWABcISG9zKUa5rCtJUH0OYNmheIn8zv','','','2019-09-18 18:40:14','2019-09-18 18:40:14','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3327',0,'scheduled-action','',3),(3328,0,'2019-09-18 19:40:14','2019-09-18 19:40:14','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d828b4bc1e5e8.06043611-Fy2M0M261nuOnHnAuLZkp7T4AIPjXNwC','','','2019-09-18 19:53:47','2019-09-18 19:53:47','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3328',0,'scheduled-action','',3),(3329,0,'2019-09-18 20:53:47','2019-09-18 20:53:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d82999188f2b4.87706781-33o5GEXv3RahJ16jz5MLxe76dnKonOAX','','','2019-09-18 20:54:41','2019-09-18 20:54:41','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3329',0,'scheduled-action','',3),(3330,0,'2019-09-18 21:54:41','2019-09-18 21:54:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d82a893e15962.66382504-k3ytlI3NjqVlDTCGfzn1WFFxJpXBxMcg','','','2019-09-18 21:58:43','2019-09-18 21:58:43','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3330',0,'scheduled-action','',3),(3331,0,'2019-09-18 22:58:43','2019-09-18 22:58:43','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d82b6caf184f6.67661483-A26pF2hFxZfxOn1hwgHyFvvmIIhKE87W','','','2019-09-18 22:59:22','2019-09-18 22:59:22','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3331',0,'scheduled-action','',3),(3332,0,'2019-09-18 23:59:22','2019-09-18 23:59:22','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d82cb9bba6467.78348360-13QKWqauzGQ2SlaHss7RenjwyzENdVQP','','','2019-09-19 00:28:11','2019-09-19 00:28:11','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3332',0,'scheduled-action','',3),(3333,0,'2019-09-19 01:28:11','2019-09-19 01:28:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d82dc2ec4a694.14777010-Zpxvf7QXigihn7k4xJ3kkJ6xJcUjbelG','','','2019-09-19 01:38:54','2019-09-19 01:38:54','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3333',0,'scheduled-action','',3),(3334,0,'2019-09-19 02:38:54','2019-09-19 02:38:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d82ec385a7773.77880530-JeoFhWo2fcpFivQf6uMrOmjMVMwOEPQl','','','2019-09-19 02:47:20','2019-09-19 02:47:20','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3334',0,'scheduled-action','',3),(3335,0,'2019-09-19 03:47:20','2019-09-19 03:47:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d82fe4299a802.37658879-n5RM1tYlLrX0CCGpduWHHOWx2VnqT29F','','','2019-09-19 04:04:18','2019-09-19 04:04:18','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3335',0,'scheduled-action','',3),(3336,0,'2019-09-19 05:04:18','2019-09-19 05:04:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d830c587c7ac7.43748671-irBxJvY95wbwVm0TyYJkHhSfuj7vpKRq','','','2019-09-19 05:04:24','2019-09-19 05:04:24','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3336',0,'scheduled-action','',3),(3337,0,'2019-09-19 06:04:24','2019-09-19 06:04:24','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d831f6f38c0a1.40204875-qMHLOZd7hnfsnSbeiJRWgc06fvWbu9Qh','','','2019-09-19 06:25:51','2019-09-19 06:25:51','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3337',0,'scheduled-action','',3),(3338,0,'2019-09-19 07:25:51','2019-09-19 07:25:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d8330946ea377.34878131-afrhruCM4Vot2Yl9S6P8HJoYlKNIZad0','','','2019-09-19 07:39:00','2019-09-19 07:39:00','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3338',0,'scheduled-action','',3),(3339,0,'2019-09-19 08:39:00','2019-09-19 08:39:00','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d83401a559493.73989695-YrhpCimmk7qZ3rWqx88Tp8FDSC5nDbpr','','','2019-09-19 08:45:14','2019-09-19 08:45:14','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3339',0,'scheduled-action','',3),(3340,0,'2019-09-19 09:45:14','2019-09-19 09:45:14','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d83501a3e8893.79467716-Crfv6UEHw5JSOtJq5iGCrQ8FjtPzeTlY','','','2019-09-19 09:53:30','2019-09-19 09:53:30','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3340',0,'scheduled-action','',3),(3341,0,'2019-09-19 10:53:30','2019-09-19 10:53:30','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d835ed28ef023.16949335-PBZacY1zy1U6s86OnYZ0VIeG4ZCBJmPs','','','2019-09-19 10:56:18','2019-09-19 10:56:18','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3341',0,'scheduled-action','',3),(3342,0,'2019-09-19 11:56:18','2019-09-19 11:56:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d836e61976a47.51285997-R2FR9tAJ3rfhbF84xVnAjKVAswfZ8Frv','','','2019-09-19 12:02:41','2019-09-19 12:02:41','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3342',0,'scheduled-action','',3),(3343,0,'2019-09-19 13:02:41','2019-09-19 13:02:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d837cadc60406.37097026-sgBVyj0yuHLTfCvOYbU3QAGCqhgNLBOx','','','2019-09-19 13:03:41','2019-09-19 13:03:41','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3343',0,'scheduled-action','',3),(3344,0,'2019-09-19 14:03:41','2019-09-19 14:03:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d838c0231a9b0.72939945-gWw7mafGWyWmwhMhKF7UBBcq0Z6bVEFE','','','2019-09-19 14:09:06','2019-09-19 14:09:06','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3344',0,'scheduled-action','',3),(3345,0,'2019-09-19 15:09:06','2019-09-19 15:09:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d839a6e62d2d3.97756045-PGwFGLBBHN1xO0HawWtdbigSAlQendAn','','','2019-09-19 15:10:38','2019-09-19 15:10:38','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3345',0,'scheduled-action','',3),(3346,0,'2019-09-19 16:10:38','2019-09-19 16:10:38','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d83aae9cba6f3.77710445-UblfNKrn9PZ2vvfsugL9BEBNpfhSd7Cd','','','2019-09-19 16:20:57','2019-09-19 16:20:57','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3346',0,'scheduled-action','',3),(3347,0,'2019-09-19 17:20:57','2019-09-19 17:20:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d83b9396f9019.82028294-rZYtRqx5odGLFU8OJX2LDXQVlTlnz0oa','','','2019-09-19 17:22:01','2019-09-19 17:22:01','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3347',0,'scheduled-action','',3),(3348,0,'2019-09-19 18:22:01','2019-09-19 18:22:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d83c865bbe8e3.69822464-51RCffzeKXdjLUKT93ll93xz3S06cl2m','','','2019-09-19 18:26:45','2019-09-19 18:26:45','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3348',0,'scheduled-action','',3),(3349,0,'2019-09-19 19:26:45','2019-09-19 19:26:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d83d9df074262.98726136-cTNovXipQvWI6QoLPfLSzHTYjisMRikL','','','2019-09-19 19:41:19','2019-09-19 19:41:19','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3349',0,'scheduled-action','',3),(3350,0,'2019-09-19 20:41:19','2019-09-19 20:41:19','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d83e84e8f2bc9.35511195-FYouW0lEvFupX9KMHhCZoOih76KN4bR9','','','2019-09-19 20:42:54','2019-09-19 20:42:54','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3350',0,'scheduled-action','',3),(3351,0,'2019-09-19 21:42:54','2019-09-19 21:42:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d83f65e3827e5.54536178-RtoypJHL8wnvzHHmurWhePCvaYyFt0M2','','','2019-09-19 21:42:54','2019-09-19 21:42:54','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3351',0,'scheduled-action','',3),(3352,0,'2019-09-19 22:42:54','2019-09-19 22:42:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d840a0e9afc49.42606419-1HU7vvyxauKlkepzy8EPBpuskbFdzHVy','','','2019-09-19 23:06:54','2019-09-19 23:06:54','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3352',0,'scheduled-action','',3),(3353,0,'2019-09-20 00:06:54','2019-09-20 00:06:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d841d1f4d1fb1.74229340-hHsvTlvMf4crF64pOK1CBbay8WMbpzMD','','','2019-09-20 00:28:15','2019-09-20 00:28:15','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3353',0,'scheduled-action','',3),(3354,0,'2019-09-20 01:28:15','2019-09-20 01:28:15','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d842bb049fc17.91364460-1HvzTcRlbwuhb1cx7fHR91jqawdFRxZF','','','2019-09-20 01:30:24','2019-09-20 01:30:24','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3354',0,'scheduled-action','',3),(3355,0,'2019-09-20 02:30:24','2019-09-20 02:30:24','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d843f967d1594.71707100-UifqBOFv8KW8X0u8NdFN94KHKkJ534bQ','','','2019-09-20 02:55:18','2019-09-20 02:55:18','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3355',0,'scheduled-action','',3),(3356,0,'2019-09-20 03:55:18','2019-09-20 03:55:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d845301141a04.52998740-GOAfBVmFA8jUilQGBgp76bmRGSU2nYE0','','','2019-09-20 04:18:09','2019-09-20 04:18:09','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3356',0,'scheduled-action','',3),(3357,0,'2019-09-20 05:18:09','2019-09-20 05:18:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d8461b95b7a96.53898034-Lob5o2CKMyMLPiFUpPSsgFKdYmGw5qQH','','','2019-09-20 05:20:57','2019-09-20 05:20:57','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3357',0,'scheduled-action','',3),(3358,0,'2019-09-20 06:20:57','2019-09-20 06:20:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d846fcebe4232.54729766-OFusPMJLSsOuNzqmqQj3NICdYd9Ud3Hp','','','2019-09-20 06:21:02','2019-09-20 06:21:02','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3358',0,'scheduled-action','',3),(3359,0,'2019-09-20 07:21:02','2019-09-20 07:21:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d8481c7914e92.58881199-IrRZQCdKcyCLFbGVO8WYBa2ou94u5RlN','','','2019-09-20 07:37:43','2019-09-20 07:37:43','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3359',0,'scheduled-action','',3),(3360,0,'2019-09-20 08:37:43','2019-09-20 08:37:43','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d849037757a12.07073757-ggNLODlJJf3icL6pmw7QErU1oetiv9tl','','','2019-09-20 08:39:19','2019-09-20 08:39:19','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3360',0,'scheduled-action','',3),(3361,0,'2019-09-20 09:39:19','2019-09-20 09:39:19','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d849f9b64f8e2.71200296-f58AzdsGyGCSNe4j2bGjD1siQ9JImpgr','','','2019-09-20 09:44:59','2019-09-20 09:44:59','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3361',0,'scheduled-action','',3),(3362,0,'2019-09-20 10:44:59','2019-09-20 10:44:59','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d84b0947d41f2.97587375-0OTYECRMDn2T533RZSSjnQCG1QCSn3k6','','','2019-09-20 10:57:24','2019-09-20 10:57:24','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3362',0,'scheduled-action','',3),(3363,0,'2019-09-20 11:57:24','2019-09-20 11:57:24','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d84bff41e43f6.39690617-zYJS8LDmZMkh2NcCj4I3ZICsEi8wwd9L','','','2019-09-20 12:03:00','2019-09-20 12:03:00','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3363',0,'scheduled-action','',3),(3364,0,'2019-09-20 13:03:00','2019-09-20 13:03:00','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d84ce7f73ce27.05959334-S6TgwHv2B6QWCPTBAxKX6dATP6l5pTbz','','','2019-09-20 13:05:03','2019-09-20 13:05:03','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3364',0,'scheduled-action','',3),(3365,0,'2019-09-20 14:05:03','2019-09-20 14:05:03','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d84dcf096a994.26900861-dKaEwzjJj0wztAHGULuW7Oj741DHJywb','','','2019-09-20 14:06:40','2019-09-20 14:06:40','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3365',0,'scheduled-action','',3),(3366,0,'2019-09-20 15:06:40','2019-09-20 15:06:40','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d84eb980176d3.36462607-X2hkUCCdpSfXgjiBZjdxs1upORyXXEmr','','','2019-09-20 15:09:12','2019-09-20 15:09:12','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3366',0,'scheduled-action','',3),(3367,0,'2019-09-20 16:09:12','2019-09-20 16:09:12','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d84fab45b29d2.04969277-3J0lTkvxOTCDa0uBt83KEMY8zYVb4HMr','','','2019-09-20 16:13:40','2019-09-20 16:13:40','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3367',0,'scheduled-action','',3),(3368,0,'2019-09-20 17:13:40','2019-09-20 17:13:40','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d8509da0748e6.13233007-hyJynhHVdajqXFispIqC7Mvf4E7JAwx6','','','2019-09-20 17:18:18','2019-09-20 17:18:18','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3368',0,'scheduled-action','',3),(3369,0,'2019-09-20 18:18:18','2019-09-20 18:18:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d8519212d6154.84402024-8FyqncNtE28fCq3VEHUbFyTiiWBkBbW9','','','2019-09-20 18:23:29','2019-09-20 18:23:29','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3369',0,'scheduled-action','',3),(3370,0,'2019-09-20 19:23:29','2019-09-20 19:23:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d852a21af1374.17152419-dt43Z09krwurIW1wbKQN0oN47steHdds','','','2019-09-20 19:36:01','2019-09-20 19:36:01','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3370',0,'scheduled-action','',3),(3371,0,'2019-09-20 20:36:01','2019-09-20 20:36:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d853943798141.87323157-lV3I79XcDsKVjVTIVvqNWsWJoDpttYEK','','','2019-09-20 20:40:35','2019-09-20 20:40:35','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3371',0,'scheduled-action','',3),(3372,0,'2019-09-20 21:40:35','2019-09-20 21:40:35','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d85481caaa907.50193093-jVhEkhyj6XH24XqRgFq1TiOor2DfJ2Ht','','','2019-09-20 21:43:56','2019-09-20 21:43:56','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3372',0,'scheduled-action','',3),(3373,0,'2019-09-20 22:43:56','2019-09-20 22:43:56','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d855b7f678300.01802162-9e3wy23KYJf921BxPTOox4waiifRSdtE','','','2019-09-20 23:06:39','2019-09-20 23:06:39','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3373',0,'scheduled-action','',3),(3374,0,'2019-09-21 00:06:39','2019-09-21 00:06:39','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d856a934a9901.88757862-ReQXGVAsdd0jbgY0nG4b36gvbW1uIvh9','','','2019-09-21 00:10:59','2019-09-21 00:10:59','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3374',0,'scheduled-action','',3),(3375,0,'2019-09-21 01:10:59','2019-09-21 01:10:59','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d857ad1f2ebd8.44406316-A40q1j7WARgFcURVu9TMQyaY3cT8do40','','','2019-09-21 01:20:17','2019-09-21 01:20:17','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3375',0,'scheduled-action','',3),(3376,0,'2019-09-21 02:20:18','2019-09-21 02:20:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d858a0c47a4a8.37217154-UP501uUOBMJ9Dk5a1yTQiVUovaUtm6ZW','','','2019-09-21 02:25:16','2019-09-21 02:25:16','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3376',0,'scheduled-action','',3),(3377,0,'2019-09-21 03:25:16','2019-09-21 03:25:16','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d85986e389300.10138725-ohc1BzjPUlyQzFWhkl57cEOnEwjn0dTj','','','2019-09-21 03:26:38','2019-09-21 03:26:38','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3377',0,'scheduled-action','',3),(3378,0,'2019-09-21 04:26:38','2019-09-21 04:26:38','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d85a7eb3b9782.11711227-P4gXyRjLQO7nURsWAI33zzrzOwRX1FE7','','','2019-09-21 04:32:43','2019-09-21 04:32:43','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3378',0,'scheduled-action','',3),(3379,0,'2019-09-21 05:32:43','2019-09-21 05:32:43','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d85badac68362.94766192-mJHHKX6P4g0UsK1XLzE8zQB3trwnq6jG','','','2019-09-21 05:53:30','2019-09-21 05:53:30','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3379',0,'scheduled-action','',3),(3380,0,'2019-09-21 06:53:30','2019-09-21 06:53:30','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d85c96ddcae86.35566230-mIhQ91eyzUNWSH4seXknmg2S8LnNefJD','','','2019-09-21 06:55:41','2019-09-21 06:55:41','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3380',0,'scheduled-action','',3),(3381,0,'2019-09-21 07:55:41','2019-09-21 07:55:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d85d78df3c211.45073896-UeEK8xwtQTFTNNGvPbQn3X9BiPgvNm6K','','','2019-09-21 07:55:57','2019-09-21 07:55:57','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3381',0,'scheduled-action','',3),(3382,0,'2019-09-21 08:55:58','2019-09-21 08:55:58','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d85e5b31bb653.12213990-Y7oYSsK7nvQTpFAZJvqAjMoJKOtVgJni','','','2019-09-21 08:56:19','2019-09-21 08:56:19','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3382',0,'scheduled-action','',3),(3383,0,'2019-09-21 09:56:19','2019-09-21 09:56:19','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d85f5c8422f42.02091060-Lj12529U5qsM9zn3v7ZGNZBgyCKvzwja','','','2019-09-21 10:04:56','2019-09-21 10:04:56','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3383',0,'scheduled-action','',3),(3384,0,'2019-09-21 11:04:56','2019-09-21 11:04:56','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d86043798d439.60414860-GoLcwevIgVEBB1wbLKEq6JZQytj7kQoh','','','2019-09-21 11:06:31','2019-09-21 11:06:31','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3384',0,'scheduled-action','',3),(3385,0,'2019-09-21 12:06:31','2019-09-21 12:06:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d8613c38f5ac7.11584580-An8S98x1KZ53snmgZEAHhrtuJa6fooyZ','','','2019-09-21 12:12:51','2019-09-21 12:12:51','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3385',0,'scheduled-action','',3),(3386,0,'2019-09-21 13:12:51','2019-09-21 13:12:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d86238c24a7b3.49727425-YpoFs55cf6E8kJiGmv0QQrVVfN9HXRzZ','','','2019-09-21 13:20:12','2019-09-21 13:20:12','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3386',0,'scheduled-action','',3),(3387,0,'2019-09-21 14:20:12','2019-09-21 14:20:12','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d86325003bc61.88731063-VUlmU7pIAxhPff07IKjJpnrtzFqd52O2','','','2019-09-21 14:23:12','2019-09-21 14:23:12','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3387',0,'scheduled-action','',3),(3388,0,'2019-09-21 15:23:12','2019-09-21 15:23:12','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d864062f1ae99.34117373-vGRF45sKnpvO1jmlgAgXkEQCKOtqq9ah','','','2019-09-21 15:23:14','2019-09-21 15:23:14','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3388',0,'scheduled-action','',3),(3389,0,'2019-09-21 16:23:14','2019-09-21 16:23:14','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d864eb20a6861.20546976-cea9hELVxfcHm32ROPGMjlKsOZaQgqM8','','','2019-09-21 16:24:18','2019-09-21 16:24:18','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3389',0,'scheduled-action','',3),(3390,0,'2019-09-21 17:24:18','2019-09-21 17:24:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d865d6d7547d6.70625962-C1P3QSSMuB7vDVC8UL2av957BgyLOmdw','','','2019-09-21 17:27:09','2019-09-21 17:27:09','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3390',0,'scheduled-action','',3),(3391,0,'2019-09-21 18:27:09','2019-09-21 18:27:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d866c3fe76176.72965914-IlFXggMdjhOznV9stTzFMMQSsWAn5nve','','','2019-09-21 18:30:23','2019-09-21 18:30:23','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3391',0,'scheduled-action','',3),(3392,0,'2019-09-21 19:30:23','2019-09-21 19:30:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d867e7ef15665.81584230-SaqDuVYFYHI3rwNcr0zX8XWCbg75UfIX','','','2019-09-21 19:48:14','2019-09-21 19:48:14','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3392',0,'scheduled-action','',3),(3393,0,'2019-09-21 20:48:14','2019-09-21 20:48:14','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d868d75d36be5.16187414-d2lG7xrxPEC6398SbVnANeawEXrRsjoU','','','2019-09-21 20:52:05','2019-09-21 20:52:05','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3393',0,'scheduled-action','',3),(3394,0,'2019-09-21 21:52:05','2019-09-21 21:52:05','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d869b939de461.79560676-OlicrTPbsHl1QpjG0FVVBjfvGK9w5tia','','','2019-09-21 21:52:19','2019-09-21 21:52:19','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3394',0,'scheduled-action','',3),(3395,0,'2019-09-21 22:52:19','2019-09-21 22:52:19','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d86a9e3114e84.52225571-mSJE3JLU9fydpgmMLeK5seAoLXvmU7r9','','','2019-09-21 22:53:23','2019-09-21 22:53:23','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3395',0,'scheduled-action','',3),(3396,0,'2019-09-21 23:53:23','2019-09-21 23:53:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d86ba0d993052.47156826-8wcI6D35lZY0unxIPAZG6GBeP1NzcaGa','','','2019-09-22 00:02:21','2019-09-22 00:02:21','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3396',0,'scheduled-action','',3),(3397,0,'2019-09-22 01:02:21','2019-09-22 01:02:21','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d86c9d6b67f95.25420287-geAR9xndIBfyUi6ugWS6IRP9priNvSeL','','','2019-09-22 01:09:42','2019-09-22 01:09:42','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3397',0,'scheduled-action','',3),(3398,0,'2019-09-22 02:09:42','2019-09-22 02:09:42','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d86dc98d61bb6.07505834-MaqUcqMw8cntjA8Kt4bUbq2XRWRGC7K8','','','2019-09-22 02:29:44','2019-09-22 02:29:44','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3398',0,'scheduled-action','',3),(3399,0,'2019-09-22 03:29:44','2019-09-22 03:29:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d86ec3e710fe5.20932680-3ebPuqalNX2ndKZbFxUy56RKYzlTuyn7','','','2019-09-22 03:36:30','2019-09-22 03:36:30','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3399',0,'scheduled-action','',3),(3400,0,'2019-09-22 04:36:30','2019-09-22 04:36:30','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d86fae601d013.16403242-wMF5dPD9znBW2MSIxE4URsKVlHak7RZD','','','2019-09-22 04:39:02','2019-09-22 04:39:02','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3400',0,'scheduled-action','',3),(3401,0,'2019-09-22 05:39:02','2019-09-22 05:39:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d8709c298f2c9.20807183-jTLw1igG9sk3J6UOFItYrYoSj5bTD7fM','','','2019-09-22 05:42:26','2019-09-22 05:42:26','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3401',0,'scheduled-action','',3),(3402,0,'2019-09-22 06:42:26','2019-09-22 06:42:26','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d871ab744aec1.65740256-u4ybe39GEHT8tN9FFXwEu5mdFPIn6d9e','','','2019-09-22 06:54:47','2019-09-22 06:54:47','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3402',0,'scheduled-action','',3),(3403,0,'2019-09-22 07:54:47','2019-09-22 07:54:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d8728d0a80579.45251650-N69FDVSUaWd252n7vBoQeDIbrorQmPJm','','','2019-09-22 07:54:56','2019-09-22 07:54:56','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3403',0,'scheduled-action','',3),(3404,0,'2019-09-22 08:54:56','2019-09-22 08:54:56','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d8738a5e67fc1.07669967-EUqF8DPLlJp7eWZUexEOj7vvctzm79M8','','','2019-09-22 09:02:29','2019-09-22 09:02:29','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3404',0,'scheduled-action','',3),(3405,0,'2019-09-22 10:02:29','2019-09-22 10:02:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d8746ffe98777.54883418-lYm5AGiGkIqlqNQ2tAtw1GX7zD4dmAVV','','','2019-09-22 10:03:43','2019-09-22 10:03:43','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3405',0,'scheduled-action','',3),(3406,0,'2019-09-22 11:03:43','2019-09-22 11:03:43','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d875541691d34.25879105-DKhdEAuMFObida8iqRI1HLu2usujZhXH','','','2019-09-22 11:04:33','2019-09-22 11:04:33','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3406',0,'scheduled-action','',3),(3407,0,'2019-09-22 12:04:33','2019-09-22 12:04:33','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d87672742d0d9.30820235-GzZOOIEpnwv4E7xL2ha2V3A0o4Bt8MOQ','','','2019-09-22 12:20:55','2019-09-22 12:20:55','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3407',0,'scheduled-action','',3),(3408,0,'2019-09-22 13:20:55','2019-09-22 13:20:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d877830a4df21.80180250-U3W9pztbvVLV823vIjd527FZWjmrdFu2','','','2019-09-22 13:33:36','2019-09-22 13:33:36','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3408',0,'scheduled-action','',3),(3409,0,'2019-09-22 14:33:36','2019-09-22 14:33:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d8788d1d6b3c6.23778883-Wp20XxZIcexJcRvOeSuzBA0htgXSn25m','','','2019-09-22 14:44:33','2019-09-22 14:44:33','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3409',0,'scheduled-action','',3),(3410,0,'2019-09-22 15:44:33','2019-09-22 15:44:33','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d8797689cb6d8.73613433-u6dhi4LOQ0mqI3d6kLGEXjeicxkY4EBC','','','2019-09-22 15:46:48','2019-09-22 15:46:48','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3410',0,'scheduled-action','',3),(3411,0,'2019-09-22 16:46:48','2019-09-22 16:46:48','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d87a5e9ee1617.52529693-N5T7hh7yW5DzviSNHMMtmvaio8NYjiq4','','','2019-09-22 16:48:41','2019-09-22 16:48:41','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3411',0,'scheduled-action','',3),(3412,1,'2019-09-22 16:04:08','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2019-09-22 16:04:08','0000-00-00 00:00:00','',0,'https://www.newcastle-hypnotherapy.com/?p=3412',0,'post','',0),(3413,0,'2019-09-22 17:48:41','2019-09-22 17:48:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d87b3fa90d186.90861355-r3GwbpoD5RbwVVLy8VPlNMxLtvfv1UqF','','','2019-09-22 17:48:42','2019-09-22 17:48:42','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3413',0,'scheduled-action','',3),(3414,0,'2019-09-22 18:48:42','2019-09-22 18:48:42','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d87c24b730f95.21387865-fZlT9VmSaqqT0OmzCDmJEC0V1OkCo0fr','','','2019-09-22 18:49:47','2019-09-22 18:49:47','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&#038;p=3414',0,'scheduled-action','',3),(3415,0,'2019-09-22 19:49:47','2019-09-22 19:49:47','[]','wc_admin_unsnooze_admin_notes','','pending','open','closed','','','','','2019-09-22 19:49:47','2019-09-22 19:49:47','',0,'https://www.newcastle-hypnotherapy.com/?post_type=scheduled-action&p=3415',0,'scheduled-action','',1);
/*!40000 ALTER TABLE `wpqj_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_queue`
--

DROP TABLE IF EXISTS `wpqj_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_queue` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `job` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attempts` tinyint(1) NOT NULL DEFAULT 0,
  `locked` tinyint(1) NOT NULL DEFAULT 0,
  `locked_at` datetime DEFAULT NULL,
  `available_at` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_queue`
--

LOCK TABLES `wpqj_queue` WRITE;
/*!40000 ALTER TABLE `wpqj_queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_queue` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_ssa_appointment_types`
--

DROP TABLE IF EXISTS `wpqj_ssa_appointment_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_ssa_appointment_types` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `author_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `location` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `instructions` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `label` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL,
  `buffer_before` mediumint(8) unsigned NOT NULL,
  `duration` mediumint(8) unsigned NOT NULL,
  `buffer_after` mediumint(8) unsigned NOT NULL,
  `min_booking_notice` mediumint(8) unsigned NOT NULL,
  `max_booking_notice` mediumint(8) unsigned NOT NULL,
  `max_event_count` smallint(5) unsigned NOT NULL,
  `booking_start_date` datetime NOT NULL,
  `booking_end_date` datetime NOT NULL,
  `availability` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `availability_start_date` datetime DEFAULT NULL,
  `availability_end_date` datetime DEFAULT NULL,
  `availability_increment` mediumint(8) unsigned NOT NULL,
  `timezone_style` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL,
  `customer_information` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `custom_customer_information` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `notifications` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `google_calendars_availability` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `google_calendar_booking` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL,
  `mailchimp` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `date_created` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  `visibility` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'public',
  `booking_layout` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'week',
  `payments` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `display_order` int(5) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `author_id` (`author_id`),
  KEY `status` (`status`),
  KEY `date_created` (`date_created`),
  KEY `date_modified` (`date_modified`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Created with schema v1.8.2 (2018-09-25 12:24:08)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_ssa_appointment_types`
--

LOCK TABLES `wpqj_ssa_appointment_types` WRITE;
/*!40000 ALTER TABLE `wpqj_ssa_appointment_types` DISABLE KEYS */;
INSERT INTO `wpqj_ssa_appointment_types` VALUES (1,1,'FREE 15 Minute Phone Strategy Session ','free-15-minute-phone-strategy-session','','','Mark will call you for this phone appointment at the time booked.','light-green',0,15,0,180,10080,0,'0000-00-00 00:00:00','0000-00-00 00:00:00','{\"Monday\":[{\"time_start\":\"8:00:00\",\"time_end\":\"12:00:00\"},{\"time_start\":\"13:00:00\",\"time_end\":\"17:00:00\"}],\"Tuesday\":[{\"time_start\":\"8:00:00\",\"time_end\":\"12:00:00\"},{\"time_start\":\"13:00:00\",\"time_end\":\"17:00:00\"}],\"Wednesday\":[{\"time_start\":\"9:30:00\",\"time_end\":\"12:00:00\"},{\"time_start\":\"13:00:00\",\"time_end\":\"17:00:00\"}],\"Thursday\":[{\"time_start\":\"8:00:00\",\"time_end\":\"12:00:00\"},{\"time_start\":\"13:00:00\",\"time_end\":\"17:00:00\"}],\"Friday\":[{\"time_start\":\"8:00:00\",\"time_end\":\"12:00:00\"},{\"time_start\":\"13:00:00\",\"time_end\":\"17:00:00\"}],\"Saturday\":[{\"time_start\":\"10:00:00\",\"time_end\":\"12:00:00\"}],\"Sunday\":[{\"time_start\":\"11:00:00\",\"time_end\":\"12:00:00\"}]}','0000-00-00 00:00:00','0000-00-00 00:00:00',15,'','[{\"field\":\"Name\",\"display\":true,\"required\":true,\"icon\":\"face\"},{\"field\":\"Email\",\"display\":true,\"required\":true,\"icon\":\"email\"},{\"field\":\"Phone\",\"display\":true,\"required\":true,\"icon\":\"phone\"},{\"field\":\"Address\",\"display\":false,\"required\":false,\"icon\":\"place\"},{\"field\":\"City\",\"display\":false,\"required\":false,\"icon\":\"place\"},{\"field\":\"State\",\"display\":false,\"required\":false,\"icon\":\"place\"},{\"field\":\"Zip\",\"display\":false,\"required\":false,\"icon\":\"place\"},{\"field\":\"Notes\",\"display\":true,\"required\":false,\"icon\":\"assignment\"}]','\"\"','[{\"field\":\"admin\",\"send\":true},{\"field\":\"customer\",\"send\":true}]','[]','','\"\"','publish','2018-09-25 12:26:11','2018-09-25 12:37:41','public','week','',0),(2,1,'Hypnotherapy Session Booking','hypnotherapy-session-upto-90-minutes','','','test','purple',15,90,15,1440,129600,0,'0000-00-00 00:00:00','0000-00-00 00:00:00','{\"Monday\":[{\"time_start\":\"09:00:00\",\"time_end\":\"12:00:00\"},{\"time_start\":\"13:00:00\",\"time_end\":\"17:00:00\"}],\"Tuesday\":[{\"time_start\":\"09:00:00\",\"time_end\":\"12:00:00\"},{\"time_start\":\"13:00:00\",\"time_end\":\"17:00:00\"}],\"Wednesday\":[{\"time_start\":\"09:00:00\",\"time_end\":\"12:00:00\"},{\"time_start\":\"13:00:00\",\"time_end\":\"17:00:00\"}],\"Thursday\":[{\"time_start\":\"09:00:00\",\"time_end\":\"12:00:00\"},{\"time_start\":\"13:00:00\",\"time_end\":\"17:00:00\"}],\"Friday\":[{\"time_start\":\"09:00:00\",\"time_end\":\"12:00:00\"},{\"time_start\":\"13:00:00\",\"time_end\":\"17:00:00\"}],\"Saturday\":[],\"Sunday\":[]}','0000-00-00 00:00:00','0000-00-00 00:00:00',15,'','[{\"field\":\"Name\",\"display\":true,\"required\":true,\"icon\":\"face\"},{\"field\":\"Email\",\"display\":true,\"required\":true,\"icon\":\"email\"},{\"field\":\"Phone\",\"display\":true,\"required\":true,\"icon\":\"phone\"},{\"field\":\"Address\",\"display\":false,\"required\":false,\"icon\":\"place\"},{\"field\":\"City\",\"display\":false,\"required\":false,\"icon\":\"place\"},{\"field\":\"State\",\"display\":false,\"required\":false,\"icon\":\"place\"},{\"field\":\"Zip\",\"display\":false,\"required\":false,\"icon\":\"place\"},{\"field\":\"Notes\",\"display\":true,\"required\":false,\"icon\":\"assignment\"}]','\"\"','[{\"field\":\"admin\",\"send\":true},{\"field\":\"customer\",\"send\":true}]','[]','','\"\"','publish','2018-09-25 12:45:13','2018-09-25 12:45:13','public','week','',0);
/*!40000 ALTER TABLE `wpqj_ssa_appointment_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_ssa_appointments`
--

DROP TABLE IF EXISTS `wpqj_ssa_appointments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_ssa_appointments` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `appointment_type_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `author_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `customer_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `customer_information` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `start_date` datetime NOT NULL,
  `end_date` datetime NOT NULL,
  `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `price_expected` decimal(9,2) NOT NULL,
  `price_full` decimal(9,2) NOT NULL,
  `price_discount` decimal(9,2) NOT NULL,
  `price_final` decimal(9,2) NOT NULL,
  `payment_received` decimal(9,2) NOT NULL,
  `google_calendar_id` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL,
  `google_calendar_event_id` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'booked',
  `date_created` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  `customer_timezone` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL,
  `rescheduled_from_appointment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `payment_method` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `mailchimp_list_id` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL,
  `allow_sms` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `customer_id` (`customer_id`),
  KEY `start_date` (`start_date`),
  KEY `end_date` (`end_date`),
  KEY `status` (`status`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Created with schema v1.3 (2018-09-25 12:24:08)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_ssa_appointments`
--

LOCK TABLES `wpqj_ssa_appointments` WRITE;
/*!40000 ALTER TABLE `wpqj_ssa_appointments` DISABLE KEYS */;
INSERT INTO `wpqj_ssa_appointments` VALUES (1,1,1,1,'{\"Name\":\"Tiddly\",\"Email\":\"myfreepack@gmail.com\",\"Phone\":\"07941079999\",\"Notes\":\"Anxiety\"}','2018-09-25 15:15:00','2018-09-25 15:30:00','','',0.00,0.00,0.00,0.00,0.00,'','','booked','2018-09-25 12:33:37','2018-09-25 12:33:37','',0,'','',''),(2,2,1,1,'{\"Name\":\"Fred Q\",\"Email\":\"markamorley@gmail.com\",\"Phone\":\"455465465465\",\"Notes\":\"confidence\"}','2018-09-26 13:00:00','2018-09-26 14:30:00','','',0.00,0.00,0.00,0.00,0.00,'','','booked','2018-09-25 12:52:02','2018-09-25 12:52:02','',0,'','',''),(3,1,1,1,'{\"Name\":\"a\",\"Email\":\"a\'a.com\",\"Phone\":\"01010\"}','2018-09-28 07:00:00','2018-09-28 07:15:00','','',0.00,0.00,0.00,0.00,0.00,'','','booked','2018-09-25 14:41:23','2018-09-25 14:41:23','',0,'','',''),(4,1,1,1,'{\"Name\":\"pinky\",\"Email\":\"myfreepack@gmail.com\",\"Phone\":\"454545454\"}','2018-09-26 08:30:00','2018-09-26 08:45:00','','',0.00,0.00,0.00,0.00,0.00,'','','booked','2018-09-25 19:15:24','2018-09-25 19:15:24','',0,'','',''),(5,2,1,1,'{\"Name\":\"Fred test\",\"Email\":\"myfreepack@gmail.com\",\"Phone\":\"079744111\"}','2018-10-01 12:00:00','2018-10-01 13:30:00','','',0.00,0.00,0.00,0.00,0.00,'','','booked','2018-09-26 16:04:16','2018-09-26 16:04:16','',0,'','',''),(6,1,0,0,'{\"Name\":\"Freya Harding\",\"Email\":\"freyaharding@gmail.com\",\"Phone\":\"07513111662\",\"Notes\":\"Want help with habit breaking\"}','2018-11-09 13:00:00','2018-11-09 13:15:00','','',0.00,0.00,0.00,0.00,0.00,'','','booked','2018-11-07 18:45:18','2018-11-07 18:45:18','',0,'','',''),(7,1,0,0,'{\"Name\":\"Catherine Lundy\",\"Email\":\"catherine_lundy@yahoo.co.uk\",\"Phone\":\"07840522421\"}','2018-11-21 09:30:00','2018-11-21 09:45:00','','',0.00,0.00,0.00,0.00,0.00,'','','booked','2018-11-17 19:42:32','2018-11-17 19:42:32','',0,'','',''),(8,1,0,0,'{\"Name\":\"Elena Dorling\",\"Phone\":\"07950685476\",\"Email\":\"elena.dorling@hotmail.co.uk\"}','2019-02-04 16:30:00','2019-02-04 16:45:00','','',0.00,0.00,0.00,0.00,0.00,'','','booked','2019-02-03 14:51:38','2019-02-03 14:51:38','Europe/London',0,'','',''),(9,1,0,0,'{\"Name\":\"Hayley Wakenshaw\",\"Email\":\"Hayleywakenshaw@gmail.com\",\"Phone\":\"07952105275\",\"Notes\":\"I\'m looking for a stop smoking approach to overeating. I know how to eat. Have successfully lost weight and kept a lot of it off. But it seems I can only lose and maintain when I have no social life and can completely control the food in my vicinity. Find it almost impossible to refuse food if I have access to it. I think about food constantly. I use it as a smoker uses cigarettes. Eat and feel high, then crash straight afterwards. Have had bulimia a long time ago, and a couple of periods when poverty meant I didn\'t have enough to eat. Had many years of therapy, so have dealt with the depression and anxiety issues that came from those times, but the food obsession continues. I\'d like to just see food as fuel. To see it as a necessary inconvenience rather than something I get pleasure and comfort from. I\'d like to view healthy food as being good for my body, and see unhealthy food in the same way that a reformed smoker sees cigarettes. When I see sweets, crisps and junk food I\'d like to be absolutely indifferent to it. However, I\'m really not very suggestible at all and you might find it quite hard to get me into a state where your suggestions penetrate my subconscious. But I\'m willing to try! I love in Bedlington, so sessions here or in Cramlington would be best. \"}','2019-02-12 14:00:00','2019-02-12 14:15:00','','',0.00,0.00,0.00,0.00,0.00,'','','booked','2019-02-11 15:42:54','2019-02-11 15:42:54','Europe/London',0,'','',''),(10,1,0,0,'{\"Name\":\"Carol Johnsen\",\"Email\":\"Caroljohnsen58@gmail.com\",\"Phone\":\"07519617053\"}','2019-03-05 14:45:00','2019-03-05 15:00:00','','',0.00,0.00,0.00,0.00,0.00,'','','booked','2019-03-04 16:58:31','2019-03-04 16:58:31','Europe/London',0,'','',''),(11,1,0,0,'{\"Name\":\"Karen \",\"Email\":\"Karen.kirkbride2@aol.co.uk\",\"Phone\":\"07970771801\",\"Notes\":\" Issues with anxiety  negative thoughts  Self imaged \"}','2019-03-09 11:45:00','2019-03-09 12:00:00','','',0.00,0.00,0.00,0.00,0.00,'','','booked','2019-03-07 21:20:17','2019-03-07 21:20:17','Europe/London',0,'','',''),(12,1,0,0,'{\"Name\":\"Lisa\",\"Email\":\"Thornhill.l@yahoo.com\",\"Phone\":\"07530128361\"}','2019-03-22 09:30:00','2019-03-22 09:45:00','','',0.00,0.00,0.00,0.00,0.00,'','','booked','2019-03-21 14:38:53','2019-03-21 14:38:53','Europe/London',0,'','',''),(13,1,0,0,'{\"Name\":\"Charlie Gibson\",\"Email\":\"Gibson93@outlook.com\",\"Phone\":\"07487434685\",\"Notes\":\"Julie\\u2019s daughter coming out of emdr \"}','2019-03-25 16:00:00','2019-03-25 16:15:00','','',0.00,0.00,0.00,0.00,0.00,'','','booked','2019-03-23 05:36:35','2019-03-23 05:36:35','Europe/London',0,'','',''),(14,1,0,0,'{\"Name\":\"Karen \",\"Email\":\"daviskaren603@gmail.com\",\"Phone\":\"07702681715\"}','2019-03-25 09:00:00','2019-03-25 09:15:00','','',0.00,0.00,0.00,0.00,0.00,'','','booked','2019-03-23 17:08:15','2019-03-23 17:08:15','Europe/London',0,'','',''),(15,1,0,0,'{\"Name\":\"Chloe Alexandri\",\"Email\":\"Clalexandri@gmail.com\",\"Phone\":\"07399260088\"}','2019-06-04 12:00:00','2019-06-04 12:15:00','','',0.00,0.00,0.00,0.00,0.00,'','','booked','2019-06-03 16:37:24','2019-06-03 16:37:24','Europe/London',0,'','',''),(16,1,0,0,'{\"Name\":\"Tom Gallagher\",\"Email\":\"tompetergallagher@hotmail.co.uk\",\"Phone\":\"07487865570\",\"Notes\":\"please send me a reminder \"}','2019-06-18 14:00:00','2019-06-18 14:15:00','','',0.00,0.00,0.00,0.00,0.00,'','','booked','2019-06-15 11:25:35','2019-06-15 11:25:35','Europe/London',0,'','',''),(17,1,0,0,'{\"Name\":\"Amanda Taylor\",\"Phone\":\"07962175595\",\"Email\":\"mandjtaylor@hotmail.co.uk\"}','2019-06-18 15:45:00','2019-06-18 16:00:00','','',0.00,0.00,0.00,0.00,0.00,'','','booked','2019-06-17 11:29:50','2019-06-17 11:29:50','Europe/London',0,'','',''),(18,1,0,0,'{\"Name\":\"Debra Taylor \",\"Email\":\"taylor.deb@outlook.com\",\"Phone\":\"07764559237\",\"Notes\":\"Looking for hypnotherapy to help me stop smoking\"}','2019-08-15 12:00:00','2019-08-15 12:15:00','','',0.00,0.00,0.00,0.00,0.00,'','','booked','2019-08-15 06:17:00','2019-08-15 06:17:00','Europe/London',0,'','',''),(19,1,0,0,'{\"Name\":\"Tom Gallagher\",\"Email\":\"tomgallagher1979@gmail.com\",\"Phone\":\"07487865570\",\"Notes\":\"sorted out money but am limited on time. have to move out soon. hoping for a fast track course within a month to sort out anxiety attacks. \"}','2019-08-21 12:30:00','2019-08-21 12:45:00','','',0.00,0.00,0.00,0.00,0.00,'','','booked','2019-08-20 23:25:24','2019-08-20 23:25:24','Europe/London',0,'','','');
/*!40000 ALTER TABLE `wpqj_ssa_appointments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_ssa_async_actions`
--

DROP TABLE IF EXISTS `wpqj_ssa_async_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_ssa_async_actions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `author_id` bigint(11) unsigned NOT NULL DEFAULT 0,
  `hook` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `action` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
  `priority` int(5) NOT NULL DEFAULT 10,
  `payload` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `object_type` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
  `object_id` bigint(11) unsigned NOT NULL DEFAULT 0,
  `action_group` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
  `response` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `date_created` datetime DEFAULT NULL,
  `date_modified` datetime DEFAULT NULL,
  `date_queued` datetime DEFAULT NULL,
  `date_processed` datetime DEFAULT NULL,
  `process_batch_token` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
  `date_completed` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `author_id` (`author_id`),
  KEY `hook` (`hook`),
  KEY `action` (`action`),
  KEY `date_queued` (`date_queued`),
  KEY `date_processed` (`date_processed`),
  KEY `date_completed` (`date_completed`),
  KEY `process_batch_token` (`process_batch_token`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Created with schema v1.8.2.020 (2018-10-29 17:54:07)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_ssa_async_actions`
--

LOCK TABLES `wpqj_ssa_async_actions` WRITE;
/*!40000 ALTER TABLE `wpqj_ssa_async_actions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_ssa_async_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_ssa_availability`
--

DROP TABLE IF EXISTS `wpqj_ssa_availability`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_ssa_availability` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `appointment_type_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `appointment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `is_available` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `start_date` datetime NOT NULL,
  `end_date` datetime NOT NULL,
  `type` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL,
  `subtype` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `staff_id` bigint(11) NOT NULL DEFAULT 0,
  `calendar_id` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL,
  `calendar_ical_uid` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL,
  `calendar_event_id` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL,
  `calendar_event_title` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_all_day` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL,
  `transparency` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `date_created` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `appointment_type_id` (`appointment_type_id`),
  KEY `appointment_id` (`appointment_id`),
  KEY `is_available` (`is_available`),
  KEY `start_date` (`start_date`),
  KEY `end_date` (`end_date`),
  KEY `type` (`type`),
  KEY `subtype` (`subtype`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Created with schema v1.4 (2018-09-25 12:24:08)';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_ssa_availability`
--

LOCK TABLES `wpqj_ssa_availability` WRITE;
/*!40000 ALTER TABLE `wpqj_ssa_availability` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_ssa_availability` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_term_relationships`
--

DROP TABLE IF EXISTS `wpqj_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_order` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_term_relationships`
--

LOCK TABLES `wpqj_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpqj_term_relationships` DISABLE KEYS */;
INSERT INTO `wpqj_term_relationships` VALUES (192,2,0),(190,2,0),(576,4,0),(576,3,0),(576,5,0),(576,6,0),(576,7,0),(576,8,0),(589,10,0),(589,9,0),(589,11,0),(589,12,0),(589,13,0),(589,5,0),(699,15,0),(605,14,0),(796,17,0),(797,17,0),(1481,17,0),(1484,17,0),(1483,17,0),(1482,17,0),(802,17,0),(1480,17,0),(804,17,0),(1476,17,0),(1477,17,0),(1478,17,0),(808,17,0),(1479,17,0),(1475,17,0),(1474,17,0),(1473,17,0),(1095,18,0),(2215,17,0),(1182,1,0),(1472,17,0),(1470,17,0),(1325,19,0),(1325,14,0),(1325,20,0),(1325,21,0),(1325,22,0),(1325,23,0),(1325,24,0),(1325,25,0),(1325,26,0),(1325,5,0),(1325,27,0),(1325,28,0),(1458,17,0),(2311,17,0),(2163,17,0),(2280,17,0),(1917,48,0),(1960,50,0),(1960,52,0),(1960,55,0),(1960,58,0),(2027,60,0),(2027,61,0),(2287,48,0),(1756,17,0),(2287,29,0),(1780,17,0),(1917,29,0),(1960,21,0),(1960,14,0),(1960,51,0),(1960,53,0),(1960,54,0),(1960,56,0),(1960,57,0),(2027,25,0),(2006,59,0),(2027,26,0),(2027,62,0),(2064,17,0),(2147,17,0),(2121,17,0),(1430,29,0),(1430,46,0),(1497,17,0),(1498,17,0),(1504,17,0),(1500,17,0),(1501,17,0),(2432,17,0),(2433,17,0),(2395,17,0),(1591,49,0),(1548,29,0),(1548,48,0),(1591,29,0),(1593,49,0),(1593,29,0),(1430,33,0),(1430,34,0),(1612,49,0),(1612,29,0),(1614,49,0),(1614,29,0),(1616,49,0),(1616,29,0),(1618,49,0),(1618,29,0),(2454,48,0),(2103,17,0),(2168,1,0),(2454,29,0),(2564,48,0),(2564,29,0),(2571,17,0),(2592,65,0),(2592,64,0),(2592,19,0),(2592,21,0),(2592,66,0),(2628,48,0),(2628,29,0),(2635,17,0),(2732,48,0),(3192,68,0),(2701,29,0),(2703,17,0),(1548,36,0),(2732,29,0),(2733,17,0),(2836,42,0),(2835,17,0),(2977,17,0),(2836,29,0),(2972,29,0),(2972,48,0),(3026,48,0),(3026,29,0),(3034,17,0),(3064,17,0),(2592,14,0),(2592,2,0),(2592,9,0),(2592,59,0),(3160,67,0),(3161,67,0),(3162,67,0),(3163,67,0),(3164,67,0),(3165,67,0),(3166,67,0),(3167,67,0),(3168,67,0),(3169,68,0),(3170,69,0),(3171,69,0),(3172,69,0),(3173,69,0),(3174,69,0),(3175,69,0),(3176,69,0),(3177,69,0),(3178,69,0),(3179,69,0),(3180,68,0),(2701,48,0),(3198,70,0),(3199,68,0),(3202,68,0),(3203,68,0),(3204,68,0),(3205,68,0),(3206,68,0),(3207,68,0),(3209,70,0),(3210,70,0),(3211,68,0),(3212,68,0),(3213,68,0),(3214,68,0),(3215,68,0),(3216,68,0),(3217,68,0),(3218,68,0),(3219,68,0),(3220,68,0),(3221,68,0),(3222,68,0),(3223,68,0),(3225,70,0),(3227,70,0),(3228,70,0),(3229,68,0),(3230,68,0),(3231,68,0),(3232,68,0),(3233,68,0),(3234,68,0),(3235,68,0),(3236,68,0),(3237,68,0),(3238,68,0),(3239,68,0),(3240,68,0),(3241,68,0),(3242,68,0),(3243,68,0),(3244,68,0),(3245,68,0),(3246,68,0),(3247,68,0),(3248,68,0),(3249,68,0),(3250,68,0),(3251,68,0),(3252,68,0),(3253,68,0),(3254,68,0),(3255,68,0),(3256,68,0),(3257,68,0),(3258,68,0),(3259,68,0),(3260,68,0),(3261,68,0),(3262,68,0),(3263,68,0),(3264,68,0),(3265,68,0),(3266,68,0),(3267,68,0),(3268,68,0),(3269,68,0),(3270,68,0),(3271,68,0),(3272,68,0),(3273,68,0),(3274,68,0),(3275,68,0),(3276,68,0),(3277,68,0),(3278,68,0),(3279,68,0),(3280,68,0),(3281,68,0),(3282,68,0),(3283,68,0),(3284,68,0),(3285,68,0),(3286,68,0),(3287,68,0),(3288,68,0),(3290,70,0),(3291,70,0),(3292,68,0),(3293,68,0),(3294,68,0),(3295,68,0),(3296,68,0),(3297,68,0),(3298,68,0),(3299,68,0),(3300,68,0),(3301,68,0),(3302,68,0),(3303,68,0),(3304,68,0),(3305,68,0),(3306,68,0),(3307,68,0),(3308,68,0),(3309,68,0),(3310,68,0),(3311,68,0),(3312,68,0),(3314,70,0),(3315,70,0),(3316,68,0),(3318,70,0),(3319,68,0),(3320,68,0),(3321,68,0),(3322,68,0),(3323,68,0),(3324,68,0),(3325,68,0),(3326,68,0),(3327,68,0),(3328,68,0),(3329,68,0),(3330,68,0),(3331,68,0),(3332,68,0),(3333,68,0),(3334,68,0),(3335,68,0),(3336,68,0),(3337,68,0),(3338,68,0),(3339,68,0),(3340,68,0),(3341,68,0),(3342,68,0),(3343,68,0),(3344,68,0),(3345,68,0),(3346,68,0),(3347,68,0),(3348,68,0),(3349,68,0),(3350,68,0),(3351,68,0),(3352,68,0),(3353,68,0),(3354,68,0),(3355,68,0),(3356,68,0),(3357,68,0),(3358,68,0),(3359,68,0),(3360,68,0),(3361,68,0),(3362,68,0),(3363,68,0),(3364,68,0),(3365,68,0),(3366,68,0),(3367,68,0),(3368,68,0),(3369,68,0),(3370,68,0),(3371,68,0),(3372,68,0),(3373,68,0),(3374,68,0),(3375,68,0),(3376,68,0),(3377,68,0),(3378,68,0),(3379,68,0),(3380,68,0),(3381,68,0),(3382,68,0),(3383,68,0),(3384,68,0),(3385,68,0),(3386,68,0),(3387,68,0),(3388,68,0),(3389,68,0),(3390,68,0),(3391,68,0),(3392,68,0),(3393,68,0),(3394,68,0),(3395,68,0),(3396,68,0),(3397,68,0),(3398,68,0),(3399,68,0),(3400,68,0),(3401,68,0),(3402,68,0),(3403,68,0),(3404,68,0),(3405,68,0),(3406,68,0),(3407,68,0),(3408,68,0),(3409,68,0),(3410,68,0),(3411,68,0),(3413,68,0),(3414,68,0),(3415,68,0);
/*!40000 ALTER TABLE `wpqj_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_term_taxonomy`
--

DROP TABLE IF EXISTS `wpqj_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=71 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_term_taxonomy`
--

LOCK TABLES `wpqj_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpqj_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpqj_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'category','Articles about depression and mental health',0,1),(4,4,'post_tag','',0,1),(3,3,'category','',0,1),(5,5,'post_tag','',0,3),(6,6,'post_tag','',0,1),(7,7,'post_tag','',0,1),(8,8,'post_tag','',0,1),(10,10,'post_tag','',0,1),(9,9,'category','',0,2),(11,11,'post_tag','',0,1),(12,12,'post_tag','',0,1),(13,13,'post_tag','',0,1),(15,15,'elementor_library_type','',0,0),(14,14,'category','',0,4),(17,17,'nav_menu','',0,46),(18,18,'category','',0,1),(19,19,'post_tag','',0,2),(20,20,'post_tag','',0,1),(21,21,'post_tag','',0,3),(22,22,'post_tag','',0,1),(23,23,'post_tag','',0,1),(24,24,'post_tag','',0,1),(25,25,'post_tag','',0,2),(26,26,'post_tag','',0,2),(27,27,'post_tag','',0,1),(28,28,'post_tag','',0,1),(29,29,'product_type','',0,11),(30,30,'product_type','',0,0),(31,31,'product_type','',0,0),(32,32,'product_type','',0,0),(33,33,'product_visibility','',0,0),(34,34,'product_visibility','',0,0),(35,35,'product_visibility','',0,0),(36,36,'product_visibility','',0,1),(37,37,'product_visibility','',0,0),(38,38,'product_visibility','',0,0),(39,39,'product_visibility','',0,0),(40,40,'product_visibility','',0,0),(41,41,'product_visibility','',0,0),(42,42,'product_cat','',0,1),(43,43,'product_cat','A short category description',0,0),(44,44,'product_cat','A short category description',0,0),(45,45,'product_cat','A short category description',0,0),(50,50,'post_tag','',0,1),(46,46,'product_cat','',0,0),(49,49,'product_cat','',0,0),(48,48,'product_cat','',0,10),(51,51,'post_tag','',0,1),(52,52,'post_tag','',0,1),(53,53,'post_tag','',0,1),(54,54,'post_tag','',0,1),(55,55,'post_tag','',0,1),(56,56,'post_tag','',0,1),(57,57,'post_tag','',0,1),(58,58,'post_tag','',0,1),(59,59,'category','',0,2),(61,61,'post_tag','',0,1),(60,60,'category','',0,1),(62,62,'post_tag','',0,1),(63,63,'category','',0,0),(64,64,'category','',0,1),(65,65,'post_tag','',0,1),(66,66,'post_tag','',0,1),(67,67,'action-group','',0,9),(68,68,'action-group','',0,200),(69,69,'action-group','',0,10),(70,70,'action-group','',0,11);
/*!40000 ALTER TABLE `wpqj_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_termmeta`
--

DROP TABLE IF EXISTS `wpqj_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_termmeta`
--

LOCK TABLES `wpqj_termmeta` WRITE;
/*!40000 ALTER TABLE `wpqj_termmeta` DISABLE KEYS */;
INSERT INTO `wpqj_termmeta` VALUES (1,43,'thumbnail_id','1395'),(2,43,'product_count_product_cat','0'),(3,44,'thumbnail_id','1397'),(4,44,'product_count_product_cat','0'),(5,45,'thumbnail_id','1396'),(6,45,'product_count_product_cat','0'),(7,42,'product_count_product_cat','1'),(8,46,'order','0'),(9,46,'product_count_product_cat','0'),(10,48,'order','0'),(11,48,'product_count_product_cat','10'),(12,49,'order','0'),(13,49,'product_count_product_cat','0'),(14,48,'display_type',''),(15,48,'thumbnail_id','0');
/*!40000 ALTER TABLE `wpqj_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_terms`
--

DROP TABLE IF EXISTS `wpqj_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=71 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_terms`
--

LOCK TABLES `wpqj_terms` WRITE;
/*!40000 ALTER TABLE `wpqj_terms` DISABLE KEYS */;
INSERT INTO `wpqj_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Depression','depression',0),(3,'Weight Loss','weight-loss',0),(4,'weight loss with hypnosis','weight-loss-with-hypnosis',0),(5,'newcastle hypnotherapy','newcastle-hypnotherapy',0),(6,'hypnotherapy for weight loss','hypnotherapy-for-weight-loss',0),(7,'weight managament','weight-managament',0),(8,'hypnotic gastric band','hypnotic-gastric-band',0),(9,'Sleep Improvement','sleep-improvement',0),(10,'insomnia','insomnia',0),(11,'sleep imporvement','sleep-imporvement',0),(12,'hypnotherapy for sleep','hypnotherapy-for-sleep',0),(13,'hypnosis for sleep','hypnosis-for-sleep',0),(14,'Anxiety','anxiety',0),(15,'page','page',0),(17,'Main Menu','main-menu',0),(18,'Events','events',0),(19,'stress','stress',0),(20,'pain','pain',0),(21,'anxiety','anxiety',0),(22,'mind','mind',0),(23,'body','body',0),(24,'spirit','spirit',0),(25,'hypnosis','hypnosis',0),(26,'hypnotherapy','hypnotherapy',0),(27,'the vault','the-vault',0),(28,'health','health',0),(29,'simple','simple',0),(30,'grouped','grouped',0),(31,'variable','variable',0),(32,'external','external',0),(33,'exclude-from-search','exclude-from-search',0),(34,'exclude-from-catalog','exclude-from-catalog',0),(35,'featured','featured',0),(36,'outofstock','outofstock',0),(37,'rated-1','rated-1',0),(38,'rated-2','rated-2',0),(39,'rated-3','rated-3',0),(40,'rated-4','rated-4',0),(41,'rated-5','rated-5',0),(42,'Uncategorised','uncategorised',0),(43,'Accessories','accessories',0),(44,'Hoodies','hoodies',0),(45,'T-shirts','tshirts',0),(46,'Therapy Programs','therapy-programs',0),(48,'The Secret Workshops','the-secret-workshops',0),(49,'Therapy Sessions','therapy-sessions',0),(50,'anxiety breathing excercise video','anxiety-breathing-excercise-video',0),(51,'anxiety hypnosis','anxiety-hypnosis',0),(52,'anxiety symptoms','anxiety-symptoms',0),(53,'anxiety test','anxiety-test',0),(54,'anxiety disorder','anxiety-disorder',0),(55,'anxiety self help','anxiety-self-help',0),(56,'anxiety &amp; stress','anxiety-stress',0),(57,'anxiety NLP skills','anxiety-nlp-skills',0),(58,'anxiety hypnotherapy','anxiety-hypnotherapy',0),(59,'Stress','stress',0),(60,'Hypnosis','hypnosis',0),(61,'milton erikson','milton-erikson',0),(62,'hypnosis benefits','hypnosis-benefits',0),(63,'Digestive Issues','digestive-issues',0),(64,'EFT Tapping','eft-tapping',0),(65,'eft tapping','eft-tapping',0),(66,'depression','depression',0),(67,'woocommerce-db-updates','woocommerce-db-updates',0),(68,'wc-admin-notes','wc-admin-notes',0),(69,'wc_update_product_lookup_tables','wc_update_product_lookup_tables',0),(70,'wc-admin-data','wc-admin-data',0);
/*!40000 ALTER TABLE `wpqj_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_usermeta`
--

DROP TABLE IF EXISTS `wpqj_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=296 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_usermeta`
--

LOCK TABLES `wpqj_usermeta` WRITE;
/*!40000 ALTER TABLE `wpqj_usermeta` DISABLE KEYS */;
INSERT INTO `wpqj_usermeta` VALUES (1,1,'nickname','Mark Morley'),(2,1,'first_name','Test'),(3,1,'last_name','Tes'),(4,1,'description','Mark is a Clinical Hypnotherapist &amp; Hypnotist. A Master Practitioner of Neuro-Linguistic Programming and Director of Newcastle Hypnotherapy.\r\nTo discuss how hypnosis can help you call 07568 455 809  today.'),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'locale',''),(11,1,'wpqj_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(12,1,'wpqj_user_level','10'),(13,1,'dismissed_wp_pointers','wp496_privacy,wc_services_add_service_to_zone,text_widget_custom_html'),(14,1,'show_welcome_panel','0'),(182,1,'session_tokens','a:10:{s:64:\"2d13b0cf435ccba6a8ce0e41a9a9ae3e549c8febf4e722ac21b5cca207a4a1c7\";a:4:{s:10:\"expiration\";i:1569341044;s:2:\"ip\";s:11:\"94.1.85.112\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0\";s:5:\"login\";i:1569168244;}s:64:\"c0ad04ff9b20b05f53644377d4926d832e8509418bbbc8a77a4c6f05d13d4997\";a:4:{s:10:\"expiration\";i:1569343404;s:2:\"ip\";s:12:\"92.10.60.195\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:5:\"login\";i:1569170604;}s:64:\"061e5fa3122ba5836315ec5837611c217bbc6461bd492badc0be85f1bed109f4\";a:4:{s:10:\"expiration\";i:1569344203;s:2:\"ip\";s:12:\"92.10.60.195\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:5:\"login\";i:1569171403;}s:64:\"d2d94e25840e60c7c2abb2dbbb35316ddf06019561f70fe68bd6e446a4517588\";a:4:{s:10:\"expiration\";i:1569344332;s:2:\"ip\";s:12:\"92.10.60.195\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:5:\"login\";i:1569171532;}s:64:\"eaa88faa1f7dfb5806fd06ac62c7ee60f4ac81d07fbe685eddb9cd078214b4eb\";a:4:{s:10:\"expiration\";i:1569349153;s:2:\"ip\";s:12:\"14.98.32.126\";s:2:\"ua\";s:76:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:66.0) Gecko/20100101 Firefox/66.0\";s:5:\"login\";i:1569176353;}s:64:\"a5c05f25faa387c1981e01505ba266a61abb1304142317f039ef6befe328226f\";a:4:{s:10:\"expiration\";i:1569350600;s:2:\"ip\";s:14:\"117.240.93.242\";s:2:\"ua\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0\";s:5:\"login\";i:1569177800;}s:64:\"5af4dc9cc7f1fe11a1044ffcffb53d7c9b97f02d70aac391b84fac201a571623\";a:4:{s:10:\"expiration\";i:1569350987;s:2:\"ip\";s:14:\"117.240.93.242\";s:2:\"ua\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0\";s:5:\"login\";i:1569178187;}s:64:\"57cb826814fcce2ea12f0a5711cece8319b2ea0cce9413f12e99c0e21c1d4f27\";a:4:{s:10:\"expiration\";i:1569351621;s:2:\"ip\";s:14:\"117.240.93.242\";s:2:\"ua\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0\";s:5:\"login\";i:1569178821;}s:64:\"dd7875e753cb1031660e3300c1758a02d6691d9bf7d81bb67cccce88be8bcdec\";a:4:{s:10:\"expiration\";i:1569352661;s:2:\"ip\";s:14:\"117.240.93.242\";s:2:\"ua\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0\";s:5:\"login\";i:1569179861;}s:64:\"3ad51b2bdd1f7fa27f23ca9934e9aca460955cb30769c4b2f8995cf12dbe8920\";a:4:{s:10:\"expiration\";i:1569352885;s:2:\"ip\";s:14:\"117.240.93.242\";s:2:\"ua\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0\";s:5:\"login\";i:1569180085;}}'),(62,1,'googleplus',''),(63,1,'twitter',''),(64,1,'facebook',''),(16,1,'wpqj_dashboard_quick_press_last_post_id','3412'),(17,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"117.240.93.0\";}'),(18,1,'wpqj_user-settings','libraryContent=browse&advImgDetails=show&editor=tinymce&imgsize=full&hidetb=1&post_dfw=off&align=left&editor_plain_text_paste_warning=1'),(19,1,'wpqj_user-settings-time','1561920623'),(20,1,'default_password_nag',''),(21,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(22,1,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(109,1,'jetpack_tracks_anon_id','jetpack:iaNqx7ua3R3r6Wgt+PlD7vra'),(130,1,'jetpack_tracks_wpcom_id','144146808'),(187,1,'closedpostboxes_dashboard','a:0:{}'),(188,1,'metaboxhidden_dashboard','a:0:{}'),(112,1,'dismissed_wootenberg_notice','1'),(114,1,'last_update','1567936920'),(115,1,'billing_first_name','Test'),(116,1,'billing_last_name','Tes'),(117,1,'billing_company','test order 4'),(118,1,'billing_address_1','27 Greystoke Place'),(119,1,'billing_address_2','Test street'),(113,1,'dismissed_template_files_notice','1'),(120,1,'billing_city','Newcastle'),(121,1,'billing_postcode','NE23 6NL'),(122,1,'billing_country','GB'),(123,1,'billing_email','myfreepack@gmail.com'),(124,1,'billing_phone','0980980989'),(24,1,'_yoast_wpseo_profile_updated','1535910367'),(204,1,'shipping_method',''),(25,2,'nickname','InkThemes'),(26,2,'first_name','Ink'),(27,2,'last_name','Themes'),(28,2,'description',''),(29,2,'rich_editing','true'),(30,2,'comment_shortcuts','false'),(31,2,'admin_color','fresh'),(32,2,'use_ssl','0'),(33,2,'show_admin_bar_front','true'),(34,2,'locale',''),(35,2,'wpqj_capabilities','a:0:{}'),(36,2,'wpqj_user_level','0'),(37,2,'_yoast_wpseo_profile_updated','1531487399'),(38,2,'dismissed_wp_pointers',''),(39,2,'wpseo_title',''),(40,2,'wpseo_metadesc',''),(41,2,'wpseo_metakey',''),(42,2,'wpseo_noindex_author',''),(43,2,'wpseo_content_analysis_disable',''),(44,2,'wpseo_keyword_analysis_disable',''),(45,2,'googleplus',''),(46,2,'twitter',''),(47,2,'facebook',''),(48,2,'session_tokens','a:2:{s:64:\"60e8412e93a7451da0ad851952478dbf7adc308b7106c55d4747103966f32d68\";a:4:{s:10:\"expiration\";i:1525262255;s:2:\"ip\";s:13:\"89.249.74.188\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36\";s:5:\"login\";i:1525089455;}s:64:\"fe4c36a1a405e9f9016f2e6aadbb480304ceee737b1ce01f5eec49fcb311dcc0\";a:4:{s:10:\"expiration\";i:1526299944;s:2:\"ip\";s:12:\"103.82.99.19\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36\";s:5:\"login\";i:1525090344;}}'),(49,2,'wpqj_dashboard_quick_press_last_post_id','692'),(51,2,'community-events-location','a:1:{s:2:\"ip\";s:11:\"103.82.99.0\";}'),(52,2,'wpqj_user-settings','editor=tinymce'),(53,2,'wpqj_user-settings-time','1525156205'),(55,1,'wpseo_title',''),(56,1,'wpseo_metadesc',''),(57,1,'wpseo_metakey',''),(58,1,'wpseo_noindex_author',''),(59,1,'wpseo_content_analysis_disable',''),(60,1,'wpseo_keyword_analysis_disable',''),(61,1,'syntax_highlighting','true'),(65,2,'syntax_highlighting','true'),(66,2,'jetpack_tracks_anon_id','jetpack:AGKpV2SyB6k7uvrwkszXmuC5'),(67,2,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(68,2,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(69,1,'nav_menu_recently_edited','17'),(99,3,'twitter',''),(100,3,'facebook',''),(101,1,'wpseo-dismiss-configuration-notice','yes'),(70,1,'arve_dismiss_pro_notice','1'),(71,3,'nickname','Aden'),(72,3,'first_name',''),(73,3,'last_name',''),(74,3,'description',''),(75,3,'rich_editing','true'),(76,3,'syntax_highlighting','true'),(77,3,'comment_shortcuts','false'),(78,3,'admin_color','fresh'),(79,3,'use_ssl','0'),(80,3,'show_admin_bar_front','true'),(81,3,'locale',''),(82,3,'wpqj_capabilities','a:0:{}'),(83,3,'wpqj_user_level','0'),(84,3,'_yoast_wpseo_profile_updated','1531487374'),(85,3,'dismissed_wp_pointers','wp496_privacy,theme_editor_notice'),(93,3,'wpseo_title',''),(94,3,'wpseo_metadesc',''),(95,3,'wpseo_noindex_author',''),(96,3,'wpseo_content_analysis_disable',''),(97,3,'wpseo_keyword_analysis_disable',''),(98,3,'googleplus',''),(87,3,'wpqj_dashboard_quick_press_last_post_id','1001'),(89,3,'community-events-location','a:1:{s:2:\"ip\";s:12:\"86.148.136.0\";}'),(90,3,'arve_dismiss_pro_notice','1'),(91,3,'wpqj_user-settings','editor=html&libraryContent=browse'),(92,3,'wpqj_user-settings-time','1528129592'),(104,1,'closedpostboxes_page','a:1:{i:0;s:9:\"authordiv\";}'),(105,1,'metaboxhidden_page','a:0:{}'),(111,1,'wc_last_active','1569110400'),(283,1,'_woocommerce_tracks_anon_id','woo:PZwQhNMiuTINKOVo4avOZoNk'),(284,1,'wpqj_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:430:\"Yoast SEO and WooCommerce can work together a lot better by adding a helper plugin. Please install Yoast WooCommerce SEO to make your life better. <a href=\"https://yoa.st/1o0?php_version=7.2&platform=wordpress&platform_version=5.2.3&software=free&software_version=12.0&days_active=30plus&user_language=en_GB\" aria-label=\"More information about Yoast WooCommerce SEO\" target=\"_blank\" rel=\"noopener noreferrer\">More information</a>.\";s:7:\"options\";a:9:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:44:\"wpseo-suggested-plugin-yoast-woocommerce-seo\";s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:15:\"install_plugins\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(285,1,'_order_count','2'),(102,1,'wpseo-remove-upsell-notice','1'),(143,1,'closedpostboxes_shop_order','a:0:{}'),(145,1,'paying_customer',''),(144,1,'metaboxhidden_shop_order','a:0:{}'),(281,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(148,1,'current-app_tutorial1-step','2'),(149,1,'app_dismissed_notices','a:1:{i:0;s:8:\"1-7-gcal\";}'),(163,1,'closedpostboxes_product','a:0:{}'),(164,1,'metaboxhidden_product','a:2:{i:0;s:10:\"postcustom\";i:1;s:7:\"slugdiv\";}'),(237,1,'wpqj_wpseo-recalibration-meta-notification','seen'),(228,1,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:143:\"wpforms_reports_widget_lite,dashboard_right_now,dashboard_activity,jetpack_summary_widget,wpseo-dashboard-overview,woocommerce_dashboard_status\";s:4:\"side\";s:58:\"cc_blogging_widget,dashboard_quick_press,dashboard_primary\";s:7:\"column3\";s:0:\"\";s:7:\"column4\";s:0:\"\";}');
/*!40000 ALTER TABLE `wpqj_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_users`
--

DROP TABLE IF EXISTS `wpqj_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_users`
--

LOCK TABLES `wpqj_users` WRITE;
/*!40000 ALTER TABLE `wpqj_users` DISABLE KEYS */;
INSERT INTO `wpqj_users` VALUES (1,'markamorley','$P$BG8RW.9LCzFwtPas3sVrC6g3k2DxFU0','markamorley','myfreepack@gmail.com','','2017-09-27 14:15:59','',0,'Mark'),(2,'InkThemes','$P$BKFVmHxFZ7oYdJrLblJpANBLAPVYJR/','inkthemes','enquiry@inkthemes.com','','2017-11-06 10:05:39','1509962740:$P$BOuwgrgTGIkRbjA2/WLmFxOeDliIFM/',0,'Ink Themes'),(3,'Aden','$P$BbawmKB2LOaScj0czu.XU6Ub79zoNA1','aden','test@test.com','','2018-06-04 15:58:01','1528127881:$P$BagMbip3oU6iSZAqxylleY42iQCiW61',0,'Aden');
/*!40000 ALTER TABLE `wpqj_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_wc_admin_note_actions`
--

DROP TABLE IF EXISTS `wpqj_wc_admin_note_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_wc_admin_note_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `note_id` bigint(20) unsigned NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `query` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_primary` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`action_id`),
  KEY `note_id` (`note_id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_wc_admin_note_actions`
--

LOCK TABLES `wpqj_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wpqj_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wpqj_wc_admin_note_actions` VALUES (1,1,'browse','Browse','https://woocommerce.com/success-stories/','actioned',0),(2,2,'get-started','Get Started','?page=wc-admin&path=/analytics/settings','actioned',1),(3,3,'learn-more','Learn more','https://woocommerce.wordpress.com/','actioned',0),(4,4,'connect','Connect','?page=wc-addons&section=helper','actioned',0),(5,5,'view-report','View report','?page=wc-admin&path=/analytics/revenue&period=custom&compare=previous_year&after=2019-09-13&before=2019-09-13','actioned',0),(6,6,'learn-more','Learn more','https://woocommerce.com/mobile/','actioned',0),(7,7,'share-feedback','Review','https://wordpress.org/support/plugin/woocommerce-admin/reviews/?rate=5#new-post','actioned',0),(8,8,'learn-more','Learn more','https://woocommerce.com/products/facebook/','unactioned',0),(9,8,'install-now','Install now','','actioned',1);
/*!40000 ALTER TABLE `wpqj_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_wc_admin_notes`
--

DROP TABLE IF EXISTS `wpqj_wc_admin_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_wc_admin_notes` (
  `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `locale` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `title` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `icon` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `content_data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_reminder` datetime DEFAULT NULL,
  `is_snoozable` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`note_id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_wc_admin_notes`
--

LOCK TABLES `wpqj_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wpqj_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wpqj_wc_admin_notes` VALUES (1,'wc-admin-orders-milestone','info','en_US','Congratulations on processing 10 orders!','You\'ve hit the 10 orders milestone! Look at you go. Browse some WooCommerce success stories for inspiration.','trophy','{}','unactioned','woocommerce-admin','2019-09-13 12:41:33',NULL,0),(2,'wc-admin-historical-data','update','en_US','WooCommerce Admin: Historical Analytics Data','To view your historical analytics data, you must process your existing orders and customers.','info','{}','unactioned','woocommerce-admin','2019-09-13 12:41:33',NULL,0),(3,'wc-admin-welcome-note','info','en_US','New feature(s)','Welcome to the new WooCommerce experience! In this new release you\'ll be able to have a glimpse of how your store is doing in the Dashboard, manage important aspects of your business (such as managing orders, stock, reviews) from anywhere in the interface, dive into your store data with a completely new Analytics section and more!','info','{}','unactioned','woocommerce-admin','2019-09-13 12:41:33',NULL,0),(4,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','info','{}','unactioned','woocommerce-admin','2019-09-13 12:41:33',NULL,0),(5,'wc-admin-new-sales-record','info','en_US','New sales record!','Woohoo, September 13th was your record day for sales! Net revenue was £45.00 beating the previous record of £15.00 set on September 12th.','trophy','{\"old_record_date\":\"2019-09-12\",\"old_record_amt\":15,\"new_record_date\":\"2019-09-13\",\"new_record_amt\":45}','unactioned','woocommerce-admin','2019-09-14 12:47:34',NULL,0),(6,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.','phone','{}','unactioned','woocommerce-admin','2019-09-15 12:41:59',NULL,0),(7,'wc-admin-store-notice-giving-feedback','info','en_US','Review your experience','If you like WooCommerce Admin please leave us a 5 star rating. A huge thanks in advance!','info','{}','unactioned','woocommerce-admin','2019-09-16 12:49:47',NULL,0),(8,'wc-admin-facebook-extension','info','en_US','Market on Facebook','Grow your business by targeting the right people and driving sales with Facebook. You can install this free extension now.','thumbs-up','{}','unactioned','woocommerce-admin','2019-09-16 12:49:47',NULL,0);
/*!40000 ALTER TABLE `wpqj_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_wc_customer_lookup`
--

DROP TABLE IF EXISTS `wpqj_wc_customer_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_wc_customer_lookup` (
  `customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `username` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `first_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date_last_active` timestamp NULL DEFAULT NULL,
  `date_registered` timestamp NULL DEFAULT NULL,
  `country` char(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `postcode` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `city` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `state` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`customer_id`),
  UNIQUE KEY `user_id` (`user_id`),
  KEY `email` (`email`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_wc_customer_lookup`
--

LOCK TABLES `wpqj_wc_customer_lookup` WRITE;
/*!40000 ALTER TABLE `wpqj_wc_customer_lookup` DISABLE KEYS */;
INSERT INTO `wpqj_wc_customer_lookup` VALUES (1,NULL,'','Tom','Gallagher','tompetergallagher@hotmail.co.uk','2019-09-13 13:09:13',NULL,'GB','TS1 4PX','Middlesbrough','Cleveland'),(2,NULL,'','hilary','sibbald','hilsqjewels@aol.com','2019-09-13 20:15:06',NULL,'GB','DH3 2HB','birtley',''),(3,NULL,'','Katrina','Norman','katrinamnorman@hotmail.com','2019-09-14 12:30:09',NULL,'GB','NE12 9HF','Newcastle',''),(4,NULL,'','Sandra','Kingsley-smith','s.ksmith@btinternet.com','2019-09-17 07:26:17',NULL,'GB','NE27 0FE','Newcastle upon Tyne',''),(5,NULL,'','Lesley','Hollyman','lahollyman@yahoo.com','2019-09-18 06:50:56',NULL,'GB','NE12 9AP','NEWCASTLE UPON TYNE','Newcastle upon Tyne'),(6,1,'markamorley','Test','Tes','myfreepack@gmail.com','0000-00-00 00:00:00','2017-09-27 13:15:59','GB','NE23 6NL','Newcastle','');
/*!40000 ALTER TABLE `wpqj_wc_customer_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_wc_download_log`
--

DROP TABLE IF EXISTS `wpqj_wc_download_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_wc_download_log` (
  `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `permission_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip_address` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_wc_download_log`
--

LOCK TABLES `wpqj_wc_download_log` WRITE;
/*!40000 ALTER TABLE `wpqj_wc_download_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_wc_download_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_wc_order_coupon_lookup`
--

DROP TABLE IF EXISTS `wpqj_wc_order_coupon_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_wc_order_coupon_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `coupon_id` bigint(20) unsigned NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `discount_amount` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_id`,`coupon_id`),
  KEY `coupon_id` (`coupon_id`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_wc_order_coupon_lookup`
--

LOCK TABLES `wpqj_wc_order_coupon_lookup` WRITE;
/*!40000 ALTER TABLE `wpqj_wc_order_coupon_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_wc_order_coupon_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_wc_order_product_lookup`
--

DROP TABLE IF EXISTS `wpqj_wc_order_product_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_wc_order_product_lookup` (
  `order_item_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `variation_id` bigint(20) unsigned NOT NULL,
  `customer_id` bigint(20) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `product_qty` int(11) NOT NULL,
  `product_net_revenue` double NOT NULL DEFAULT 0,
  `product_gross_revenue` double NOT NULL DEFAULT 0,
  `coupon_amount` double NOT NULL DEFAULT 0,
  `tax_amount` double NOT NULL DEFAULT 0,
  `shipping_amount` double NOT NULL DEFAULT 0,
  `shipping_tax_amount` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`),
  KEY `product_id` (`product_id`),
  KEY `customer_id` (`customer_id`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_wc_order_product_lookup`
--

LOCK TABLES `wpqj_wc_order_product_lookup` WRITE;
/*!40000 ALTER TABLE `wpqj_wc_order_product_lookup` DISABLE KEYS */;
INSERT INTO `wpqj_wc_order_product_lookup` VALUES (128,3197,2836,0,1,'2019-09-13 14:09:13',1,15,15,0,0,0,0),(129,3208,2564,0,2,'2019-09-13 21:15:06',1,15,15,0,0,0,0),(130,3208,2628,0,2,'2019-09-13 21:15:06',1,15,15,0,0,0,0),(131,3224,2836,0,3,'2019-09-14 13:30:09',1,15,15,0,0,0,0),(132,3226,2836,0,3,'2019-09-14 13:31:48',1,15,15,0,0,0,0),(133,3289,2836,0,4,'2019-09-17 08:26:17',1,15,15,0,0,0,0),(134,3313,2836,0,4,'2019-09-18 06:34:58',1,15,15,0,0,0,0),(135,3317,2836,0,5,'2019-09-18 07:50:56',1,15,15,0,0,0,0);
/*!40000 ALTER TABLE `wpqj_wc_order_product_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_wc_order_stats`
--

DROP TABLE IF EXISTS `wpqj_wc_order_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_wc_order_stats` (
  `order_id` bigint(20) unsigned NOT NULL,
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `num_items_sold` int(11) NOT NULL DEFAULT 0,
  `gross_total` double NOT NULL DEFAULT 0,
  `tax_total` double NOT NULL DEFAULT 0,
  `shipping_total` double NOT NULL DEFAULT 0,
  `net_total` double NOT NULL DEFAULT 0,
  `returning_customer` tinyint(1) DEFAULT NULL,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `customer_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_id`),
  KEY `date_created` (`date_created`),
  KEY `customer_id` (`customer_id`),
  KEY `status` (`status`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_wc_order_stats`
--

LOCK TABLES `wpqj_wc_order_stats` WRITE;
/*!40000 ALTER TABLE `wpqj_wc_order_stats` DISABLE KEYS */;
INSERT INTO `wpqj_wc_order_stats` VALUES (3197,0,'2019-09-13 14:09:13','2019-09-13 14:09:13',1,15,0,0,15,0,'wc-on-hold',1),(3208,0,'2019-09-13 21:15:06','2019-09-13 21:15:06',2,30,0,0,30,0,'wc-processing',2),(3224,0,'2019-09-14 13:30:09','2019-09-14 13:30:09',1,15,0,0,15,0,'wc-on-hold',3),(3226,0,'2019-09-14 13:31:48','2019-09-14 13:31:48',1,15,0,0,15,1,'wc-processing',3),(3289,0,'2019-09-17 08:26:17','2019-09-17 08:26:17',1,15,0,0,15,0,'wc-cancelled',4),(3313,0,'2019-09-18 06:34:58','2019-09-18 06:34:58',1,15,0,0,15,0,'wc-processing',4),(3317,0,'2019-09-18 07:50:56','2019-09-18 07:50:56',1,15,0,0,15,0,'wc-on-hold',5);
/*!40000 ALTER TABLE `wpqj_wc_order_stats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_wc_order_tax_lookup`
--

DROP TABLE IF EXISTS `wpqj_wc_order_tax_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_wc_order_tax_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `shipping_tax` double NOT NULL DEFAULT 0,
  `order_tax` double NOT NULL DEFAULT 0,
  `total_tax` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_id`,`tax_rate_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_wc_order_tax_lookup`
--

LOCK TABLES `wpqj_wc_order_tax_lookup` WRITE;
/*!40000 ALTER TABLE `wpqj_wc_order_tax_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_wc_order_tax_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_wc_product_meta_lookup`
--

DROP TABLE IF EXISTS `wpqj_wc_product_meta_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_wc_product_meta_lookup` (
  `product_id` bigint(20) NOT NULL,
  `sku` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  `virtual` tinyint(1) DEFAULT 0,
  `downloadable` tinyint(1) DEFAULT 0,
  `min_price` decimal(10,2) DEFAULT NULL,
  `max_price` decimal(10,2) DEFAULT NULL,
  `onsale` tinyint(1) DEFAULT 0,
  `stock_quantity` double DEFAULT NULL,
  `stock_status` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT 'instock',
  `rating_count` bigint(20) DEFAULT 0,
  `average_rating` decimal(3,2) DEFAULT 0.00,
  `total_sales` bigint(20) DEFAULT 0,
  PRIMARY KEY (`product_id`),
  KEY `virtual` (`virtual`),
  KEY `downloadable` (`downloadable`),
  KEY `stock_status` (`stock_status`),
  KEY `stock_quantity` (`stock_quantity`),
  KEY `onsale` (`onsale`),
  KEY `min_max_price` (`min_price`,`max_price`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_wc_product_meta_lookup`
--

LOCK TABLES `wpqj_wc_product_meta_lookup` WRITE;
/*!40000 ALTER TABLE `wpqj_wc_product_meta_lookup` DISABLE KEYS */;
INSERT INTO `wpqj_wc_product_meta_lookup` VALUES (1917,'',0,0,15.00,15.00,0,11,'instock',0,0.00,25),(1591,'HSTV01',1,1,79.00,79.00,0,NULL,'instock',0,0.00,3),(1593,'HSTVX2',1,1,140.00,140.00,0,NULL,'instock',0,0.00,0),(1612,'HSFFTX2',1,1,140.00,140.00,0,NULL,'instock',0,0.00,0),(1614,'HSFFTX1',1,1,79.00,79.00,0,NULL,'instock',0,0.00,0),(1616,'OSX2',1,1,140.00,140.00,0,NULL,'instock',0,0.00,0),(1618,'OSX1',1,1,79.00,79.00,0,NULL,'instock',0,0.00,0),(1635,NULL,0,0,NULL,NULL,0,NULL,NULL,0,0.00,NULL),(1430,'ARP 01',0,0,235.00,235.00,0,NULL,'instock',0,0.00,7),(1548,'',0,0,8.50,8.50,0,NULL,'outofstock',0,0.00,10),(2287,'',0,0,10.00,10.00,0,7,'instock',0,0.00,5),(2454,'',0,0,12.50,12.50,1,NULL,'instock',0,0.00,19),(2564,'',0,0,15.00,15.00,0,13,'instock',0,0.00,12),(2628,'',1,0,15.00,15.00,0,16,'instock',0,0.00,7),(2701,'',0,0,15.00,15.00,0,15,'instock',0,0.00,9),(2732,'',0,0,15.00,15.00,0,13,'instock',0,0.00,10),(2836,'',0,0,15.00,15.00,0,NULL,'instock',0,0.00,12),(2972,'',0,0,12.00,12.00,1,NULL,'instock',0,0.00,7),(3026,'',0,0,12.50,12.50,1,NULL,'instock',0,0.00,4);
/*!40000 ALTER TABLE `wpqj_wc_product_meta_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_wc_tax_rate_classes`
--

DROP TABLE IF EXISTS `wpqj_wc_tax_rate_classes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_wc_tax_rate_classes` (
  `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_class_id`),
  UNIQUE KEY `slug` (`slug`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_wc_tax_rate_classes`
--

LOCK TABLES `wpqj_wc_tax_rate_classes` WRITE;
/*!40000 ALTER TABLE `wpqj_wc_tax_rate_classes` DISABLE KEYS */;
INSERT INTO `wpqj_wc_tax_rate_classes` VALUES (1,'Reduced rate','reduced-rate'),(2,'Zero rate','zero-rate');
/*!40000 ALTER TABLE `wpqj_wc_tax_rate_classes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_wc_webhooks`
--

DROP TABLE IF EXISTS `wpqj_wc_webhooks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_wc_webhooks` (
  `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `delivery_url` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `secret` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `topic` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `api_version` smallint(4) NOT NULL,
  `failure_count` smallint(10) NOT NULL DEFAULT 0,
  `pending_delivery` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`webhook_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_wc_webhooks`
--

LOCK TABLES `wpqj_wc_webhooks` WRITE;
/*!40000 ALTER TABLE `wpqj_wc_webhooks` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_wc_webhooks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_woocommerce_api_keys`
--

DROP TABLE IF EXISTS `wpqj_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `permissions` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `consumer_key` char(64) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `consumer_secret` char(43) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `nonces` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `truncated_key` char(7) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_woocommerce_api_keys`
--

LOCK TABLES `wpqj_woocommerce_api_keys` WRITE;
/*!40000 ALTER TABLE `wpqj_woocommerce_api_keys` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_woocommerce_api_keys` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_woocommerce_attribute_taxonomies`
--

DROP TABLE IF EXISTS `wpqj_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_label` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `attribute_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_woocommerce_attribute_taxonomies`
--

LOCK TABLES `wpqj_woocommerce_attribute_taxonomies` WRITE;
/*!40000 ALTER TABLE `wpqj_woocommerce_attribute_taxonomies` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_woocommerce_attribute_taxonomies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_woocommerce_downloadable_product_permissions`
--

DROP TABLE IF EXISTS `wpqj_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(36) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `order_key` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_email` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`permission_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
  KEY `order_id` (`order_id`),
  KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_woocommerce_downloadable_product_permissions`
--

LOCK TABLES `wpqj_woocommerce_downloadable_product_permissions` WRITE;
/*!40000 ALTER TABLE `wpqj_woocommerce_downloadable_product_permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_woocommerce_downloadable_product_permissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_woocommerce_log`
--

DROP TABLE IF EXISTS `wpqj_woocommerce_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_woocommerce_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `level` smallint(4) NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `message` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `context` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_woocommerce_log`
--

LOCK TABLES `wpqj_woocommerce_log` WRITE;
/*!40000 ALTER TABLE `wpqj_woocommerce_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_woocommerce_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_woocommerce_order_itemmeta`
--

DROP TABLE IF EXISTS `wpqj_woocommerce_order_itemmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_woocommerce_order_itemmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `order_item_id` (`order_item_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=MyISAM AUTO_INCREMENT=1240 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_woocommerce_order_itemmeta`
--

LOCK TABLES `wpqj_woocommerce_order_itemmeta` WRITE;
/*!40000 ALTER TABLE `wpqj_woocommerce_order_itemmeta` DISABLE KEYS */;
INSERT INTO `wpqj_woocommerce_order_itemmeta` VALUES (221,27,'_product_id','1773'),(220,26,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(219,26,'_line_tax','0'),(218,26,'_line_total','8.5'),(217,26,'_line_subtotal_tax','0'),(212,26,'_product_id','1773'),(213,26,'_variation_id','0'),(214,26,'_qty','1'),(215,26,'_tax_class','zero-rate'),(216,26,'_line_subtotal','8.5'),(227,27,'_line_total','8.5'),(226,27,'_line_subtotal_tax','0'),(222,27,'_variation_id','0'),(223,27,'_qty','1'),(224,27,'_tax_class','zero-rate'),(225,27,'_line_subtotal','8.5'),(232,28,'_qty','1'),(231,28,'_variation_id','0'),(230,28,'_product_id','1773'),(228,27,'_line_tax','0'),(229,27,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(238,28,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(237,28,'_line_tax','0'),(236,28,'_line_total','8.5'),(233,28,'_tax_class','zero-rate'),(234,28,'_line_subtotal','8.5'),(235,28,'_line_subtotal_tax','0'),(383,44,'_tax_class','zero-rate'),(382,44,'_qty','1'),(381,44,'_variation_id','0'),(380,44,'_product_id','2287'),(379,43,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(378,43,'_line_tax','0'),(374,43,'_tax_class','zero-rate'),(375,43,'_line_subtotal','10'),(376,43,'_line_subtotal_tax','0'),(377,43,'_line_total','10'),(372,43,'_variation_id','0'),(373,43,'_qty','1'),(370,42,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(371,43,'_product_id','2287'),(64,8,'_product_id','1548'),(65,8,'_variation_id','0'),(66,8,'_qty','1'),(67,8,'_tax_class',''),(68,8,'_line_subtotal','8.5'),(69,8,'_line_subtotal_tax','0'),(70,8,'_line_total','8.5'),(71,8,'_line_tax','0'),(72,8,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(73,9,'_product_id','1548'),(74,9,'_variation_id','0'),(75,9,'_qty','1'),(76,9,'_tax_class',''),(77,9,'_line_subtotal','8.5'),(78,9,'_line_subtotal_tax','0'),(79,9,'_line_total','8.5'),(80,9,'_line_tax','0'),(81,9,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(82,10,'_product_id','1548'),(83,10,'_variation_id','0'),(84,10,'_qty','2'),(85,10,'_tax_class',''),(86,10,'_line_subtotal','17'),(87,10,'_line_subtotal_tax','0'),(88,10,'_line_total','17'),(89,10,'_line_tax','0'),(90,10,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(91,11,'_product_id','1548'),(92,11,'_variation_id','0'),(93,11,'_qty','1'),(94,11,'_tax_class',''),(95,11,'_line_subtotal','8.5'),(96,11,'_line_subtotal_tax','0'),(97,11,'_line_total','8.5'),(98,11,'_line_tax','0'),(99,11,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(399,46,'_product_id','2287'),(398,45,'_reduced_stock','1'),(397,45,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(396,45,'_line_tax','0'),(395,45,'_line_total','10'),(394,45,'_line_subtotal_tax','0'),(393,45,'_line_subtotal','10'),(392,45,'_tax_class','reduced-rate'),(391,45,'_qty','1'),(389,45,'_product_id','1917'),(390,45,'_variation_id','0'),(408,46,'_reduced_stock','1'),(407,46,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(406,46,'_line_tax','0'),(404,46,'_line_subtotal_tax','0'),(405,46,'_line_total','10'),(403,46,'_line_subtotal','10'),(402,46,'_tax_class','zero-rate'),(400,46,'_variation_id','0'),(401,46,'_qty','1'),(415,47,'_line_total','10'),(414,47,'_line_subtotal_tax','0'),(413,47,'_line_subtotal','10'),(412,47,'_tax_class','reduced-rate'),(411,47,'_qty','1'),(409,47,'_product_id','1917'),(410,47,'_variation_id','0'),(137,17,'_product_id','1548'),(138,17,'_variation_id','0'),(139,17,'_qty','1'),(140,17,'_tax_class',''),(141,17,'_line_subtotal','8.5'),(142,17,'_line_subtotal_tax','0'),(143,17,'_line_total','8.5'),(144,17,'_line_tax','0'),(145,17,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(447,50,'_reduced_stock','1'),(446,50,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(445,50,'_line_tax','0'),(444,50,'_line_total','10'),(443,50,'_line_subtotal_tax','0'),(442,50,'_line_subtotal','10'),(441,50,'_tax_class','reduced-rate'),(416,47,'_line_tax','0'),(417,47,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(418,47,'_reduced_stock','1'),(419,48,'_product_id','2287'),(420,48,'_variation_id','0'),(421,48,'_qty','1'),(422,48,'_tax_class','zero-rate'),(423,48,'_line_subtotal','10'),(424,48,'_line_subtotal_tax','0'),(425,48,'_line_total','10'),(426,48,'_line_tax','0'),(427,48,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(428,48,'_reduced_stock','1'),(429,49,'_product_id','2454'),(430,49,'_variation_id','0'),(431,49,'_qty','1'),(432,49,'_tax_class','zero-rate'),(433,49,'_line_subtotal','10'),(434,49,'_line_subtotal_tax','0'),(435,49,'_line_total','10'),(436,49,'_line_tax','0'),(437,49,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(438,50,'_product_id','1917'),(439,50,'_variation_id','0'),(440,50,'_qty','1'),(167,21,'_product_id','1773'),(168,21,'_variation_id','0'),(169,21,'_qty','1'),(170,21,'_tax_class','zero-rate'),(171,21,'_line_subtotal','8.5'),(172,21,'_line_subtotal_tax','0'),(173,21,'_line_total','8.5'),(174,21,'_line_tax','0'),(175,21,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(176,22,'_product_id','1773'),(177,22,'_variation_id','0'),(178,22,'_qty','1'),(179,22,'_tax_class','zero-rate'),(180,22,'_line_subtotal','8.5'),(181,22,'_line_subtotal_tax','0'),(182,22,'_line_total','8.5'),(183,22,'_line_tax','0'),(184,22,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(185,23,'_product_id','1548'),(186,23,'_variation_id','0'),(187,23,'_qty','1'),(188,23,'_tax_class',''),(189,23,'_line_subtotal','8.5'),(190,23,'_line_subtotal_tax','0'),(191,23,'_line_total','8.5'),(192,23,'_line_tax','0'),(193,23,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(194,24,'_product_id','1773'),(195,24,'_variation_id','0'),(196,24,'_qty','1'),(197,24,'_tax_class','zero-rate'),(198,24,'_line_subtotal','8.5'),(199,24,'_line_subtotal_tax','0'),(200,24,'_line_total','8.5'),(201,24,'_line_tax','0'),(202,24,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(203,25,'_product_id','1773'),(204,25,'_variation_id','0'),(205,25,'_qty','1'),(206,25,'_tax_class','zero-rate'),(207,25,'_line_subtotal','8.5'),(208,25,'_line_subtotal_tax','0'),(209,25,'_line_total','8.5'),(210,25,'_line_tax','0'),(211,25,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(388,44,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(384,44,'_line_subtotal','10'),(385,44,'_line_subtotal_tax','0'),(386,44,'_line_total','10'),(387,44,'_line_tax','0'),(278,33,'_product_id','1917'),(279,33,'_variation_id','0'),(280,33,'_qty','2'),(281,33,'_tax_class','reduced-rate'),(282,33,'_line_subtotal','20'),(283,33,'_line_subtotal_tax','0'),(284,33,'_line_total','20'),(285,33,'_line_tax','0'),(286,33,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(287,33,'_reduced_stock','2'),(288,34,'_product_id','1548'),(289,34,'_variation_id','0'),(290,34,'_qty','1'),(291,34,'_tax_class',''),(292,34,'_line_subtotal','8.5'),(293,34,'_line_subtotal_tax','0'),(294,34,'_line_total','8.5'),(295,34,'_line_tax','0'),(296,34,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(369,42,'_line_tax','0'),(368,42,'_line_total','10'),(367,42,'_line_subtotal_tax','0'),(366,42,'_line_subtotal','10'),(365,42,'_tax_class','zero-rate'),(364,42,'_qty','1'),(362,42,'_product_id','2287'),(363,42,'_variation_id','0'),(306,36,'_product_id','1548'),(307,36,'_variation_id','0'),(308,36,'_qty','2'),(309,36,'_tax_class',''),(310,36,'_line_subtotal','17'),(311,36,'_line_subtotal_tax','0'),(312,36,'_line_total','17'),(313,36,'_line_tax','0'),(314,36,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(315,37,'_product_id','1917'),(316,37,'_variation_id','0'),(317,37,'_qty','2'),(318,37,'_tax_class','reduced-rate'),(319,37,'_line_subtotal','20'),(320,37,'_line_subtotal_tax','0'),(321,37,'_line_total','20'),(322,37,'_line_tax','0'),(323,37,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(324,37,'_reduced_stock','2'),(325,38,'_product_id','1548'),(326,38,'_variation_id','0'),(327,38,'_qty','1'),(328,38,'_tax_class',''),(329,38,'_line_subtotal','8.5'),(330,38,'_line_subtotal_tax','0'),(331,38,'_line_total','8.5'),(332,38,'_line_tax','0'),(333,38,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(334,39,'_product_id','1548'),(335,39,'_variation_id','0'),(336,39,'_qty','1'),(337,39,'_tax_class',''),(338,39,'_line_subtotal','8.5'),(339,39,'_line_subtotal_tax','0'),(340,39,'_line_total','8.5'),(341,39,'_line_tax','0'),(342,39,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(359,41,'_line_tax','0'),(358,41,'_line_total','10'),(357,41,'_line_subtotal_tax','0'),(356,41,'_line_subtotal','10'),(355,41,'_tax_class','reduced-rate'),(354,41,'_qty','1'),(352,41,'_product_id','1917'),(353,41,'_variation_id','0'),(360,41,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(361,41,'_reduced_stock','1'),(448,51,'_product_id','2454'),(449,51,'_variation_id','0'),(450,51,'_qty','1'),(451,51,'_tax_class','zero-rate'),(452,51,'_line_subtotal','10'),(453,51,'_line_subtotal_tax','0'),(454,51,'_line_total','10'),(455,51,'_line_tax','0'),(456,51,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(457,52,'_product_id','2454'),(458,52,'_variation_id','0'),(459,52,'_qty','1'),(460,52,'_tax_class','zero-rate'),(461,52,'_line_subtotal','10'),(462,52,'_line_subtotal_tax','0'),(463,52,'_line_total','10'),(464,52,'_line_tax','0'),(465,52,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(466,53,'_product_id','2454'),(467,53,'_variation_id','0'),(468,53,'_qty','2'),(469,53,'_tax_class','zero-rate'),(470,53,'_line_subtotal','20'),(471,53,'_line_subtotal_tax','0'),(472,53,'_line_total','20'),(473,53,'_line_tax','0'),(474,53,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(475,54,'_product_id','2454'),(476,54,'_variation_id','0'),(477,54,'_qty','1'),(478,54,'_tax_class','zero-rate'),(479,54,'_line_subtotal','10'),(480,54,'_line_subtotal_tax','0'),(481,54,'_line_total','10'),(482,54,'_line_tax','0'),(483,54,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(484,55,'_product_id','2454'),(485,55,'_variation_id','0'),(486,55,'_qty','2'),(487,55,'_tax_class','zero-rate'),(488,55,'_line_subtotal','20'),(489,55,'_line_subtotal_tax','0'),(490,55,'_line_total','20'),(491,55,'_line_tax','0'),(492,55,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(493,56,'_product_id','1917'),(494,56,'_variation_id','0'),(495,56,'_qty','1'),(496,56,'_tax_class','reduced-rate'),(497,56,'_line_subtotal','10'),(498,56,'_line_subtotal_tax','0'),(499,56,'_line_total','10'),(500,56,'_line_tax','0'),(501,56,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(502,56,'_reduced_stock','1'),(503,57,'_product_id','1917'),(504,57,'_variation_id','0'),(505,57,'_qty','1'),(506,57,'_tax_class','reduced-rate'),(507,57,'_line_subtotal','10'),(508,57,'_line_subtotal_tax','0'),(509,57,'_line_total','10'),(510,57,'_line_tax','0'),(511,57,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(512,57,'_reduced_stock','1'),(513,58,'_product_id','1917'),(514,58,'_variation_id','0'),(515,58,'_qty','1'),(516,58,'_tax_class','reduced-rate'),(517,58,'_line_subtotal','10'),(518,58,'_line_subtotal_tax','0'),(519,58,'_line_total','10'),(520,58,'_line_tax','0'),(521,58,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(522,58,'_reduced_stock','1'),(523,59,'_product_id','1917'),(524,59,'_variation_id','0'),(525,59,'_qty','1'),(526,59,'_tax_class','reduced-rate'),(527,59,'_line_subtotal','10'),(528,59,'_line_subtotal_tax','0'),(529,59,'_line_total','10'),(530,59,'_line_tax','0'),(531,59,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(532,59,'_reduced_stock','1'),(533,60,'_product_id','1917'),(534,60,'_variation_id','0'),(535,60,'_qty','1'),(536,60,'_tax_class','reduced-rate'),(537,60,'_line_subtotal','10'),(538,60,'_line_subtotal_tax','0'),(539,60,'_line_total','10'),(540,60,'_line_tax','0'),(541,60,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(542,60,'_reduced_stock','1'),(543,61,'_product_id','1917'),(544,61,'_variation_id','0'),(545,61,'_qty','1'),(546,61,'_tax_class','reduced-rate'),(547,61,'_line_subtotal','10'),(548,61,'_line_subtotal_tax','0'),(549,61,'_line_total','10'),(550,61,'_line_tax','0'),(551,61,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(552,61,'_reduced_stock','1'),(569,63,'_line_tax','0'),(568,63,'_line_total','10'),(567,63,'_line_subtotal_tax','0'),(566,63,'_line_subtotal','10'),(565,63,'_tax_class','reduced-rate'),(564,63,'_qty','1'),(562,63,'_product_id','1917'),(563,63,'_variation_id','0'),(570,63,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(571,63,'_reduced_stock','1'),(572,64,'_product_id','2454'),(573,64,'_variation_id','0'),(574,64,'_qty','1'),(575,64,'_tax_class','zero-rate'),(576,64,'_line_subtotal','10'),(577,64,'_line_subtotal_tax','0'),(578,64,'_line_total','10'),(579,64,'_line_tax','0'),(580,64,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(581,65,'_product_id','2564'),(582,65,'_variation_id','0'),(583,65,'_qty','1'),(584,65,'_tax_class',''),(585,65,'_line_subtotal','10'),(586,65,'_line_subtotal_tax','2'),(587,65,'_line_total','10'),(588,65,'_line_tax','2'),(589,65,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:2;s:1:\"2\";}s:8:\"subtotal\";a:1:{i:2;s:1:\"2\";}}'),(590,66,'rate_id','2'),(591,66,'label','Tax'),(592,66,'compound',''),(593,66,'tax_amount','2'),(594,66,'shipping_tax_amount','0'),(595,65,'_reduced_stock','1'),(596,67,'_product_id','2454'),(597,67,'_variation_id','0'),(598,67,'_qty','1'),(599,67,'_tax_class','zero-rate'),(600,67,'_line_subtotal','10'),(601,67,'_line_subtotal_tax','0'),(602,67,'_line_total','10'),(603,67,'_line_tax','0'),(604,67,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(605,68,'_product_id','2454'),(606,68,'_variation_id','0'),(607,68,'_qty','1'),(608,68,'_tax_class','zero-rate'),(609,68,'_line_subtotal','10'),(610,68,'_line_subtotal_tax','0'),(611,68,'_line_total','10'),(612,68,'_line_tax','0'),(613,68,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(614,69,'_product_id','2564'),(615,69,'_variation_id','0'),(616,69,'_qty','1'),(617,69,'_tax_class','zero-rate'),(618,69,'_line_subtotal','10'),(619,69,'_line_subtotal_tax','0'),(620,69,'_line_total','10'),(621,69,'_line_tax','0'),(622,69,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(623,69,'_reduced_stock','1'),(624,70,'_product_id','2564'),(625,70,'_variation_id','0'),(626,70,'_qty','1'),(627,70,'_tax_class','zero-rate'),(628,70,'_line_subtotal','10'),(629,70,'_line_subtotal_tax','0'),(630,70,'_line_total','10'),(631,70,'_line_tax','0'),(632,70,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(633,70,'_reduced_stock','1'),(634,71,'_product_id','2564'),(635,71,'_variation_id','0'),(636,71,'_qty','1'),(637,71,'_tax_class','zero-rate'),(638,71,'_line_subtotal','10'),(639,71,'_line_subtotal_tax','0'),(640,71,'_line_total','10'),(641,71,'_line_tax','0'),(642,71,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(643,71,'_reduced_stock','1'),(644,72,'_product_id','2564'),(645,72,'_variation_id','0'),(646,72,'_qty','1'),(647,72,'_tax_class','zero-rate'),(648,72,'_line_subtotal','10'),(649,72,'_line_subtotal_tax','0'),(650,72,'_line_total','10'),(651,72,'_line_tax','0'),(652,72,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(653,72,'_reduced_stock','1'),(654,73,'_product_id','2564'),(655,73,'_variation_id','0'),(656,73,'_qty','1'),(657,73,'_tax_class','zero-rate'),(658,73,'_line_subtotal','10'),(659,73,'_line_subtotal_tax','0'),(660,73,'_line_total','10'),(661,73,'_line_tax','0'),(662,73,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(663,73,'_reduced_stock','1'),(664,74,'_product_id','2564'),(665,74,'_variation_id','0'),(666,74,'_qty','1'),(667,74,'_tax_class','zero-rate'),(668,74,'_line_subtotal','10'),(669,74,'_line_subtotal_tax','0'),(670,74,'_line_total','10'),(671,74,'_line_tax','0'),(672,74,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(673,74,'_reduced_stock','1'),(674,75,'_product_id','2564'),(675,75,'_variation_id','0'),(676,75,'_qty','1'),(677,75,'_tax_class','zero-rate'),(678,75,'_line_subtotal','10'),(679,75,'_line_subtotal_tax','0'),(680,75,'_line_total','10'),(681,75,'_line_tax','0'),(682,75,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(683,75,'_reduced_stock','1'),(684,76,'_product_id','2628'),(685,76,'_variation_id','0'),(686,76,'_qty','1'),(687,76,'_tax_class','zero-rate'),(688,76,'_line_subtotal','10'),(689,76,'_line_subtotal_tax','0'),(690,76,'_line_total','10'),(691,76,'_line_tax','0'),(692,76,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(693,76,'_reduced_stock','1'),(694,77,'_product_id','2628'),(695,77,'_variation_id','0'),(696,77,'_qty','2'),(697,77,'_tax_class','zero-rate'),(698,77,'_line_subtotal','20'),(699,77,'_line_subtotal_tax','0'),(700,77,'_line_total','20'),(701,77,'_line_tax','0'),(702,77,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(703,77,'_reduced_stock','2'),(704,78,'_product_id','1917'),(705,78,'_variation_id','0'),(706,78,'_qty','2'),(707,78,'_tax_class','zero-rate'),(708,78,'_line_subtotal','20'),(709,78,'_line_subtotal_tax','0'),(710,78,'_line_total','20'),(711,78,'_line_tax','0'),(712,78,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(713,78,'_reduced_stock','2'),(714,79,'_product_id','2628'),(715,79,'_variation_id','0'),(716,79,'_qty','1'),(717,79,'_tax_class','zero-rate'),(718,79,'_line_subtotal','10'),(719,79,'_line_subtotal_tax','0'),(720,79,'_line_total','10'),(721,79,'_line_tax','0'),(722,79,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(723,79,'_reduced_stock','1'),(724,80,'_product_id','2628'),(725,80,'_variation_id','0'),(726,80,'_qty','1'),(727,80,'_tax_class','zero-rate'),(728,80,'_line_subtotal','10'),(729,80,'_line_subtotal_tax','0'),(730,80,'_line_total','10'),(731,80,'_line_tax','0'),(732,80,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(733,80,'_reduced_stock','1'),(734,81,'_product_id','2628'),(735,81,'_variation_id','0'),(736,81,'_qty','1'),(737,81,'_tax_class','zero-rate'),(738,81,'_line_subtotal','10'),(739,81,'_line_subtotal_tax','0'),(740,81,'_line_total','10'),(741,81,'_line_tax','0'),(742,81,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(743,81,'_reduced_stock','1'),(744,82,'_product_id','1917'),(745,82,'_variation_id','0'),(746,82,'_qty','1'),(747,82,'_tax_class','zero-rate'),(748,82,'_line_subtotal','10'),(749,82,'_line_subtotal_tax','0'),(750,82,'_line_total','10'),(751,82,'_line_tax','0'),(752,82,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(753,82,'_reduced_stock','1'),(754,83,'_product_id','1917'),(755,83,'_variation_id','0'),(756,83,'_qty','1'),(757,83,'_tax_class','zero-rate'),(758,83,'_line_subtotal','10'),(759,83,'_line_subtotal_tax','0'),(760,83,'_line_total','10'),(761,83,'_line_tax','0'),(762,83,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(763,83,'_reduced_stock','1'),(764,84,'_product_id','2454'),(765,84,'_variation_id','0'),(766,84,'_qty','1'),(767,84,'_tax_class','zero-rate'),(768,84,'_line_subtotal','10'),(769,84,'_line_subtotal_tax','0'),(770,84,'_line_total','10'),(771,84,'_line_tax','0'),(772,84,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(773,84,'_reduced_stock','1'),(774,85,'_product_id','2701'),(775,85,'_variation_id','0'),(776,85,'_qty','2'),(777,85,'_tax_class','zero-rate'),(778,85,'_line_subtotal','20'),(779,85,'_line_subtotal_tax','0'),(780,85,'_line_total','20'),(781,85,'_line_tax','0'),(782,85,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(783,85,'_reduced_stock','2'),(784,86,'_product_id','2701'),(785,86,'_variation_id','0'),(786,86,'_qty','1'),(787,86,'_tax_class','zero-rate'),(788,86,'_line_subtotal','10'),(789,86,'_line_subtotal_tax','0'),(790,86,'_line_total','10'),(791,86,'_line_tax','0'),(792,86,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(793,86,'_reduced_stock','1'),(794,87,'_product_id','2701'),(795,87,'_variation_id','0'),(796,87,'_qty','1'),(797,87,'_tax_class','zero-rate'),(798,87,'_line_subtotal','10'),(799,87,'_line_subtotal_tax','0'),(800,87,'_line_total','10'),(801,87,'_line_tax','0'),(802,87,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(803,87,'_reduced_stock','1'),(804,88,'_product_id','2701'),(805,88,'_variation_id','0'),(806,88,'_qty','2'),(807,88,'_tax_class','zero-rate'),(808,88,'_line_subtotal','20'),(809,88,'_line_subtotal_tax','0'),(810,88,'_line_total','20'),(811,88,'_line_tax','0'),(812,88,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(813,89,'_product_id','2701'),(814,89,'_variation_id','0'),(815,89,'_qty','1'),(816,89,'_tax_class','zero-rate'),(817,89,'_line_subtotal','10'),(818,89,'_line_subtotal_tax','0'),(819,89,'_line_total','10'),(820,89,'_line_tax','0'),(821,89,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(822,90,'_product_id','2701'),(823,90,'_variation_id','0'),(824,90,'_qty','2'),(825,90,'_tax_class','zero-rate'),(826,90,'_line_subtotal','20'),(827,90,'_line_subtotal_tax','0'),(828,90,'_line_total','20'),(829,90,'_line_tax','0'),(830,90,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(831,91,'_product_id','2454'),(832,91,'_variation_id','0'),(833,91,'_qty','1'),(834,91,'_tax_class','zero-rate'),(835,91,'_line_subtotal','10'),(836,91,'_line_subtotal_tax','0'),(837,91,'_line_total','10'),(838,91,'_line_tax','0'),(839,91,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(840,92,'_product_id','2732'),(841,92,'_variation_id','0'),(842,92,'_qty','1'),(843,92,'_tax_class','zero-rate'),(844,92,'_line_subtotal','10'),(845,92,'_line_subtotal_tax','0'),(846,92,'_line_total','10'),(847,92,'_line_tax','0'),(848,92,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(849,93,'_product_id','2732'),(850,93,'_variation_id','0'),(851,93,'_qty','1'),(852,93,'_tax_class','zero-rate'),(853,93,'_line_subtotal','10'),(854,93,'_line_subtotal_tax','0'),(855,93,'_line_total','10'),(856,93,'_line_tax','0'),(857,93,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(858,94,'_product_id','2732'),(859,94,'_variation_id','0'),(860,94,'_qty','2'),(861,94,'_tax_class','zero-rate'),(862,94,'_line_subtotal','20'),(863,94,'_line_subtotal_tax','0'),(864,94,'_line_total','20'),(865,94,'_line_tax','0'),(866,94,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(867,95,'_product_id','2732'),(868,95,'_variation_id','0'),(869,95,'_qty','1'),(870,95,'_tax_class','zero-rate'),(871,95,'_line_subtotal','10'),(872,95,'_line_subtotal_tax','0'),(873,95,'_line_total','10'),(874,95,'_line_tax','0'),(875,95,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(876,96,'_product_id','2732'),(877,96,'_variation_id','0'),(878,96,'_qty','1'),(879,96,'_tax_class','zero-rate'),(880,96,'_line_subtotal','10'),(881,96,'_line_subtotal_tax','0'),(882,96,'_line_total','10'),(883,96,'_line_tax','0'),(884,96,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(885,97,'_product_id','2732'),(886,97,'_variation_id','0'),(887,97,'_qty','1'),(888,97,'_tax_class','zero-rate'),(889,97,'_line_subtotal','10'),(890,97,'_line_subtotal_tax','0'),(891,97,'_line_total','10'),(892,97,'_line_tax','0'),(893,97,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(894,98,'_product_id','2732'),(895,98,'_variation_id','0'),(896,98,'_qty','2'),(897,98,'_tax_class','zero-rate'),(898,98,'_line_subtotal','20'),(899,98,'_line_subtotal_tax','0'),(900,98,'_line_total','20'),(901,98,'_line_tax','0'),(902,98,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(903,99,'_product_id','2732'),(904,99,'_variation_id','0'),(905,99,'_qty','1'),(906,99,'_tax_class','zero-rate'),(907,99,'_line_subtotal','10'),(908,99,'_line_subtotal_tax','0'),(909,99,'_line_total','10'),(910,99,'_line_tax','0'),(911,99,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(912,100,'_product_id','2732'),(913,100,'_variation_id','0'),(914,100,'_qty','2'),(915,100,'_tax_class','zero-rate'),(916,100,'_line_subtotal','20'),(917,100,'_line_subtotal_tax','0'),(918,100,'_line_total','20'),(919,100,'_line_tax','0'),(920,100,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(921,101,'_product_id','2836'),(922,101,'_variation_id','0'),(923,101,'_qty','1'),(924,101,'_tax_class','zero-rate'),(925,101,'_line_subtotal','10'),(926,101,'_line_subtotal_tax','0'),(927,101,'_line_total','10'),(928,101,'_line_tax','0'),(929,101,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(930,102,'_product_id','2732'),(931,102,'_variation_id','0'),(932,102,'_qty','1'),(933,102,'_tax_class','zero-rate'),(934,102,'_line_subtotal','15'),(935,102,'_line_subtotal_tax','0'),(936,102,'_line_total','15'),(937,102,'_line_tax','0'),(938,102,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(939,103,'_product_id','2836'),(940,103,'_variation_id','0'),(941,103,'_qty','1'),(942,103,'_tax_class','zero-rate'),(943,103,'_line_subtotal','10'),(944,103,'_line_subtotal_tax','0'),(945,103,'_line_total','10'),(946,103,'_line_tax','0'),(947,103,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(948,104,'_product_id','2836'),(949,104,'_variation_id','0'),(950,104,'_qty','2'),(951,104,'_tax_class','zero-rate'),(952,104,'_line_subtotal','20'),(953,104,'_line_subtotal_tax','0'),(954,104,'_line_total','20'),(955,104,'_line_tax','0'),(956,104,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(957,105,'_product_id','2836'),(958,105,'_variation_id','0'),(959,105,'_qty','1'),(960,105,'_tax_class','zero-rate'),(961,105,'_line_subtotal','15'),(962,105,'_line_subtotal_tax','0'),(963,105,'_line_total','15'),(964,105,'_line_tax','0'),(965,105,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(966,106,'_product_id','2564'),(967,106,'_variation_id','0'),(968,106,'_qty','2'),(969,106,'_tax_class','zero-rate'),(970,106,'_line_subtotal','58'),(971,106,'_line_subtotal_tax','0'),(972,106,'_line_total','58'),(973,106,'_line_tax','0'),(974,106,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(975,106,'_reduced_stock','2'),(976,107,'_product_id','2972'),(977,107,'_variation_id','0'),(978,107,'_qty','1'),(979,107,'_tax_class','zero-rate'),(980,107,'_line_subtotal','12'),(981,107,'_line_subtotal_tax','0'),(982,107,'_line_total','12'),(983,107,'_line_tax','0'),(984,107,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(985,108,'_product_id','2972'),(986,108,'_variation_id','0'),(987,108,'_qty','1'),(988,108,'_tax_class','zero-rate'),(989,108,'_line_subtotal','12'),(990,108,'_line_subtotal_tax','0'),(991,108,'_line_total','12'),(992,108,'_line_tax','0'),(993,108,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(994,109,'_product_id','2972'),(995,109,'_variation_id','0'),(996,109,'_qty','1'),(997,109,'_tax_class','zero-rate'),(998,109,'_line_subtotal','12'),(999,109,'_line_subtotal_tax','0'),(1000,109,'_line_total','12'),(1001,109,'_line_tax','0'),(1002,109,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1003,110,'_product_id','2564'),(1004,110,'_variation_id','0'),(1005,110,'_qty','1'),(1006,110,'_tax_class','zero-rate'),(1007,110,'_line_subtotal','29'),(1008,110,'_line_subtotal_tax','0'),(1009,110,'_line_total','29'),(1010,110,'_line_tax','0'),(1011,110,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1012,110,'_reduced_stock','1'),(1013,111,'_product_id','2972'),(1014,111,'_variation_id','0'),(1015,111,'_qty','1'),(1016,111,'_tax_class','zero-rate'),(1017,111,'_line_subtotal','12'),(1018,111,'_line_subtotal_tax','0'),(1019,111,'_line_total','12'),(1020,111,'_line_tax','0'),(1021,111,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1022,112,'_product_id','2972'),(1023,112,'_variation_id','0'),(1024,112,'_qty','1'),(1025,112,'_tax_class','zero-rate'),(1026,112,'_line_subtotal','12'),(1027,112,'_line_subtotal_tax','0'),(1028,112,'_line_total','12'),(1029,112,'_line_tax','0'),(1030,112,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1031,113,'_product_id','2972'),(1032,113,'_variation_id','0'),(1033,113,'_qty','1'),(1034,113,'_tax_class','zero-rate'),(1035,113,'_line_subtotal','12'),(1036,113,'_line_subtotal_tax','0'),(1037,113,'_line_total','12'),(1038,113,'_line_tax','0'),(1039,113,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1040,114,'_product_id','2972'),(1041,114,'_variation_id','0'),(1042,114,'_qty','1'),(1043,114,'_tax_class','zero-rate'),(1044,114,'_line_subtotal','12'),(1045,114,'_line_subtotal_tax','0'),(1046,114,'_line_total','12'),(1047,114,'_line_tax','0'),(1048,114,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1049,115,'_product_id','3026'),(1050,115,'_variation_id','0'),(1051,115,'_qty','1'),(1052,115,'_tax_class','zero-rate'),(1053,115,'_line_subtotal','12'),(1054,115,'_line_subtotal_tax','0'),(1055,115,'_line_total','12'),(1056,115,'_line_tax','0'),(1057,115,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1058,116,'_product_id','3026'),(1059,116,'_variation_id','0'),(1060,116,'_qty','1'),(1061,116,'_tax_class','zero-rate'),(1062,116,'_line_subtotal','12'),(1063,116,'_line_subtotal_tax','0'),(1064,116,'_line_total','12'),(1065,116,'_line_tax','0'),(1066,116,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1067,117,'_product_id','2454'),(1068,117,'_variation_id','0'),(1069,117,'_qty','1'),(1070,117,'_tax_class','zero-rate'),(1071,117,'_line_subtotal','12.5'),(1072,117,'_line_subtotal_tax','0'),(1073,117,'_line_total','12.5'),(1074,117,'_line_tax','0'),(1075,117,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1076,118,'_product_id','3026'),(1077,118,'_variation_id','0'),(1078,118,'_qty','1'),(1079,118,'_tax_class','zero-rate'),(1080,118,'_line_subtotal','12.5'),(1081,118,'_line_subtotal_tax','0'),(1082,118,'_line_total','12.5'),(1083,118,'_line_tax','0'),(1084,118,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1085,119,'_product_id','3026'),(1086,119,'_variation_id','0'),(1087,119,'_qty','1'),(1088,119,'_tax_class','zero-rate'),(1089,119,'_line_subtotal','12.5'),(1090,119,'_line_subtotal_tax','0'),(1091,119,'_line_total','12.5'),(1092,119,'_line_tax','0'),(1093,119,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1094,120,'_product_id','3026'),(1095,120,'_variation_id','0'),(1096,120,'_qty','2'),(1097,120,'_tax_class','zero-rate'),(1098,120,'_line_subtotal','25'),(1099,120,'_line_subtotal_tax','0'),(1100,120,'_line_total','25'),(1101,120,'_line_tax','0'),(1102,120,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1103,121,'_product_id','2454'),(1104,121,'_variation_id','0'),(1105,121,'_qty','1'),(1106,121,'_tax_class','zero-rate'),(1107,121,'_line_subtotal','12.5'),(1108,121,'_line_subtotal_tax','0'),(1109,121,'_line_total','12.5'),(1110,121,'_line_tax','0'),(1111,121,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1112,122,'_product_id','2454'),(1113,122,'_variation_id','0'),(1114,122,'_qty','1'),(1115,122,'_tax_class','zero-rate'),(1116,122,'_line_subtotal','12.5'),(1117,122,'_line_subtotal_tax','0'),(1118,122,'_line_total','12.5'),(1119,122,'_line_tax','0'),(1120,122,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1121,123,'_product_id','2454'),(1122,123,'_variation_id','0'),(1123,123,'_qty','1'),(1124,123,'_tax_class','zero-rate'),(1125,123,'_line_subtotal','12.5'),(1126,123,'_line_subtotal_tax','0'),(1127,123,'_line_total','12.5'),(1128,123,'_line_tax','0'),(1129,123,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1130,124,'_product_id','2454'),(1131,124,'_variation_id','0'),(1132,124,'_qty','1'),(1133,124,'_tax_class','zero-rate'),(1134,124,'_line_subtotal','12.5'),(1135,124,'_line_subtotal_tax','0'),(1136,124,'_line_total','12.5'),(1137,124,'_line_tax','0'),(1138,124,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1139,125,'_product_id','2454'),(1140,125,'_variation_id','0'),(1141,125,'_qty','1'),(1142,125,'_tax_class','zero-rate'),(1143,125,'_line_subtotal','12.5'),(1144,125,'_line_subtotal_tax','0'),(1145,125,'_line_total','12.5'),(1146,125,'_line_tax','0'),(1147,125,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1148,126,'_product_id','2836'),(1149,126,'_variation_id','0'),(1150,126,'_qty','1'),(1151,126,'_tax_class','zero-rate'),(1152,126,'_line_subtotal','15'),(1153,126,'_line_subtotal_tax','0'),(1154,126,'_line_total','15'),(1155,126,'_line_tax','0'),(1156,126,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1157,127,'_product_id','2836'),(1158,127,'_variation_id','0'),(1159,127,'_qty','1'),(1160,127,'_tax_class','zero-rate'),(1161,127,'_line_subtotal','15'),(1162,127,'_line_subtotal_tax','0'),(1163,127,'_line_total','15'),(1164,127,'_line_tax','0'),(1165,127,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1166,128,'_product_id','2836'),(1167,128,'_variation_id','0'),(1168,128,'_qty','1'),(1169,128,'_tax_class','zero-rate'),(1170,128,'_line_subtotal','15'),(1171,128,'_line_subtotal_tax','0'),(1172,128,'_line_total','15'),(1173,128,'_line_tax','0'),(1174,128,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1175,129,'_product_id','2564'),(1176,129,'_variation_id','0'),(1177,129,'_qty','1'),(1178,129,'_tax_class','zero-rate'),(1179,129,'_line_subtotal','15'),(1180,129,'_line_subtotal_tax','0'),(1181,129,'_line_total','15'),(1182,129,'_line_tax','0'),(1183,129,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1184,130,'_product_id','2628'),(1185,130,'_variation_id','0'),(1186,130,'_qty','1'),(1187,130,'_tax_class','zero-rate'),(1188,130,'_line_subtotal','15'),(1189,130,'_line_subtotal_tax','0'),(1190,130,'_line_total','15'),(1191,130,'_line_tax','0'),(1192,130,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1193,129,'_reduced_stock','1'),(1194,130,'_reduced_stock','1'),(1195,131,'_product_id','2836'),(1196,131,'_variation_id','0'),(1197,131,'_qty','1'),(1198,131,'_tax_class','zero-rate'),(1199,131,'_line_subtotal','15'),(1200,131,'_line_subtotal_tax','0'),(1201,131,'_line_total','15'),(1202,131,'_line_tax','0'),(1203,131,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1204,132,'_product_id','2836'),(1205,132,'_variation_id','0'),(1206,132,'_qty','1'),(1207,132,'_tax_class','zero-rate'),(1208,132,'_line_subtotal','15'),(1209,132,'_line_subtotal_tax','0'),(1210,132,'_line_total','15'),(1211,132,'_line_tax','0'),(1212,132,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1213,133,'_product_id','2836'),(1214,133,'_variation_id','0'),(1215,133,'_qty','1'),(1216,133,'_tax_class','zero-rate'),(1217,133,'_line_subtotal','15'),(1218,133,'_line_subtotal_tax','0'),(1219,133,'_line_total','15'),(1220,133,'_line_tax','0'),(1221,133,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1222,134,'_product_id','2836'),(1223,134,'_variation_id','0'),(1224,134,'_qty','1'),(1225,134,'_tax_class','zero-rate'),(1226,134,'_line_subtotal','15'),(1227,134,'_line_subtotal_tax','0'),(1228,134,'_line_total','15'),(1229,134,'_line_tax','0'),(1230,134,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1231,135,'_product_id','2836'),(1232,135,'_variation_id','0'),(1233,135,'_qty','1'),(1234,135,'_tax_class','zero-rate'),(1235,135,'_line_subtotal','15'),(1236,135,'_line_subtotal_tax','0'),(1237,135,'_line_total','15'),(1238,135,'_line_tax','0'),(1239,135,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}');
/*!40000 ALTER TABLE `wpqj_woocommerce_order_itemmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_woocommerce_order_items`
--

DROP TABLE IF EXISTS `wpqj_woocommerce_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `order_item_type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `order_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM AUTO_INCREMENT=136 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_woocommerce_order_items`
--

LOCK TABLES `wpqj_woocommerce_order_items` WRITE;
/*!40000 ALTER TABLE `wpqj_woocommerce_order_items` DISABLE KEYS */;
INSERT INTO `wpqj_woocommerce_order_items` VALUES (26,'Edgar Cayce Talk & Discussion - 7th November','line_item',1878),(27,'Edgar Cayce Talk & Discussion - 7th November','line_item',1898),(28,'Edgar Cayce Talk & Discussion - 7th November','line_item',1899),(43,'Getting The Best Out Of 2019 Workshop','line_item',2398),(44,'Getting The Best Out Of 2019 Workshop','line_item',2407),(8,'Pain Management - 3rd Oct','line_item',1559),(9,'Pain Management - 3rd Oct','line_item',1567),(10,'Pain Management - 3rd Oct','line_item',1575),(11,'Pain Management - 3rd Oct','line_item',1577),(46,'Getting The Best Out Of 2019 Workshop','line_item',2514),(45,'Past Life Regression 23 Jan - South Shields','line_item',2461),(47,'Past Life Regression 23 Jan - South Shields','line_item',2521),(17,'Pain Management - 3rd Oct','line_item',1677),(49,'The Secrets Of Self-Hypnosis Workshop','line_item',2524),(48,'Getting The Best Out Of 2019 Workshop','line_item',2523),(21,'Edgar Cayce Talk & Discussion - 7th November','line_item',1791),(22,'Edgar Cayce Talk & Discussion - 7th November','line_item',1792),(23,'Memory Improvement - 21st November','line_item',1792),(24,'Edgar Cayce Talk & Discussion - 7th November','line_item',1793),(25,'Edgar Cayce Talk & Discussion - 7th November','line_item',1794),(33,'Past Life Regression 5th December','line_item',1950),(34,'Memory Improvement - 21st November','line_item',1966),(42,'Getting The Best Out Of 2019 Workshop','line_item',2397),(36,'Memory Improvement - 21st November','line_item',1987),(37,'Past Life Regression 5th December','line_item',2002),(38,'Memory Improvement - 21st November','line_item',2026),(39,'Memory Improvement - 21st November','line_item',2031),(41,'Past Life Regression 5th December','line_item',2108),(50,'Past Life Regression 23 Jan - South Shields','line_item',2525),(51,'The Secrets Of Self-Hypnosis Workshop','line_item',2527),(52,'The Secrets Of Self-Hypnosis Workshop','line_item',2528),(53,'The Secrets Of Self-Hypnosis Workshop','line_item',2529),(54,'The Secrets Of Self-Hypnosis Workshop','line_item',2530),(55,'The Secrets Of Self-Hypnosis Workshop','line_item',2531),(56,'Past Life Regression 23 Jan - South Shields','line_item',2532),(57,'Past Life Regression 23 Jan - South Shields','line_item',2534),(58,'Past Life Regression 23 Jan - South Shields','line_item',2535),(59,'Past Life Regression 23 Jan - South Shields','line_item',2536),(60,'Past Life Regression 23 Jan - South Shields','line_item',2537),(61,'Past Life Regression 23 Jan - South Shields','line_item',2538),(63,'Past Life Regression 23 Jan - South Shields','line_item',2539),(64,'The Secrets Of Self-Hypnosis Workshop','line_item',2555),(65,'Anxiety Freedom Introduction Workshop','line_item',2586),(66,'GB- TAX-1','tax',2586),(67,'The Secrets Of Self-Hypnosis Workshop','line_item',2589),(68,'The Secrets Of Self-Hypnosis Workshop','line_item',2590),(69,'Anxiety Freedom Introduction Workshop','line_item',2604),(70,'Anxiety Freedom Introduction Workshop','line_item',2605),(71,'Anxiety Freedom Introduction Workshop','line_item',2606),(72,'Anxiety Freedom Introduction Workshop','line_item',2607),(73,'Anxiety Freedom Introduction Workshop','line_item',2608),(74,'Anxiety Freedom Introduction Workshop','line_item',2610),(75,'Anxiety Freedom Introduction Workshop','line_item',2636),(76,'Self-Confidence Workshop 6th March','line_item',2637),(77,'Self-Confidence Workshop 6th March','line_item',2663),(78,'Past Life Regression 20th March - The Vault','line_item',2666),(79,'Self-Confidence Workshop 6th March','line_item',2667),(80,'Self-Confidence Workshop 6th March','line_item',2668),(81,'Self-Confidence Workshop 6th March','line_item',2669),(82,'Past Life Regression 20th March - The Vault','line_item',2671),(83,'Past Life Regression 20th March - The Vault','line_item',2672),(84,'Self-Hypnosis Practice Group - Newcastle','line_item',2679),(85,'The Secrets Of Being Happy Workshop','line_item',2704),(86,'The Secrets Of Being Happy Workshop','line_item',2705),(87,'The Secrets Of Being Happy Workshop','line_item',2706),(88,'The Secrets Of Being Happy Workshop','line_item',2708),(89,'The Secrets Of Being Happy Workshop','line_item',2709),(90,'The Secrets Of Being Happy Workshop','line_item',2710),(91,'Self-Hypnosis Practice Group - Newcastle','line_item',2735),(92,'Dealing With Difficult People & Children Workshop','line_item',2766),(93,'Dealing With Difficult People & Children Workshop','line_item',2794),(94,'Dealing With Difficult People & Children Workshop','line_item',2806),(95,'Dealing With Difficult People & Children Workshop','line_item',2807),(96,'Dealing With Difficult People & Children Workshop','line_item',2808),(97,'Dealing With Difficult People & Children Workshop','line_item',2809),(98,'Dealing With Difficult People & Children Workshop','line_item',2810),(99,'Dealing With Difficult People & Children Workshop','line_item',2811),(100,'Dealing With Difficult People & Children Workshop','line_item',2812),(101,'Deep Relaxation Mind & Body Workshop','line_item',2838),(102,'Dealing With Difficult People & Children Workshop','line_item',2843),(103,'Deep Relaxation Mind & Body Workshop','line_item',2844),(104,'Deep Relaxation Mind & Body Workshop','line_item',2864),(105,'Deep Relaxation Mind & Body Workshop','line_item',2920),(106,'Anxiety & Stress Workshop Booking Page','line_item',2936),(107,'Protection & Empowerment Workshop Booking Page','line_item',2976),(108,'Protection & Empowerment Workshop Booking Page','line_item',2978),(109,'Protection & Empowerment Workshop Booking Page','line_item',2979),(110,'Anxiety &amp; Stress Workshop Booking Page','line_item',2980),(111,'Protection & Empowerment Workshop Booking Page','line_item',2981),(112,'Protection & Empowerment Workshop Booking Page','line_item',2982),(113,'Protection & Empowerment Workshop Booking Page','line_item',2983),(114,'Protection & Empowerment Workshop Booking Page','line_item',2987),(115,'The Secrets Of Emotional Strength Workshop','line_item',3032),(116,'The Secrets Of Emotional Strength Workshop','line_item',3033),(117,'Self-Hypnosis Practice Group - Newcastle','line_item',3130),(118,'The Secrets Of Emotional Strength Workshop','line_item',3131),(119,'The Secrets Of Emotional Strength Workshop','line_item',3132),(120,'The Secrets Of Emotional Strength Workshop','line_item',3133),(121,'Self-Hypnosis Practice Group - Newcastle','line_item',3134),(122,'Self-Hypnosis Practice Group - Newcastle','line_item',3135),(123,'Self-Hypnosis Practice Group - Newcastle','line_item',3138),(124,'Self-Hypnosis Practice Group - Newcastle','line_item',3139),(125,'Self-Hypnosis Practice Group - Newcastle','line_item',3140),(126,'The Secrets Of Deep Relaxation Workshop','line_item',3148),(127,'The Secrets Of Deep Relaxation Workshop','line_item',3150),(128,'The Secrets Of Deep Relaxation Workshop','line_item',3197),(129,'Anxiety &amp; Stress Workshop Booking Page','line_item',3208),(130,'Self-Confidence Workshop','line_item',3208),(131,'The Secrets Of Deep Relaxation Workshop','line_item',3224),(132,'The Secrets Of Deep Relaxation Workshop','line_item',3226),(133,'The Secrets Of Deep Relaxation Workshop','line_item',3289),(134,'The Secrets Of Deep Relaxation Workshop','line_item',3313),(135,'The Secrets Of Deep Relaxation Workshop','line_item',3317);
/*!40000 ALTER TABLE `wpqj_woocommerce_order_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_woocommerce_payment_tokenmeta`
--

DROP TABLE IF EXISTS `wpqj_woocommerce_payment_tokenmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_woocommerce_payment_tokenmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `payment_token_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `payment_token_id` (`payment_token_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_woocommerce_payment_tokenmeta`
--

LOCK TABLES `wpqj_woocommerce_payment_tokenmeta` WRITE;
/*!40000 ALTER TABLE `wpqj_woocommerce_payment_tokenmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_woocommerce_payment_tokenmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_woocommerce_payment_tokens`
--

DROP TABLE IF EXISTS `wpqj_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `token` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`token_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_woocommerce_payment_tokens`
--

LOCK TABLES `wpqj_woocommerce_payment_tokens` WRITE;
/*!40000 ALTER TABLE `wpqj_woocommerce_payment_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_woocommerce_payment_tokens` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_woocommerce_sessions`
--

DROP TABLE IF EXISTS `wpqj_woocommerce_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_woocommerce_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `session_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_id`),
  UNIQUE KEY `session_key` (`session_key`)
) ENGINE=MyISAM AUTO_INCREMENT=18182 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_woocommerce_sessions`
--

LOCK TABLES `wpqj_woocommerce_sessions` WRITE;
/*!40000 ALTER TABLE `wpqj_woocommerce_sessions` DISABLE KEYS */;
INSERT INTO `wpqj_woocommerce_sessions` VALUES (18166,'2be310a7ee6baecd21e88643b2ed6195','a:9:{s:4:\"cart\";s:412:\"a:1:{s:32:\"8169e05e2a0debcb15458f2cc1eff0ea\";a:11:{s:3:\"key\";s:32:\"8169e05e2a0debcb15458f2cc1eff0ea\";s:10:\"product_id\";i:2564;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:15;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:15;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:5:\"15.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"15.00\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"15.00\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:16:\"wca_session_data\";s:235:\"a:2:{i:0;a:3:{s:5:\"event\";s:33:\"woocommerceanalytics_product_view\";s:10:\"product_id\";s:4:\"2564\";s:8:\"quantity\";s:1:\"1\";}i:1;a:3:{s:5:\"event\";s:32:\"woocommerceanalytics_add_to_cart\";s:10:\"product_id\";s:4:\"2564\";s:8:\"quantity\";s:1:\"1\";}}\";s:10:\"wc_notices\";s:242:\"a:1:{s:7:\"success\";a:1:{i:0;s:203:\"<a href=\"https://www.newcastle-hypnotherapy.com/shop/\" tabindex=\"1\" class=\"button wc-forward\">Continue shopping</a> &ldquo;Anxiety &amp; Stress Workshop Booking Page&rdquo; has been added to your basket.\";}}\";s:8:\"customer\";s:687:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1569206675),(18167,'36d14509dee2d59d654a478ec9e2597f','a:9:{s:4:\"cart\";s:416:\"a:1:{s:32:\"0cdf61037d7053ca59347ab230818335\";a:11:{s:3:\"key\";s:32:\"0cdf61037d7053ca59347ab230818335\";s:10:\"product_id\";i:3026;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:12.5;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:12.5;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:5:\"12.50\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"12.50\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"12.50\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:16:\"wca_session_data\";s:235:\"a:2:{i:0;a:3:{s:5:\"event\";s:33:\"woocommerceanalytics_product_view\";s:10:\"product_id\";s:4:\"3026\";s:8:\"quantity\";s:1:\"1\";}i:1;a:3:{s:5:\"event\";s:32:\"woocommerceanalytics_add_to_cart\";s:10:\"product_id\";s:4:\"3026\";s:8:\"quantity\";s:1:\"1\";}}\";s:10:\"wc_notices\";s:242:\"a:1:{s:7:\"success\";a:1:{i:0;s:203:\"<a href=\"https://www.newcastle-hypnotherapy.com/shop/\" tabindex=\"1\" class=\"button wc-forward\">Continue shopping</a> &ldquo;The Secrets Of Emotional Strength Workshop&rdquo; has been added to your basket.\";}}\";s:8:\"customer\";s:687:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1569206680),(18168,'6e307f9d711d18c91994424975bf26d8','a:9:{s:4:\"cart\";s:412:\"a:1:{s:32:\"0f21f0349462cacdc5796990d37760ae\";a:11:{s:3:\"key\";s:32:\"0f21f0349462cacdc5796990d37760ae\";s:10:\"product_id\";i:2972;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:12;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:12;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:5:\"12.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"12.00\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"12.00\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:16:\"wca_session_data\";s:235:\"a:2:{i:0;a:3:{s:5:\"event\";s:33:\"woocommerceanalytics_product_view\";s:10:\"product_id\";s:4:\"2972\";s:8:\"quantity\";s:1:\"1\";}i:1;a:3:{s:5:\"event\";s:32:\"woocommerceanalytics_add_to_cart\";s:10:\"product_id\";s:4:\"2972\";s:8:\"quantity\";s:1:\"1\";}}\";s:10:\"wc_notices\";s:251:\"a:1:{s:7:\"success\";a:1:{i:0;s:212:\"<a href=\"https://www.newcastle-hypnotherapy.com/shop/\" tabindex=\"1\" class=\"button wc-forward\">Continue shopping</a> &ldquo;Protection &#038; Empowerment Workshop Booking Page&rdquo; has been added to your basket.\";}}\";s:8:\"customer\";s:687:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1569225788),(18169,'9768b518e7c95cbdc7347d6d11adfe4a','a:9:{s:4:\"cart\";s:412:\"a:1:{s:32:\"cb79f8fa58b91d3af6c9c991f63962d3\";a:11:{s:3:\"key\";s:32:\"cb79f8fa58b91d3af6c9c991f63962d3\";s:10:\"product_id\";i:1917;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:15;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:15;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:5:\"15.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"15.00\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"15.00\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:16:\"wca_session_data\";s:235:\"a:2:{i:0;a:3:{s:5:\"event\";s:33:\"woocommerceanalytics_product_view\";s:10:\"product_id\";s:4:\"1917\";s:8:\"quantity\";s:1:\"1\";}i:1;a:3:{s:5:\"event\";s:32:\"woocommerceanalytics_add_to_cart\";s:10:\"product_id\";s:4:\"1917\";s:8:\"quantity\";s:1:\"1\";}}\";s:10:\"wc_notices\";s:250:\"a:1:{s:7:\"success\";a:1:{i:0;s:211:\"<a href=\"https://www.newcastle-hypnotherapy.com/shop/\" tabindex=\"1\" class=\"button wc-forward\">Continue shopping</a> &ldquo;Past Life Regression 9th October &#8211; The Vault&rdquo; has been added to your basket.\";}}\";s:8:\"customer\";s:687:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1569230839),(18170,'4a5b5b551526dc3e8adde82f33602856','a:9:{s:4:\"cart\";s:416:\"a:1:{s:32:\"03e7ef47cee6fa4ae7567394b99912b7\";a:11:{s:3:\"key\";s:32:\"03e7ef47cee6fa4ae7567394b99912b7\";s:10:\"product_id\";i:2454;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:12.5;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:12.5;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:5:\"12.50\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"12.50\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"12.50\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:16:\"wca_session_data\";s:235:\"a:2:{i:0;a:3:{s:5:\"event\";s:33:\"woocommerceanalytics_product_view\";s:10:\"product_id\";s:4:\"2454\";s:8:\"quantity\";s:1:\"1\";}i:1;a:3:{s:5:\"event\";s:32:\"woocommerceanalytics_add_to_cart\";s:10:\"product_id\";s:4:\"2454\";s:8:\"quantity\";s:1:\"1\";}}\";s:10:\"wc_notices\";s:246:\"a:1:{s:7:\"success\";a:1:{i:0;s:207:\"<a href=\"https://www.newcastle-hypnotherapy.com/shop/\" tabindex=\"1\" class=\"button wc-forward\">Continue shopping</a> &ldquo;Self-Hypnosis Practice Group &#8211; Newcastle&rdquo; has been added to your basket.\";}}\";s:8:\"customer\";s:687:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1569231664),(18171,'2621b72ee423907b6ca823d1f2fda3c6','a:9:{s:4:\"cart\";s:412:\"a:1:{s:32:\"361440528766bbaaaa1901845cf4152b\";a:11:{s:3:\"key\";s:32:\"361440528766bbaaaa1901845cf4152b\";s:10:\"product_id\";i:2732;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:15;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:15;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:5:\"15.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"15.00\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"15.00\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:16:\"wca_session_data\";s:235:\"a:2:{i:0;a:3:{s:5:\"event\";s:33:\"woocommerceanalytics_product_view\";s:10:\"product_id\";s:4:\"2732\";s:8:\"quantity\";s:1:\"1\";}i:1;a:3:{s:5:\"event\";s:32:\"woocommerceanalytics_add_to_cart\";s:10:\"product_id\";s:4:\"2732\";s:8:\"quantity\";s:1:\"1\";}}\";s:10:\"wc_notices\";s:254:\"a:1:{s:7:\"success\";a:1:{i:0;s:215:\"<a href=\"https://www.newcastle-hypnotherapy.com/shop/\" tabindex=\"1\" class=\"button wc-forward\">Continue shopping</a> &ldquo;Dealing With Difficult People &#038; Children Workshop&rdquo; has been added to your basket.\";}}\";s:8:\"customer\";s:687:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1569231668),(18172,'29aaa1f9e47841d363ac4e0d5874da6c','a:9:{s:4:\"cart\";s:412:\"a:1:{s:32:\"361440528766bbaaaa1901845cf4152b\";a:11:{s:3:\"key\";s:32:\"361440528766bbaaaa1901845cf4152b\";s:10:\"product_id\";i:2732;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:15;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:15;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:5:\"15.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"15.00\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"15.00\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:16:\"wca_session_data\";s:235:\"a:2:{i:0;a:3:{s:5:\"event\";s:33:\"woocommerceanalytics_product_view\";s:10:\"product_id\";s:4:\"2732\";s:8:\"quantity\";s:1:\"1\";}i:1;a:3:{s:5:\"event\";s:32:\"woocommerceanalytics_add_to_cart\";s:10:\"product_id\";s:4:\"2732\";s:8:\"quantity\";s:1:\"1\";}}\";s:10:\"wc_notices\";s:254:\"a:1:{s:7:\"success\";a:1:{i:0;s:215:\"<a href=\"https://www.newcastle-hypnotherapy.com/shop/\" tabindex=\"1\" class=\"button wc-forward\">Continue shopping</a> &ldquo;Dealing With Difficult People &#038; Children Workshop&rdquo; has been added to your basket.\";}}\";s:8:\"customer\";s:687:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1569245076),(18173,'5352656baacd4c7860feb01f5b750d9b','a:9:{s:4:\"cart\";s:412:\"a:1:{s:32:\"8169e05e2a0debcb15458f2cc1eff0ea\";a:11:{s:3:\"key\";s:32:\"8169e05e2a0debcb15458f2cc1eff0ea\";s:10:\"product_id\";i:2564;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:15;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:15;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:5:\"15.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"15.00\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"15.00\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:16:\"wca_session_data\";s:235:\"a:2:{i:0;a:3:{s:5:\"event\";s:33:\"woocommerceanalytics_product_view\";s:10:\"product_id\";s:4:\"2564\";s:8:\"quantity\";s:1:\"1\";}i:1;a:3:{s:5:\"event\";s:32:\"woocommerceanalytics_add_to_cart\";s:10:\"product_id\";s:4:\"2564\";s:8:\"quantity\";s:1:\"1\";}}\";s:10:\"wc_notices\";s:242:\"a:1:{s:7:\"success\";a:1:{i:0;s:203:\"<a href=\"https://www.newcastle-hypnotherapy.com/shop/\" tabindex=\"1\" class=\"button wc-forward\">Continue shopping</a> &ldquo;Anxiety &amp; Stress Workshop Booking Page&rdquo; has been added to your basket.\";}}\";s:8:\"customer\";s:687:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1569255279),(18174,'3d848f228dd4eb4d6e27c3b27ec7b926','a:9:{s:4:\"cart\";s:412:\"a:1:{s:32:\"5b8e4fd39d9786228649a8a8bec4e008\";a:11:{s:3:\"key\";s:32:\"5b8e4fd39d9786228649a8a8bec4e008\";s:10:\"product_id\";i:2287;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:10;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:10;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:5:\"10.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"10.00\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"10.00\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:16:\"wca_session_data\";s:235:\"a:2:{i:0;a:3:{s:5:\"event\";s:33:\"woocommerceanalytics_product_view\";s:10:\"product_id\";s:4:\"2287\";s:8:\"quantity\";s:1:\"1\";}i:1;a:3:{s:5:\"event\";s:32:\"woocommerceanalytics_add_to_cart\";s:10:\"product_id\";s:4:\"2287\";s:8:\"quantity\";s:1:\"1\";}}\";s:10:\"wc_notices\";s:237:\"a:1:{s:7:\"success\";a:1:{i:0;s:198:\"<a href=\"https://www.newcastle-hypnotherapy.com/shop/\" tabindex=\"1\" class=\"button wc-forward\">Continue shopping</a> &ldquo;Getting The Best Out Of 2019 Workshop&rdquo; has been added to your basket.\";}}\";s:8:\"customer\";s:687:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1569256831),(18178,'f04c5f58b65aedff0a23277928620cf2','a:9:{s:4:\"cart\";s:412:\"a:1:{s:32:\"cb79f8fa58b91d3af6c9c991f63962d3\";a:11:{s:3:\"key\";s:32:\"cb79f8fa58b91d3af6c9c991f63962d3\";s:10:\"product_id\";i:1917;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:15;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:15;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:5:\"15.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"15.00\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"15.00\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:16:\"wca_session_data\";s:235:\"a:2:{i:0;a:3:{s:5:\"event\";s:33:\"woocommerceanalytics_product_view\";s:10:\"product_id\";s:4:\"1917\";s:8:\"quantity\";s:1:\"1\";}i:1;a:3:{s:5:\"event\";s:32:\"woocommerceanalytics_add_to_cart\";s:10:\"product_id\";s:4:\"1917\";s:8:\"quantity\";s:1:\"1\";}}\";s:10:\"wc_notices\";s:250:\"a:1:{s:7:\"success\";a:1:{i:0;s:211:\"<a href=\"https://www.newcastle-hypnotherapy.com/shop/\" tabindex=\"1\" class=\"button wc-forward\">Continue shopping</a> &ldquo;Past Life Regression 9th October &#8211; The Vault&rdquo; has been added to your basket.\";}}\";s:8:\"customer\";s:687:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1569273916),(18179,'fe50cc01fcdff233aeaf1169e9003257','a:9:{s:4:\"cart\";s:412:\"a:1:{s:32:\"5b8e4fd39d9786228649a8a8bec4e008\";a:11:{s:3:\"key\";s:32:\"5b8e4fd39d9786228649a8a8bec4e008\";s:10:\"product_id\";i:2287;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:10;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:10;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:5:\"10.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"10.00\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"10.00\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:16:\"wca_session_data\";s:235:\"a:2:{i:0;a:3:{s:5:\"event\";s:33:\"woocommerceanalytics_product_view\";s:10:\"product_id\";s:4:\"2287\";s:8:\"quantity\";s:1:\"1\";}i:1;a:3:{s:5:\"event\";s:32:\"woocommerceanalytics_add_to_cart\";s:10:\"product_id\";s:4:\"2287\";s:8:\"quantity\";s:1:\"1\";}}\";s:10:\"wc_notices\";s:237:\"a:1:{s:7:\"success\";a:1:{i:0;s:198:\"<a href=\"https://www.newcastle-hypnotherapy.com/shop/\" tabindex=\"1\" class=\"button wc-forward\">Continue shopping</a> &ldquo;Getting The Best Out Of 2019 Workshop&rdquo; has been added to your basket.\";}}\";s:8:\"customer\";s:687:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1569275044),(18180,'583c72be19379776be04360e11d0e3a5','a:9:{s:4:\"cart\";s:416:\"a:1:{s:32:\"03e7ef47cee6fa4ae7567394b99912b7\";a:11:{s:3:\"key\";s:32:\"03e7ef47cee6fa4ae7567394b99912b7\";s:10:\"product_id\";i:2454;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:12.5;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:12.5;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:5:\"12.50\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"12.50\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"12.50\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:16:\"wca_session_data\";s:235:\"a:2:{i:0;a:3:{s:5:\"event\";s:33:\"woocommerceanalytics_product_view\";s:10:\"product_id\";s:4:\"2454\";s:8:\"quantity\";s:1:\"1\";}i:1;a:3:{s:5:\"event\";s:32:\"woocommerceanalytics_add_to_cart\";s:10:\"product_id\";s:4:\"2454\";s:8:\"quantity\";s:1:\"1\";}}\";s:10:\"wc_notices\";s:246:\"a:1:{s:7:\"success\";a:1:{i:0;s:207:\"<a href=\"https://www.newcastle-hypnotherapy.com/shop/\" tabindex=\"1\" class=\"button wc-forward\">Continue shopping</a> &ldquo;Self-Hypnosis Practice Group &#8211; Newcastle&rdquo; has been added to your basket.\";}}\";s:8:\"customer\";s:687:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1569295407),(18165,'7d81f05ba8a11772e79c4df71d8b3345','a:9:{s:4:\"cart\";s:412:\"a:1:{s:32:\"cb79f8fa58b91d3af6c9c991f63962d3\";a:11:{s:3:\"key\";s:32:\"cb79f8fa58b91d3af6c9c991f63962d3\";s:10:\"product_id\";i:1917;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:15;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:15;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:5:\"15.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"15.00\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"15.00\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:16:\"wca_session_data\";s:235:\"a:2:{i:0;a:3:{s:5:\"event\";s:33:\"woocommerceanalytics_product_view\";s:10:\"product_id\";s:4:\"1917\";s:8:\"quantity\";s:1:\"1\";}i:1;a:3:{s:5:\"event\";s:32:\"woocommerceanalytics_add_to_cart\";s:10:\"product_id\";s:4:\"1917\";s:8:\"quantity\";s:1:\"1\";}}\";s:10:\"wc_notices\";s:250:\"a:1:{s:7:\"success\";a:1:{i:0;s:211:\"<a href=\"https://www.newcastle-hypnotherapy.com/shop/\" tabindex=\"1\" class=\"button wc-forward\">Continue shopping</a> &ldquo;Past Life Regression 9th October &#8211; The Vault&rdquo; has been added to your basket.\";}}\";s:8:\"customer\";s:687:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1569206671),(18177,'2e30763c0d408ff38a18aecbf813d01d','a:9:{s:4:\"cart\";s:412:\"a:1:{s:32:\"df0e09d6f25a15a815563df9827f48fa\";a:11:{s:3:\"key\";s:32:\"df0e09d6f25a15a815563df9827f48fa\";s:10:\"product_id\";i:2701;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:15;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:15;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:5:\"15.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"15.00\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"15.00\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:16:\"wca_session_data\";s:235:\"a:2:{i:0;a:3:{s:5:\"event\";s:33:\"woocommerceanalytics_product_view\";s:10:\"product_id\";s:4:\"2701\";s:8:\"quantity\";s:1:\"1\";}i:1;a:3:{s:5:\"event\";s:32:\"woocommerceanalytics_add_to_cart\";s:10:\"product_id\";s:4:\"2701\";s:8:\"quantity\";s:1:\"1\";}}\";s:10:\"wc_notices\";s:235:\"a:1:{s:7:\"success\";a:1:{i:0;s:196:\"<a href=\"https://www.newcastle-hypnotherapy.com/shop/\" tabindex=\"1\" class=\"button wc-forward\">Continue shopping</a> &ldquo;The Secrets Of Being Happy Workshop&rdquo; has been added to your basket.\";}}\";s:8:\"customer\";s:687:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1569270013),(18176,'e4e150a284a9ee05c8460d2e35750081','a:9:{s:4:\"cart\";s:412:\"a:1:{s:32:\"df0e09d6f25a15a815563df9827f48fa\";a:11:{s:3:\"key\";s:32:\"df0e09d6f25a15a815563df9827f48fa\";s:10:\"product_id\";i:2701;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:15;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:15;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:5:\"15.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"15.00\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"15.00\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:16:\"wca_session_data\";s:235:\"a:2:{i:0;a:3:{s:5:\"event\";s:33:\"woocommerceanalytics_product_view\";s:10:\"product_id\";s:4:\"2701\";s:8:\"quantity\";s:1:\"1\";}i:1;a:3:{s:5:\"event\";s:32:\"woocommerceanalytics_add_to_cart\";s:10:\"product_id\";s:4:\"2701\";s:8:\"quantity\";s:1:\"1\";}}\";s:10:\"wc_notices\";s:235:\"a:1:{s:7:\"success\";a:1:{i:0;s:196:\"<a href=\"https://www.newcastle-hypnotherapy.com/shop/\" tabindex=\"1\" class=\"button wc-forward\">Continue shopping</a> &ldquo;The Secrets Of Being Happy Workshop&rdquo; has been added to your basket.\";}}\";s:8:\"customer\";s:687:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1569266188),(18175,'15c7f75b6ba1821ea7936033ecaa1f6e','a:9:{s:4:\"cart\";s:416:\"a:1:{s:32:\"0cdf61037d7053ca59347ab230818335\";a:11:{s:3:\"key\";s:32:\"0cdf61037d7053ca59347ab230818335\";s:10:\"product_id\";i:3026;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:12.5;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:12.5;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:405:\"a:15:{s:8:\"subtotal\";s:5:\"12.50\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"12.50\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"12.50\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:16:\"wca_session_data\";s:235:\"a:2:{i:0;a:3:{s:5:\"event\";s:33:\"woocommerceanalytics_product_view\";s:10:\"product_id\";s:4:\"3026\";s:8:\"quantity\";s:1:\"1\";}i:1;a:3:{s:5:\"event\";s:32:\"woocommerceanalytics_add_to_cart\";s:10:\"product_id\";s:4:\"3026\";s:8:\"quantity\";s:1:\"1\";}}\";s:10:\"wc_notices\";s:242:\"a:1:{s:7:\"success\";a:1:{i:0;s:203:\"<a href=\"https://www.newcastle-hypnotherapy.com/shop/\" tabindex=\"1\" class=\"button wc-forward\">Continue shopping</a> &ldquo;The Secrets Of Emotional Strength Workshop&rdquo; has been added to your basket.\";}}\";s:8:\"customer\";s:687:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1569265122),(18181,'1','a:8:{s:22:\"mailchimp_landing_site\";s:48:\"https://www.newcastle-hypnotherapy.com/wp-admin/\";s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:832:\"a:26:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:25:\"2019-09-08T10:02:00+00:00\";s:8:\"postcode\";s:8:\"NE23 6NL\";s:4:\"city\";s:9:\"Newcastle\";s:9:\"address_1\";s:18:\"27 Greystoke Place\";s:7:\"address\";s:18:\"27 Greystoke Place\";s:9:\"address_2\";s:11:\"Test street\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:4:\"Test\";s:9:\"last_name\";s:3:\"Tes\";s:7:\"company\";s:12:\"test order 4\";s:5:\"phone\";s:10:\"0980980989\";s:5:\"email\";s:20:\"myfreepack@gmail.com\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1569341048);
/*!40000 ALTER TABLE `wpqj_woocommerce_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_woocommerce_shipping_zone_locations`
--

DROP TABLE IF EXISTS `wpqj_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `location_id` (`location_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_woocommerce_shipping_zone_locations`
--

LOCK TABLES `wpqj_woocommerce_shipping_zone_locations` WRITE;
/*!40000 ALTER TABLE `wpqj_woocommerce_shipping_zone_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_woocommerce_shipping_zone_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_woocommerce_shipping_zone_methods`
--

DROP TABLE IF EXISTS `wpqj_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `method_order` bigint(20) unsigned NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`instance_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_woocommerce_shipping_zone_methods`
--

LOCK TABLES `wpqj_woocommerce_shipping_zone_methods` WRITE;
/*!40000 ALTER TABLE `wpqj_woocommerce_shipping_zone_methods` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_woocommerce_shipping_zone_methods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_woocommerce_shipping_zones`
--

DROP TABLE IF EXISTS `wpqj_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_woocommerce_shipping_zones` (
  `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `zone_order` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`zone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_woocommerce_shipping_zones`
--

LOCK TABLES `wpqj_woocommerce_shipping_zones` WRITE;
/*!40000 ALTER TABLE `wpqj_woocommerce_shipping_zones` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpqj_woocommerce_shipping_zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_woocommerce_tax_rate_locations`
--

DROP TABLE IF EXISTS `wpqj_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_woocommerce_tax_rate_locations`
--

LOCK TABLES `wpqj_woocommerce_tax_rate_locations` WRITE;
/*!40000 ALTER TABLE `wpqj_woocommerce_tax_rate_locations` DISABLE KEYS */;
INSERT INTO `wpqj_woocommerce_tax_rate_locations` VALUES (1,'NE23 6NL',1,'postcode'),(2,'NEWCASTLE',1,'city'),(3,'NE',126383,'postcode'),(4,'SEGHILL',126383,'city');
/*!40000 ALTER TABLE `wpqj_woocommerce_tax_rate_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_woocommerce_tax_rates`
--

DROP TABLE IF EXISTS `wpqj_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) unsigned NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT 0,
  `tax_rate_shipping` int(1) NOT NULL DEFAULT 1,
  `tax_rate_order` bigint(20) unsigned NOT NULL,
  `tax_rate_class` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`),
  KEY `tax_rate_state` (`tax_rate_state`(2)),
  KEY `tax_rate_class` (`tax_rate_class`(10)),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_woocommerce_tax_rates`
--

LOCK TABLES `wpqj_woocommerce_tax_rates` WRITE;
/*!40000 ALTER TABLE `wpqj_woocommerce_tax_rates` DISABLE KEYS */;
INSERT INTO `wpqj_woocommerce_tax_rates` VALUES (1,'GB','','20.0000',' Tax',1,0,1,0,''),(2,'GB','','20.0000',' Tax',1,0,1,0,'');
/*!40000 ALTER TABLE `wpqj_woocommerce_tax_rates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_yoast_seo_links`
--

DROP TABLE IF EXISTS `wpqj_yoast_seo_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_yoast_seo_links` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_id` bigint(20) unsigned NOT NULL,
  `target_post_id` bigint(20) unsigned NOT NULL,
  `type` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`)
) ENGINE=MyISAM AUTO_INCREMENT=22943 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_yoast_seo_links`
--

LOCK TABLES `wpqj_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `wpqj_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `wpqj_yoast_seo_links` VALUES (10456,'https://www.newcastle-hypnotherapy.com/contact-us/',2034,366,'internal'),(9357,'https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/',1813,1595,'internal'),(19141,'http://www.newcastle-hypnotherapy.com/downloads/sleep.mp3',471,0,'internal'),(18998,'http://www.newcastle-hypnotherapy.com/events-workshops/',486,0,'internal'),(18999,'https://www.ukguild.com/component/jsn/mark-morley?Itemid=',486,0,'external'),(18997,'http://www.newcastle-hypnotherapy.com/events-workshops/',486,0,'internal'),(22451,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2944,378,'internal'),(22756,'https://www.facebook.com/groups/TheSecretWorkshops/',1960,0,'external'),(21000,'https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/',106,2216,'internal'),(22201,'https://www.facebook.com/newcastlehypnosis/',200,0,'external'),(22200,'http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/',200,486,'internal'),(10438,'https://www.ukguild.com/component/jsn/mark-morley?Itemid=',576,0,'external'),(267,'http://www.newcastle-hypnotherapy.com/anxiety-relief/',605,68,'internal'),(18995,'http://www.newcastle-hypnotherapy.com/privacy-policy/',948,892,'internal'),(18994,'http://johnmongiovi.com/',948,0,'external'),(9356,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',1813,378,'internal'),(18987,'http://www.food-for-thought-uk.co.uk/',824,0,'external'),(18986,'http://www.the-vault.org/',824,0,'external'),(22839,'https://www.newcastle-hypnotherapy.com/contact-us/',2681,366,'internal'),(9349,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',1813,378,'internal'),(18996,'https://www.ukguild.com/member/mark-morley',948,0,'external'),(22840,'https://www.facebook.com/groups/TheSecretWorkshops/',2681,0,'external'),(22880,'https://www.facebook.com/groups/NHwednesdayworkshop/',1291,0,'external'),(5069,'https://www.facebook.com/newcastlehypnosis/',1003,0,'external'),(5072,'https://www.yell.com/biz/newcastle-hypnotherapy-wallsend-9119041/',1003,0,'external'),(5071,'https://foursquare.com/v/newcastle-hypnotherapy/5b17ba1b2619ee002c938eff',1003,0,'external'),(5070,'https://twitter.com/Newcastlehypno',1003,0,'external'),(5067,'https://greatnorthmuseum.org.uk/',1003,0,'external'),(5068,'http://stnicholascathedral.co.uk/',1003,0,'external'),(5066,'http://baltic.art/',1003,0,'external'),(5065,'http://www.newcastlecastle.co.uk/',1003,0,'external'),(5064,'http://www.the-vault.org/fairs.html',1003,0,'external'),(5063,'https://www.food-for-thought-uk.co.uk/',1003,0,'external'),(5062,'https://stephensonrailwaymuseum.org.uk/',1003,0,'external'),(5061,'https://segedunumromanfort.org.uk/',1003,0,'external'),(5060,'https://www.newcastlegateshead.com/food-and-drink/the-ship-inn-p888571',1003,0,'external'),(5059,'http://www.citytavern.co.uk/',1003,0,'external'),(5058,'https://trilliansnewcastle.co.uk/',1003,0,'external'),(5057,'https://www.linskillcentre.co.uk/',1003,0,'external'),(5056,'http://www.the-vault.org/',1003,0,'external'),(5055,'https://www.linskillcentre.co.uk/',1003,0,'external'),(5054,'http://www.iloveboho.co.uk/',1003,0,'external'),(5053,'http://www.skyapple.co.uk/',1003,0,'external'),(5052,'https://www.facebook.com/Super-Natural-Cafe-788599297887313/',1003,0,'external'),(5051,'https://www.pulpfictionfuturefood.com/',1003,0,'external'),(5047,'https://www.visitnorthumberland.com/',1003,0,'external'),(5048,'https://www.chroniclelive.co.uk/all-about/sunderland-city-centre',1003,0,'external'),(5049,'https://en.wikipedia.org/wiki/North_East_England',1003,0,'external'),(5050,'https://en.wikipedia.org/wiki/Tyne_and_Wear',1003,0,'external'),(5046,'https://www.chroniclelive.co.uk/all-about/newcastle-upon-tyne',1003,0,'external'),(5045,'http://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/',1003,948,'internal'),(5043,'http://www.newcastle-hypnotherapy.com/stress-management/',1003,106,'internal'),(5044,'http://www.newcastle-hypnotherapy.com/hypnosis-for-depression/',1003,122,'internal'),(5042,'http://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/',1003,68,'internal'),(9355,'https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/',1813,1595,'internal'),(5569,'https://www.ukguild.com/component/jsn/mark-morley?Item',1054,0,'external'),(5568,'https://twitter.com/Newcastlehypno',1054,0,'external'),(5567,'https://www.facebook.com/groups/NHwednesdayworkshop/',1054,0,'external'),(5566,'https://www.facebook.com/newcastlehypnosis/',1054,0,'external'),(5565,'http://www.newcastle-hypnotherapy.com/client-feedback/',1054,200,'internal'),(5564,'https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/',1054,486,'internal'),(5563,'http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/',1054,486,'internal'),(22199,'https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/',200,0,'internal'),(5012,'https://twitter.com/Newcastlehypno',1079,0,'external'),(5013,'https://www.ukguild.com/component/jsn/mark-morley?Item',1079,0,'external'),(5011,'https://www.facebook.com/groups/NHwednesdayworkshop/',1079,0,'external'),(5010,'https://www.facebook.com/newcastlehypnosis/',1079,0,'external'),(5009,'http://www.newcastle-hypnotherapy.com/client-feedback/',1079,200,'internal'),(5008,'https://www.newcastle-hypnotherapy.com/events-workshops/',1079,0,'internal'),(5007,'https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/',1079,0,'internal'),(5006,'https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/',1079,824,'internal'),(5005,'https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/',1079,948,'internal'),(5004,'https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/',1079,122,'internal'),(5001,'https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/',1079,486,'internal'),(5002,'https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/',1079,68,'internal'),(5003,'https://www.newcastle-hypnotherapy.com/stress-management/',1079,106,'internal'),(1796,'https://www.facebook.com/groups/NHwednesdayworkshop/',1095,0,'external'),(1797,'https://twitter.com/Newcastlehypno',1095,0,'external'),(1798,'https://www.newcastle-hypnotherapy.com/contact-us/',1095,366,'internal'),(1794,'http://www.the-vault.org/',1095,0,'external'),(1795,'https://www.newcastle-hypnotherapy.com/',1095,0,'internal'),(18981,'http://www.newcastle-hypnotherapy.com/client-feedback/',556,200,'internal'),(18982,'https://www.facebook.com/newcastlehypnosis/',556,0,'external'),(18983,'https://www.facebook.com/groups/NHwednesdayworkshop/',556,0,'external'),(18984,'https://twitter.com/Newcastlehypno',556,0,'external'),(18985,'https://www.ukguild.com/component/jsn/mark-morley?Item',556,0,'external'),(5562,'https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/',1054,0,'internal'),(5561,'https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/',1054,0,'internal'),(5558,'https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/',1054,0,'internal'),(5559,'https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/',1054,0,'internal'),(5560,'http://www.newcastle-hypnotherapy.com/events-workshops/',1054,0,'internal'),(5556,'https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/',1054,0,'internal'),(5557,'https://www.newcastle-hypnotherapy.com/stress-management/',1054,0,'internal'),(5555,'http://www.newcastle-hypnotherapy.com/anxiety-relief/',1054,0,'internal'),(5554,'https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/',1054,486,'internal'),(5553,'https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/',1054,0,'internal'),(5552,'https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/',1054,0,'internal'),(22898,'https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/',2558,0,'internal'),(9354,'https://www.newcastle-hypnotherapy.com/contact-us/',1813,366,'internal'),(9353,'https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/',1813,322,'internal'),(9348,'https://www.newcastle-hypnotherapy.com/contact-us/',1813,366,'internal'),(22810,'https://www.newcastle-hypnotherapy.com/product/past-life-regression/',1185,1917,'internal'),(22809,'https://www.newcastle-hypnotherapy.com',1185,1437,'internal'),(22808,'https://www.newcastle-hypnotherapy.com/product/past-life-regression/',1185,1917,'internal'),(5951,'https://www.newcastle-hypnotherapy.com/client-feedback/',378,200,'internal'),(5952,'https://www.ukguild.com/component/jsn/mark-morley?Item',378,0,'external'),(5953,'https://www.facebook.com/newcastlehypnosis/',378,0,'external'),(5954,'https://twitter.com/Newcastlehypno',378,0,'external'),(5955,'https://www.facebook.com/groups/NHwednesdayworkshop/',378,0,'external'),(18980,'https://twitter.com/Newcastlehypno',1252,0,'external'),(18979,'https://www.facebook.com/newcastlehypnosis/',1252,0,'external'),(18978,'https://www.ukguild.com/component/jsn/mark-morley?Item',1252,0,'external'),(18977,'https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/',1252,486,'internal'),(18976,'https://www.newcastle-hypnotherapy.com/events-workshops/',1252,0,'internal'),(18974,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',1252,378,'internal'),(18975,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',1252,378,'internal'),(22879,'https://www.newcastle-hypnotherapy.com/hypnosis-pain-management-program/',1291,0,'internal'),(22878,'https://www.newcastle-hypnotherapy.com/contact-us/',1291,366,'internal'),(22877,'https://www.newcastle-hypnotherapy.com/product/pain-management-workshop-3rd-oct/',1291,0,'internal'),(22875,'https://www.newcastle-hypnotherapy.com',1291,1437,'internal'),(22876,'http://www.the-vault.org/',1291,0,'external'),(9352,'https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/',1813,486,'internal'),(9351,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',1813,378,'internal'),(9347,'https://www.newcastle-hypnotherapy.com/contact-us/',1813,366,'internal'),(22941,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',322,378,'internal'),(4898,'https://www.facebook.com/groups/NHwednesdayworkshop/?fb_dtsg_ag=AdxnkwVfFHQJxhUGGUNwtUmnPD1BJkcd8K-7uP5L0aiDuA%3AAdzwYc087wLSKsQ4rRVO0HMt8bXkMKl09341hS5oifBdaQ',1325,0,'external'),(4993,'https://www.ukguild.com/component/jsn/mark-morley?Item',1328,0,'external'),(4990,'https://www.facebook.com/newcastlehypnosis/',1328,0,'external'),(4991,'https://www.facebook.com/groups/NHwednesdayworkshop/',1328,0,'external'),(4992,'https://twitter.com/Newcastlehypno',1328,0,'external'),(4987,'http://www.the-vault.org/',1328,0,'external'),(4988,'https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/',1328,322,'internal'),(4989,'http://www.newcastle-hypnotherapy.com/client-feedback/',1328,200,'internal'),(9350,'https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/',1813,1595,'internal'),(10447,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2027,378,'internal'),(10440,'https://www.facebook.com/groups/NHwednesdayworkshop/',2006,0,'external'),(19007,'https://www.newcastle-hypnotherapy.com/contact-us/',1568,366,'internal'),(18860,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',43,378,'internal'),(22452,'https://www.facebook.com/groups/TheSecretWorkshops/',2944,0,'external'),(22409,'https://www.facebook.com/groups/TheSecretWorkshops/',68,0,'external'),(16777,'https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true',2216,2216,'internal'),(22304,'https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/',1437,486,'internal'),(22294,'https://www.facebook.com/newcastlehypnosis/',1437,0,'external'),(22295,'https://www.facebook.com/groups/NHwednesdayworkshop/',1437,0,'external'),(22296,'https://twitter.com/Newcastlehypno',1437,0,'external'),(22297,'https://www.newcastle-hypnotherapy.com/client-feedback/',1437,200,'internal'),(22298,'https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/',1437,0,'internal'),(9659,'https://www.newcastle-hypnotherapy.com/product/osx2/',1595,1616,'internal'),(9658,'https://www.newcastle-hypnotherapy.com/product/osx1/',1595,1618,'internal'),(6072,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',1635,378,'internal'),(9657,'https://www.newcastle-hypnotherapy.com/product/hsfft2/',1595,1612,'internal'),(9656,'https://www.newcastle-hypnotherapy.com/product/hsfft1/',1595,1614,'internal'),(9655,'https://www.newcastle-hypnotherapy.com/product/hstvx2/',1595,1593,'internal'),(9654,'https://www.newcastle-hypnotherapy.com/product/hstvx1/',1595,1591,'internal'),(9660,'https://www.newcastle-hypnotherapy.com/wp-content/uploads/2018/09/New-Client-Form-NH.doc',1639,0,'internal'),(22453,'https://www.newcastle-hypnotherapy.com/product/protection-empowerment-workshop-booking-page/',2944,2972,'internal'),(22408,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',68,378,'internal'),(22407,'http://www.newcastle-hypnotherapy.com/reveiws/',68,0,'internal'),(22402,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',68,378,'internal'),(22300,'https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/',1437,0,'internal'),(22301,'https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/',1437,0,'internal'),(22406,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/',68,1813,'internal'),(22302,'https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/',1437,0,'internal'),(22883,'https://www.newcastle-hypnotherapy.com/product/nlp-memory-improvement/',1749,1548,'internal'),(6767,'https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/',1665,0,'internal'),(9662,'https://www.newcastle-hypnotherapy.com/edgar-cayce-american-psychic-clairvoyant-talk/',1770,1900,'internal'),(9343,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',1813,378,'internal'),(9344,'https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/',1813,1595,'internal'),(9345,'https://www.newcastle-hypnotherapy.com/contact-us/',1813,366,'internal'),(9346,'https://www.newcastle-hypnotherapy.com/contact-us/',1813,366,'internal'),(9341,'https://www.newcastle-hypnotherapy.com',1813,1437,'internal'),(9342,'https://www.food-for-thought-uk.co.uk/',1813,0,'external'),(9340,'https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/',1813,1252,'internal'),(9339,'https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/',1813,122,'internal'),(9337,'https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/',1813,68,'internal'),(9338,'https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/',1813,106,'internal'),(22813,'https://twitter.com/Newcastlehypno',1185,0,'external'),(22755,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',1960,378,'internal'),(22812,'https://www.facebook.com/groups/NHwednesdayworkshop/',1185,0,'external'),(22303,'https://www.newcastle-hypnotherapy.com/lose-weight-with-hypnosis/',1437,0,'internal'),(22754,'https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/',1960,0,'internal'),(22753,'https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/',1960,0,'internal'),(22752,'https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/',1960,0,'internal'),(22751,'https://www.newcastle-hypnotherapy.com/client-feedback/',1960,200,'internal'),(22299,'https://www.newcastle-hypnotherapy.com/stress-management/',1437,0,'internal'),(10457,'http://www.the-vault.org/',2034,0,'external'),(10458,'http://www.food-for-thought-uk.co.uk/',2034,0,'external'),(22293,'http://www.newcastle-hypnotherapy.com/client-feedback/',1437,200,'internal'),(19001,'https://www.facebook.com/newcastlehypnosis/',2062,0,'external'),(19002,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2062,378,'internal'),(19000,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2062,378,'internal'),(18861,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',43,378,'internal'),(18852,'https://www.facebook.com/groups/NHwednesdayworkshop/',43,0,'external'),(18853,'https://www.newcastle-hypnotherapy.com/contact-us/',43,366,'internal'),(18854,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend',43,2151,'internal'),(22292,'https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/',1437,486,'internal'),(22284,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/',1437,2151,'internal'),(22285,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/',1437,1813,'internal'),(22286,'http://www.newcastle-hypnotherapy.com/events-workshops/',1437,0,'internal'),(22287,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',1437,378,'internal'),(11584,'https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/',2151,1595,'internal'),(11583,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2151,378,'internal'),(11582,'https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/',2151,1595,'internal'),(11581,'https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/',2151,322,'internal'),(11578,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2151,378,'internal'),(11579,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2151,378,'internal'),(11580,'https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/',2151,486,'internal'),(11577,'https://www.newcastle-hypnotherapy.com/contact-us/',2151,366,'internal'),(11576,'https://www.newcastle-hypnotherapy.com/contact-us/',2151,366,'internal'),(11574,'https://www.newcastle-hypnotherapy.com/contact-us/',2151,366,'internal'),(11575,'https://www.newcastle-hypnotherapy.com/contact-us/',2151,366,'internal'),(11573,'https://www.facebook.com/groups/NHwednesdayworkshop/',2151,0,'external'),(11571,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2151,378,'internal'),(11572,'https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/',2151,1595,'internal'),(11570,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2151,378,'internal'),(11568,'https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/',2151,1252,'internal'),(11569,'https://www.newcastle-hypnotherapy.com',2151,1437,'internal'),(11567,'https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/',2151,122,'internal'),(11566,'https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/',2151,106,'internal'),(11564,'https://www.facebook.com/groups/NHwednesdayworkshop/',2151,0,'external'),(11565,'https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/',2151,68,'internal'),(22291,'http://www.newcastle-hypnotherapy.com/learn-self-hypnosis/',1437,486,'internal'),(18858,'https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/',43,2216,'internal'),(18859,'https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/',43,322,'internal'),(14322,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/',2192,1813,'internal'),(14321,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/',2192,0,'internal'),(14320,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/',2192,2151,'internal'),(14318,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2192,378,'internal'),(14319,'https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/',2192,1595,'internal'),(14317,'https://www.facebook.com/groups/NHwednesdayworkshop/',2192,0,'external'),(14315,'https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/',2192,1595,'internal'),(14316,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2192,378,'internal'),(14314,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2192,378,'internal'),(14313,'https://www.newcastle-hypnotherapy.com/contact-us/',2192,366,'internal'),(14312,'https://www.newcastle-hypnotherapy.com/contact-us/',2192,366,'internal'),(14311,'https://www.newcastle-hypnotherapy.com/contact-us/',2192,366,'internal'),(14310,'https://www.newcastle-hypnotherapy.com/contact-us/',2192,366,'internal'),(14308,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/',2192,2151,'internal'),(14309,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/',2192,1813,'internal'),(14307,'https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/',2192,1595,'internal'),(14305,'https://www.newcastle-hypnotherapy.com',2192,1437,'internal'),(14306,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2192,378,'internal'),(14304,'https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/',2192,1252,'internal'),(14303,'https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/',2192,122,'internal'),(14302,'https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/',2192,106,'internal'),(14301,'https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/',2192,68,'internal'),(16776,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/',2216,1813,'internal'),(16775,'https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/',2216,2192,'internal'),(16774,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/',2216,2151,'internal'),(16772,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2216,378,'internal'),(16773,'https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/',2216,1595,'internal'),(16771,'https://www.facebook.com/groups/NHwednesdayworkshop/',2216,0,'external'),(22290,'https://www.newcastle-hypnotherapy.com/free-hypnosis-consultation/',1437,0,'internal'),(16767,'https://www.newcastle-hypnotherapy.com/contact-us/',2216,366,'internal'),(16768,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2216,378,'internal'),(16769,'https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/',2216,1595,'internal'),(16770,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2216,378,'internal'),(16766,'https://www.newcastle-hypnotherapy.com/contact-us/',2216,366,'internal'),(16764,'https://www.newcastle-hypnotherapy.com/?page_id=2216&amp;preview=true',2216,2216,'internal'),(16765,'https://www.newcastle-hypnotherapy.com/contact-us/',2216,366,'internal'),(16762,'https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/',2216,2192,'internal'),(16763,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/',2216,1813,'internal'),(16761,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/',2216,2151,'internal'),(16760,'https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/',2216,1595,'internal'),(16759,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2216,378,'internal'),(16758,'https://www.newcastle-hypnotherapy.com',2216,1437,'internal'),(16757,'https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/',2216,1252,'internal'),(16756,'https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/',2216,122,'internal'),(16754,'https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/',2216,68,'internal'),(16755,'https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/',2216,106,'internal'),(19091,'https://www.newcastle-hypnotherapy.com',2283,1437,'internal'),(19089,'https://www.newcastle-hypnotherapy.com/product/getting-the-best-out-of-2019-workshop/',2283,2287,'internal'),(19090,'https://www.facebook.com/groups/NHwednesdayworkshop/',2283,0,'external'),(22405,'https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/',68,2192,'internal'),(22404,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/',68,2370,'internal'),(22403,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/',68,2151,'internal'),(22400,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',68,378,'internal'),(22401,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',68,378,'internal'),(22399,'https://www.newcastle-hypnotherapy.com/learn-self-hypnosis/',68,486,'internal'),(18062,'https://www.facebook.com/groups/NHwednesdayworkshop/',2370,0,'external'),(18063,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2370,378,'internal'),(18064,'https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/',2370,1595,'internal'),(18065,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/',2370,2151,'internal'),(18066,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/',2370,0,'internal'),(18067,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/',2370,1813,'internal'),(18068,'https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/',2370,2216,'internal'),(18061,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2370,378,'internal'),(18059,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2370,378,'internal'),(18060,'https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/',2370,1595,'internal'),(18057,'https://www.newcastle-hypnotherapy.com/contact-us/',2370,366,'internal'),(18058,'https://www.newcastle-hypnotherapy.com/contact-us/',2370,366,'internal'),(18056,'https://www.newcastle-hypnotherapy.com/contact-us/',2370,366,'internal'),(18055,'https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/',2370,2216,'internal'),(18054,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/',2370,1813,'internal'),(18053,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-bedlington-northumberland/',2370,0,'internal'),(18052,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/',2370,2151,'internal'),(18051,'https://www.newcastle-hypnotherapy.com/contact-us/',2370,366,'internal'),(18050,'https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/',2370,1595,'internal'),(18049,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2370,378,'internal'),(18047,'https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/',2370,1252,'internal'),(18048,'https://www.newcastle-hypnotherapy.com',2370,1437,'internal'),(18046,'https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/',2370,122,'internal'),(18045,'https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/',2370,106,'internal'),(18044,'https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/',2370,0,'internal'),(18857,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/',43,2370,'internal'),(18856,'https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/',43,2192,'internal'),(18855,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/',43,1813,'internal'),(18341,'https://www.newcastle-hypnotherapy.com/about-us/',2408,43,'internal'),(18342,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2408,378,'internal'),(18343,'https://www.facebook.com/newcastlehypnosis/',2408,0,'external'),(19139,'https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-hypnosis-program/',471,68,'internal'),(19140,'http://www.newcastle-hypnotherapy.com/downloads/DeepRelaxationHypnosis01.mp3',471,0,'internal'),(22288,'https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/',1437,1595,'internal'),(22289,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',1437,378,'internal'),(22283,'https://www.newcastle-hypnotherapy.com/',1437,1437,'internal'),(22274,'https://www.newcastle-hypnotherapy.com/hypnosis-for-depression/',1437,0,'internal'),(22896,'https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/',2558,2564,'internal'),(22894,'https://www.newcastle-hypnotherapy.com/',2558,1437,'internal'),(22895,'https://www.newcastle-hypnotherapy.com/product/anxiety-freedom-introduction-workshop/',2558,2564,'internal'),(22280,'https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/',1437,2192,'internal'),(22281,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/',1437,1813,'internal'),(22863,'https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/',2612,0,'internal'),(22864,'https://www.newcastle-hypnotherapy.com/product/self-confidence-workshop-booking/',2612,2628,'internal'),(22862,'https://www.facebook.com/groups/NHwednesdayworkshop/',2612,0,'external'),(22861,'https://www.newcastle-hypnotherapy.com/product/self-confidence-workshop-booking/',2612,2628,'internal'),(22860,'https://www.newcastle-hypnotherapy.com/product/self-confidence-workshop-booking/',2612,2628,'internal'),(22811,'https://www.facebook.com/newcastlehypnosis/',1185,0,'external'),(22282,'https://www.newcastle-hypnotherapy.com/south-shields-hypnotherapy-practice/',1437,2216,'internal'),(22279,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/',1437,2370,'internal'),(22278,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/',1437,2151,'internal'),(22277,'https://www.newcastle-hypnotherapy.com/hypnosis-for-candida-relief/',1437,0,'internal'),(22276,'https://www.newcastle-hypnotherapy.com/stop-smoking-hypnosis-guaranteed/',1437,0,'internal'),(22275,'https://www.newcastle-hypnotherapy.com/stress-management/',1437,0,'internal'),(22273,'http://www.newcastle-hypnotherapy.com/anxiety-relief/',1437,0,'internal'),(22272,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',1437,378,'internal'),(22271,'https://www.newcastle-hypnotherapy.com/book-your-hypnosis-nlp-session/',1437,1595,'internal'),(22268,'https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/',1437,0,'internal'),(22269,'https://www.newcastle-hypnotherapy.com/anxiety-relief-with-hypnosis/',1437,0,'internal'),(22270,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/?customize_changeset_uuid=a580970c-2da2-4a50-8ab1-e68b8b054209&amp;customize_messenger_channel=preview-0',1437,378,'internal'),(22267,'https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-pain-management-program/',1437,1252,'internal'),(22266,'https://www.newcastle-hypnotherapy.com/hypnosis-services/hypnosis-for-depression/',1437,122,'internal'),(22265,'https://www.newcastle-hypnotherapy.com/hypnosis-services/stress-management/',1437,106,'internal'),(22837,'https://www.newcastle-hypnotherapy.com',2681,1437,'internal'),(22838,'https://www.newcastle-hypnotherapy.com/product/the-secrets-of-being-happy-workshop/',2681,2701,'internal'),(22759,'https://www.newcastle-hypnotherapy.com/product/self-hypnosis-practice-group-booking/',560,2454,'internal'),(22850,'https://www.facebook.com/groups/TheSecretWorkshops/',2718,0,'external'),(22849,'https://www.newcastle-hypnotherapy.com/?post_type=product&amp;p=2732&amp;preview=true',2718,1437,'internal'),(20999,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-seaton-delaval/',106,1813,'internal'),(20997,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-cramlington-practice/',106,2370,'internal'),(20998,'https://www.newcastle-hypnotherapy.com/bedlington-hypnotherapy-practice-northumberland/',106,2192,'internal'),(20995,'https://www.newcastle-hypnotherapy.com/contact-us/',106,366,'internal'),(20996,'https://www.newcastle-hypnotherapy.com/newcastle-hypnotherapy-in-wallsend/',106,2151,'internal'),(22777,'https://www.newcastle-hypnotherapy.com/client-feedback/',2813,200,'internal'),(22775,'https://www.newcastle-hypnotherapy.com/product/deep-relaxation-mind-body-workshop/',2813,2836,'internal'),(22776,'https://www.facebook.com/groups/TheSecretWorkshops/',2813,0,'external'),(22264,'https://www.newcastle-hypnotherapy.com/hypnosis-services/anxiety-relief-with-hypnosis/',1437,0,'internal'),(22897,'https://www.facebook.com/groups/NHwednesdayworkshop/',2558,0,'external'),(22398,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',68,378,'internal'),(22397,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',68,378,'internal'),(22395,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',68,378,'internal'),(22396,'https://www.newcastle-hypnotherapy.com',68,1437,'internal'),(22450,'https://www.newcastle-hypnotherapy.com/product/protection-empowerment-workshop-booking-page/',2944,2972,'internal'),(22556,'https://www.facebook.com/newcastlehypnosis/',2989,0,'external'),(22554,'https://www.newcastle-hypnotherapy.com/contact-us/',2989,366,'internal'),(22555,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',2989,378,'internal'),(22552,'https://www.newcastle-hypnotherapy.com/product/ems/',2989,3026,'internal'),(22553,'https://www.newcastle-hypnotherapy.com/product/ems/',2989,3026,'internal'),(22940,'https://www.newcastle-hypnotherapy.com/contact-us/',322,366,'internal'),(22939,'https://www.newcastle-hypnotherapy.com/contact-us/',322,366,'internal'),(22938,'https://www.facebook.com/groups/TheSecretWorkshops/',322,0,'external'),(22937,'https://www.newcastle-hypnotherapy.com/self-confidence-workshop/',322,2612,'internal'),(22942,'https://www.newcastle-hypnotherapy.com/free-consultation-newcastle-hypnotherapy/',322,378,'internal'),(22936,'https://www.newcastle-hypnotherapy.com/dealing-with-difficult-people-children/',322,2718,'internal'),(22935,'https://www.newcastle-hypnotherapy.com/the-secrets-of-being-happy/',322,2681,'internal'),(22934,'https://www.newcastle-hypnotherapy.com/anxiety-freedom-workshop/',322,2558,'internal'),(22932,'https://www.newcastle-hypnotherapy.com/the-secrets-of-deep-relaxation-workshop/',322,2813,'internal'),(22881,'https://www.newcastle-hypnotherapy.com',1291,1437,'internal'),(22882,'https://www.ukguild.com/component/jsn/mark-morley?Item',1291,0,'external'),(22933,'https://www.newcastle-hypnotherapy.com/events-workshops-newcastle-hypnotherapy/past-life-regression-workshop/',322,1185,'internal');
/*!40000 ALTER TABLE `wpqj_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqj_yoast_seo_meta`
--

DROP TABLE IF EXISTS `wpqj_yoast_seo_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpqj_yoast_seo_meta` (
  `object_id` bigint(20) unsigned NOT NULL,
  `internal_link_count` int(10) unsigned DEFAULT NULL,
  `incoming_link_count` int(10) unsigned DEFAULT NULL,
  UNIQUE KEY `object_id` (`object_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqj_yoast_seo_meta`
--

LOCK TABLES `wpqj_yoast_seo_meta` WRITE;
/*!40000 ALTER TABLE `wpqj_yoast_seo_meta` DISABLE KEYS */;
INSERT INTO `wpqj_yoast_seo_meta` VALUES (68,14,8),(7,0,0),(106,6,8),(43,9,1),(118,0,0),(122,0,8),(190,0,0),(192,0,0),(195,0,0),(200,2,9),(189,0,0),(1,0,0),(197,0,0),(194,0,0),(196,0,0),(296,0,0),(314,0,0),(322,10,4),(347,0,0),(351,0,0),(366,0,30),(370,0,0),(352,0,0),(353,0,0),(354,0,0),(374,0,0),(378,1,46),(385,0,0),(410,0,0),(421,0,0),(422,0,0),(471,3,0),(486,2,12),(556,1,0),(560,1,0),(576,0,0),(589,0,0),(590,0,0),(604,0,0),(605,1,0),(613,0,0),(685,0,0),(687,0,0),(689,0,0),(691,0,0),(692,0,0),(693,0,0),(695,0,0),(697,0,0),(699,0,0),(700,0,0),(701,0,0),(702,0,0),(703,0,0),(321,0,0),(320,0,0),(319,0,0),(318,0,0),(317,0,0),(316,0,0),(732,0,0),(735,0,0),(751,0,0),(810,0,0),(805,0,0),(806,0,0),(807,0,0),(821,0,0),(824,0,1),(892,0,1),(690,0,0),(925,0,0),(828,0,0),(948,1,2),(708,0,0),(707,0,0),(706,0,0),(705,0,0),(704,0,0),(709,0,0),(710,0,0),(711,0,0),(712,0,0),(713,0,0),(714,0,0),(715,0,0),(716,0,0),(717,0,0),(718,0,0),(719,0,0),(720,0,0),(721,0,0),(722,0,0),(723,0,0),(724,0,0),(725,0,0),(726,0,0),(727,0,0),(728,0,0),(729,0,0),(730,0,0),(731,0,0),(736,0,0),(737,0,0),(738,0,0),(739,0,0),(740,0,0),(741,0,0),(742,0,0),(743,0,0),(744,0,0),(745,0,0),(746,0,0),(747,0,0),(748,0,0),(749,0,0),(753,0,0),(754,0,0),(755,0,0),(756,0,0),(757,0,0),(758,0,0),(759,0,0),(760,0,0),(761,0,0),(762,0,0),(763,0,0),(764,0,0),(765,0,0),(766,0,0),(767,0,0),(768,0,0),(769,0,0),(770,0,0),(771,0,0),(772,0,0),(773,0,0),(774,0,0),(775,0,0),(776,0,0),(777,0,0),(778,0,0),(779,0,0),(780,0,0),(781,0,0),(782,0,0),(783,0,0),(784,0,0),(785,0,0),(786,0,0),(787,0,0),(788,0,0),(789,0,0),(790,0,0),(791,0,0),(792,0,0),(793,0,0),(794,0,0),(795,0,0),(937,0,0),(957,0,0),(997,0,0),(1000,0,0),(1001,0,0),(1003,4,0),(1002,0,0),(1032,0,0),(1035,0,0),(1052,0,0),(1054,14,0),(1033,0,0),(1079,9,0),(1095,2,0),(1129,0,0),(1077,0,0),(72,0,0),(1160,0,0),(1182,0,0),(1185,3,1),(325,0,0),(1200,0,0),(1158,0,0),(1159,0,0),(1181,0,0),(1252,4,6),(1291,5,0),(1201,0,0),(1186,NULL,0),(1227,0,0),(1317,0,0),(1290,0,0),(1325,0,0),(1316,0,0),(1328,2,0),(1371,0,0),(1375,0,0),(1376,0,0),(1377,0,0),(1378,0,0),(1398,0,0),(1399,0,0),(1400,0,0),(1401,0,0),(1402,0,0),(1403,0,0),(1404,0,0),(1405,0,0),(1406,0,0),(1407,0,0),(1408,0,0),(1409,0,0),(1410,0,0),(1411,0,0),(1430,0,0),(1437,38,14),(1419,0,0),(1381,0,0),(1451,0,0),(1453,0,0),(798,0,0),(799,0,0),(800,0,0),(801,0,0),(803,0,0),(809,0,0),(873,0,0),(894,0,0),(993,0,0),(1026,0,0),(1084,0,0),(1118,0,0),(1289,0,0),(1320,0,0),(1353,0,0),(1468,0,0),(1495,0,0),(1529,0,0),(69,0,0),(57,0,0),(54,0,0),(1548,0,1),(1568,1,0),(1444,0,0),(1579,0,0),(1581,0,0),(1431,0,0),(1591,0,1),(1593,0,1),(1595,6,18),(1612,0,1),(1614,0,1),(1616,0,1),(1618,0,1),(1635,1,0),(1445,0,0),(1447,0,0),(1448,0,0),(1450,0,0),(1454,0,0),(1455,0,0),(1512,0,0),(1639,1,0),(1665,1,0),(1527,0,0),(1538,0,0),(1412,0,0),(1415,0,0),(1416,0,0),(1417,0,0),(1418,0,0),(1633,0,0),(1749,1,0),(1435,0,0),(1439,0,0),(1441,0,0),(1443,0,0),(1770,1,0),(1773,0,0),(1748,0,0),(1768,0,0),(1457,0,0),(1456,0,0),(1462,0,0),(1465,0,0),(1467,0,0),(1469,0,0),(1471,0,0),(1486,0,0),(1485,0,0),(1487,0,0),(1490,0,0),(1491,0,0),(1492,0,0),(1499,0,0),(1506,0,0),(1507,0,0),(1520,0,0),(1523,0,0),(1525,0,0),(1526,0,0),(1532,0,0),(1533,0,0),(1536,0,0),(1537,0,0),(1547,0,0),(1546,0,0),(1545,0,0),(1544,0,0),(1543,0,0),(1542,0,0),(1539,0,0),(1796,0,0),(1636,0,0),(1637,0,0),(1654,0,0),(1655,0,0),(1656,0,0),(1657,0,0),(1658,0,0),(1812,0,0),(1813,20,11),(1494,0,0),(1678,0,0),(1679,0,0),(1535,0,0),(1795,0,0),(1900,0,1),(1917,0,2),(1930,0,0),(1897,0,0),(1959,0,0),(1960,5,0),(1916,0,0),(1924,0,0),(2006,0,0),(2027,1,0),(1951,0,0),(2034,1,0),(1871,0,0),(2045,0,0),(1885,0,0),(2033,0,0),(2062,2,0),(1502,0,0),(1503,0,0),(1505,0,0),(1874,0,0),(1906,0,0),(2040,0,0),(2118,0,0),(1449,0,0),(2092,0,0),(2151,19,11),(2168,0,0),(1925,0,0),(1926,0,0),(1927,0,0),(1928,0,0),(1945,0,0),(1944,0,0),(1923,0,0),(2192,21,6),(1967,0,0),(1968,0,0),(1946,0,0),(1932,0,0),(1934,0,0),(1933,0,0),(1935,0,0),(1937,0,0),(1936,0,0),(1938,0,0),(1939,0,0),(1940,0,0),(1941,0,0),(1942,0,0),(1943,0,0),(1131,0,0),(1132,0,0),(1130,0,0),(1133,0,0),(1134,0,0),(1136,0,0),(1135,0,0),(1137,0,0),(1138,0,0),(1982,0,0),(1986,0,0),(2166,0,0),(2216,23,7),(2267,0,0),(2283,2,0),(2287,0,1),(2370,24,4),(2214,0,0),(2408,2,0),(2044,0,0),(2055,0,0),(2047,0,0),(2048,0,0),(2050,0,0),(2049,0,0),(2051,0,0),(2052,0,0),(2053,0,0),(2054,0,0),(2056,0,0),(2057,0,0),(2059,0,0),(2060,0,0),(2061,0,0),(2065,0,0),(1747,0,0),(1746,0,0),(1653,0,0),(1652,0,0),(1634,0,0),(2454,0,1),(2120,0,0),(2119,0,0),(2122,0,0),(2439,0,0),(2522,0,0),(2533,0,0),(2558,4,1),(2564,0,2),(2266,0,0),(2486,0,0),(2488,0,0),(2494,0,0),(2513,0,0),(2557,0,0),(2592,0,0),(2612,4,1),(2628,0,3),(2609,0,0),(2611,0,0),(2664,0,0),(2670,0,0),(2681,3,1),(2701,0,1),(2673,0,0),(2718,1,1),(2732,0,0),(2707,0,0),(2813,2,1),(2834,0,0),(2836,0,1),(2861,0,0),(2853,0,0),(2927,0,0),(2921,0,0),(2944,3,0),(2972,0,2),(2863,0,0),(2989,4,0),(3026,0,2),(2833,0,0),(3044,0,0),(2988,0,0),(3136,0,0),(3065,0,0),(3141,0,0);
/*!40000 ALTER TABLE `wpqj_yoast_seo_meta` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2019-09-22 20:23:52
